diff --git a/api/compose.yaml b/api/compose.yaml index e7c6119c..eb413640 100644 --- a/api/compose.yaml +++ b/api/compose.yaml @@ -7,6 +7,7 @@ services: depends_on: - mongodb - elasticsearch + - mosquitto elasticsearch: image: 'docker.elastic.co/elasticsearch/elasticsearch:7.17.10' @@ -17,12 +18,14 @@ services: ports: - '8100:9200' - '8101:9300' + grafana-lgtm: image: 'grafana/otel-lgtm:latest' ports: - '8200:3000' - '8201:4317' - '8202:4318' + prometheus: image: 'prom/prometheus:latest' container_name: prometheus @@ -42,6 +45,18 @@ services: volumes: - ./mongo-data:/data/db - ./mongo-init:/docker-entrypoint-initdb.d + + mosquitto: + image: eclipse-mosquitto:latest + container_name: mosquitto + ports: + - "1883:1883" # MQTT + - "9001:9001" # WebSocket (optional) + volumes: + - ./mosquitto/config:/mosquitto/config + - ./mosquitto/data:/mosquitto/data + - ./mosquitto/log:/mosquitto/log + #mongo-express: # image: mongo-express:latest # depends_on: diff --git a/esp32-thread/border-router/.clangd b/esp32-thread/border-router/.clangd deleted file mode 100644 index 437f2554..00000000 --- a/esp32-thread/border-router/.clangd +++ /dev/null @@ -1,2 +0,0 @@ -CompileFlags: - Remove: [-f*, -m*] diff --git a/esp32-thread/border-router/.devcontainer/Dockerfile b/esp32-thread/border-router/.devcontainer/Dockerfile deleted file mode 100644 index dafb8adb..00000000 --- a/esp32-thread/border-router/.devcontainer/Dockerfile +++ /dev/null @@ -1,13 +0,0 @@ -ARG DOCKER_TAG=latest -FROM espressif/idf:${DOCKER_TAG} - -ENV LC_ALL=C.UTF-8 -ENV LANG=C.UTF-8 - -RUN apt-get update -y && apt-get install udev -y - -RUN echo "source /opt/esp/idf/export.sh > /dev/null 2>&1" >> ~/.bashrc - -ENTRYPOINT [ "/opt/esp/entrypoint.sh" ] - -CMD ["/bin/bash", "-c"] \ No newline at end of file diff --git a/esp32-thread/border-router/.devcontainer/devcontainer.json b/esp32-thread/border-router/.devcontainer/devcontainer.json deleted file mode 100644 index b8017861..00000000 --- a/esp32-thread/border-router/.devcontainer/devcontainer.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "name": "ESP-IDF QEMU", - "build": { - "dockerfile": "Dockerfile" - }, - "customizations": { - "vscode": { - "settings": { - "terminal.integrated.defaultProfile.linux": "bash", - "idf.espIdfPath": "/opt/esp/idf", - "idf.toolsPath": "/opt/esp", - "idf.gitPath": "/usr/bin/git" - }, - "extensions": [ - "espressif.esp-idf-extension", - "espressif.esp-idf-web" - ] - } - }, - "runArgs": ["--privileged"] -} \ No newline at end of file diff --git a/esp32-thread/border-router/.gitignore b/esp32-thread/border-router/.gitignore deleted file mode 100644 index 7805557a..00000000 --- a/esp32-thread/border-router/.gitignore +++ /dev/null @@ -1,78 +0,0 @@ -# macOS -.DS_Store -.AppleDouble -.LSOverride - -# Directory metadata -.directory - -# Temporary files -*~ -*.swp -*.swo -*.bak -*.tmp - -# Log files -*.log - -# Build artifacts and directories -**/build/ -build/ -*.o -*.a -*.out -*.exe # For any host-side utilities compiled on Windows - -# ESP-IDF specific build outputs -*.bin -*.elf -*.map -flasher_args.json # Generated in build directory -sdkconfig.old -sdkconfig - -# ESP-IDF dependencies -# For older versions or manual component management -/components/.idf/ -**/components/.idf/ -# For modern ESP-IDF component manager -managed_components/ -# If ESP-IDF tools are installed/referenced locally to the project -.espressif/ - -# CMake generated files -CMakeCache.txt -CMakeFiles/ -cmake_install.cmake -install_manifest.txt -CTestTestfile.cmake - -# Python environment files -*.pyc -*.pyo -*.pyd -__pycache__/ -*.egg-info/ -dist/ - -# Virtual environment folders -venv/ -.venv/ -env/ - -# Language Servers -.clangd/ -.ccls-cache/ -compile_commands.json - -# Windows specific -Thumbs.db -ehthumbs.db -Desktop.ini - -# User-specific configuration files -*.user -*.workspace # General workspace files, can be from various tools -*.suo # Visual Studio Solution User Options -*.sln.docstates # Visual Studio diff --git a/esp32-thread/border-router/.vscode/c_cpp_properties.json b/esp32-thread/border-router/.vscode/c_cpp_properties.json deleted file mode 100644 index f9449c4f..00000000 --- a/esp32-thread/border-router/.vscode/c_cpp_properties.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "configurations": [ - { - "name": "ESP-IDF", - "compilerPath": "${config:idf.toolsPathWin}\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe", - "compileCommands": "${config:idf.buildPath}/compile_commands.json", - "includePath": [ - "${config:idf.espIdfPath}/components/**", - "${config:idf.espIdfPathWin}/components/**", - "${workspaceFolder}/**" - ], - "browse": { - "path": [ - "${config:idf.espIdfPath}/components", - "${config:idf.espIdfPathWin}/components", - "${workspaceFolder}" - ], - "limitSymbolsToIncludedHeaders": true - } - } - ], - "version": 4 -} diff --git a/esp32-thread/border-router/.vscode/launch.json b/esp32-thread/border-router/.vscode/launch.json deleted file mode 100644 index 2511a38a..00000000 --- a/esp32-thread/border-router/.vscode/launch.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "0.2.0", - "configurations": [ - { - "type": "gdbtarget", - "request": "attach", - "name": "Eclipse CDT GDB Adapter" - }, - { - "type": "espidf", - "name": "Launch", - "request": "launch" - } - ] -} \ No newline at end of file diff --git a/esp32-thread/border-router/.vscode/settings.json b/esp32-thread/border-router/.vscode/settings.json deleted file mode 100644 index 7a5f2fff..00000000 --- a/esp32-thread/border-router/.vscode/settings.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "C_Cpp.intelliSenseEngine": "default", - "idf.espIdfPathWin": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf", - "idf.pythonInstallPath": "C:\\Users\\Laurent\\.espressif\\tools\\idf-python\\3.11.2\\python.exe", - "idf.openOcdConfigs": [ - "board/esp32h2-builtin.cfg" - ], - "idf.portWin": "COM4", - "idf.toolsPathWin": "C:\\Users\\Laurent\\.espressif", - "idf.customExtraVars": { - "IDF_TARGET": "esp32h2" - }, - "clangd.path": "C:\\Users\\Laurent\\.espressif\\tools\\esp-clang\\esp-19.1.2_20250312\\esp-clang\\bin\\clangd.exe", - "clangd.arguments": [ - "--background-index", - "--query-driver=**", - "--compile-commands-dir=c:\\Users\\Laurent\\Desktop\\board-mate\\esp32-thread\\border-router\\build" - ] -} diff --git a/esp32-thread/border-router/CMakeLists.txt b/esp32-thread/border-router/CMakeLists.txt deleted file mode 100644 index 1e9aadc4..00000000 --- a/esp32-thread/border-router/CMakeLists.txt +++ /dev/null @@ -1,8 +0,0 @@ -# The following 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) -# "Trim" the build. Include the minimal set of components, main, and anything it depends on. -idf_build_set_property(MINIMAL_BUILD ON) -project(border-router) diff --git a/esp32-thread/border-router/README.md b/esp32-thread/border-router/README.md deleted file mode 100644 index 718fbd86..00000000 --- a/esp32-thread/border-router/README.md +++ /dev/null @@ -1,276 +0,0 @@ -| Supported Targets | ESP32 | ESP32-C2 | ESP32-C3 | ESP32-C5 | ESP32-C6 | ESP32-C61 | ESP32-P4 | ESP32-S2 | ESP32-S3 | -| ----------------- | ----- | -------- | -------- | -------- | -------- | --------- | -------- | -------- | -------- | - -# OpenThread Border Router Example - -## Overview - -This example demonstrates an [OpenThread border router](https://openthread.io/guides/border-router). - -The ESP Thread Border Router SDK provides extra components and examples for putting the ESP Thread Border Router solution into production: - -* [ESP Thread Border Router Docs](https://docs.espressif.com/projects/esp-thread-br) -* [ESP Thread Border Router Repo](https://github.com/espressif/esp-thread-br) - -## How to use example - -### Hardware Required -#### **Wi-Fi based Thread Border Router** -By default, two SoCs are required to run this example: -* An ESP32 series Wi-Fi SoC (ESP32, ESP32-C, ESP32-S, etc) loaded with this ot_br example. -* An IEEE 802.15.4 SoC (ESP32-H2) loaded with [ot_rcp](../ot_rcp) example. -* Another IEEE 802.15.4 SoC (ESP32-H2) loaded with [ot_cli](../ot_cli) example. - -Connect the two SoCs via UART, below is an example setup with ESP32 DevKitC and ESP32-H2 DevKitC: -![thread_br](image/thread-border-router-esp32-esp32h2.jpg) - -ESP32 pin | ESP32-H2 pin -----------|------------- - GND | G - GPIO4 | TX - GPIO5 | RX - -The example could also run on a single SoC which supports both Wi-Fi and Thread (e.g., ESP32-C6), but since there is only one RF path in ESP32-C6, which means Wi-Fi and Thread can't receive simultaneously, it has a significant impact on performance. Hence the two SoCs solution is recommended. - -#### **Ethernet based Thread Border Router** -Similar to the previous Wi-Fi based Thread Border Route setup, but a device with Ethernet interface is required, such as [ESP32-Ethernet-Kit](https://docs.espressif.com/projects/esp-idf/en/latest/esp32/hw-reference/esp32/get-started-ethernet-kit.html) or [ESP32-P4-Function-EV-Board](https://docs.espressif.com/projects/esp-dev-kits/en/latest/esp32p4/esp32-p4-function-ev-board/index.html). - -#### **ESP32-P4 using Wi-Fi Co-Processor** -This example can also be run using Wi-Fi using the ESP32-P4, which does not natively support Wi-Fi, by incorporating the ESP-Hosted component to enable Wi-Fi connectivity for the ESP32-P4 through a ESP32-C6 co-processor. You may refer to the [ESP-Hosted-MCU documentation](https://github.com/espressif/esp-hosted-mcu/blob/main/docs/esp32_p4_function_ev_board.md) for more information about ESP-Hosted. - -If you are using the ESP32-P4-Function-EV-Board, you may refer to the [OpenThread Border Router Example](https://github.com/espressif/esp-thread-br/tree/main/examples/basic_thread_border_router) for running a Wi-Fi based Thread Border Router. - -### Configure the project - -``` -idf.py menuconfig -``` -OpenThread Command Line is enabled with UART as the default interface. Additionally, USB JTAG is also supported and can be activated through the menuconfig: - -``` -Component config → ESP System Settings → Channel for console output → USB Serial/JTAG Controller -``` - -In order to run the example on single SoC which supports both Wi-Fi and Thread, the option `CONFIG_ESP_COEX_SW_COEXIST_ENABLE` and option `CONFIG_OPENTHREAD_RADIO_NATIVE` should be enabled. The two options are enabled by default for ESP32-C6 target. - -Two ways are provided to setup the Thread Border Router in this example: - -- Auto Start -Enable `OPENTHREAD_BR_AUTO_START`, configure the `CONFIG_EXAMPLE_WIFI_SSID` and `CONFIG_EXAMPLE_WIFI_PASSWORD` with your access point's ssid and psk. -The device will connect to Wi-Fi and form a Thread network automatically after boot up. - -- Manual mode -Disable `OPENTHREAD_BR_AUTO_START` and enable `OPENTHREAD_CLI_ESP_EXTENSION`. `wifi` command will be added for connecting the device to the Wi-Fi network. - -If the `CONFIG_EXAMPLE_CONNECT_ETHERNET` option is enabled, the device will connect to `Ethernet`, form a Thread network and act as a Ethernet based Thread Border Router. - -### Build, Flash, and Run - -Build the project and flash it to the board, then run monitor tool to view serial output: - -``` -idf.py -p PORT build flash monitor -``` -If the `OPENTHREAD_BR_AUTO_START` option is enabled, The device will be connected to the configured Wi-Fi and Thread network automatically then act as the border router. - -Otherwise, you need to manually configure the networks with CLI commands. - -`wifi` command can be used to configure the Wi-Fi network. - -```bash -> wifi ---wifi parameter--- -connect --s : wifi ssid --p : wifi psk ----example--- -join a wifi: -ssid: threadcertAP -psk: threadcertAP : wifi connect -s threadcertAP -p threadcertAP -state : get wifi state, disconnect or connect ----example--- -get wifi state : wifi state -Done -``` - -To join a Wi-Fi network, please use the `wifi connect` command: - -```bash -> wifi connect -s threadcertAP -p threadcertAP -ssid: threadcertAP -psk: threadcertAP -I (11331) wifi:wifi driver task: 3ffd06e4, prio:23, stack:6656, core=0 -I (11331) system_api: Base MAC address is not set -I (11331) system_api: read default base MAC address from EFUSE -I (11341) wifi:wifi firmware version: 45c46a4 -I (11341) wifi:wifi certification version: v7.0 - - -.......... - -I (13741) esp_netif_handlers: sta ip: 192.168.3.10, mask: 255.255.255.0, gw: 192.168.3.1 -W (13771) wifi:idx:0 (ifx:0, 02:0f:c1:32:3b:2b), tid:0, ssn:2, winSize:64 -wifi sta is connected successfully -Done -``` - -To get the state of the Wi-Fi network: - -```bash -> wifi state -connected -Done -``` - -For forming the Thread network, please refer to the [ot_cli_README](../ot_cli/README.md). - -## Example Output - -```bash -I (2729) esp_netif_handlers: example_connect: sta ip: 192.168.1.100, mask: 255.255.255.0, gw: 192.168.1.1 -I (2729) example_connect: Got IPv4 event: Interface "example_connect: sta" address: 192.168.1.100 -I (3729) example_connect: Got IPv6 event: Interface "example_connect: sta" address: fe80:0000:0000:0000:266f:28ff:fe80:2920, type: ESP_IP6_ADDR_IS_LINK_LOCAL -I (3729) example_connect: Connected to example_connect: sta -I (3739) example_connect: - IPv4 address: 192.168.1.100 -I (3739) example_connect: - IPv6 address: fe80:0000:0000:0000:266f:28ff:fe80:2920, type: ESP_IP6_ADDR_IS_LINK_LOCAL - -...... - - -I(8139) OPENTHREAD:[INFO]-MLE-----: AttachState ParentReqReeds -> Idle -I(8139) OPENTHREAD:[NOTE]-MLE-----: Allocate router id 50 -I(8139) OPENTHREAD:[NOTE]-MLE-----: RLOC16 fffe -> c800 -I(8159) OPENTHREAD:[NOTE]-MLE-----: Role Detached -> Leader -``` - -## Bidirectional IPv6 connectivity - -The border router will automatically publish the prefix and the route table rule to the Wi-Fi network via ICMPv6 router advertisement packages. - -### Host configuration - -The automatically configure your host's route table rules you need to set these sysctl options: - -Please replace `wlan0` with the real name of your Wi-Fi network interface. -``` -sudo sysctl -w net/ipv6/conf/wlan0/accept_ra=2 -sudo sysctl -w net/ipv6/conf/wlan0/accept_ra_rt_info_max_plen=128 -``` - -For mobile devices, the route table rules will be automatically configured after iOS 14 and Android 8.1. - - -### Testing IPv6 connectivity - -Now in the Thread end device, check the IP addresses: - -``` -> ipaddr -fde6:75ff:def4:3bc3:9e9e:3ef:4245:28b5 -fdde:ad00:beef:0:0:ff:fe00:c402 -fdde:ad00:beef:0:ad4a:9a9a:3cd6:e423 -fe80:0:0:0:f011:2951:569e:9c4a -``` - -You'll notice an IPv6 global prefix with only on address assigned under it. This is the routable address of this Thread node. -You can ping this address on your host: - -``` bash -$ ping fde6:75ff:def4:3bc3:9e9e:3ef:4245:28b5 -PING fde6:75ff:def4:3bc3:9e9e:3ef:4245:28b5(fde6:75ff:def4:3bc3:9e9e:3ef:4245:28b5) 56 data bytes -64 bytes from fde6:75ff:def4:3bc3:9e9e:3ef:4245:28b5: icmp_seq=1 ttl=63 time=459 ms -64 bytes from fde6:75ff:def4:3bc3:9e9e:3ef:4245:28b5: icmp_seq=2 ttl=63 time=109 ms -64 bytes from fde6:75ff:def4:3bc3:9e9e:3ef:4245:28b5: icmp_seq=3 ttl=63 time=119 ms -64 bytes from fde6:75ff:def4:3bc3:9e9e:3ef:4245:28b5: icmp_seq=4 ttl=63 time=117 ms -``` - -## Service discovery - -The newly introduced service registration protocol([SRP](https://datatracker.ietf.org/doc/html/draft-ietf-dnssd-srp-10)) allows devices in the Thread network to register a service. The border router will forward the service to the Wi-Fi network via mDNS. - -### Publish the service using SRP -Now we'll publish the service `my-service._test._udp` with hostname `test0` and port 12345 - -``` -> srp client host name test0 -Done -> srp client host address fde6:75ff:def4:3bc3:9e9e:3ef:4245:28b5 -Done -> srp client service add my-service _test._udp 12345 -Done -> srp client autostart enable -Done -``` - -This service will also become visible on the Wi-Fi network: - -```bash -$ avahi-browse -r _test._udp -t - -+ enp1s0 IPv6 my-service _test._udp local -= enp1s0 IPv6 my-service _test._udp local - hostname = [test0.local] - address = [fde6:75ff:def4:3bc3:9e9e:3ef:4245:28b5] - port = [12345] - txt = [] -+ enp1s0 IPv4 my-service _test._udp local -= enp1s0 IPv4 my-service _test._udp local - hostname = [test0.local] - address = [fde6:75ff:def4:3bc3:9e9e:3ef:4245:28b5] - port = [12345] - txt = [] -``` - -### Discovery delegate - -First, the service `testhost._test._udp` need to be published using `avahi-publish-service` on the Wi-Fi network(for example Host). - -```bash -$ avahi-publish-service testhost _test._udp 12345 test=1 dn="aabbbb" -``` - -Then get the border router's OMR prefix global unicast address(or ML-EID), and configure it on the Thread end device. - -On the border router: -``` -> ipaddr -fdde:ad00:beef:0:0:ff:fe00:fc10 -fd9b:347f:93f7:1:1003:8f00:bcc1:3038 -fdde:ad00:beef:0:0:ff:fe00:fc00 -fdde:ad00:beef:0:0:ff:fe00:b800 -fdde:ad00:beef:0:f891:287:866:776 -fe80:0:0:0:77:bca6:6079:785b -Done -``` - -On the Thread end device: -``` -> dns config fd9b:347f:93f7:1:1003:8f00:bcc1:3038 -(or -> dns config fdde:ad00:beef:0:f891:287:866:776) -Done -``` - -Now the service published on the Host can be discovered on the Thread end device. -``` -> dns resolve FA001208.default.service.arpa. -DNS response for FA001208.default.service.arpa. - fdde:ad00:beef:cafe:b939:26be:7516:b87e TTL:120 -Done - -> dns browse _test._udp.default.service.arpa. -DNS browse response for _test._udp.default.service.arpa. -testhost - Port:5683, Priority:0, Weight:0, TTL:120 - Host:FA001208.default.service.arpa. - HostAddress:fdde:ad00:beef:cafe:b939:26be:7516:b87e TTL:120 - TXT:[test=31, dn=616162626262] TTL:120 -Done - -> dns service testhost _test._udp.default.service.arpa. -DNS service resolution response for testhost for service _test._udp.default.service.arpa. -Port:5683, Priority:0, Weight:0, TTL:120 -Host:FA001208.default.service.arpa. -HostAddress:fdde:ad00:beef:cafe:b939:26be:7516:b87e TTL:120 -TXT:[test=31, dn=616162626262] TTL:120 -Done -``` diff --git a/esp32-thread/border-router/dependencies.lock b/esp32-thread/border-router/dependencies.lock deleted file mode 100644 index 3c0ebce6..00000000 --- a/esp32-thread/border-router/dependencies.lock +++ /dev/null @@ -1,72 +0,0 @@ -dependencies: - espressif/esp_ot_cli_extension: - component_hash: 0720bca3c3d0b3ea33ee9c9830d51c4c25312cb2cf32408e681e12cd4539cfb1 - dependencies: - - name: espressif/iperf - registry_url: https://components.espressif.com - require: private - version: ^0.1.0 - - name: idf - require: private - version: '>=5.0' - source: - registry_url: https://components.espressif.com/ - type: service - version: 1.3.5 - espressif/iperf: - component_hash: f4c2beaae50478a626995130d2611c628b7a568cd0799022758c05658928410c - dependencies: - - name: idf - require: private - version: '>=4.3' - source: - registry_url: https://components.espressif.com - type: service - version: 0.1.4 - espressif/led_strip: - component_hash: 28c6509a727ef74925b372ed404772aeedf11cce10b78c3f69b3c66799095e2d - dependencies: - - name: idf - require: private - version: '>=4.4' - source: - registry_url: https://components.espressif.com/ - type: service - version: 2.5.5 - espressif/mdns: - component_hash: 29e47564b1a7ee778135e17fbbf2a2773f71c97ebabfe626c8eda7c958a7ad16 - dependencies: - - name: idf - require: private - version: '>=5.0' - source: - registry_url: https://components.espressif.com/ - type: service - version: 1.9.1 - idf: - source: - type: idf - version: 5.5.1 - ot_led: - dependencies: - - name: espressif/led_strip - version: ^2.4.1 - source: - path: C:\Users\Laurent\esp\v5.5.1\esp-idf\examples\openthread\ot_common_components\ot_led - type: local - version: '*' - protocol_examples_common: - dependencies: [] - source: - path: C:\Users\Laurent\esp\v5.5.1\esp-idf\examples\common_components\protocol_examples_common - type: local - version: '*' -direct_dependencies: -- espressif/esp_ot_cli_extension -- espressif/mdns -- idf -- ot_led -- protocol_examples_common -manifest_hash: b321f20879c2db943f68f56bf58015445d174916b597518cabf177d0b1f03dc0 -target: esp32h2 -version: 2.0.0 diff --git a/esp32-thread/border-router/image/thread-border-router-esp32-esp32h2.jpg b/esp32-thread/border-router/image/thread-border-router-esp32-esp32h2.jpg deleted file mode 100644 index 91f67f5a..00000000 Binary files a/esp32-thread/border-router/image/thread-border-router-esp32-esp32h2.jpg and /dev/null differ diff --git a/esp32-thread/border-router/main/CMakeLists.txt b/esp32-thread/border-router/main/CMakeLists.txt deleted file mode 100644 index b7f5a28f..00000000 --- a/esp32-thread/border-router/main/CMakeLists.txt +++ /dev/null @@ -1,4 +0,0 @@ -idf_component_register(SRCS "gps.c" "esp_ot_br.c" - PRIV_REQUIRES esp_psram openthread esp_coex esp_wifi nvs_flash - INCLUDE_DIRS "." - REQUIRES esp_http_client) diff --git a/esp32-thread/border-router/main/Kconfig.projbuild b/esp32-thread/border-router/main/Kconfig.projbuild deleted file mode 100644 index 45e682cb..00000000 --- a/esp32-thread/border-router/main/Kconfig.projbuild +++ /dev/null @@ -1,52 +0,0 @@ -menu "OpenThread Border Router Example" - - config OPENTHREAD_BR_AUTO_START - bool 'Enable the automatic start mode in Thread Border Router.' - default n - help - If enabled, The Thread Border Router will connect to Wi-Fi with pre-configured - SSID and PSK, and then form a Thread network automatically. Otherwise, user need - to configure Wi-Fi and Thread manually. - - config OPENTHREAD_SUPPORT_HW_RESET_RCP - bool 'Enable hardware RCP resetting' - default n - help - If enabled, the Thread Border Router will support hardware resetting the RCP - when processing RCP failure. - - config OPENTHREAD_HW_RESET_RCP_PIN - int 'Pin to RCP reset' - depends on OPENTHREAD_SUPPORT_HW_RESET_RCP - default 7 - - menu "External coexist wire type and pin config" - config EXTERNAL_COEX_WIRE_TYPE - int "The wire_type of external coexist" - depends on ESP_COEX_EXTERNAL_COEXIST_ENABLE - default 3 - range 0 3 - help - Select wire_type for external coexist, the wire_type define in external_coex_wire_t. - - config EXTERNAL_COEX_REQUEST_PIN - int "The number of external coexist request pin" - depends on ESP_COEX_EXTERNAL_COEXIST_ENABLE && (EXTERNAL_COEX_WIRE_TYPE >= 0) - default 0 - - config EXTERNAL_COEX_GRANT_PIN - int "The number of external coexist grant pin" - depends on ESP_COEX_EXTERNAL_COEXIST_ENABLE && (EXTERNAL_COEX_WIRE_TYPE >= 1) - default 1 - - config EXTERNAL_COEX_PRIORITY_PIN - int "The number of external coexist priority pin" - depends on ESP_COEX_EXTERNAL_COEXIST_ENABLE && (EXTERNAL_COEX_WIRE_TYPE >= 2) - default 2 - - config EXTERNAL_COEX_TX_LINE_PIN - int "The number of external coexist tx_line pin" - depends on ESP_COEX_EXTERNAL_COEXIST_ENABLE && (EXTERNAL_COEX_WIRE_TYPE = 3) - default 3 - endmenu # External coexist wire type and pin config -endmenu diff --git a/esp32-thread/border-router/main/esp_ot_br.c b/esp32-thread/border-router/main/esp_ot_br.c deleted file mode 100644 index 6421dcb7..00000000 --- a/esp32-thread/border-router/main/esp_ot_br.c +++ /dev/null @@ -1,227 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2021-2025 Espressif Systems (Shanghai) CO LTD - * - * SPDX-License-Identifier: CC0-1.0 - * - * OpenThread Border Router Example - * - * This example code is in the Public Domain (or CC0 licensed, at your option.) - * - * Unless required by applicable law or agreed to in writing, this - * software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR - * CONDITIONS OF ANY KIND, either express or implied. - */ - -#include -#include - -#include "sdkconfig.h" -#include "esp_check.h" -#include "esp_err.h" -#include "esp_event.h" -#include "esp_log.h" -#include "esp_netif.h" -#include "esp_openthread.h" -#include "esp_openthread_border_router.h" -#include "esp_openthread_cli.h" -#include "esp_openthread_lock.h" -#include "esp_openthread_netif_glue.h" -#include "esp_openthread_types.h" -#if CONFIG_OPENTHREAD_CLI_ESP_EXTENSION -#include "esp_ot_cli_extension.h" -#endif // CONFIG_OPENTHREAD_CLI_ESP_EXTENSION -#include "esp_ot_config.h" -#include "esp_ot_wifi_cmd.h" -#include "esp_vfs_dev.h" -#include "esp_vfs_eventfd.h" -#include "esp_wifi.h" -#include "mdns.h" -#include "nvs_flash.h" -#include "protocol_examples_common.h" -#include "driver/gpio.h" -#include "driver/uart.h" -#include "freertos/FreeRTOS.h" -#include "freertos/task.h" -#include "hal/uart_types.h" -#include "openthread/error.h" -#include "openthread/logging.h" -#include "openthread/tasklet.h" -#include "gps.h" - -#if CONFIG_OPENTHREAD_STATE_INDICATOR_ENABLE -#include "ot_led_strip.h" -#endif - -#if CONFIG_OPENTHREAD_BR_AUTO_START -#include "example_common_private.h" -#include "protocol_examples_common.h" -#endif - -#if !CONFIG_OPENTHREAD_BR_AUTO_START && CONFIG_EXAMPLE_CONNECT_ETHERNET -// TZ-1109: Add a menchanism for connecting ETH manually. -#error Currently we do not support a manual way to connect ETH, if you want to use ETH, please enable OPENTHREAD_BR_AUTO_START. -#endif - -#define TAG "esp_ot_br" - -#if CONFIG_OPENTHREAD_SUPPORT_HW_RESET_RCP -#define PIN_TO_RCP_RESET CONFIG_OPENTHREAD_HW_RESET_RCP_PIN -static void rcp_failure_hardware_reset_handler(void) -{ - gpio_config_t reset_pin_config; - memset(&reset_pin_config, 0, sizeof(reset_pin_config)); - reset_pin_config.intr_type = GPIO_INTR_DISABLE; - reset_pin_config.pin_bit_mask = BIT(PIN_TO_RCP_RESET); - reset_pin_config.mode = GPIO_MODE_OUTPUT; - reset_pin_config.pull_down_en = GPIO_PULLDOWN_DISABLE; - reset_pin_config.pull_up_en = GPIO_PULLUP_DISABLE; - gpio_config(&reset_pin_config); - gpio_set_level(PIN_TO_RCP_RESET, 0); - vTaskDelay(pdMS_TO_TICKS(10)); - gpio_set_level(PIN_TO_RCP_RESET, 1); - vTaskDelay(pdMS_TO_TICKS(30)); - gpio_reset_pin(PIN_TO_RCP_RESET); -} -#endif - -#if CONFIG_EXTERNAL_COEX_ENABLE -static void ot_br_external_coexist_init(void) -{ - esp_external_coex_gpio_set_t gpio_pin = ESP_OPENTHREAD_DEFAULT_EXTERNAL_COEX_CONFIG(); - esp_external_coex_set_work_mode(EXTERNAL_COEX_LEADER_ROLE); - ESP_ERROR_CHECK(esp_enable_extern_coex_gpio_pin(CONFIG_EXTERNAL_COEX_WIRE_TYPE, gpio_pin)); -} -#endif /* CONFIG_EXTERNAL_COEX_ENABLE */ - -static void ot_task_worker(void *aContext) -{ - esp_openthread_platform_config_t config = { - .radio_config = ESP_OPENTHREAD_DEFAULT_RADIO_CONFIG(), - .host_config = ESP_OPENTHREAD_DEFAULT_HOST_CONFIG(), - .port_config = ESP_OPENTHREAD_DEFAULT_PORT_CONFIG(), - }; - - esp_netif_config_t cfg = ESP_NETIF_DEFAULT_OPENTHREAD(); - esp_netif_t *openthread_netif = esp_netif_new(&cfg); - assert(openthread_netif != NULL); - - // Initialize the OpenThread stack - ESP_ERROR_CHECK(esp_openthread_init(&config)); - ESP_ERROR_CHECK(esp_netif_attach(openthread_netif, esp_openthread_netif_glue_init(&config))); - esp_openthread_lock_acquire(portMAX_DELAY); -#if CONFIG_OPENTHREAD_LOG_LEVEL_DYNAMIC - // The OpenThread log level directly matches ESP log level - (void)otLoggingSetLevel(CONFIG_LOG_DEFAULT_LEVEL); -#endif // CONFIG_OPENTHREAD_LOG_LEVEL_DYNAMIC -#if CONFIG_OPENTHREAD_CLI - esp_openthread_cli_init(); -#if CONFIG_OPENTHREAD_CLI_ESP_EXTENSION - esp_cli_custom_command_init(); -#endif // CONFIG_OPENTHREAD_CLI_ESP_EXTENSION - esp_openthread_cli_create_task(); -#endif // CONFIG_OPENTHREAD_CLI - esp_openthread_lock_release(); - - // Run the main loop - esp_openthread_launch_mainloop(); - - // Clean up - esp_openthread_netif_glue_deinit(); - esp_netif_destroy(openthread_netif); - esp_vfs_eventfd_unregister(); - vTaskDelete(NULL); -} - -void ot_br_init(void *ctx) -{ -#if CONFIG_OPENTHREAD_CLI_WIFI - ESP_ERROR_CHECK(esp_ot_wifi_config_init()); -#endif -#if CONFIG_OPENTHREAD_BR_AUTO_START -#if CONFIG_EXAMPLE_CONNECT_WIFI || CONFIG_EXAMPLE_CONNECT_ETHERNET - bool wifi_or_ethernet_connected = false; -#else -#error No backbone netif! -#endif -#if CONFIG_EXAMPLE_CONNECT_WIFI - char wifi_ssid[32] = ""; - char wifi_password[64] = ""; - if (esp_ot_wifi_config_get_ssid(wifi_ssid) == ESP_OK) { - ESP_LOGI(TAG, "use the Wi-Fi config from NVS"); - esp_ot_wifi_config_get_password(wifi_password); - } else { - ESP_LOGI(TAG, "use the Wi-Fi config from Kconfig"); - strcpy(wifi_ssid, CONFIG_EXAMPLE_WIFI_SSID); - strcpy(wifi_password, CONFIG_EXAMPLE_WIFI_PASSWORD); - } - if (esp_ot_wifi_connect(wifi_ssid, wifi_password) == ESP_OK) { - wifi_or_ethernet_connected = true; - } else { - ESP_LOGE(TAG, "Fail to connect to Wi-Fi, please try again manually"); - } -#endif -#if CONFIG_EXAMPLE_CONNECT_ETHERNET - ESP_ERROR_CHECK(example_ethernet_connect()); - wifi_or_ethernet_connected = true; -#endif -#endif // CONFIG_OPENTHREAD_BR_AUTO_START - -#if CONFIG_EXTERNAL_COEX_ENABLE - ot_br_external_coexist_init(); -#endif // CONFIG_EXTERNAL_COEX_ENABLE - ESP_ERROR_CHECK(mdns_init()); - ESP_ERROR_CHECK(mdns_hostname_set("esp-ot-br")); - - esp_openthread_lock_acquire(portMAX_DELAY); -#if CONFIG_OPENTHREAD_STATE_INDICATOR_ENABLE - ESP_ERROR_CHECK(esp_openthread_state_indicator_init(esp_openthread_get_instance())); -#endif -#if CONFIG_OPENTHREAD_BR_AUTO_START - if (wifi_or_ethernet_connected) { - esp_openthread_set_backbone_netif(get_example_netif()); - ESP_ERROR_CHECK(esp_openthread_border_router_init()); -#if CONFIG_EXAMPLE_CONNECT_WIFI - esp_ot_wifi_border_router_init_flag_set(true); -#endif - otOperationalDatasetTlvs dataset; - otError error = otDatasetGetActiveTlvs(esp_openthread_get_instance(), &dataset); - ESP_ERROR_CHECK(esp_openthread_auto_start((error == OT_ERROR_NONE) ? &dataset : NULL)); - } else { - ESP_LOGE(TAG, "Auto-start mode failed, please try to start manually"); - } -#endif // CONFIG_OPENTHREAD_BR_AUTO_START - esp_openthread_lock_release(); - vTaskDelete(NULL); -} - -void app_main(void) -{ - // Used eventfds: - // * netif - // * task queue - // * border router - size_t max_eventfd = 3; - -#if CONFIG_OPENTHREAD_RADIO_NATIVE || CONFIG_OPENTHREAD_RADIO_SPINEL_SPI - // * radio driver (A native radio device needs a eventfd for radio driver.) - // * SpiSpinelInterface (The Spi Spinel Interface needs a eventfd.) - // The above will not exist at the same time. - max_eventfd++; -#endif -#if CONFIG_OPENTHREAD_RADIO_TREL - // * TREL reception (The Thread Radio Encapsulation Link needs a eventfd for reception.) - max_eventfd++; -#endif - esp_vfs_eventfd_config_t eventfd_config = { - .max_fds = max_eventfd, - }; - ESP_ERROR_CHECK(esp_vfs_eventfd_register(&eventfd_config)); - ESP_ERROR_CHECK(nvs_flash_init()); - ESP_ERROR_CHECK(esp_netif_init()); - ESP_ERROR_CHECK(esp_event_loop_create_default()); -#if CONFIG_OPENTHREAD_SUPPORT_HW_RESET_RCP - esp_openthread_register_rcp_failure_handler(rcp_failure_hardware_reset_handler); -#endif - xTaskCreate(ot_task_worker, "ot_br_main", 8192, xTaskGetCurrentTaskHandle(), 5, NULL); - xTaskCreate(ot_br_init, "ot_br_init", 6144, NULL, 4, NULL); -} diff --git a/esp32-thread/border-router/main/esp_ot_config.h b/esp32-thread/border-router/main/esp_ot_config.h deleted file mode 100644 index b7372f49..00000000 --- a/esp32-thread/border-router/main/esp_ot_config.h +++ /dev/null @@ -1,140 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2021-2023 Espressif Systems (Shanghai) CO LTD - * - * SPDX-License-Identifier: CC0-1.0 - * - * OpenThread Border Router Example - * - * This example code is in the Public Domain (or CC0 licensed, at your option.) - * - * Unless required by applicable law or agreed to in writing, this - * software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR - * CONDITIONS OF ANY KIND, either express or implied. - */ - -#pragma once -#include "esp_coexist.h" -#include "esp_openthread_types.h" - -#if CONFIG_OPENTHREAD_RADIO_NATIVE -#define ESP_OPENTHREAD_DEFAULT_RADIO_CONFIG() \ - { \ - .radio_mode = RADIO_MODE_NATIVE, \ - } -#elif CONFIG_OPENTHREAD_RADIO_SPINEL_UART -#define ESP_OPENTHREAD_DEFAULT_RADIO_CONFIG() \ - { \ - .radio_mode = RADIO_MODE_UART_RCP, \ - .radio_uart_config = { \ - .port = 1, \ - .uart_config = \ - { \ - .baud_rate = 460800, \ - .data_bits = UART_DATA_8_BITS, \ - .parity = UART_PARITY_DISABLE, \ - .stop_bits = UART_STOP_BITS_1, \ - .flow_ctrl = UART_HW_FLOWCTRL_DISABLE, \ - .rx_flow_ctrl_thresh = 0, \ - .source_clk = UART_SCLK_DEFAULT, \ - }, \ - .rx_pin = 4, \ - .tx_pin = 5, \ - }, \ - } -#else -#define ESP_OPENTHREAD_DEFAULT_RADIO_CONFIG() \ - { \ - .radio_mode = RADIO_MODE_SPI_RCP, \ - .radio_spi_config = { \ - .host_device = SPI2_HOST, \ - .dma_channel = 2, \ - .spi_interface = \ - { \ - .mosi_io_num = 11, \ - .sclk_io_num = 12, \ - .miso_io_num = 13, \ - }, \ - .spi_device = \ - { \ - .cs_ena_pretrans = 2, \ - .input_delay_ns = 100, \ - .mode = 0, \ - .clock_speed_hz = 2500 * 1000, \ - .spics_io_num = 10, \ - .queue_size = 5, \ - }, \ - .intr_pin = 8, \ - }, \ - } -#endif // CONFIG_OPENTHREAD_RADIO_SPINEL_UART OR CONFIG_OPENTHREAD_RADIO_SPINEL_SPI - -#if CONFIG_IDF_TARGET_ESP32C2 && CONFIG_XTAL_FREQ_26 -#define HOST_BAUD_RATE 74880 -#else -#define HOST_BAUD_RATE 115200 -#endif - -#if CONFIG_OPENTHREAD_CONSOLE_TYPE_UART -#define ESP_OPENTHREAD_DEFAULT_HOST_CONFIG() \ - { \ - .host_connection_mode = HOST_CONNECTION_MODE_CLI_UART, \ - .host_uart_config = { \ - .port = 0, \ - .uart_config = \ - { \ - .baud_rate = HOST_BAUD_RATE, \ - .data_bits = UART_DATA_8_BITS, \ - .parity = UART_PARITY_DISABLE, \ - .stop_bits = UART_STOP_BITS_1, \ - .flow_ctrl = UART_HW_FLOWCTRL_DISABLE, \ - .rx_flow_ctrl_thresh = 0, \ - .source_clk = UART_SCLK_DEFAULT, \ - }, \ - .rx_pin = UART_PIN_NO_CHANGE, \ - .tx_pin = UART_PIN_NO_CHANGE, \ - }, \ - } -#elif CONFIG_OPENTHREAD_CONSOLE_TYPE_USB_SERIAL_JTAG -#define ESP_OPENTHREAD_DEFAULT_HOST_CONFIG() \ - { \ - .host_connection_mode = HOST_CONNECTION_MODE_CLI_USB, \ - .host_usb_config = USB_SERIAL_JTAG_DRIVER_CONFIG_DEFAULT(), \ - } -#endif - -#define ESP_OPENTHREAD_DEFAULT_PORT_CONFIG() \ - { \ - .storage_partition_name = "nvs", \ - .netif_queue_size = 10, \ - .task_queue_size = 10, \ - } - -#if CONFIG_EXTERNAL_COEX_ENABLE -#if CONFIG_EXTERNAL_COEX_WIRE_TYPE == EXTERNAL_COEXIST_WIRE_1 -#define ESP_OPENTHREAD_DEFAULT_EXTERNAL_COEX_CONFIG() \ - { \ - .request = CONFIG_EXTERNAL_COEX_REQUEST_PIN, \ - } -#elif CONFIG_EXTERNAL_COEX_WIRE_TYPE == EXTERNAL_COEXIST_WIRE_2 -#define ESP_OPENTHREAD_DEFAULT_EXTERNAL_COEX_CONFIG() \ - { \ - .request = CONFIG_EXTERNAL_COEX_REQUEST_PIN, \ - .grant = CONFIG_EXTERNAL_COEX_GRANT_PIN, \ - } -#elif CONFIG_EXTERNAL_COEX_WIRE_TYPE == EXTERNAL_COEXIST_WIRE_3 -#define ESP_OPENTHREAD_DEFAULT_EXTERNAL_COEX_CONFIG() \ - { \ - .request = CONFIG_EXTERNAL_COEX_REQUEST_PIN, \ - .priority = CONFIG_EXTERNAL_COEX_PRIORITY_PIN, \ - .grant = CONFIG_EXTERNAL_COEX_GRANT_PIN, \ - } -#elif CONFIG_EXTERNAL_COEX_WIRE_TYPE == EXTERNAL_COEXIST_WIRE_4 -#define ESP_OPENTHREAD_DEFAULT_EXTERNAL_COEX_CONFIG() \ - { \ - .request = CONFIG_EXTERNAL_COEX_REQUEST_PIN, \ - .priority = CONFIG_EXTERNAL_COEX_PRIORITY_PIN, \ - .grant = CONFIG_EXTERNAL_COEX_GRANT_PIN, \ - .tx_line = CONFIG_EXTERNAL_COEX_TX_LINE_PIN, \ - } -#endif -#endif // CONFIG_EXTERNAL_COEX_ENABLE diff --git a/esp32-thread/border-router/main/gps.c b/esp32-thread/border-router/main/gps.c deleted file mode 100644 index eebb16bf..00000000 --- a/esp32-thread/border-router/main/gps.c +++ /dev/null @@ -1,111 +0,0 @@ -#include "gps.h" -#include "driver/uart.h" -#include "esp_log.h" -#include "esp_http_client.h" -#include -#include - -#define GPS_UART_NUM UART_NUM_1 -#define GPS_TX_PIN 4 -#define GPS_RX_PIN 5 -#define BUF_SIZE 1024 - -static uint8_t gps_buffer[BUF_SIZE]; -void init_gps() { - const uart_config_t uart_config = { - .baud_rate = 9600, - .data_bits = UART_DATA_8_BITS, - .parity = UART_PARITY_DISABLE, - .stop_bits = UART_STOP_BITS_1, - .flow_ctrl = UART_HW_FLOWCTRL_DISABLE - }; - - uart_param_config(GPS_UART_NUM, &uart_config); - uart_set_pin(GPS_UART_NUM, GPS_TX_PIN, GPS_RX_PIN, UART_PIN_NO_CHANGE, UART_PIN_NO_CHANGE); - uart_driver_install(GPS_UART_NUM, BUF_SIZE, 0, 0, NULL, 0); -} - -// Convertit NMEA "ddmm.mmmm" + N/S/E/W en degrés décimaux -double nmea_to_decimal(const char* nmea_coord, const char direction) { - double raw = atof(nmea_coord); - int degrees = (int)(raw / 100); - double minutes = raw - (degrees * 100); - double decimal = degrees + minutes / 60.0; - if (direction == 'S' || direction == 'W') decimal = -decimal; - return decimal; -} - -char* gps_to_json(char* gps_data) { - static char json[128]; - - double latitude = 0.0; - double longitude = 0.0; - - if (gps_data && strncmp(gps_data, "$GPGGA,", 7) == 0) { - char* fields[15]; - int i = 0; - char gps_copy[BUF_SIZE]; - strncpy(gps_copy, gps_data, BUF_SIZE - 1); - gps_copy[BUF_SIZE - 1] = '\0'; - - char* token = strtok(gps_copy, ","); - while (token && i < 15) { - fields[i++] = token; - token = strtok(NULL, ","); - } - - if (i >= 6 && fields[2][0] != '\0' && fields[4][0] != '\0') { - latitude = nmea_to_decimal(fields[2], fields[3][0]); - longitude = nmea_to_decimal(fields[4], fields[5][0]); - } - } - - // Créer le JSON avec des valeurs valides même si GPS pas fixé - snprintf(json, sizeof(json), "{\"data\":{\"latitude\":%.6f,\"longitude\":%.6f}}", - latitude, longitude); - - return json; -} - - -char* read_gps() { - int len = uart_read_bytes(GPS_UART_NUM, gps_buffer, BUF_SIZE - 1, 100 / portTICK_PERIOD_MS); - if (len > 0) { - gps_buffer[len] = '\0'; - return (char*)gps_buffer; - } - return NULL; -} - -void send_gps_data(const char* server_url, const char* json) -{ - if (!json) return; - - ESP_LOGI(TAG, "Sending JSON: %s", json); - - esp_http_client_config_t config = { .url = server_url }; - esp_http_client_handle_t client = esp_http_client_init(&config); - esp_http_client_set_method(client, HTTP_METHOD_POST); - esp_http_client_set_post_field(client, json, strlen(json)); - esp_http_client_set_header(client, "Content-Type", "application/json"); - - esp_http_client_perform(client); - esp_http_client_cleanup(client); -} - -void send_position_task(void *pvParameters) -{ - const char* position_endpoint = "http://192.168.15.117:5000/devices/notify-position"; - - while (1) { - char* json; - char* raw_data = read_gps(); - if (raw_data) { - char* json = gps_to_json(raw_data); - send_gps_data(position_endpoint, json); - } else { - ESP_LOGI(TAG, "NO GPS DATA"); - } - vTaskDelay(25000 / portTICK_PERIOD_MS); - } -} \ No newline at end of file diff --git a/esp32-thread/border-router/main/gps.h b/esp32-thread/border-router/main/gps.h deleted file mode 100644 index 0cbb15c4..00000000 --- a/esp32-thread/border-router/main/gps.h +++ /dev/null @@ -1,11 +0,0 @@ -#include "driver/uart.h" - -#define GPS_UART_NUM UART_NUM_1 -#define GPS_TX_PIN 4 -#define GPS_RX_PIN 5 - -void init_gps(void); -char* read_gps(void); -char* gps_to_json(char* gps_data); -void send_gps_data(const char* server_url, const char* json); -void send_position_task(void *pvParameters); \ No newline at end of file diff --git a/esp32-thread/border-router/main/idf_component.yml b/esp32-thread/border-router/main/idf_component.yml deleted file mode 100644 index dff92910..00000000 --- a/esp32-thread/border-router/main/idf_component.yml +++ /dev/null @@ -1,12 +0,0 @@ -## IDF Component Manager Manifest File -dependencies: - espressif/esp_ot_cli_extension: - version: "~1.3.0" - espressif/mdns: "^1.0.3" - ## Required IDF version - idf: - version: ">=5.0" - protocol_examples_common: - path: ${IDF_PATH}/examples/common_components/protocol_examples_common - ot_led: - path: ${IDF_PATH}/examples/openthread/ot_common_components/ot_led diff --git a/esp32-thread/border-router/partitions.csv b/esp32-thread/border-router/partitions.csv deleted file mode 100644 index 376458ad..00000000 --- a/esp32-thread/border-router/partitions.csv +++ /dev/null @@ -1,5 +0,0 @@ -# Name, Type, SubType, Offset, Size, Flags -# Note: if you have increased the bootloader size, make sure to update the offsets to avoid overlap -nvs, data, nvs, 0x9000, 0x6000, -phy_init, data, phy, 0xf000, 0x1000, -factory, app, factory, 0x10000, 1900K, diff --git a/esp32-thread/border-router/sdkconfig.ci.br b/esp32-thread/border-router/sdkconfig.ci.br deleted file mode 100644 index ceb3c1a0..00000000 --- a/esp32-thread/border-router/sdkconfig.ci.br +++ /dev/null @@ -1,2 +0,0 @@ -CONFIG_OPENTHREAD_SUPPORT_HW_RESET_RCP=y -CONFIG_OPENTHREAD_HW_RESET_RCP_PIN=6 diff --git a/esp32-thread/border-router/sdkconfig.ci.br_libcheck b/esp32-thread/border-router/sdkconfig.ci.br_libcheck deleted file mode 100644 index 92e01739..00000000 --- a/esp32-thread/border-router/sdkconfig.ci.br_libcheck +++ /dev/null @@ -1 +0,0 @@ -CONFIG_OPENTHREAD_BR_LIB_CHECK=y diff --git a/esp32-thread/border-router/sdkconfig.ci.br_spi b/esp32-thread/border-router/sdkconfig.ci.br_spi deleted file mode 100644 index 7afe2861..00000000 --- a/esp32-thread/border-router/sdkconfig.ci.br_spi +++ /dev/null @@ -1,3 +0,0 @@ -CONFIG_OPENTHREAD_RADIO_SPINEL_SPI=y -CONFIG_OPENTHREAD_SUPPORT_HW_RESET_RCP=y -CONFIG_OPENTHREAD_HW_RESET_RCP_PIN=7 diff --git a/esp32-thread/border-router/sdkconfig.ci.ext_coex b/esp32-thread/border-router/sdkconfig.ci.ext_coex deleted file mode 100644 index 10e03f18..00000000 --- a/esp32-thread/border-router/sdkconfig.ci.ext_coex +++ /dev/null @@ -1,2 +0,0 @@ -CONFIG_EXTERNAL_COEX_ENABLE=y -CONFIG_ESP_COEX_SW_COEXIST_ENABLE=n diff --git a/esp32-thread/border-router/sdkconfig.ci.native_radio b/esp32-thread/border-router/sdkconfig.ci.native_radio deleted file mode 100644 index 4adc4205..00000000 --- a/esp32-thread/border-router/sdkconfig.ci.native_radio +++ /dev/null @@ -1,2 +0,0 @@ -CONFIG_OPENTHREAD_RADIO_NATIVE=y -CONFIG_ESP_COEX_SW_COEXIST_ENABLE=y diff --git a/esp32-thread/border-router/sdkconfig.ci.spinel_trel b/esp32-thread/border-router/sdkconfig.ci.spinel_trel deleted file mode 100644 index 58ad4725..00000000 --- a/esp32-thread/border-router/sdkconfig.ci.spinel_trel +++ /dev/null @@ -1 +0,0 @@ -CONFIG_OPENTHREAD_RADIO_TREL=y diff --git a/esp32-thread/border-router/sdkconfig.ci.spinel_trel_ext_coex b/esp32-thread/border-router/sdkconfig.ci.spinel_trel_ext_coex deleted file mode 100644 index 571881d7..00000000 --- a/esp32-thread/border-router/sdkconfig.ci.spinel_trel_ext_coex +++ /dev/null @@ -1,2 +0,0 @@ -CONFIG_OPENTHREAD_RADIO_TREL=y -CONFIG_EXTERNAL_COEX_ENABLE=y diff --git a/esp32-thread/border-router/sdkconfig.ci.spiram b/esp32-thread/border-router/sdkconfig.ci.spiram deleted file mode 100644 index f4b071dd..00000000 --- a/esp32-thread/border-router/sdkconfig.ci.spiram +++ /dev/null @@ -1,6 +0,0 @@ -CONFIG_IDF_TARGET="esp32s3" -CONFIG_IDF_TARGET_ESP32S3=y -CONFIG_SPIRAM=y -CONFIG_SPIRAM_USE_MALLOC=y -CONFIG_OPENTHREAD_PLATFORM_MALLOC_CAP_SPIRAM=y -CONFIG_OPENTHREAD_PLATFORM_MSGPOOL_MANAGEMENT=y diff --git a/esp32-thread/border-router/sdkconfig.defaults b/esp32-thread/border-router/sdkconfig.defaults deleted file mode 100644 index 2b17031c..00000000 --- a/esp32-thread/border-router/sdkconfig.defaults +++ /dev/null @@ -1,57 +0,0 @@ -# -# Partition Table -# -CONFIG_PARTITION_TABLE_CUSTOM=y -CONFIG_PARTITION_TABLE_CUSTOM_FILENAME="partitions.csv" -CONFIG_PARTITION_TABLE_FILENAME="partitions.csv" -CONFIG_PARTITION_TABLE_OFFSET=0x8000 -CONFIG_PARTITION_TABLE_MD5=y -# end of Partition Table - -# -# mbedTLS -# -CONFIG_MBEDTLS_CMAC_C=y -CONFIG_MBEDTLS_SSL_PROTO_DTLS=y -CONFIG_MBEDTLS_KEY_EXCHANGE_ECJPAKE=y -# end of TLS Key Exchange Methods - -CONFIG_MBEDTLS_ECJPAKE_C=y -# end of mbedTLS - -# -# OpenThread -# -CONFIG_OPENTHREAD_ENABLED=y -CONFIG_OPENTHREAD_BORDER_ROUTER=y -CONFIG_OPENTHREAD_RADIO_SPINEL_UART=y -# end of OpenThread - -# -# lwIP -# -CONFIG_LWIP_IPV6_FORWARD=y -CONFIG_LWIP_IPV6_NUM_ADDRESSES=12 -CONFIG_LWIP_MULTICAST_PING=y -CONFIG_LWIP_NETIF_STATUS_CALLBACK=y -CONFIG_LWIP_HOOK_IP6_ROUTE_DEFAULT=y -CONFIG_LWIP_HOOK_ND6_GET_GW_DEFAULT=y -CONFIG_LWIP_HOOK_IP6_INPUT_CUSTOM=y -CONFIG_LWIP_HOOK_IP6_SELECT_SRC_ADDR_CUSTOM=y -CONFIG_LWIP_IPV6_AUTOCONFIG=y -# end of lwIP - -# -# mDNS -# -CONFIG_MDNS_MULTIPLE_INSTANCE=y -# end of mDNS - -# Example connect -CONFIG_EXAMPLE_CONNECT_THREAD=n - -# -# ESP System Settings -# -CONFIG_ESP_SYSTEM_EVENT_TASK_STACK_SIZE=3584 -# end of ESP System Settings diff --git a/esp32-thread/border-router/sdkconfig.defaults.esp32p4 b/esp32-thread/border-router/sdkconfig.defaults.esp32p4 deleted file mode 100644 index 0bf7855b..00000000 --- a/esp32-thread/border-router/sdkconfig.defaults.esp32p4 +++ /dev/null @@ -1,6 +0,0 @@ -# Enable BR auto start for Ethernet builds -CONFIG_OPENTHREAD_BR_AUTO_START=y - -# Enable PPP support as a workaround to ensure LWIP thread-lib compatibility for Ethernet builds -CONFIG_LWIP_PPP_SUPPORT=y -CONFIG_LWIP_PPP_SERVER_SUPPORT=y diff --git a/esp32-thread/border-router/sdkconfig.defaults.esp32s2 b/esp32-thread/border-router/sdkconfig.defaults.esp32s2 deleted file mode 100644 index 726bbbe6..00000000 --- a/esp32-thread/border-router/sdkconfig.defaults.esp32s2 +++ /dev/null @@ -1,12 +0,0 @@ -# -# ESP PSRAM -# -CONFIG_SPIRAM=y -CONFIG_SPIRAM_ALLOW_BSS_SEG_EXTERNAL_MEMORY=y -# end of ESP PSRAM - -# -# OpenThread -# -CONFIG_OPENTHREAD_PLATFORM_MSGPOOL_MANAGEMENT=y -# end of OpenThread diff --git a/esp32-thread/open-thread-client/.vscode/settings.json b/esp32-thread/open-thread-client/.vscode/settings.json index 53d330e0..5810521c 100644 --- a/esp32-thread/open-thread-client/.vscode/settings.json +++ b/esp32-thread/open-thread-client/.vscode/settings.json @@ -5,7 +5,7 @@ "idf.openOcdConfigs": [ "board/esp32h2-builtin.cfg" ], - "idf.portWin": "COM3", + "idf.portWin": "COM4", "idf.toolsPathWin": "C:\\Users\\Laurent\\.espressif", "idf.customExtraVars": { "IDF_TARGET": "esp32h2" diff --git a/esp32-thread/open-thread-rcp/.vscode/settings.json b/esp32-thread/open-thread-rcp/.vscode/settings.json index f6acec2a..54a6883a 100644 --- a/esp32-thread/open-thread-rcp/.vscode/settings.json +++ b/esp32-thread/open-thread-rcp/.vscode/settings.json @@ -5,7 +5,7 @@ "idf.openOcdConfigs": [ "board/esp32h2-builtin.cfg" ], - "idf.portWin": "COM3", + "idf.portWin": "COM4", "idf.toolsPathWin": "C:\\Users\\Laurent\\.espressif", "idf.customExtraVars": { "IDF_TARGET": "esp32h2" diff --git a/esp32-thread/open-thread-rcp/build/.bin_timestamp b/esp32-thread/open-thread-rcp/build/.bin_timestamp deleted file mode 100644 index 69a1d212..00000000 --- a/esp32-thread/open-thread-rcp/build/.bin_timestamp +++ /dev/null @@ -1 +0,0 @@ -eec7bc1d5e507ccf5fcbb1c769971425 C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/open-thread-rcp.bin diff --git a/esp32-thread/open-thread-rcp/build/.ninja_deps b/esp32-thread/open-thread-rcp/build/.ninja_deps deleted file mode 100644 index 0c4aeb4e..00000000 Binary files a/esp32-thread/open-thread-rcp/build/.ninja_deps and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/.ninja_log b/esp32-thread/open-thread-rcp/build/.ninja_log deleted file mode 100644 index 596ee67e..00000000 --- a/esp32-thread/open-thread-rcp/build/.ninja_log +++ /dev/null @@ -1,990 +0,0 @@ -# ninja log v6 -60 95 7882180342468308 project_elf_src_esp32h2.c dfba22c40699470 -60 95 7882180342468308 C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/project_elf_src_esp32h2.c dfba22c40699470 -40 103 7882180342546433 esp-idf/esp_system/ld/memory.ld 74c776c69d828fb5 -40 103 7882180342546433 C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/ld/memory.ld 74c776c69d828fb5 -46 112 7882180342636619 esp-idf/esp_system/ld/sections.ld.in 6ffbac5bae3c6b0c -46 112 7882180342636619 C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/ld/sections.ld.in 6ffbac5bae3c6b0c -119 508 7882180342787262 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/esp_openthread_lock.c.obj 873584ea50538123 -157 516 7882180343157194 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/port/esp_openthread_settings.c.obj 758e6ae92e873f1b -194 521 7882180343528806 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/examples/platforms/utils/settings_ram.c.obj 5890f8c82c92a134 -189 527 7882180343486013 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/examples/platforms/utils/otns_utils.cpp.obj 6707b1ca97c8bf63 -174 553 7882180343332796 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/examples/platforms/utils/debug_uart.c.obj 5faa4ff09879be58 -179 558 7882180343383054 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/examples/platforms/utils/link_metrics.cpp.obj 99f344fdbb80b5 -136 563 7882180342952832 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/port/esp_openthread_alarm.c.obj 2f46ddad2b0853ec -126 592 7882180342857393 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/esp_openthread_netif_glue.c.obj b50b797f2d3425fa -166 625 7882180343247502 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/port/esp_openthread_uart.c.obj 93fd71b07e83073b -161 655 7882180343202314 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/port/esp_openthread_spi_slave.c.obj 8f422b3413dec61f -54 662 7882180342762173 partition_table/partition-table.bin d2ff6340618c5693 -54 662 7882180342762173 C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/partition_table/partition-table.bin d2ff6340618c5693 -123 668 7882180342817401 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/esp_openthread_lwip_netif.c.obj e1142e7e0cccddea -116 677 7882180342752183 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/esp_openthread_cli.c.obj d02f2618be891f50 -148 684 7882180343072052 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/port/esp_openthread_misc.c.obj 600e84ef0d506089 -133 691 7882180342922832 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/esp_openthread_task_queue.c.obj a512a2379ca71f55 -140 698 7882180342996916 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/port/esp_openthread_logging.c.obj 29cbe4ad53b3ecb1 -144 704 7882180343031984 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/port/esp_openthread_memory.c.obj de78abdefe941bc0 -113 710 7882180342721694 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/esp_openthread.cpp.obj 93442a44ec95fd77 -184 717 7882180343440945 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/examples/platforms/utils/mac_frame.cpp.obj 8669e64ee3e392eb -152 726 7882180343117206 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/port/esp_openthread_radio.c.obj 56066295c12b45a7 -553 732 7882180347121882 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/border_router_api.cpp.obj 959a5b9d1ab25054 -522 747 7882180346807133 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/ble_secure_api.cpp.obj a624878d135190ba -559 753 7882180347181867 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/border_routing_api.cpp.obj a98be96031702ca1 -564 758 7882180347235279 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/channel_manager_api.cpp.obj 67ca07735d3112d3 -516 763 7882180346754533 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/backbone_router_ftd_api.cpp.obj a66a9c14609144b5 -510 768 7882180346689261 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/examples/platforms/utils/uart_rtt.c.obj dd9ca725b4cdef83 -129 800 7882180342882505 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/esp_openthread_platform.cpp.obj 211aa61e2fd58d4d -170 820 7882180343292677 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/port/esp_openthread_udp.c.obj d26d91d716e64e24 -593 827 7882180347524881 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/channel_monitor_api.cpp.obj 8e3d0709c529e0e1 -527 873 7882180346867140 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/border_agent_api.cpp.obj 3efe9e4f44eff6f7 -662 879 7882180348212530 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/commissioner_api.cpp.obj 7ab2c4b747ddb7ea -692 895 7882180348506540 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/diags_api.cpp.obj e797478d4b982be3 -684 921 7882180348431308 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/dataset_updater_api.cpp.obj d8ca54465b72b6d7 -626 935 7882180347847060 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/coap_api.cpp.obj 3b66e3d5e834a0c4 -704 941 7882180348638112 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/error_api.cpp.obj 990414e45a4920e7 -656 947 7882180348146514 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/coap_secure_api.cpp.obj 33fc5261b5d76f73 -710 952 7882180348693233 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/history_tracker_api.cpp.obj 12b48bf4cb909d20 -677 958 7882180348355985 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/dataset_ftd_api.cpp.obj 336eae867a9f0a07 -726 983 7882180348857283 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/jam_detection_api.cpp.obj 3389f89604e0d737 -732 1005 7882180348912447 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/joiner_api.cpp.obj e0ff408ece4c05e1 -698 1060 7882180348572899 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/dns_server_api.cpp.obj f3b4590b257f559b -801 1070 7882180349598410 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/netdata_publisher_api.cpp.obj f7be9ffc3a4954fb -768 1075 7882180349270928 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/multi_radio_api.cpp.obj 3b7e9208abd26ff -763 1089 7882180349220951 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/mesh_diag_api.cpp.obj c9ea28b28732ba17 -758 1094 7882180349170617 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/mdns_api.cpp.obj aa1ac196174cf346 -874 1128 7882180350326493 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/random_noncrypto_api.cpp.obj 5f183da9e4bb9867 -880 1141 7882180350391643 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/server_api.cpp.obj 91d27628b782bec6 -983 1220 7882180351430629 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/thread_ftd_api.cpp.obj af33b43c74085756 -748 1229 7882180349072780 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/link_raw_api.cpp.obj c2c4e2fdd770457b -958 1265 7882180351167164 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/thread_api.cpp.obj 320ca1869685e99 -821 1286 7882180349795955 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/ping_sender_api.cpp.obj 5cb3fc56bde9bee9 -717 1293 7882180348761976 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/instance_api.cpp.obj 4c192e22fa62ab3a -669 1300 7882180348282640 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/crypto_api.cpp.obj 771b9e3e6df8465d -753 1305 7882180349120624 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/logging_api.cpp.obj 2ba4bf2a80f8402f -941 1311 7882180351001637 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/srp_server_api.cpp.obj 9fdd3f0a7e7e0698 -1007 1317 7882180351671046 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/trel_api.cpp.obj ca9d40df8e2691a4 -1075 1322 7882180352342260 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/binary_search.cpp.obj 4ae4597d53316a84 -895 1328 7882180350542498 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/sntp_api.cpp.obj e49ffb70d4a78a88 -1060 1334 7882180352195261 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/verhoeff_checksum_api.cpp.obj 86f3fab685f3dd6a -1094 1340 7882180352532745 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/data.cpp.obj 501f5a4b210d3451 -947 1373 7882180351061708 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/tasklet_api.cpp.obj af3f8f59cef85c30 -936 1378 7882180350946408 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/srp_client_buffers_api.cpp.obj 982f79c9654a1225 -1128 1427 7882180352865463 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/error.cpp.obj f1c162177494910c -1070 1442 7882180352292192 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/appender.cpp.obj c999aa8befd502df -921 1447 7882180350806064 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/srp_client_api.cpp.obj dd19b1f6b8fc4a47 -827 1471 7882180349865493 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/radio_stats_api.cpp.obj 216214e34600238e -1220 1511 7882180353794191 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/frame_data.cpp.obj a37962fec8889d14 -1089 1541 7882180352482614 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/crc.cpp.obj 23ccdc8feafcb853 -1300 1604 7882180354588717 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/preference.cpp.obj 67aeab6738f268d5 -1305 1614 7882180354648771 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/random.cpp.obj eadcd1b0d80c3796 -1341 1621 7882180354998314 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/uptime.cpp.obj f54cc4764e82df56 -1286 1638 7882180354450605 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/message.cpp.obj 11567ed99b52c4b4 -1234 1657 7882180353929453 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/heap_data.cpp.obj 99cf41d5807d8c20 -1141 1703 7882180353005855 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/frame_builder.cpp.obj f95f3aed359d6159 -1317 1712 7882180354765687 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/tasklet.cpp.obj ce8472d0b60d9af2 -953 1723 7882180351116948 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/tcp_ext_api.cpp.obj 7ec90e55afeb7534 -1335 1730 7882180354936191 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/trickle_timer.cpp.obj 2aaf1083ca8712de -1311 1736 7882180354704056 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/string.cpp.obj 82b67ffeb3d0cd58 -1265 1742 7882180354240207 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/log.cpp.obj 82884c8ee5e1a665 -1293 1770 7882180354523668 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/offset_range.cpp.obj 629c210fe89887f5 -1379 1798 7882180355380764 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/crypto/aes_ecb.cpp.obj 19ff21926638aa7 -1541 1879 7882180357003881 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/crypto/storage.cpp.obj bb892ebfab4ad7a8 -1322 1903 7882180354810950 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/timer.cpp.obj 45f6172c3034be3c -1604 1922 7882180357630222 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/diags/factory_diags.cpp.obj 76e65b43371a1b13 -1442 1934 7882180356017522 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/crypto/hkdf_sha256.cpp.obj edb493548b3f77a5 -1328 1939 7882180354870948 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/tlvs.cpp.obj f1b88d558db21fef -1447 1953 7882180356067517 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/crypto/hmac_sha256.cpp.obj cbf68b20a7798d -1373 1984 7882180355324479 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/crypto/aes_ccm.cpp.obj 643972fd88196e02 -1657 1993 7882180358161926 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/mac/mac_header_ie.cpp.obj cc8a781e35024445 -1771 1999 7882180359300522 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/radio/ble_secure.cpp.obj 3902798deca107d0 -1742 2005 7882180359014683 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/mac/wakeup_tx_scheduler.cpp.obj c082bcfe2d711d24 -1511 2034 7882180356695677 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/crypto/sha256.cpp.obj 50fc8ca9ebf292d4 -1703 2052 7882180358618606 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/mac/mac_types.cpp.obj 717909a675fb0db2 -1730 2071 7882180358899361 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/mac/sub_mac_csl_receiver.cpp.obj bb70d532ac3f9eda -1615 2077 7882180357735801 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/instance/instance.cpp.obj 7b501882f67e6230 -1427 2086 7882180355861918 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/crypto/crypto_platform.cpp.obj 47105cd08c73c273 -1471 2095 7882180356310347 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/crypto/mbedtls.cpp.obj 7037f2014b892757 -1736 2113 7882180358959421 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/mac/sub_mac_wed.cpp.obj 8d40db25a67260a9 -1621 2178 7882180357806248 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/mac/link_raw.cpp.obj d27824add4c8da06 -1922 2192 7882180360815160 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/radio/trel_interface.cpp.obj afdef31d28366bc3 -1724 2198 7882180358834211 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/mac/sub_mac_callbacks.cpp.obj 5e169afbb196f7f8 -1798 2216 7882180359581419 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/radio/radio.cpp.obj 1285ab37cba63780 -2005 2261 7882180361637998 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/child_table.cpp.obj 632b500148dd5e4c -1955 2267 7882180361186502 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/radio/trel_peer.cpp.obj c6ea084972927767 -1939 2312 7882180360980835 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/radio/trel_packet.cpp.obj c95ae7567e6fc647 -1984 2318 7882180361432333 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/radio/trel_peer_discoverer.cpp.obj 4a3f606f529b67f -1994 2323 7882180361532811 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/anycast_locator.cpp.obj 9eb4d1fa90596132 -2052 2330 7882180362109180 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/link_metrics_types.cpp.obj 56716254631911c6 -1934 2336 7882180360930437 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/radio/trel_link.cpp.obj 35d5a40d7402b5c4 -2034 2343 7882180361933725 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/dua_manager.cpp.obj a32e41b22a607354 -2113 2388 7882180362724958 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/network_data_local.cpp.obj 38de91a553a4cda1 -2095 2421 7882180362545113 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/mlr_manager.cpp.obj 2cf87eca380f83d6 -1879 2428 7882180360384124 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/radio/radio_callbacks.cpp.obj db606cec35bbdef4 -1903 2434 7882180360624788 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/radio/radio_platform.cpp.obj 85d45e43e1b17251 -2192 2440 7882180363516965 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/network_data_publisher.cpp.obj 95271e31f0515147 -2178 2446 7882180363366509 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/network_data_notifier.cpp.obj 2822ae2a2d2fc84 -1713 2452 7882180358718999 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/mac/sub_mac.cpp.obj c395175c72bc5d9a -1638 2473 7882180357971486 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/mac/mac_frame.cpp.obj 1be97c235fd26957 -2087 2479 7882180362459869 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/mle_tlvs.cpp.obj 424c3dd3e1ac31c0 -2312 2510 7882180364707600 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/router_table.cpp.obj 6cab731752efaf95 -2343 2593 7882180365024039 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/channel_manager.cpp.obj 8e04247c5fc91b05 -1999 2599 7882180361587857 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/child.cpp.obj 2197fdb4078818b -2071 2605 7882180362304654 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/link_quality.cpp.obj dd91ebaf34a676cc -2261 2611 7882180364206352 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/radio_selector.cpp.obj 8c6a2e2705b36b06 -2336 2617 7882180364948753 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/version.cpp.obj e481bb29141a8d91 -2324 2622 7882180364832695 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/thread_link_info.cpp.obj 8bfd74fb5acb0702 -2199 2627 7882180363582024 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/network_data_tlvs.cpp.obj 9649124d2674734b -2318 2633 7882180364767566 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/src_match_controller.cpp.obj 7ad7318a7ab4de26 -2394 2639 7882180365624959 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/channel_monitor.cpp.obj 8e5d798aa6e8d988 -2077 2646 7882180362364655 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/mle_ftd.cpp.obj c3d750c49aa96a31 -2452 2653 7882180366112818 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/mesh_diag.cpp.obj 54b305788759dbdb -2434 2678 7882180365935556 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/history_tracker.cpp.obj e42c456d5c9ff88d -2440 2699 7882180365995843 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/jam_detector.cpp.obj aeb29a8265f1ef3f -2623 2720 7882180367815379 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/lib/spinel/example_vendor_hook.cpp.obj 25f5f9a05747b104 -2422 2729 7882180365811318 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/flash.cpp.obj 126957e1001e12e6 -2428 2762 7882180365870328 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/heap.cpp.obj 68b53d54ea95ca2f -2474 2771 7882180366323956 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/otns.cpp.obj c9fcf397d6dc9842 -2446 2777 7882180366061009 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/link_metrics_manager.cpp.obj 95c0ac9a7904fa92 -2510 2783 7882180366689699 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/ping_sender.cpp.obj 9383902001028ed -2600 2795 7882180367586985 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/slaac_address.cpp.obj 362e989e311b3648 -2593 2841 7882180367521893 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/power_calibration.cpp.obj 7f1b965d20ab0f5a -2330 2846 7882180364893524 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/uri_paths.cpp.obj ecaf40daa12702a5 -2605 2853 7882180367647121 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/srp_client_buffers.cpp.obj e2414356c4868c4c -2267 2922 7882180364261512 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/router.cpp.obj 2f7e5813287b8db9 -2617 2938 7882180367762350 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/lib/hdlc/hdlc.cpp.obj cea82587ee37d936 -2771 2943 7882180369308827 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/ncp/example_vendor_hook.cpp.obj a419d5049cd391bb -2720 2948 7882180368794001 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/lib/spinel/spinel_helper.cpp.obj 7f7aac188ba6b199 -2216 2954 7882180363757357 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/network_diagnostic_tlvs.cpp.obj a0100b05d528208f -2611 2960 7882180367702271 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/verhoeff_checksum.cpp.obj a724bafafa9ae109 -2479 2965 7882180366382915 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/parse_cmdline.cpp.obj 1919701e30f7802 -2653 3062 7882180368116033 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/lib/spinel/spinel_decoder.cpp.obj 2d7ca4f77f128349 -2646 3101 7882180368050839 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/lib/spinel/spinel_buffer.cpp.obj eaf62f88b575d874 -2699 3176 7882180368583474 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/lib/spinel/spinel_encoder.cpp.obj a7eca6b1a2b9bf85 -2762 3191 7882180369213617 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/ncp/changed_props_set.cpp.obj eaf13c9dbd80b4ee -2729 3197 7882180368884651 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/lib/spinel/spinel_prop_codec.cpp.obj 9363780916136682 -2639 3203 7882180367990689 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/lib/spinel/spinel.c.obj d5727639c3b13996 -2628 3209 7882180367865386 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/lib/spinel/logger.cpp.obj b152157b0117dedf -2678 3215 7882180368382442 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/lib/spinel/spinel_driver.cpp.obj d40c72a1896444a4 -2943 3223 7882180371024467 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/examples/apps/ncp/ncp.c.obj fb3d4b28ba3b6a0 -2795 3303 7882180369547142 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/ncp/ncp_base_dispatcher.cpp.obj 4b7ed0ede71cad40 -2841 3317 7882180370002644 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/ncp/ncp_base_ftd.cpp.obj ca0c0979287d9a9c -2777 3324 7882180369368859 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/ncp/multipan_platform.cpp.obj 1c923b256807a849 -2965 3331 7882180371244172 esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_ack.c.obj b5b13eaa57f6e588 -3101 3374 7882180372604525 esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_event.c.obj d6750dbdad67d5f -2847 3381 7882180370062706 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/ncp/ncp_base_mtd.cpp.obj b66c2d17081aa497 -2960 3389 7882180371190040 esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/esp_ieee802154.c.obj a7513b419401f743 -2938 3417 7882180370974168 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/ncp/ncp_spi.cpp.obj 21530cdac627cf17 -2949 3428 7882180371084818 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/ncp/esp_openthread_ncp.cpp.obj 46dadabca418f523 -3197 3440 7882180373560354 esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_util.c.obj 72aa5d32de10f872 -3203 3446 7882180373625578 esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_sec.c.obj e48e9f14488189bb -2922 3465 7882180370818123 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/ncp/ncp_hdlc.cpp.obj 87db191fc73249e8 -3176 3473 7882180373358566 esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_frame.c.obj faa1a02b45240768 -2853 3479 7882180370127903 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/ncp/ncp_base_radio.cpp.obj a2573a586d525060 -3223 3503 7882180373821389 esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/lib_printf.c.obj 833cc86d2ed41188 -3216 3547 7882180373756161 esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_override.c.obj 99a72495d48af05 -3191 3554 7882180373505678 esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_pib.c.obj 91b4a8266ec45b57 -3209 3562 7882180373680630 esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_timer.c.obj b288f507e451493b -2954 3576 7882180371134980 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/ncp/esp_openthread_ncp_hdlc.cpp.obj 4b368c00418eb749 -2633 3598 7882180367930579 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/lib/spinel/radio_spinel.cpp.obj 536ea5b97409d04b -3324 3614 7882180374834057 esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/btbb_init.c.obj e65c9e0e27ea870b -3062 3637 7882180372214693 esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_dev.c.obj 3036367a5dbf4d8e -3303 3643 7882180374625361 esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_common.c.obj edd4b450b4bceae8 -3317 3648 7882180374760731 esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_init_esp32hxx.c.obj 3da4ea266989b008 -3441 3659 7882180375996175 esp-idf/console/CMakeFiles/__idf_console.dir/split_argv.c.obj deb2a03c6c5e8ad1 -3381 3668 7882180375404941 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default_ap.c.obj 8b6330a574dc85b3 -3374 3682 7882180375333497 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_netif.c.obj 47a64eaf8cb8f87d -3428 3710 7882180375875199 esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_repl_internal.c.obj afc3c36b3b69fa1c -3331 3738 7882180374907276 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default.c.obj 80d0a1df75f797ec -3503 3747 7882180376618772 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dbl.c.obj cdab4878633cb638 -3418 3768 7882180375766677 esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_common.c.obj b02722f7ddeb66fb -3474 3773 7882180376328221 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_cmd.c.obj d6c8a02a345e3773 -2783 3798 7882180369424122 esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/ncp/ncp_base.cpp.obj f153bc0cb40e2fa8 -3465 3808 7882180376237812 esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_repl_chip.c.obj 4f39375ad1b0c6fb -3547 3813 7882180377059042 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dstr.c.obj 3960f4783ca5fb32 -3563 3821 7882180377219362 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_file.c.obj 7d1d895612c9f395 -3598 3836 7882180377569728 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_int.c.obj 43874d8a281779e3 -3554 3850 7882180377134221 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_end.c.obj c6d3d63ec0bdcea9 -3479 3858 7882180376383288 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_date.c.obj f592098e10fc83b5 -3637 3874 7882180377964374 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rem.c.obj e08b5046b39dfbca -3614 3885 7882180377727321 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_lit.c.obj d4d312d3086e64d2 -3649 3890 7882180378069577 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_str.c.obj dd7a33f30b4b7d6a -3389 3894 7882180375483768 esp-idf/console/CMakeFiles/__idf_console.dir/commands.c.obj c0a3203293375651 -3659 3951 7882180378182248 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_utils.c.obj 47b9de5b3e48e80f -3576 3989 7882180377355156 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_hashtable.c.obj 4ba4dbce305340eb -3682 4157 7882180378413011 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_legacy.c.obj d64aa270a0535289 -3668 4185 7882180378272430 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/argtable3.c.obj 5021e3d4efa62d9c -3447 4190 7882180376056263 esp-idf/console/CMakeFiles/__idf_console.dir/linenoise/linenoise.c.obj 2e70f38dc57c31f5 -3643 4214 7882180378019608 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rex.c.obj a863ab1e74634a68 -3858 4252 7882180380166068 esp-idf/esp_driver_twai/CMakeFiles/__idf_esp_driver_twai.dir/esp_twai.c.obj 36635499c296659c -3821 4261 7882180379807013 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/sigma_delta_legacy.c.obj ed917c0365bb0c22 -3738 4296 7882180378970236 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/timer_legacy.c.obj 76c1e82ce6eb783c -3710 4301 7882180378697028 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_dma_legacy.c.obj 272222cf1a964ef7 -3836 4344 7882180379951821 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rtc_temperature_legacy.c.obj 2803e9f1fabb44d3 -3885 4368 7882180380444490 esp-idf/esp_driver_parlio/CMakeFiles/__idf_esp_driver_parlio.dir/src/parlio_common.c.obj 1e2971a50f1f71ee -3851 4452 7882180380100931 esp-idf/driver/CMakeFiles/__idf_driver.dir/twai/twai.c.obj 3fe9644db020a0c7 -3808 4478 7882180379671303 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/pcnt_legacy.c.obj 132f22d9823cfcc8 -3874 4489 7882180380333986 esp-idf/esp_driver_twai/CMakeFiles/__idf_esp_driver_twai.dir/esp_twai_onchip.c.obj b0b15b1d99a989e6 -3890 4591 7882180380489541 esp-idf/esp_driver_parlio/CMakeFiles/__idf_esp_driver_parlio.dir/src/parlio_tx.c.obj 7629c93fb586fe3a -3895 4598 7882180380542033 esp-idf/esp_driver_parlio/CMakeFiles/__idf_esp_driver_parlio.dir/src/parlio_rx.c.obj 17abe336a0c41431 -4252 4626 7882180384114506 esp-idf/esp_driver_tsens/CMakeFiles/__idf_esp_driver_tsens.dir/src/temperature_sensor_etm.c.obj 6f75ee75448c316c -3747 4635 7882180379065908 esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c/i2c.c.obj 829a18e3602f32b2 -4157 4645 7882180383164185 esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_common.c.obj 8ad5f850fe55e374 -3768 4656 7882180379270127 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/i2s_legacy.c.obj 990d0e17aff893d1 -4190 4662 7882180383494044 esp-idf/esp_driver_sdm/CMakeFiles/__idf_esp_driver_sdm.dir/src/sdm.c.obj 3816554489780edc -3773 4678 7882180379325392 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/mcpwm_legacy.c.obj 2172f5b348c2cb57 -4296 4715 7882180384554046 esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder.c.obj bc3282d3a8ec7832 -4301 4731 7882180384607493 esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder_bytes.c.obj b889036352e3b80b -4185 4736 7882180383438822 esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_slave.c.obj 3d05d21ff2de9fb9 -4215 4742 7882180383734579 esp-idf/esp_driver_tsens/CMakeFiles/__idf_esp_driver_tsens.dir/src/temperature_sensor.c.obj 79d436836fb855d0 -4490 4748 7882180386531819 esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_crc.c.obj 42023090472d575 -4344 4753 7882180385040550 esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder_copy.c.obj cb9de15e0e209449 -4267 4811 7882180384260067 esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_common.c.obj e93fac2579438b6a -3813 4887 7882180379721806 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rmt_legacy.c.obj cca3d4a1b9783fcc -3990 4894 7882180381490882 esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_master.c.obj 936650d9ff7d8d30 -4368 4923 7882180385274136 esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder_simple.c.obj 7bc0572e199ed190 -3798 4951 7882180379566067 esp-idf/openthread/libopenthread.a bb6c14758970db82 -4715 4963 7882180388744006 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sd_pwr_ctrl/sd_pwr_ctrl.c.obj fd0074ad714fa0f7 -4598 5022 7882180387573201 esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_transaction.c.obj ed7bbe78df9af13f -4645 5038 7882180388043391 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_init.c.obj f82bde35fac787d6 -3951 5044 7882180381104376 esp-idf/esp_driver_ledc/CMakeFiles/__idf_esp_driver_ledc.dir/src/ledc.c.obj 80bdfa90f03aca6b -4663 5088 7882180388213909 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_mmc.c.obj b2379a0485dc877f -4453 5093 7882180386138903 esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_rx.c.obj 22e6545785cd73d2 -4635 5135 7882180387943108 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_common.c.obj c5772c506c000864 -4811 5190 7882180389703800 esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_platform.c.obj 508f6d73611a3b9e -4482 5195 7882180386437379 esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_tx.c.obj 5545b6be24035fe9 -4657 5201 7882180388158691 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_io.c.obj 8614f59e91b9006a -4626 5206 7882180387849072 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_cmd.c.obj 11491b464fda4709 -4736 5262 7882180388956378 esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_std.c.obj 2bddd8c4aa24c026 -4591 5268 7882180387503185 esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_host.c.obj b0ddbf3e80719cc4 -4753 5278 7882180389121486 esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_etm.c.obj 161eb67250cc26e -4742 5285 7882180389014371 esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_pdm.c.obj 3f16828ab523ce8b -4951 5291 7882180391108181 esp-idf/ieee802154/libieee802154.a 9758f56837319648 -4678 5321 7882180388369764 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_sd.c.obj 511aedceb5a8f14a -4748 5327 7882180389066249 esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_tdm.c.obj c82f8018d44acb38 -4924 5352 7882180390832713 esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_cmpr.c.obj 27e2966a213e5ae6 -4964 5357 7882180391224767 esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_com.c.obj c92b5a48b5d13bec -4888 5362 7882180390471234 esp-idf/esp_driver_ana_cmpr/CMakeFiles/__idf_esp_driver_ana_cmpr.dir/ana_cmpr.c.obj 5e4893a85fc2e2be -5136 5389 7882180392952009 esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_etm.c.obj 48bce87f7d786a14 -5022 5438 7882180391810632 esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_fault.c.obj d6e4e139a800ee1f -4731 5451 7882180388906309 esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_common.c.obj 2db4d3417151c3d6 -4894 5456 7882180390531401 esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_cap.c.obj e2520c914315bf61 -5045 5466 7882180392041987 esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_oper.c.obj d338a522253bde0e -5088 5547 7882180392474910 esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_sync.c.obj 1f155c15d66c4005 -5094 5561 7882180392530145 esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_timer.c.obj 2f5c226a19ed5319 -5039 5619 7882180391981700 esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_gen.c.obj 92e9d875e6b85958 -5278 5639 7882180394368948 esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer_etm.c.obj a153b8917c87c53 -5352 5645 7882180395110590 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_defaults.c.obj 252b012223a64655 -5268 5660 7882180394273777 esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer_common.c.obj 7d44dd25cbff82d3 -5321 5665 7882180394804808 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_handlers.c.obj a1418ace3d34d49 -5308 5670 7882180394714384 esp-idf/esp_phy/libesp_phy.a abb3db7ca7225b7f -5344 5687 7882180395035373 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_objects.c.obj 149fd8fdfdd865a4 -5389 5720 7882180395485391 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip_defaults.c.obj 385370df3001655b -5262 5729 7882180394213773 esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer.c.obj dbf4afc098155a8 -5190 5756 7882180393496347 esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_common.c.obj 4fa459f1180e3a93 -5457 5772 7882180396161684 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/esp_pbuf_ref.c.obj ef9803712e8eacd8 -5362 5777 7882180395215853 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_sntp.c.obj 7718c4b87c430be0 -5201 5783 7882180393601569 esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_slave.c.obj 445787529734af0e -5206 5805 7882180393661689 esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_slave_hd.c.obj b6f3188b78546314 -5451 5852 7882180396100042 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/ethernetif.c.obj 9dd065388fe1cdfa -5285 5925 7882180394444168 esp-idf/esp_driver_pcnt/CMakeFiles/__idf_esp_driver_pcnt.dir/src/pulse_cnt.c.obj 73b932ab356bdc8a -5439 5931 7882180395983079 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/wlanif.c.obj 8cdac3bd4f02bd81 -5620 6010 7882180397785743 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/err.c.obj 6d14c0de414ada21 -5466 6020 7882180396252056 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/sntp/sntp.c.obj 1028c8ca6b1caaf9 -5670 6054 7882180398294773 esp-idf/esp_wifi/libesp_wifi.a 477a71035a94926e -5195 6064 7882180393546440 esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_master.c.obj 93ae200ed6291576 -5666 6134 7882180398244303 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netifapi.c.obj 4ab96d11d2130ce0 -5548 6151 7882180397068633 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_lib.c.obj 9de9f8913baaf3d6 -5639 6170 7882180397981833 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/if_api.c.obj 7a7fb55de94c434c -5661 6177 7882180398194249 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netdb.c.obj ebc4cfe153028b56 -5729 6182 7882180398882578 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/sntp/sntp.c.obj c6e245160fec9526 -5772 6187 7882180399314937 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/def.c.obj f6c0a8dc7a4e0c83 -5757 6204 7882180399161756 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/netbiosns/netbiosns.c.obj 31f5a8b40b7f57cf -5853 6228 7882180400113579 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ip.c.obj 254f927c2323456c -5720 6249 7882180398783888 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/tcpip.c.obj ff08d41324f0dc1f -5806 6296 7882180399648253 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/init.c.obj 1006cbdec606cfc8 -5783 6306 7882180399425307 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/inet_chksum.c.obj 2a24788b4f254628 -5926 6322 7882180400845943 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/mem.c.obj 9e175bc93eb662e2 -5561 6354 7882180397204517 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_msg.c.obj 8d3b6fe8facc43cd -5357 6433 7882180395160593 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip.c.obj af2c9e3892e8850d -5931 6438 7882180400901132 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/memp.c.obj a57f15cdf5a2a97b -6054 6444 7882180402138499 esp-idf/console/libconsole.a 93259a70fb89e6d1 -6152 6501 7882180403101428 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/sys.c.obj 61509d71f7d13ce5 -6188 6530 7882180403472348 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/timeouts.c.obj fb94a2d0cc3b09f2 -5645 6556 7882180398047054 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netbuf.c.obj ef80e75bec23d886 -6135 6587 7882180402945989 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/stats.c.obj 73b072049d44a4b6 -5778 6593 7882180399370089 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/dns.c.obj 730012f4ae066203 -6065 6603 7882180402238851 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/raw.c.obj 151d79cd84c89c15 -6228 6620 7882180403880423 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/autoip.c.obj 1b3e6f7bfaf52330 -6021 6627 7882180401803502 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/pbuf.c.obj 954609b04e3ade10 -6010 6722 7882180401698107 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/netif.c.obj dcbb6e8a47de479c -6306 6781 7882180404650203 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/icmp.c.obj 23729ede2a9056e9 -6433 6798 7882180405922464 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_napt.c.obj ace34e36c9b5a224 -6204 6804 7882180403632694 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/udp.c.obj 8e7ba969f2432582 -6182 6809 7882180403422312 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_out.c.obj f850acdf6ed18007 -6296 6842 7882180404555017 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/etharp.c.obj 9dc332b748035275 -6530 6852 7882180406894881 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/dhcp6.c.obj 73cd4ee62bb19167 -6444 6858 7882180406032653 esp-idf/driver/libdriver.a 8eabf9cab60d123e -6322 6866 7882180404810741 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/igmp.c.obj f3e2a9962370ed0 -6171 6917 7882180403307081 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp.c.obj a6383c88980ad449 -6587 6956 7882180407468648 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/icmp6.c.obj 6972313302ea78f3 -6439 6962 7882180405982441 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_addr.c.obj f597d26c94392983 -6556 6968 7882180407155730 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ethip6.c.obj 3072c626c572ddfc -6593 6982 7882180407523882 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/inet6.c.obj acd2d6df3b44324b -6355 6987 7882180405140312 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4.c.obj 807d30d099fad76a -5687 6996 7882180398465523 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/sockets.c.obj d11d07070d010fff -6501 7009 7882180406609163 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_frag.c.obj 1e94adfad7348c62 -6250 7016 7882180404091821 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/dhcp.c.obj 74a1e38a0aeb4a0c -6628 7029 7882180407869532 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_frag.c.obj 843f52248103db50 -6177 7036 7882180403367053 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_in.c.obj af030ca912d088f5 -6620 7094 7882180407799469 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_addr.c.obj eb20c1e1c368d23b -6858 7169 7882180410165117 esp-idf/esp_driver_twai/libesp_driver_twai.a 50d656e93d79cc58 -6804 7185 7882180409633759 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif.c.obj d3880f905341c7c3 -6852 7191 7882180410115126 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/auth.c.obj 685a26bf33bb1c64 -6809 7196 7882180409688798 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif_fdb.c.obj 219bc01942d3cc11 -6866 7201 7882180410255424 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ccp.c.obj 8dfc7fadf589b021 -6798 7209 7882180409568509 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ethernet.c.obj f19d7252563f9c32 -6722 7219 7882180408817464 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/mld6.c.obj da75d8d53ef1c18b -6843 7252 7882180410014719 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/slipif.c.obj dfd887e3651ce531 -6604 7258 7882180407629123 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6.c.obj fee8c88fac1d8c49 -6918 7263 7882180410765271 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-md5.c.obj 820b97b5094b4f18 -6956 7288 7882180411151468 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-new.c.obj 3eb981e13d6ebc6b -6968 7308 7882180411266655 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/demand.c.obj 2d3bcc3086f3f24a -6987 7323 7882180411464302 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ecp.c.obj f8a22da8ffe1cb6f -7009 7330 7882180411682802 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/fsm.c.obj 44b4ee66735b8c4f -6996 7336 7882180411550406 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eui64.c.obj becc0de98e1dc10 -7016 7360 7882180411753614 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipcp.c.obj 2754993d07b13e79 -6982 7366 7882180411407072 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eap.c.obj 5fb49b6959f87bc8 -7030 7380 7882180411891403 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipv6cp.c.obj 18ba0dc26c70a8d0 -6962 7389 7882180411216659 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap_ms.c.obj cf4752655ca1aea0 -7095 7437 7882180412532699 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/magic.c.obj ef372ac13eb429ae -7169 7445 7882180413281738 esp-idf/esp_driver_parlio/libesp_driver_parlio.a fcdf51eb85891725 -7036 7454 7882180411956931 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/lcp.c.obj e59e6f2b93910de -7219 7489 7882180413784160 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppoe.c.obj 729c8a1848b67de6 -7209 7495 7882180413685082 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppcrypt.c.obj 35636ac788e27fc2 -7185 7500 7882180413447242 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/mppe.c.obj b138b977203ad65e -7191 7509 7882180413502516 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/multilink.c.obj 7c3cd3c2b392822d -7202 7536 7882180413610428 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppapi.c.obj eef4b977db2495b2 -7263 7543 7882180414217816 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/upap.c.obj 21addc211773cc5d -7196 7554 7882180413560176 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ppp.c.obj e30e8006e540fd2c -7252 7600 7882180414103574 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppol2tp.c.obj 798288716148a3f1 -7288 7613 7882180414468924 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/utils.c.obj 5dd717cbc05dcba4 -7308 7662 7882180414669370 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/vj.c.obj 66d04fa7faf1f0fb -7258 7668 7882180414172611 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppos.c.obj c0db6a94c9b9f6ef -7445 7672 7882180416031838 esp-idf/esp_driver_ledc/libesp_driver_ledc.a cd8f9b35ff77feca -7336 7731 7882180414960110 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/debug/lwip_debug.c.obj c3e201c71d6a1e5 -7360 7736 7882180415194215 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/sockets_ext.c.obj ebc8b9c07a999ad0 -7330 7742 7882180414891323 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks/lwip_default_hooks.c.obj 4d66c125943ca50e -7323 7748 7882180414821032 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks/tcp_isn_default.c.obj 4a0d3f081b457cee -6781 7755 7882180409408184 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/nd6.c.obj 3933df6ada204d29 -7380 7789 7882180415393628 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/if_index.c.obj fa9c15e17c3267b5 -7490 7805 7882180416486133 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping.c.obj 3e5564ddc4318cbc -7509 7810 7882180416689438 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/des.c.obj 426e363193a8adb2 -7389 7820 7882180415485664 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/acd_dhcp_check.c.obj 54d385183f67279c -7366 7825 7882180415247218 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/freertos/sys_arch.c.obj 4edc20f17bb06c10 -7438 7853 7882180415966653 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32xx/vfs_lwip.c.obj 5976e19748f25146 -7454 7868 7882180416126793 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/esp_ping.c.obj 379c0ab927fb5ab0 -7536 7872 7882180416956594 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/md4.c.obj bf7e1d41388d921b -7543 7878 7882180417028918 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/md5.c.obj e4fc12cb0327c414 -7672 7883 7882180418316408 esp-idf/esp_driver_i2c/libesp_driver_i2c.a 723aed5bfcdcb544 -7555 7905 7882180417139207 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/sha1.c.obj 3ee9b228d820ab94 -7500 7913 7882180416591406 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/arc4.c.obj fa998fba78d8f941 -7495 8048 7882180416536256 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping_sock.c.obj 43ac246f87f76858 -7805 8088 7882180419645920 esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart_wakeup.c.obj 1c87e37377958206 -7748 8096 7882180419075292 esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag_connection_monitor.c.obj 5de8e87ce3c4915e -7663 8128 7882180418215851 esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_eventfd.c.obj 15115daeb05a2c26 -7736 8153 7882180418959746 esp-idf/esp_vfs_console/CMakeFiles/__idf_esp_vfs_console.dir/vfs_console.c.obj 54a70b34e5b566e2 -7668 8169 7882180418265854 esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_semihost.c.obj 87ab08e467da6c05 -7742 8175 7882180419020102 esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag.c.obj 49c6c04be1649bda -7731 8220 7882180418899672 esp-idf/vfs/CMakeFiles/__idf_vfs.dir/nullfs.c.obj 8e65259e9fb54018 -7755 8263 7882180419143049 esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag_vfs.c.obj acec5030b612dacd -7883 8273 7882180420426958 esp-idf/esp_driver_sdm/libesp_driver_sdm.a b7b6144b788f8bc2 -7601 8293 7882180417594748 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/dhcpserver/dhcpserver.c.obj 4593b9ec21000935 -7810 8348 7882180419691064 esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uhci.c.obj 1663a53516da3f56 -7825 8451 7882180419846323 esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir/ringbuf.c.obj 987eba9752826bbc -8175 8462 7882180423344604 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_platform.cpp.obj a2281840be49e5fd -7821 8467 7882180419796302 esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart_vfs.c.obj 11772397cb35423a -7613 8560 7882180417719095 esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs.c.obj d5164a463f671a6a -8293 8611 7882180424517767 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_bootloader_aes.c.obj 569e3b504fc92cd1 -8273 8649 7882180424323813 esp-idf/esp_driver_tsens/libesp_driver_tsens.a 8e21d51732594dd0 -8221 8697 7882180423794122 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_bootloader.c.obj 6e3deaae7251f66b -8348 8708 7882180425072206 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_bootloader_xts_aes.c.obj 9f7b87d7638bd713 -8096 8783 7882180422553435 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition.cpp.obj cd259e64007dc63f -7789 8802 7882180419480632 esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart.c.obj ebc388eb8e7e26a9 -8128 8870 7882180422867284 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_lookup.cpp.obj f06152d49c4c8e83 -8467 8918 7882180426266885 esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event_private.c.obj ca04a627f44c97a2 -8454 8938 7882180426170796 esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/default_event_loop.c.obj dc728a3c86e8e38d -8560 9032 7882180427186413 esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_exception_stubs.cpp.obj 170bb6492683868b -8697 9069 7882180428566945 esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_init.cpp.obj 907c86e38dd33fff -8650 9077 7882180428088249 esp-idf/esp_driver_rmt/libesp_driver_rmt.a bae161a2e9a11cd3 -8462 9136 7882180426211816 esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event.c.obj cae248748263a607 -8784 9248 7882180429435268 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_cond_var.c.obj d52e7095edebfd44 -8802 9254 7882180429611301 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_local_storage.c.obj 68f85fe4d966eeaa -8947 9306 7882180431083983 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/init.c.obj 8730a9c15d128a1d -9033 9318 7882180431920183 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/abort.c.obj 29f0ad339a3a6ad5 -9069 9323 7882180432285026 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/assert.c.obj 72f1b64ee7247868 -8924 9344 7882180430911903 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_semaphore.c.obj f51b424a3c924204 -8709 9396 7882180428669425 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread.c.obj b63ddabdea46d185 -8870 9410 7882180430290786 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_rwlock.c.obj a6f565225f4e030f -9077 9415 7882180432360219 esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a d49f526ca9ca941f -8611 9516 7882180427704297 esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_guards.cpp.obj 6c3c842099559af6 -9136 9563 7882180432953047 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/heap.c.obj a0f50e8253472965 -9323 9621 7882180434817803 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/getentropy.c.obj 56fce7b6ae2b8932 -9344 9670 7882180435034055 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/termios.c.obj 658156d3fe5be593 -9306 9676 7882180434654993 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/pthread.c.obj 325984d87c5fdca9 -9248 9681 7882180434067534 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/locks.c.obj c77bae549026a27a -9318 9687 7882180434772658 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/random.c.obj 6191da3f62bc9d8f -9254 9692 7882180434127880 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/poll.c.obj 36dee040cf0cf4e2 -9517 9856 7882180436760735 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/sysconf.c.obj 391aec441af67753 -9415 9885 7882180435743980 esp-idf/sdmmc/libsdmmc.a 565ed94a4024274d -9563 9934 7882180437229606 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/realpath.c.obj b6cb9725b718f8a9 -9621 9951 7882180437798144 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/scandir.c.obj 9adb317f48f7fb7a -9687 9957 7882180438465284 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/flockfile.c.obj 5e7ed0ff8336e65 -9671 9963 7882180438302662 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/syscalls.c.obj b4e4067e322867c2 -9411 9969 7882180435702718 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/time.c.obj d436c8e411ac73d0 -9397 9986 7882180435558353 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/stdatomic.c.obj da02e57cef00256f -9693 10040 7882180438522097 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/reent_init.c.obj 83cebb2d2bb39080 -9682 10121 7882180438410018 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/port/esp_time_impl.c.obj b432249064ef8495 -9676 10126 7882180438360499 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/reent_syscalls.c.obj 7aef852d66d336f9 -9866 10234 7882180440251351 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/newlib_init.c.obj cb11c33dbba28005 -9885 10239 7882180440446902 esp-idf/esp_driver_i2s/libesp_driver_i2s.a c98cc91f7cc84b8c -9951 10248 7882180441109685 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/app_startup.c.obj c1f08a9512a6f1f1 -9958 10271 7882180441164872 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_common.c.obj 9988684c7142ecd9 -9934 10276 7882180440932915 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/heap_idf.c.obj 475246bcc8588a66 -9969 10282 7882180441283806 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/list.c.obj 3050828917090d17 -7873 10328 7882180420316568 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_item_hash_list.cpp.obj 92644f1aff4e46a3 -9963 10333 7882180441220133 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_systick.c.obj a1c298851eb3c04b -7868 10401 7882180420266064 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_cxx_api.cpp.obj 35344b37cabb9ab6 -10271 10484 7882180444297286 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/riscv/portasm.S.obj 9d7d03fe998c2998 -10239 10495 7882180443988576 esp-idf/esp_driver_ana_cmpr/libesp_driver_ana_cmpr.a e7e6e28d74872481 -7906 10504 7882180420652547 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_pagemanager.cpp.obj 230fb3a3cd0b5781 -10127 10531 7882180442855259 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/event_groups.c.obj 683f45c5bd580692 -8170 10549 7882180423289396 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_types.cpp.obj a749ef3f1df3ee86 -8049 10555 7882180422073167 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_simple.cpp.obj cfd743bd5cd2d48 -10276 10564 7882180444353960 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/freertos_compatibility.c.obj 625cc220f79aa667 -10121 10586 7882180442805241 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/timers.c.obj 66526bbb050bdbd1 -9987 10597 7882180441459474 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/queue.c.obj d88d9acf15ad3bd3 -8088 10603 7882180422465722 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_locked.cpp.obj da3040c0ef72e9c -10282 10613 7882180444409281 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions_event_groups.c.obj 61fd3dc4ad346606 -10402 10646 7882180445606255 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/esp_cpu_intr.c.obj eeb77a2a926f656c -10248 10654 7882180444073779 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/riscv/port.c.obj e3abcb62a3b9d7cc -7878 10677 7882180420371648 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_page.cpp.obj ae25948f086538c8 -10333 10686 7882180444929233 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj d3d1b028cb89c748 -10234 10735 7882180443935379 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/stream_buffer.c.obj baad9c346f3a8a93 -10329 10742 7882180444869971 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions.c.obj bfc9fc73f93ba037 -10484 10747 7882180446432827 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj 9249cb8262f3fb69 -10495 10759 7882180446543292 esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a 88224af7f5923d9b -8154 10777 7882180423125025 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_manager.cpp.obj cfc6ad152f16b5d5 -7920 10786 7882180420796454 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_storage.cpp.obj 7c84d06fe4771b79 -10504 10800 7882180446628566 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/cpu_region_protect.c.obj c2c9e43533cb7e8f -8264 10812 7882180424222295 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_encrypted_partition.cpp.obj b1d2a0498c8e0e5a -10556 10817 7882180447145182 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/hw_random.c.obj b66eb95369450bd2 -10603 10827 7882180447622378 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/revision.c.obj 1459985aa8f98dc -10531 10845 7882180446899251 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clk.c.obj 2049ac07f89c2dca -10586 10857 7882180447451450 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mac_addr.c.obj 5417d190fd4ef436 -10654 10862 7882180448129921 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_gpio_reserve.c.obj 38123395e7b04feb -10550 10904 7882180447095109 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_ctrl_os.c.obj 58023d602d662c4d -7854 10911 7882180420130701 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_api.cpp.obj 38bfa8ccfdc76f81 -10613 10968 7882180447722587 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/rtc_module.c.obj dfff09d00214b050 -10598 10975 7882180447572024 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/periph_ctrl.c.obj 28188c497622e657 -10646 11027 7882180448048510 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/regi2c_ctrl.c.obj f4d1a6910106a350 -10686 11033 7882180448452489 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/io_mux.c.obj eb573dd13921ae2a -10759 11038 7882180449186895 esp-idf/esp_driver_spi/libesp_driver_spi.a 443bcbda5e7e415c -10863 11060 7882180450218128 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_console.c.obj 744488bd8ad51ded -10743 11066 7882180449021541 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/esp_dma_utils.c.obj 7469165e6037600f -10801 11090 7882180449601415 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp_clk_tree_common.c.obj 510fd0f31431cde3 -10677 11095 7882180448365573 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sar_periph_ctrl_common.c.obj 2c31139126836775 -10040 11101 7882180441998856 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/tasks.c.obj 411679158e7f49d8 -10905 11106 7882180450641439 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_usb.c.obj 3e6ef2975e9cebaf -10747 11112 7882180449061531 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma_link.c.obj ddcccb3f0de62498 -10735 11116 7882180448946207 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/esp_clk_tree.c.obj 1b50e96f0dbdd824 -10786 11137 7882180449461882 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_utils.c.obj 738720e61968166d -10812 11142 7882180449714829 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/spi_share_hw_ctrl.c.obj 2528a4135f1c3d1b -10565 11147 7882180447235731 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/intr_alloc.c.obj 2e6c9570743ec1ca -10818 11169 7882180449774789 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/adc_share_hw_ctrl.c.obj 59eb5463704a170f -10845 11187 7882180450042593 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modem.c.obj d8b9833345cb8efe -10778 11193 7882180449366619 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/spi_bus_lock.c.obj 4aaafef1bf2900d6 -10975 11247 7882180451340432 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_system_peripheral.c.obj 421990bc289d96ef -10969 11252 7882180451285111 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_event.c.obj 92fe4f2cf7231747 -11033 11289 7882180451922079 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/deprecated/gdma_legacy.c.obj 36daadfa51bc23f0 -11090 11300 7882180452491694 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/esp_async_memcpy.c.obj 4cd306c41e9b550b -11101 11322 7882180452606944 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/systimer.c.obj 4be59a9628248708 -11112 11328 7882180452712068 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/pau_regdma.c.obj 3e21f3f7bcf656b -11038 11344 7882180451972071 esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a 440195165309b93d -10911 11353 7882180450701636 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_gpio.c.obj 4fa184abbd74b6d8 -11061 11363 7882180452199002 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma_sleep_retention.c.obj 9b02af8095d45029 -11066 11461 7882180452249064 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma_etm.c.obj 4e3e767d2c625ccc -11142 11466 7882180453003290 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mspi_timing_tuning/mspi_timing_tuning.c.obj 651f5a98c5d53bf6 -10827 11476 7882180449860017 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_retention.c.obj 1511d3aae6b8c44e -11096 11526 7882180452551753 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/async_memcpy_gdma.c.obj 4bccd5083074340c -11194 11531 7882180453531072 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/power_supply/vbat.c.obj 5ccfbbae55d69ca3 -11028 11536 7882180451866842 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma.c.obj 2ed6bbf5c0b257ac -11106 11541 7882180452656926 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_etm.c.obj aa527a7be221c8c6 -11354 11555 7882180455125943 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/chip_info.c.obj 9af9b904eaf05a31 -11295 11565 7882180454543955 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/pmu_param.c.obj 618c4aef4e9074d3 -11344 11614 7882180455032571 esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a 894aa2cfdd5f514c -11247 11623 7882180454062879 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/rtc_clk_init.c.obj 7a03bcbb381bbfcb -11148 11629 7882180453071321 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_wake_stub.c.obj 658b289f0837ac1d -11467 11639 7882180456257649 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/lowpower/port/esp32h2/sleep_cpu_asm.S.obj b1032a8a8de66196 -11187 11644 7882180453455864 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/power_supply/brownout.c.obj 97ccf8aeac5b4424 -11170 11649 7882180453285445 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clock_output.c.obj 53d5ac1085595add -11137 11655 7882180452968048 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/modem_clock.c.obj 1d17c266d5592e3e -11300 11678 7882180454595687 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/pmu_init.c.obj 2150b204f4ab02af -11555 11687 7882180457149819 esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_crypto_lock.c.obj e0e8cce5b816bb70 -11364 11692 7882180455231303 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/sar_periph_ctrl.c.obj c49c758a28897c4a -11328 11696 7882180454866231 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/rtc_time.c.obj 3e6e320ad7c1fb5a -11117 11702 7882180452762063 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/regdma_link.c.obj 6e790a5b4368adac -11541 11707 7882180457009431 esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_dpa_protection.c.obj f210b55ad5153949 -11252 11726 7882180454113176 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/rtc_clk.c.obj b2b21aa5d4c57ca -10857 11758 7882180450169577 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modes.c.obj e8e0cd39a94e0fba -11650 11778 7882180458094772 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/uart_periph.c.obj d22c1cc0c733b5a2 -11639 11784 7882180457984205 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/interrupts.c.obj 41bcd28dc2d17b7b -11476 11788 7882180456356368 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/lowpower/port/esp32h2/sleep_clock.c.obj 8cf850fb23b2e151 -11629 11815 7882180457883395 esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj 9006c115ae39b865 -11644 11820 7882180458034374 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/gpio_periph.c.obj af48f256c6f8fb58 -11697 11825 7882180458553627 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/gdma_periph.c.obj e508e5fca86f02f3 -11536 11828 7882180456954239 esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_ds.c.obj b7201e53fc00860c -11655 11834 7882180458144842 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/adc_periph.c.obj 74b846bd98001715 -11614 11838 7882180457727975 esp-idf/esp_netif/libesp_netif.a cbdd77d52e6b767e -11323 11846 7882180454816224 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/pmu_sleep.c.obj 187d04157595ea4f -11679 11851 7882180458374739 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/ana_cmpr_periph.c.obj f0f2ceec7d4dcd5e -11727 11858 7882180458859613 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/pcnt_periph.c.obj aae6898279d7e8f9 -11566 11863 7882180457247669 esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_crypto_periph_clk.c.obj b22bf0eaa775a79d -11778 11868 7882180459371481 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/sdm_periph.c.obj a6e1a09c5be2f936 -11531 11874 7882180456904213 esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_hmac.c.obj a63147a499584b8f -11784 11878 7882180459426626 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/i2s_periph.c.obj 445742184c325e23 -11789 11887 7882180459481673 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/i2c_periph.c.obj 9a4f5feb45258cf5 -11623 11894 7882180457823389 esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj f4450b643af6c4e9 -11526 11899 7882180456859009 esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/init.c.obj 90269ae97403dbba -11687 11904 7882180458462051 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/dedic_gpio_periph.c.obj 6a03ce75d252751c -11692 11911 7882180458517360 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/etm_periph.c.obj 94684d6e1b616390 -11462 11929 7882180456206236 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/lowpower/port/esp32h2/sleep_cpu.c.obj 6297ba38a2753a80 -11825 11944 7882180459842709 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/parlio_periph.c.obj f338d18de4c695ad -11829 11952 7882180459882736 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/mcpwm_periph.c.obj ac135563c883883f -11815 11957 7882180459742219 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/temperature_sensor_periph.c.obj 7d50f40b351fb199 -11834 11962 7882180459933394 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/mpi_periph.c.obj ac0d4537093ad21e -11851 11971 7882180460102046 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/wdt_periph.c.obj 640357bcdebe76f7 -11846 11976 7882180460056837 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/twai_periph.c.obj 64357708bc928e9 -11820 11981 7882180459802723 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/timer_periph.c.obj be246ba71bc2a3a7 -11707 11986 7882180458663974 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/ledc_periph.c.obj 9dc1dbfd12890239 -11864 11991 7882180460229853 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/rtc_io_periph.c.obj 97e9ed14f2545601 -11874 12007 7882180460328688 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/power_supply_periph.c.obj a71455629a18ebf -11702 12026 7882180458613982 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/spi_periph.c.obj 28af2b317af144ca -11758 12031 7882180459170977 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/rmt_periph.c.obj ba4836051b19e6f8 -11858 12058 7882180460167275 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/ieee802154_periph.c.obj 918ea0056de0f93d -11868 12089 7882180460278081 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/system_retention_periph.c.obj 47df13896647aa8a -11976 12168 7882180461358048 esp-idf/log/CMakeFiles/__idf_log.dir/src/log_format_text.c.obj a363116b579d8651 -11879 12173 7882180460381093 esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_base.c.obj c3d8d6156bed44e7 -11962 12177 7882180461211946 esp-idf/log/CMakeFiles/__idf_log.dir/src/os/util.c.obj 2194e40d192cb3a7 -11986 12271 7882180461452965 esp-idf/log/CMakeFiles/__idf_log.dir/src/log.c.obj e065810e428876b3 -11957 12288 7882180461165028 esp-idf/log/CMakeFiles/__idf_log.dir/src/buffer/log_buffers.c.obj 96d2078c0111cd52 -12031 12293 7882180461907102 esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/linked_list/log_linked_list.c.obj 662711c6a1178d0b -11911 12299 7882180460702457 esp-idf/heap/CMakeFiles/__idf_heap.dir/port/esp32h2/memory_layout.c.obj dc488dbd47f16728 -11929 12311 7882180460889250 esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_timestamp.c.obj db231c6e13744829 -11838 12315 7882180459973389 esp-idf/lwip/liblwip.a c46184871065321e -11887 12341 7882180460461533 esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps.c.obj 56f13df19d5bb95e -11971 12345 7882180461307071 esp-idf/log/CMakeFiles/__idf_log.dir/src/util.c.obj 16f2205c774ceb38 -11899 12350 7882180460583754 esp-idf/heap/CMakeFiles/__idf_heap.dir/multi_heap.c.obj 1fb18cd2e846418b -11904 12355 7882180460634643 esp-idf/heap/CMakeFiles/__idf_heap.dir/port/memory_layout_utils.c.obj f613a639b13156f7 -11894 12360 7882180460528663 esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_init.c.obj 11839f9941dc836 -11991 12364 7882180461503121 esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_write.c.obj f80f9936689c35da -11952 12368 7882180461115019 esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_lock.c.obj 81a3d8a1fa7c683f -12089 12375 7882180462488581 esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj 4559912590a43ed8 -11945 12382 7882180461039701 esp-idf/log/CMakeFiles/__idf_log.dir/src/log_timestamp_common.c.obj 237fc7a7b3075d1a -12026 12387 7882180461855527 esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/tag_log_level.c.obj 38e0e8ebc277280e -12168 12393 7882180463271284 esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj 536c56970e52c7f9 -12007 12398 7882180461665148 esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/log_level.c.obj 86744fa3f7308668 -12058 12405 7882180462172704 esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/cache/log_binary_heap.c.obj f1bb202de854b035 -11981 12411 7882180461402890 esp-idf/log/CMakeFiles/__idf_log.dir/src/log_print.c.obj 5f413db2f55ca6e7 -12177 12417 7882180463363640 esp-idf/hal/CMakeFiles/__idf_hal.dir/lp_timer_hal.c.obj 6ee743bfd937abac -12294 12423 7882180464526191 esp-idf/hal/CMakeFiles/__idf_hal.dir/color_hal.c.obj ce2e9d8e606edb98 -12173 12502 7882180463323659 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32h2/efuse_hal.c.obj 19c3694a193ff126 -12316 12521 7882180464745311 esp-idf/vfs/libvfs.a e4a2ecb1d767e819 -12360 12588 7882180465194132 esp-idf/hal/CMakeFiles/__idf_hal.dir/gpio_hal.c.obj 41361a15c620f4e9 -12288 12595 7882180464470957 esp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj cb09cd663f083ead -12346 12599 7882180465048344 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32h2/clk_tree_hal.c.obj a9243fd1e04206e5 -12400 12602 7882180465591250 esp-idf/hal/CMakeFiles/__idf_hal.dir/rmt_hal.c.obj 5708736e498aa6ff -12355 12607 7882180465143861 esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal_iram.c.obj d35bc7f41989edfd -12375 12612 7882180465344439 esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal.c.obj b59b26e14ebe00ce -12271 12616 7882180464300628 esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj 159f260d2cccaef8 -12388 12622 7882180465459561 esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal.c.obj 70d3135f54cbd2ea -12412 12628 7882180465712642 esp-idf/hal/CMakeFiles/__idf_hal.dir/mcpwm_hal.c.obj 3ef38be65e5328 -12312 12633 7882180464710272 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_iram.c.obj c78fdf550172b871 -12369 12642 7882180465269201 esp-idf/hal/CMakeFiles/__idf_hal.dir/timer_hal.c.obj 76ae6e7d179f51af -12350 12647 7882180465093843 esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal.c.obj 368feb1affe262a0 -12299 12654 7882180464581258 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal.c.obj b49d5369c6a10d57 -12382 12673 7882180465419537 esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal_iram.c.obj 7d5d0adf9eeba027 -12406 12684 7882180465647408 esp-idf/hal/CMakeFiles/__idf_hal.dir/pcnt_hal.c.obj d8330c7d9c08b0b4 -12418 12695 7882180465770937 esp-idf/hal/CMakeFiles/__idf_hal.dir/uhci_hal.c.obj f5b220db9a7e93b8 -12393 12707 7882180465519910 esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal_iram.c.obj 7050459287d2f632 -12342 12713 7882180465008352 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_encrypt_hal_iram.c.obj d2c0c84e829a15b0 -12599 12744 7882180467581710 esp-idf/hal/CMakeFiles/__idf_hal.dir/sdm_hal.c.obj a2c41845d1600d5 -12364 12771 7882180465234153 esp-idf/hal/CMakeFiles/__idf_hal.dir/rtc_io_hal.c.obj c910143faa65b955 -12521 12807 7882180466806508 esp-idf/esp_vfs_console/libesp_vfs_console.a 148e446851ea5fd4 -12607 12818 7882180467665184 esp-idf/hal/CMakeFiles/__idf_hal.dir/parlio_hal.c.obj 6a813d6474d17172 -12603 12825 7882180467615164 esp-idf/hal/CMakeFiles/__idf_hal.dir/etm_hal.c.obj 336c4e7ad121918a -12502 12831 7882180466605940 esp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal_top.c.obj a99e532d8bbf8e39 -12588 12863 7882180467481655 esp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal_ahb_v1.c.obj e961248c2086a464 -12424 12868 7882180465826201 esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal_sja1000.c.obj 13856b0747e03100 -12673 12886 7882180468324667 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32h2/modem_clock_hal.c.obj 97008c39e3ada1d8 -12612 12895 7882180467710410 esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal_common.c.obj cd8a65c3633d61c1 -12696 12917 7882180468545093 esp-idf/hal/CMakeFiles/__idf_hal.dir/brownout_hal.c.obj 9ada9cc7d3366066 -12642 12923 7882180468014222 esp-idf/hal/CMakeFiles/__idf_hal.dir/mpi_hal.c.obj ae3a7c84bd77c76c -12634 12928 7882180467929036 esp-idf/hal/CMakeFiles/__idf_hal.dir/ecdsa_hal.c.obj 5b2d1e3bcb164cfd -12647 12934 7882180468064216 esp-idf/hal/CMakeFiles/__idf_hal.dir/sha_hal.c.obj d192f8f8d1ea1854 -12628 12939 7882180467873742 esp-idf/hal/CMakeFiles/__idf_hal.dir/ecc_hal.c.obj bf98a3a9d2083e5b -12684 12944 7882180468429866 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32h2/pau_hal.c.obj 3ced9a0941b96ea3 -12616 12950 7882180467760421 esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_oneshot_hal.c.obj 8a591c49b0d30fb7 -12708 12976 7882180468664303 esp-idf/hal/CMakeFiles/__idf_hal.dir/vbat_hal.c.obj a063f052ac1884dc -12654 12993 7882180468134978 esp-idf/hal/CMakeFiles/__idf_hal.dir/aes_hal.c.obj 2a557d4f62da7210 -12622 12998 7882180467813058 esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal.c.obj df7ec97ca1d06c0c -12771 13042 7882180469301090 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal.c.obj f089380780bd3590 -12595 13056 7882180467541720 esp-idf/hal/CMakeFiles/__idf_hal.dir/i2s_hal.c.obj 3d0d1fd32c60a0be -12807 13063 7882180469665385 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a 1fb72c4402fffa1f -12713 13073 7882180468719506 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal.c.obj d10040e234c45c19 -12863 13078 7882180470228080 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32h2/pmu_hal.c.obj 2f7527db5b9a8442 -12934 13096 7882180470927621 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj 132c96dcf326be03 -12950 13112 7882180471093169 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj 79e31f438777ae6 -12976 13141 7882180471357349 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_gpio.c.obj b4369b7f7b973b89 -12939 13156 7882180470982752 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj 8651bf03e6ee9272 -12917 13168 7882180470757918 esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_serial_jtag_hal.c.obj 27389585d55891cd -12895 13172 7882180470545264 esp-idf/hal/CMakeFiles/__idf_hal.dir/ds_hal.c.obj e9e981306d7b9d28 -12944 13177 7882180471037972 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj bf429b43a251c0ea -12831 13182 7882180469901500 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_gpspi.c.obj 52ad4ba047c549d8 -12928 13187 7882180470867406 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_print.c.obj 343b729133d1d1ce -12818 13206 7882180469780939 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal_iram.c.obj fa22fc5235290293 -12868 13230 7882180470268075 esp-idf/hal/CMakeFiles/__idf_hal.dir/apm_hal.c.obj 6b6c25a1fdd68efc -12923 13242 7882180470827433 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj 96bb01688807743e -12886 13248 7882180470458797 esp-idf/hal/CMakeFiles/__idf_hal.dir/hmac_hal.c.obj 23d15f01e1e33d01 -12998 13253 7882180471573871 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_tlsf.c.obj ba30d060b2e8e448 -13056 13258 7882180472153254 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj ff3ea91af62838d -12993 13271 7882180471529369 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_regi2c_esp32h2.c.obj 56a3a17a75dc684e -12744 13288 7882180469027455 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal_iram.c.obj 5c867b3aba869b35 -12826 13322 7882180469851090 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hd_hal.c.obj e683b7eb13b97a95 -13078 13341 7882180472373735 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_usb_serial.c.obj cfefd8017cbb1220 -13112 13346 7882180472719623 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj 7b39830d1bd3a45c -13043 13352 7882180472022897 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_multi_heap.c.obj a57e232fcded7068 -13063 13376 7882180472228474 esp-idf/esp_driver_uart/libesp_driver_uart.a 5371ba5a8cd81ef8 -13168 13386 7882180473271014 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_system_console.c.obj 15b16faef984c22e -13073 13402 7882180472323728 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_wdt.c.obj 67184af218f7af6a -13157 13414 7882180473150544 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_ipc.c.obj 2dd3d380fd7a412a -13141 13424 7882180473005370 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/crosscore_int.c.obj 10807f9f0e3b62e0 -13097 13478 7882180472559250 esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj b7727aa1efc4fe2a -13258 13483 7882180474178969 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/xt_wdt.c.obj c7c40af7156164bf -13248 13489 7882180474070105 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/stack_check.c.obj 143e816687420617 -13187 13494 7882180473467626 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_system.c.obj 4ad16ce3403eb92a -13178 13500 7882180473366226 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/int_wdt.c.obj b3e5f4ee2502860d -13173 13518 7882180473316223 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/freertos_hooks.c.obj b29eaf93cdde8165 -13183 13526 7882180473417545 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/panic.c.obj abf232b04b18a089 -13206 13531 7882180473648053 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup.c.obj d29fc98d5162c798 -13253 13538 7882180474125265 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/ubsan.c.obj d11e709da8054064 -13242 13555 7882180474014132 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/system_time.c.obj 7c88c1a2ead96ba8 -13322 13589 7882180474817197 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/systick_etm.c.obj 8eb349e04bcd0d75 -13342 13640 7882180475007622 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/hw_stack_guard.c.obj bac9f09c39861548 -13386 13673 7882180475450067 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp_system_chip.c.obj 4f949836dd8a5423 -13376 13691 7882180475349643 esp-idf/esp_ringbuf/libesp_ringbuf.a 18c09876b7b57f97 -13289 13699 7882180474484648 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt_impl_timergroup.c.obj a593ab2032a51322 -13352 13704 7882180475111940 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/panic_handler.c.obj dae0238881d4f94 -13231 13710 7882180473898776 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup_funcs.c.obj 264912cd3f787a2c -13478 13715 7882180476368927 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/debug_helpers.c.obj de57767056ab53ba -13271 13720 7882180474309136 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt.c.obj 82ddf2f41f35687c -13424 13731 7882180475831226 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/panic_arch.c.obj bc5ed4fedd168854 -13484 13740 7882180476434201 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/debug_stubs.c.obj 68eba185b1c98c22 -13526 13750 7882180476859408 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_brownout_hook.c.obj d1fb42432714d969 -13495 13755 7882180476539411 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32h2/reset_reason.c.obj e1b7b7e78b04d367 -13402 13760 7882180475611022 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/image_process.c.obj 98a44c7dc442a4d2 -13414 13765 7882180475735993 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/expression_with_stack.c.obj 87f3a155d3eff41a -13555 13812 7882180477135122 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_issi.c.obj a4ae8babc1d0f012 -13532 13828 7882180476904636 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_drivers.c.obj 54c97f3623704a -13518 13843 7882180476774135 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32h2/cache_err_int.c.obj 93c17c1c0f72837 -13346 13895 7882180475056735 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/cpu_start.c.obj ad9de478f854cb09 -13500 13920 7882180476586744 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32h2/system_internal.c.obj 50dc6710c568c25a -13589 13926 7882180477488522 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic.c.obj 4703fe0db9e42a -13710 13950 7882180478695569 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_th.c.obj 51b6737cf7d6c1b4 -13673 13971 7882180478320796 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_winbond.c.obj 1b6c08810b652d3d -13641 13977 7882180477993459 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_gd.c.obj db700aff58d086f -13699 13982 7882180478581275 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_boya.c.obj 3cc77d7cd755c8ca -13691 13987 7882180478506221 esp-idf/nvs_flash/libnvs_flash.a 54e1fad65e03a6ab -13721 14044 7882180478814344 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/cache_utils.c.obj 7dad40a27450c0b5 -13750 14049 7882180479096707 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj b0fc863d448a43c6 -13843 14059 7882180480019618 esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/port/esp32h2/ext_mem_layout.c.obj 87aaefee6102bba0 -13731 14075 7882180478902389 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_mmap.c.obj a99be519c96e0263 -13538 14080 7882180476974291 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_generic.c.obj 695a2bcac51418b4 -13765 14105 7882180479244926 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_app.c.obj 6d6da0964718eb74 -13705 14114 7882180478640421 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic_opi.c.obj fb72af1bddf6ad72 -13716 14123 7882180478750755 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/memspi_host_driver.c.obj 7d09bb54484eeb54 -13740 14129 7882180478991466 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_ops.c.obj b5ff8572644f48ae -13760 14168 7882180479195541 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_spi_init.c.obj a3a2de2fa7533310 -13489 14184 7882180476489274 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32h2/clk.c.obj e59b58ecf7145653 -13926 14189 7882180480853344 esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/heap_align_hw.c.obj 33463200a3e5b044 -13812 14208 7882180479713186 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_noos.c.obj 32d207e55bfd7db1 -13921 14235 7882180480798235 esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_cache_utils.c.obj fd8d9844ae176566 -13895 14245 7882180480542615 esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_cache_msync.c.obj 8ba559c928be6a2d -13828 14251 7882180479874054 esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_mmu_map.c.obj 277ff45a1fa52122 -13977 14256 7882180481365176 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj 40fd6047c5128202 -13983 14269 7882180481420455 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj 37748095f8fe2fb1 -13988 14288 7882180481465745 esp-idf/esp_event/libesp_event.a 132cf4eb8f4781cd -14049 14301 7882180482087347 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj f306adbfecdf0be5 -13951 14308 7882180481100148 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj 39632d98b3a82580 -14044 14377 7882180482032278 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj 44a5f94aa588d589 -13971 14534 7882180481300007 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj 3f2ab3256f99c566 -14076 14538 7882180482351328 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj bbc8ea3d4cf7f631 -13755 14542 7882180479140397 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_api.c.obj 5c6d36d64105c721 -14080 14546 7882180482396454 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32h2.c.obj 1130023da5ff0cfd -14059 14550 7882180482185712 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj 32e18d64d9c5446a -14251 14554 7882180484106034 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32h2/esp_efuse_fields.c.obj 4bbd3f00c45bc632 -14190 14559 7882180483486643 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_sha.c.obj 76ae0d94363e75bc -14246 14563 7882180484045571 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32h2/esp_efuse_table_v0.0_v1.1.c.obj 83d832cb1a63bea8 -14208 14568 7882180483671427 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32h2/secure_boot_secure_features.c.obj 69b95723761f1e2c -14114 14574 7882180482732494 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj f9b63e753cae07b2 -14168 14579 7882180483273467 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj c49650f64c8e4d1f -14124 14585 7882180482827996 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32h2.c.obj bbc1168e3a8756d0 -14235 14590 7882180483947045 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32h2/esp_efuse_table.c.obj 8fcda4a686b951d4 -14256 14595 7882180484156059 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32h2/esp_efuse_rtc_calib.c.obj 4cd060077d97e4ef -14288 14600 7882180484469252 esp-idf/cxx/libcxx.a 8883c88c29c3ecd8 -14269 14609 7882180484283854 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32h2/esp_efuse_utility.c.obj 8a3ef4013af173c8 -14129 14614 7882180482888300 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj edca4799f3849e08 -14105 14620 7882180482639462 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj e397802271f83df9 -14309 14626 7882180484669686 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj 93495208e8146706 -14185 14632 7882180483441575 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj e0b7b19093e44765 -14301 14637 7882180484599618 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj 796781d5f5f40b5f -14554 14712 7882180487133017 esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_app_desc.c.obj cef82fcd625f5fc5 -14539 14724 7882180486968950 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_startup.c.obj 508e4c59284c188f -14579 14743 7882180487384771 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_trace.c.obj 29a41edf3205e1dd -14574 14755 7882180487339705 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_reader.c.obj a34cb0a3fc0dc970 -14559 14760 7882180487183094 esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj e181af1cb0f07e01 -14568 14765 7882180487268279 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/debug.c.obj a96d28bfeb92d5c3 -14563 14781 7882180487228264 esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir/esp_app_desc.c.obj f0f2f97d8b593f46 -14377 14791 7882180485360870 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj fcbb640664ca1399 -14546 14827 7882180487051771 esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition_target.c.obj f38454cd097f9244 -14542 14884 7882180487011754 esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition.c.obj f12db6d30f424b20 -14590 14889 7882180487495133 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ciphersuites.c.obj 78257a2b6cdeb427 -14534 14894 7882180486928923 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c.obj ab5fb9f8ccacc1f5 -14600 14899 7882180487593923 esp-idf/pthread/libpthread.a b689e2d2e5ed3429 -14585 14917 7882180487439992 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cache.c.obj 17753a3a651fe887 -14724 14923 7882180488835637 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_keys.c.obj 53d370fd52d880d2 -14609 14928 7882180487684141 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cookie.c.obj 6ba15f25528c8dfe -14615 14945 7882180487741853 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_debug_helpers_generated.c.obj ebac43501efc6ed5 -14760 14953 7882180489195741 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_generic.c.obj 2bfc2de0b22233f6 -14744 14959 7882180489033359 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_server.c.obj 5aca15b7313c0729 -14755 14964 7882180489148729 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_client.c.obj 91de21b7d0c015e3 -14596 14972 7882180487552372 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_client.c.obj def87b1cb89816f -14781 15012 7882180489401791 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_platform_time.c.obj 694198d9e5113765 -14626 15033 7882180487857140 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ticket.c.obj 7a6692c44f4090d1 -14550 15100 7882180487087911 esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_ops.c.obj 6250d89b7c4526f3 -14765 15120 7882180489245826 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/mbedtls_debug.c.obj 1a1c2d34c38c3e68 -14973 15248 7882180491317585 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesce.c.obj 4d0c3d81abfd0b7 -14638 15253 7882180487967515 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_client.c.obj 26fc9ecf16c30db0 -14965 15258 7882180491242389 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesni.c.obj b611b22770158b77 -14899 15263 7882180490584824 esp-idf/newlib/libnewlib.a cc8a7b5684ac980f -14928 15304 7882180490872111 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write.c.obj 63a9c1cdf13927c -14954 15312 7882180491131120 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_csr.c.obj 7ed8b436778c83e8 -14889 15318 7882180490484668 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_create.c.obj 9a6750ed0992b661 -14894 15323 7882180490534820 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crl.c.obj 7fa82354ebc12fbc -14827 15329 7882180489859372 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/pkcs7.c.obj c2327722ea00bbb9 -14621 15335 7882180487797063 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_msg.c.obj ca840ac2a217af7f -14791 15340 7882180489503031 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/net_sockets.c.obj 8ff5e531afd56999 -14923 15346 7882180490822094 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_csr.c.obj 60cf3e9b096dd89f -14959 15406 7882180491182080 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aes.c.obj 85665e3e9abb625e -14946 15430 7882180491050758 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_crt.c.obj 1b1bceab08e748df -14713 15454 7882180488711560 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_server.c.obj 820cc050abad783e -15313 15459 7882180494718116 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/block_cipher.c.obj 8d370f09d3e96c19 -15120 15469 7882180492789318 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/base64.c.obj fc5f31c51d25eee5 -15033 15475 7882180491937760 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1parse.c.obj 4175595f19db5664 -15258 15479 7882180494171062 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod.c.obj 74cbe66a5539d269 -15304 15485 7882180494627817 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod_raw.c.obj fbf3f3608e35857b -15103 15513 7882180492699072 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1write.c.obj 91053fa06fbb80ef -15295 15517 7882180494552606 esp-idf/freertos/libfreertos.a a4616714acbcfafa -15335 15571 7882180494938579 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chachapoly.c.obj 6d112d43f681dc86 -15329 15576 7882180494888412 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chacha20.c.obj 5b33ed43fc13aece -15318 15582 7882180494768103 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/camellia.c.obj 9bc6d6b1eeba9e14 -14884 15587 7882180490433166 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509.c.obj b8891b98a4c0fc70 -15013 15592 7882180491743832 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aria.c.obj 116dbc704489cbec -15432 15638 7882180495918639 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cmac.c.obj 89419cfa0ea932c7 -15485 15666 7882180496445709 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecjpake.c.obj ea04f6a03fa64dae -15407 15671 7882180495687041 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/constant_time.c.obj 76855f939279fae3 -15346 15683 7882180495053792 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher_wrap.c.obj 6e73ad9e26b08d6e -15459 15689 7882180496184463 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/des.c.obj 23f63dc5ff5bdf3e -15469 15737 7882180496284718 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/dhm.c.obj 71158bc28ab47da6 -15324 15763 7882180494833354 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ccm.c.obj f778ce3a525d0584 -15253 15773 7882180494121075 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_core.c.obj df80fc480519a45d -14632 15779 7882180487912361 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls.c.obj ae20cda8cbe8b367 -15475 15791 7882180496344881 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdh.c.obj 26d8c6280b5a1bc4 -15480 15825 7882180496385562 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdsa.c.obj edba3f40c12afff1 -15588 15844 7882180497468824 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy_poll.c.obj f5a4ac5a379450ac -15576 15855 7882180497353466 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves_new.c.obj c470ec942fd06226 -15341 15861 7882180495003796 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher.c.obj 868a02196e1ea596 -14917 15866 7882180490765758 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crt.c.obj f8802ea11b60c889 -15667 15886 7882180498255895 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hkdf.c.obj 61d2b7b4874f5a0 -15454 15901 7882180496134451 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ctr_drbg.c.obj 15a2bb6a2680c390 -15583 16004 7882180497418606 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy.c.obj 55bf58ada68c4b79 -15517 16021 7882180496761602 esp-idf/esp_hw_support/libesp_hw_support.a b70efec085a54bf2 -15774 16030 7882180499325014 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/memory_buffer_alloc.c.obj b014881645222906 -15779 16036 7882180499384988 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/nist_kw.c.obj f363d5f70beec364 -15683 16042 7882180498431400 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lmots.c.obj e57ffb2f44888724 -15825 16047 7882180499847016 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/padlock.c.obj efe7b6a2efceda7b -15592 16052 7882180497513968 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/error.c.obj 4bd74b70088e3d6a -15672 16061 7882180498311081 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hmac_drbg.c.obj a94f50faea580de7 -15763 16068 7882180499219638 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md5.c.obj 2afb8631d33a59a7 -15689 16077 7882180498481756 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lms.c.obj 6152bd889f495a0b -15861 16124 7882180500202104 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_ecc.c.obj a9e57d04a9a5cbe3 -15248 16181 7882180494070766 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum.c.obj 1608f620c041cdc6 -15638 16191 7882180497972924 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/gcm.c.obj 7585474a6c19417a -15571 16204 7882180497308297 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves.c.obj eabcc4df4463854f -15844 16212 7882180500033617 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pem.c.obj a732315062a99468 -15737 16238 7882180498962654 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md.c.obj 75edfb9656fb4327 -15886 16253 7882180500451176 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs12.c.obj 54daa2386d9b16c5 -15866 16283 7882180500255500 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_wrap.c.obj 83d80ab7bae95fdd -16047 16296 7882180502066660 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/poly1305.c.obj 4f7c39e03635c2b5 -15792 16303 7882180499510611 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/oid.c.obj e786626a6b365984 -16036 16308 7882180501951427 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform.c.obj e606b1836c05beed -16021 16313 7882180501806768 esp-idf/esp_security/libesp_security.a d75b8cf91511e6a5 -15901 16330 7882180500601785 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs5.c.obj 533d0097020738f3 -15856 16338 7882180500149062 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk.c.obj d650ebe39411d94f -16042 16352 7882180502006695 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform_util.c.obj 8979348be96a02ef -16077 16388 7882180502359596 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_client.c.obj e86bc776a1d506e -15513 16393 7882180496716484 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp.c.obj 8efcdcfdf839f103 -16031 16458 7882180501901360 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkwrite.c.obj 56a28a4b56424cc7 -16069 16476 7882180502274346 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_cipher.c.obj c99c62bd2d485a34 -16062 16495 7882180502209230 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_aead.c.obj 47fcbe5dd3b52e02 -16124 16501 7882180502834701 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_driver_wrappers_no_static.c.obj 76b2050bcd6682c7 -16283 16522 7882180504428068 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_se.c.obj 9fe48bebbd905227 -16207 16537 7882180503665480 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_hash.c.obj b9f56966a5e2857 -16339 16545 7882180504980065 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ripemd160.c.obj fe9f2747422af80a -16004 16550 7882180501629043 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkparse.c.obj 65d734dbb5b560d6 -16192 16555 7882180503510934 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ffdh.c.obj d47c3dcb6240b868 -16213 16560 7882180503720715 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_mac.c.obj 4fe052ccb18fd08b -16308 16592 7882180504673628 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_its_file.c.obj 6db7e324d8242f8b -16181 16601 7882180503405746 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ecp.c.obj c1d206e1b6a684ac -16243 16616 7882180504025909 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_pake.c.obj 6ab9636dc50f2c27 -16313 16652 7882180504728867 esp-idf/soc/libsoc.a f2863a6cb5075951 -16254 16740 7882180504123106 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_rsa.c.obj 1d2f03eee88fc332 -16495 16745 7882180506549992 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha3.c.obj efcdaae4b2c12e6a -16523 16751 7882180506822200 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/timing.c.obj af4d161bd74a0fed -16501 16755 7882180506605244 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/threading.c.obj 5fc4b23ecec1983e -16330 16761 7882180504887330 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_util.c.obj fc7ca60276f3ddac -16394 16768 7882180505524071 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha1.c.obj f81050a0bf15c39a -16550 16773 7882180507089321 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha_gdma_impl.c.obj e710d8001747378d -16458 16777 7882180506175296 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha256.c.obj 51df05fa7251b17f -16388 16782 7882180505474710 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa_alt_helpers.c.obj e15e1e1bdba24b8f -16303 16788 7882180504623610 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_storage.c.obj aba6ec9f438b5ef1 -16296 16794 7882180504548401 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_slot_management.c.obj 59e6f2d0677e7ed -16537 16799 7882180506971025 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version.c.obj 71e0f7b3379a658a -16555 16805 7882180507144530 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes_gdma_impl.c.obj 6fd9647e432b48e3 -16545 16811 7882180507049031 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version_features.c.obj 4270e94a752a8cb7 -16652 16816 7882180508114782 esp-idf/heap/libheap.a 19cff32ef759874f -16602 16826 7882180507610125 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_hardware.c.obj b0f56dcefe865300 -16617 16873 7882180507757417 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_mem.c.obj daf35337e803678c -16592 16930 7882180507519352 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/crypto_shared_gdma/esp_crypto_shared_gdma.c.obj 46ced1189aadc300 -16476 16935 7882180506356770 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha512.c.obj c50d26f531872c42 -16560 16962 7882180507194238 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes_dma_core.c.obj f3a59bd6282d946c -16741 16972 7882180508995698 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_timing.c.obj 69f9681507d12e6d -16761 16985 7882180509203946 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/esp_sha.c.obj f1a3cc7e21d27f56 -16751 16995 7882180509098586 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/esp_aes_common.c.obj 686545a6e757a10f -16811 17037 7882180509705174 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha512.c.obj e30a055f39f3563d -16746 17041 7882180509045776 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/esp_aes_xts.c.obj 4b7977c37a89b0c6 -16794 17046 7882180509531057 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/bignum/bignum_alt.c.obj 9c9b22f5ba73b579 -16783 17062 7882180509418975 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_ds/esp_ds_common.c.obj d81ec82eb6398bc8 -16816 17079 7882180509758610 esp-idf/log/liblog.a f955efec5f7d5640 -16778 17191 7882180509363749 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_ds/esp_rsa_dec_alt.c.obj 696b39bf40c0b762 -16756 17191 7882180509148670 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes.c.obj 584a6bf8d744923b -16799 17192 7882180509581151 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha1.c.obj c22e9fe08fac5adc -16788 17192 7882180509465798 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/bignum/esp_bignum.c.obj 39c77d2f8d51a14e -16773 17193 7882180509323663 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_ds/esp_rsa_sign_alt.c.obj 38eb0fea1d783e30 -16873 17193 7882180510325090 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/ecc/esp_ecc.c.obj 4d580336852bc82d -16985 17194 7882180511446499 esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m/p256-m.c.obj 20f901bff25f4b2 -16352 17194 7882180505116176 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa.c.obj 7ca3c1855ebd369e -16768 17195 7882180509273357 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/sha.c.obj 32e5f70d25c11f2d -17037 17196 7882180511963680 esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/x25519.c.obj 5a02bc0b95e61f4d -16930 17196 7882180510898686 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/ecc/ecc_alt.c.obj 78d7d8fc4d66f97f -16996 17197 7882180511551035 esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/everest.c.obj a777b62233633955 -16805 17198 7882180509645281 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha256.c.obj 6c893fdc1752d6ae -16962 17208 7882180511220898 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/md/esp_md.c.obj 77061b1d2b8ddfff -17046 17251 7882180514025696 bootloader-prefix/src/bootloader-stamp/bootloader-mkdir 36dedba94db167a9 -17046 17251 7882180514025696 C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader-prefix/src/bootloader-stamp/bootloader-mkdir 36dedba94db167a9 -17042 17274 7882180512008907 esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/Hacl_Curve25519_joined.c.obj e4c681ec23a83f85 -16972 17275 7882180511321115 esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m_driver_entrypoints.c.obj 3b53057826943872 -16935 17276 7882180510948764 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/ecdsa/ecdsa_alt.c.obj 66631acfa0f83aa9 -16826 17277 7882180509847011 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/esp_aes_gcm.c.obj 38a7fa5e6f62278e -17251 17322 7882180514748986 bootloader-prefix/src/bootloader-stamp/bootloader-download 148b37cc5b48fb1c -17251 17322 7882180514748986 C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader-prefix/src/bootloader-stamp/bootloader-download 148b37cc5b48fb1c -17079 17341 7882180512381365 esp-idf/hal/libhal.a 128b3948fb0960ad -17322 17371 7882180515233731 bootloader-prefix/src/bootloader-stamp/bootloader-update 413b21cde00aace1 -17322 17371 7882180515233731 C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader-prefix/src/bootloader-stamp/bootloader-update 413b21cde00aace1 -17371 17416 7882180515680830 bootloader-prefix/src/bootloader-stamp/bootloader-patch 40210ff0abc8f06e -17371 17416 7882180515680830 C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch 40210ff0abc8f06e -17341 17421 7882180515008565 esp-idf/esp_rom/libesp_rom.a f84ff13b27c8475 -17421 17473 7882180515802662 esp-idf/esp_common/libesp_common.a 1ce74a6de5cde431 -16053 17561 7882180502118820 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto.c.obj 8b50d276c357fccf -17473 17576 7882180516320480 esp-idf/esp_system/libesp_system.a e541baf37523cd7a -17577 17661 7882180517352987 esp-idf/spi_flash/libspi_flash.a fb514835d2f19872 -17661 17725 7882180518208320 esp-idf/esp_mm/libesp_mm.a 15c77d2e31d4ba8e -17725 17805 7882180518843122 esp-idf/bootloader_support/libbootloader_support.a 6708137291f8f792 -17805 17872 7882180519641012 esp-idf/efuse/libefuse.a d112b6a2f839c19c -17872 17928 7882180520317121 esp-idf/esp_partition/libesp_partition.a 38c4c280454da63e -17928 17984 7882180520869506 esp-idf/app_update/libapp_update.a 9b9d9e7678290e0f -17984 18039 7882180521436339 esp-idf/esp_bootloader_format/libesp_bootloader_format.a df1c5e5d59c71e36 -18039 18089 7882180521981718 esp-idf/esp_app_format/libesp_app_format.a 176f217ac042e65 -18089 18180 7882180522480844 esp-idf/mbedtls/mbedtls/library/libmbedtls.a acc369ff604bbe57 -18180 18248 7882180523391905 esp-idf/mbedtls/mbedtls/library/libmbedx509.a eb14eac80995acd1 -18248 18513 7882180524063775 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a dc3079ae5e9c0ee1 -18514 18565 7882180526725064 esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a 4ed01368e1883f40 -18566 18620 7882180527242890 esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a 8d37c49461fb72ee -18620 18769 7882180529116758 esp-idf/mbedtls/x509_crt_bundle f1a24aa61beccdb0 -18620 18769 7882180529116758 C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/x509_crt_bundle f1a24aa61beccdb0 -18769 18899 7882180530518565 x509_crt_bundle.S 1394fa2b3c4c14ed -18769 18899 7882180530518565 C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/x509_crt_bundle.S 1394fa2b3c4c14ed -18902 19079 7882180530614874 esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/__/__/x509_crt_bundle.S.obj a623d7f383e0fb26 -18916 19103 7882180530753159 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_init.c.obj 65219a1034003873 -18922 19113 7882180530813334 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/system_time.c.obj 140a9400bba7a174 -18907 19137 7882180530664877 esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_trace.c.obj cf24723623b63240 -18933 19142 7882180530922459 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_etm.c.obj f7ded78f523212f3 -18919 19148 7882180530773165 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/ets_timer_legacy.c.obj e8d1c42bafe6ed2b -18925 19164 7882180530843360 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_common.c.obj 40a42016723cad71 -18905 19170 7882180530634864 esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_locks.c.obj fd72301eb171fd8a -18940 19178 7882180530987595 esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_glitch_filter_ops.c.obj 6a0e1c981afed836 -18969 19202 7882180531283619 esp-idf/riscv/CMakeFiles/__idf_riscv.dir/interrupt.c.obj 9bbf352d9729116b -19137 19216 7882180532962530 esp-idf/riscv/CMakeFiles/__idf_riscv.dir/vectors_intc.S.obj 6484bf693226e892 -19103 19217 7882180532620043 esp-idf/riscv/CMakeFiles/__idf_riscv.dir/vectors.S.obj dab085c2a3ca6c38 -18944 19299 7882180531032779 esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/rtc_io.c.obj 85ffc9fdf4d6e172 -18948 19299 7882180531073014 esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/dedic_gpio.c.obj cca5254c503592d9 -18929 19300 7882180530883340 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_systimer.c.obj fd53d0a49e0f5415 -18952 19300 7882180531108138 esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_pin_glitch_filter.c.obj fe2def2f0001365f -18899 19301 7882180530584713 esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/esp_crt_bundle/esp_crt_bundle.c.obj 14b689931620e6a4 -18965 19316 7882180531248600 esp-idf/riscv/CMakeFiles/__idf_riscv.dir/instruction_decode.c.obj 84f88416fd57d77e -18956 19320 7882180531148314 esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_flex_glitch_filter.c.obj 3e3d57d84c536347 -18910 19321 7882180530689975 esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_impl.c.obj f135554098600e9d -19113 19321 7882180532725312 esp-idf/riscv/CMakeFiles/__idf_riscv.dir/interrupt_plic.c.obj 9030237d2f925e6c -19080 19322 7882180532390230 esp-idf/riscv/CMakeFiles/__idf_riscv.dir/rv_utils.c.obj 3f2b549529508ad4 -18913 19322 7882180530718053 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer.c.obj 49231b2e372636cf -18961 19332 7882180531193469 esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_etm.c.obj 9cc8187e9e074e2 -19301 19375 7882180534596659 esp-idf/mbedtls/libmbedtls.a 6a749eb93e47b175 -18936 19418 7882180530952522 esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio.c.obj 74cd74fedcc7a4e3 -19375 19436 7882180535342354 esp-idf/esp_pm/libesp_pm.a bd34b5341f35754 -19142 19454 7882180533017730 esp-idf/main/CMakeFiles/__idf_main.dir/esp_ot_rcp.c.obj 6bae187c61a0533c -19436 19503 7882180535953098 esp-idf/esp_timer/libesp_timer.a cf4c42202080dc77 -19503 19573 7882180536629548 esp-idf/esp_driver_gpio/libesp_driver_gpio.a 1aa0d1d79d425d3d -19573 19643 7882180537320791 esp-idf/riscv/libriscv.a 47d31935dad90785 -19643 19712 7882180538028209 esp-idf/main/libmain.a 27adfca3e056b1bb -17416 23729 7882180578820621 bootloader-prefix/src/bootloader-stamp/bootloader-configure bed534a7df922534 -17416 23729 7882180578820621 C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader-prefix/src/bootloader-stamp/bootloader-configure bed534a7df922534 -23729 26150 7882180578891574 bootloader-prefix/src/bootloader-stamp/bootloader-build a915612e00e87636 -23729 26150 7882180578891574 bootloader/bootloader.elf a915612e00e87636 -23729 26150 7882180578891574 bootloader/bootloader.bin a915612e00e87636 -23729 26150 7882180578891574 bootloader/bootloader.map a915612e00e87636 -23729 26150 7882180578891574 C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader-prefix/src/bootloader-stamp/bootloader-build a915612e00e87636 -23729 26150 7882180578891574 C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/bootloader.elf a915612e00e87636 -23729 26150 7882180578891574 C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/bootloader.bin a915612e00e87636 -23729 26150 7882180578891574 C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/bootloader.map a915612e00e87636 -26151 26184 7882180603099961 bootloader-prefix/src/bootloader-stamp/bootloader-install bda38f31aebe34dc -26151 26184 7882180603099961 C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader-prefix/src/bootloader-stamp/bootloader-install bda38f31aebe34dc -26185 26268 7882180604197394 CMakeFiles/bootloader-complete 5501f97019b7709f -26185 26268 7882180604197394 bootloader-prefix/src/bootloader-stamp/bootloader-done 5501f97019b7709f -26185 26268 7882180604197394 C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/CMakeFiles/bootloader-complete 5501f97019b7709f -26185 26268 7882180604197394 C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader-prefix/src/bootloader-stamp/bootloader-done 5501f97019b7709f -19712 26298 7882180604313506 esp-idf/esp_system/ld/sections.ld 17b7ed52b2b82ca8 -19712 26298 7882180604313506 C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/ld/sections.ld 17b7ed52b2b82ca8 -26298 26339 7882180604567572 CMakeFiles/open-thread-rcp.elf.dir/project_elf_src_esp32h2.c.obj a81af263828dc607 -26340 26729 7882180604991313 open-thread-rcp.elf 8d3ab706bd217e0b -26729 26977 7882180611291982 .bin_timestamp a3921b8e3aca020d -26729 26977 7882180611291982 C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/.bin_timestamp a3921b8e3aca020d -26977 27044 7882180611362010 esp-idf/esptool_py/CMakeFiles/app_check_size 1c97759083294c88 -26977 27044 7882180611362010 C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esptool_py/CMakeFiles/app_check_size 1c97759083294c88 diff --git a/esp32-thread/open-thread-rcp/build/CMakeCache.txt b/esp32-thread/open-thread-rcp/build/CMakeCache.txt deleted file mode 100644 index 5264bb9f..00000000 --- a/esp32-thread/open-thread-rcp/build/CMakeCache.txt +++ /dev/null @@ -1,610 +0,0 @@ -# This is the CMakeCache file. -# For build in directory: c:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build -# It was generated by CMake: C:/Users/Laurent/.espressif/tools/cmake/3.30.2/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/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-addr2line.exe - -//Path to a program. -CMAKE_AR:FILEPATH=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar.exe - -//A wrapper around 'ar' adding the appropriate '--plugin' option -// for the GCC compiler -CMAKE_ASM_COMPILER_AR:FILEPATH=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ar.exe - -//A wrapper around 'ranlib' adding the appropriate '--plugin' option -// for the GCC compiler -CMAKE_ASM_COMPILER_RANLIB:FILEPATH=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ranlib.exe - -//Flags used by the ASM compiler during all build types. -CMAKE_ASM_FLAGS:STRING= - -//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/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ar.exe - -//A wrapper around 'ranlib' adding the appropriate '--plugin' option -// for the GCC compiler -CMAKE_CXX_COMPILER_RANLIB:FILEPATH=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ranlib.exe - -//C++ Compiler Base Flags -CMAKE_CXX_FLAGS:STRING='-march=rv32imac_zicsr_zifencei ' - -//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/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ar.exe - -//A wrapper around 'ranlib' adding the appropriate '--plugin' option -// for the GCC compiler -CMAKE_C_COMPILER_RANLIB:FILEPATH=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ranlib.exe - -//C Compiler Base Flags -CMAKE_C_FLAGS:STRING='-march=rv32imac_zicsr_zifencei ' - -//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 - -//Linker Base Flags -CMAKE_EXE_LINKER_FLAGS:STRING='-nostartfiles -march=rv32imac_zicsr_zifencei ' - -//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/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/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)/open-thread-rcp - -//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/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ld.exe - -//Program used to build from build.ninja files. -CMAKE_MAKE_PROGRAM:FILEPATH=C:/Users/Laurent/.espressif/tools/ninja/1.12.1/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/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-nm.exe - -//Path to a program. -CMAKE_OBJCOPY:FILEPATH=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objcopy.exe - -//Path to a program. -CMAKE_OBJDUMP:FILEPATH=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-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=open-thread-rcp - -//Value Computed by CMake -CMAKE_PROJECT_VERSION:STATIC=3.6.4 - -//Value Computed by CMake -CMAKE_PROJECT_VERSION_MAJOR:STATIC=3 - -//Value Computed by CMake -CMAKE_PROJECT_VERSION_MINOR:STATIC=6 - -//Value Computed by CMake -CMAKE_PROJECT_VERSION_PATCH:STATIC=4 - -//Value Computed by CMake -CMAKE_PROJECT_VERSION_TWEAK:STATIC= - -//Path to a program. -CMAKE_RANLIB:FILEPATH=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib.exe - -//Path to a program. -CMAKE_READELF:FILEPATH=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-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/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-strip.exe - -//Path to a program. -CMAKE_TAPI:FILEPATH=CMAKE_TAPI-NOTFOUND - -//The CMake toolchain file -CMAKE_TOOLCHAIN_FILE:FILEPATH=C:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/toolchain-esp32h2.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= - -//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/Laurent/.espressif/tools/idf-git/2.39.2/cmd/git.exe - -//IDF Build Target -IDF_TARGET:STRING=esp32h2 - -//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/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/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/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls - -//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\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\sdkconfig - -//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/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/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/Laurent/esp/v5.5.1/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_riscv; - -//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_riscv;general;everest;general;p256m;general;idf::esp_security;general;idf::esp_mm;general;idf::efuse; - -//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_riscv;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_riscv;general;mbedcrypto; - -//Value Computed by CMake -open-thread-rcp_BINARY_DIR:STATIC=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build - -//Value Computed by CMake -open-thread-rcp_IS_TOP_LEVEL:STATIC=ON - -//Value Computed by CMake -open-thread-rcp_SOURCE_DIR:STATIC=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp - -//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_riscv; - - -######################## -# 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/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/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=30 -//Patch version of cmake used to create the current loaded cache -CMAKE_CACHE_PATCH_VERSION:INTERNAL=2 -//Path to CMake executable. -CMAKE_COMMAND:INTERNAL=C:/Users/Laurent/.espressif/tools/cmake/3.30.2/bin/cmake.exe -//Path to cpack program executable. -CMAKE_CPACK_COMMAND:INTERNAL=C:/Users/Laurent/.espressif/tools/cmake/3.30.2/bin/cpack.exe -//Path to ctest program executable. -CMAKE_CTEST_COMMAND:INTERNAL=C:/Users/Laurent/.espressif/tools/cmake/3.30.2/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/Laurent/.espressif/tools/cmake/3.30.2/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= -//Test CMAKE_HAVE_LIBC_PTHREAD -CMAKE_HAVE_LIBC_PTHREAD:INTERNAL=1 -//Source directory with the top level CMakeLists.txt file for this -// project -CMAKE_HOME_DIRECTORY:INTERNAL=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp -//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=81 -//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/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30 -//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_TAPI -CMAKE_TAPI-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/Laurent/.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/Laurent/.espressif/python_env/idf5.5_py3.11_env/Scripts/python.exe][cfound components: Interpreter ][v3.11.2()] -//Details about finding Threads -FIND_PACKAGE_MESSAGE_DETAILS_Threads:INTERNAL=[TRUE][v()] -//ADVANCED property for variable: GIT_EXECUTABLE -GIT_EXECUTABLE-ADVANCED:INTERNAL=1 -//CMAKE_INSTALL_PREFIX during last run -_GNUInstallDirs_LAST_CMAKE_INSTALL_PREFIX:INTERNAL=C:/Program Files (x86)/open-thread-rcp -//Compiler reason failure -_Python3_Compiler_REASON_FAILURE:INTERNAL= -//Development reason failure -_Python3_Development_REASON_FAILURE:INTERNAL= -_Python3_EXECUTABLE:INTERNAL=C:/Users/Laurent/.espressif/python_env/idf5.5_py3.11_env/Scripts/python.exe -//Python3 Properties -_Python3_INTERPRETER_PROPERTIES:INTERNAL=Python;3;11;2;32;64;;;abi3;C:\Users\Laurent\.espressif\tools\idf-python\3.11.2\Lib;C:\Users\Laurent\.espressif\python_env\idf5.5_py3.11_env\Lib;C:\Users\Laurent\.espressif\python_env\idf5.5_py3.11_env\Lib\site-packages;C:\Users\Laurent\.espressif\python_env\idf5.5_py3.11_env\Lib\site-packages -_Python3_INTERPRETER_SIGNATURE:INTERNAL=e367d7dbaa2c866abbc0a3222ef64dbd -//NumPy reason failure -_Python3_NumPy_REASON_FAILURE:INTERNAL= - diff --git a/esp32-thread/open-thread-rcp/build/CMakeFiles/3.30.2/CMakeASMCompiler.cmake b/esp32-thread/open-thread-rcp/build/CMakeFiles/3.30.2/CMakeASMCompiler.cmake deleted file mode 100644 index 29a17f1a..00000000 --- a/esp32-thread/open-thread-rcp/build/CMakeFiles/3.30.2/CMakeASMCompiler.cmake +++ /dev/null @@ -1,29 +0,0 @@ -set(CMAKE_ASM_COMPILER "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc.exe") -set(CMAKE_ASM_COMPILER_ARG1 "") -set(CMAKE_AR "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar.exe") -set(CMAKE_ASM_COMPILER_AR "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ar.exe") -set(CMAKE_RANLIB "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib.exe") -set(CMAKE_ASM_COMPILER_RANLIB "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ranlib.exe") -set(CMAKE_LINKER "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ld.exe") -set(CMAKE_LINKER_LINK "") -set(CMAKE_LINKER_LLD "") -set(CMAKE_ASM_COMPILER_LINKER "") -set(CMAKE_ASM_COMPILER_LINKER_ID "") -set(CMAKE_ASM_COMPILER_LINKER_VERSION ) -set(CMAKE_ASM_COMPILER_LINKER_FRONTEND_VARIANT ) -set(CMAKE_MT "") -set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND") -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_COMPILER_SYSROOT "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr") -set(CMAKE_COMPILER_SYSROOT "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr") - -set(CMAKE_ASM_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) -set(CMAKE_ASM_LINKER_PREFERENCE 0) -set(CMAKE_ASM_LINKER_DEPFILE_SUPPORTED ) - - diff --git a/esp32-thread/open-thread-rcp/build/CMakeFiles/3.30.2/CMakeCCompiler.cmake b/esp32-thread/open-thread-rcp/build/CMakeFiles/3.30.2/CMakeCCompiler.cmake deleted file mode 100644 index 40107f21..00000000 --- a/esp32-thread/open-thread-rcp/build/CMakeFiles/3.30.2/CMakeCCompiler.cmake +++ /dev/null @@ -1,82 +0,0 @@ -set(CMAKE_C_COMPILER "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc.exe") -set(CMAKE_C_COMPILER_ARG1 "") -set(CMAKE_C_COMPILER_ID "GNU") -set(CMAKE_C_COMPILER_VERSION "14.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_STANDARD_LATEST "23") -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 "GNU") -set(CMAKE_C_SIMULATE_VERSION "") - -set(CMAKE_C_COMPILER_SYSROOT "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr") -set(CMAKE_COMPILER_SYSROOT "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr") - - -set(CMAKE_AR "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar.exe") -set(CMAKE_C_COMPILER_AR "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ar.exe") -set(CMAKE_RANLIB "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib.exe") -set(CMAKE_C_COMPILER_RANLIB "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ranlib.exe") -set(CMAKE_LINKER "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ld.exe") -set(CMAKE_LINKER_LINK "") -set(CMAKE_LINKER_LLD "") -set(CMAKE_C_COMPILER_LINKER "NOTFOUND") -set(CMAKE_C_COMPILER_LINKER_ID "") -set(CMAKE_C_COMPILER_LINKER_VERSION ) -set(CMAKE_C_COMPILER_LINKER_FRONTEND_VARIANT ) -set(CMAKE_MT "") -set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND") -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) -set(CMAKE_C_LINKER_DEPFILE_SUPPORTED FALSE) - -# 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/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/include;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/include-fixed;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include") -set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "gcc;c;nosys;c;gcc") -set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/usr/lib") -set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/esp32-thread/open-thread-rcp/build/CMakeFiles/3.30.2/CMakeCXXCompiler.cmake b/esp32-thread/open-thread-rcp/build/CMakeFiles/3.30.2/CMakeCXXCompiler.cmake deleted file mode 100644 index 2d6d4545..00000000 --- a/esp32-thread/open-thread-rcp/build/CMakeFiles/3.30.2/CMakeCXXCompiler.cmake +++ /dev/null @@ -1,106 +0,0 @@ -set(CMAKE_CXX_COMPILER "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-g++.exe") -set(CMAKE_CXX_COMPILER_ARG1 "") -set(CMAKE_CXX_COMPILER_ID "GNU") -set(CMAKE_CXX_COMPILER_VERSION "14.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_STANDARD_LATEST "26") -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;cxx_std_26") -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_CXX26_COMPILE_FEATURES "cxx_std_26") - -set(CMAKE_CXX_PLATFORM_ID "") -set(CMAKE_CXX_SIMULATE_ID "") -set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU") -set(CMAKE_CXX_SIMULATE_VERSION "") - -set(CMAKE_CXX_COMPILER_SYSROOT "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr") -set(CMAKE_COMPILER_SYSROOT "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr") - - -set(CMAKE_AR "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar.exe") -set(CMAKE_CXX_COMPILER_AR "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ar.exe") -set(CMAKE_RANLIB "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib.exe") -set(CMAKE_CXX_COMPILER_RANLIB "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ranlib.exe") -set(CMAKE_LINKER "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ld.exe") -set(CMAKE_LINKER_LINK "") -set(CMAKE_LINKER_LLD "") -set(CMAKE_CXX_COMPILER_LINKER "NOTFOUND") -set(CMAKE_CXX_COMPILER_LINKER_ID "") -set(CMAKE_CXX_COMPILER_LINKER_VERSION ) -set(CMAKE_CXX_COMPILER_LINKER_FRONTEND_VARIANT ) -set(CMAKE_MT "") -set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND") -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;ccm;cxxm;c++m) -set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) - -foreach (lang IN ITEMS 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) -set(CMAKE_CXX_LINKER_DEPFILE_SUPPORTED FALSE) - -# 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/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include/c++/14.2.0;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include/c++/14.2.0/riscv32-esp-elf/rv32imac_zicsr_zifencei/ilp32;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include/c++/14.2.0/backward;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/include;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/include-fixed;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include") -set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;m;gcc;c;nosys;c;gcc") -set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/usr/lib") -set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") -set(CMAKE_CXX_COMPILER_CLANG_RESOURCE_DIR "") - -set(CMAKE_CXX_COMPILER_IMPORT_STD "") -### Imported target for C++23 standard library -set(CMAKE_CXX23_COMPILER_IMPORT_STD_NOT_FOUND_MESSAGE "Toolchain does not support discovering `import std` support") - - -### Imported target for C++26 standard library -set(CMAKE_CXX26_COMPILER_IMPORT_STD_NOT_FOUND_MESSAGE "Toolchain does not support discovering `import std` support") - - - diff --git a/esp32-thread/open-thread-rcp/build/CMakeFiles/3.30.2/CMakeDetermineCompilerABI_C.bin b/esp32-thread/open-thread-rcp/build/CMakeFiles/3.30.2/CMakeDetermineCompilerABI_C.bin deleted file mode 100644 index cfc3f039..00000000 Binary files a/esp32-thread/open-thread-rcp/build/CMakeFiles/3.30.2/CMakeDetermineCompilerABI_C.bin and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/CMakeFiles/3.30.2/CMakeDetermineCompilerABI_CXX.bin b/esp32-thread/open-thread-rcp/build/CMakeFiles/3.30.2/CMakeDetermineCompilerABI_CXX.bin deleted file mode 100644 index 78914114..00000000 Binary files a/esp32-thread/open-thread-rcp/build/CMakeFiles/3.30.2/CMakeDetermineCompilerABI_CXX.bin and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/CMakeFiles/3.30.2/CMakeSystem.cmake b/esp32-thread/open-thread-rcp/build/CMakeFiles/3.30.2/CMakeSystem.cmake deleted file mode 100644 index d5e072fd..00000000 --- a/esp32-thread/open-thread-rcp/build/CMakeFiles/3.30.2/CMakeSystem.cmake +++ /dev/null @@ -1,15 +0,0 @@ -set(CMAKE_HOST_SYSTEM "Windows-10.0.26200") -set(CMAKE_HOST_SYSTEM_NAME "Windows") -set(CMAKE_HOST_SYSTEM_VERSION "10.0.26200") -set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64") - -include("C:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/toolchain-esp32h2.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) diff --git a/esp32-thread/open-thread-rcp/build/CMakeFiles/3.30.2/CompilerIdC/CMakeCCompilerId.c b/esp32-thread/open-thread-rcp/build/CMakeFiles/3.30.2/CompilerIdC/CMakeCCompilerId.c deleted file mode 100644 index 8d8bb038..00000000 --- a/esp32-thread/open-thread-rcp/build/CMakeFiles/3.30.2/CompilerIdC/CMakeCCompilerId.c +++ /dev/null @@ -1,904 +0,0 @@ -#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(__clang__) && defined(__cray__) -# define COMPILER_ID "CrayClang" -# define COMPILER_VERSION_MAJOR DEC(__cray_major__) -# define COMPILER_VERSION_MINOR DEC(__cray_minor__) -# define COMPILER_VERSION_PATCH DEC(__cray_patchlevel__) -# define COMPILER_VERSION_INTERNAL_STR __clang_version__ - - -#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(__TASKING__) -# define COMPILER_ID "Tasking" - # define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000) - # define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100) -# define COMPILER_VERSION_INTERNAL DEC(__VERSION__) - -#elif defined(__ORANGEC__) -# define COMPILER_ID "OrangeC" -# define COMPILER_VERSION_MAJOR DEC(__ORANGEC_MAJOR__) -# define COMPILER_VERSION_MINOR DEC(__ORANGEC_MINOR__) -# define COMPILER_VERSION_PATCH DEC(__ORANGEC_PATCHLEVEL__) - -#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/100 % 100) -# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) - -#elif defined(__clang__) && defined(__ti__) -# define COMPILER_ID "TIClang" - # define COMPILER_VERSION_MAJOR DEC(__ti_major__) - # define COMPILER_VERSION_MINOR DEC(__ti_minor__) - # define COMPILER_VERSION_PATCH DEC(__ti_patchlevel__) -# define COMPILER_VERSION_INTERNAL DEC(__ti_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(__LCC__ / 100) -# define COMPILER_VERSION_MINOR DEC(__LCC__ % 100) -# 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(__clang__) && defined(__ti__) -# if defined(__ARM_ARCH) -# define ARCHITECTURE_ID "Arm" - -# 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" - -#elif defined(__TASKING__) - -# if defined(__CTC__) || defined(__CPTC__) -# define ARCHITECTURE_ID "TriCore" - -# elif defined(__CMCS__) -# define ARCHITECTURE_ID "MCS" - -# elif defined(__CARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__CARC__) -# define ARCHITECTURE_ID "ARC" - -# elif defined(__C51__) -# define ARCHITECTURE_ID "8051" - -# elif defined(__CPCP__) -# define ARCHITECTURE_ID "PCP" - -# else -# define ARCHITECTURE_ID "" -# endif - -#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 "]"; - - - -#define C_STD_99 199901L -#define C_STD_11 201112L -#define C_STD_17 201710L -#define C_STD_23 202311L - -#ifdef __STDC_VERSION__ -# define C_STD __STDC_VERSION__ -#endif - -#if !defined(__STDC__) && !defined(__clang__) -# if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__) -# define C_VERSION "90" -# else -# define C_VERSION -# endif -#elif C_STD > C_STD_17 -# define C_VERSION "23" -#elif C_STD > C_STD_11 -# define C_VERSION "17" -#elif C_STD > C_STD_99 -# define C_VERSION "11" -#elif C_STD >= C_STD_99 -# 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 diff --git a/esp32-thread/open-thread-rcp/build/CMakeFiles/3.30.2/CompilerIdC/a.out b/esp32-thread/open-thread-rcp/build/CMakeFiles/3.30.2/CompilerIdC/a.out deleted file mode 100644 index 5d6b01d4..00000000 Binary files a/esp32-thread/open-thread-rcp/build/CMakeFiles/3.30.2/CompilerIdC/a.out and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/CMakeFiles/3.30.2/CompilerIdCXX/CMakeCXXCompilerId.cpp b/esp32-thread/open-thread-rcp/build/CMakeFiles/3.30.2/CompilerIdCXX/CMakeCXXCompilerId.cpp deleted file mode 100644 index da6c824a..00000000 --- a/esp32-thread/open-thread-rcp/build/CMakeFiles/3.30.2/CompilerIdCXX/CMakeCXXCompilerId.cpp +++ /dev/null @@ -1,919 +0,0 @@ -/* 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(__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(__clang__) && defined(__cray__) -# define COMPILER_ID "CrayClang" -# define COMPILER_VERSION_MAJOR DEC(__cray_major__) -# define COMPILER_VERSION_MINOR DEC(__cray_minor__) -# define COMPILER_VERSION_PATCH DEC(__cray_patchlevel__) -# define COMPILER_VERSION_INTERNAL_STR __clang_version__ - - -#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(__TASKING__) -# define COMPILER_ID "Tasking" - # define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000) - # define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100) -# define COMPILER_VERSION_INTERNAL DEC(__VERSION__) - -#elif defined(__ORANGEC__) -# define COMPILER_ID "OrangeC" -# define COMPILER_VERSION_MAJOR DEC(__ORANGEC_MAJOR__) -# define COMPILER_VERSION_MINOR DEC(__ORANGEC_MINOR__) -# define COMPILER_VERSION_PATCH DEC(__ORANGEC_PATCHLEVEL__) - -#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/100 % 100) -# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) - -#elif defined(__clang__) && defined(__ti__) -# define COMPILER_ID "TIClang" - # define COMPILER_VERSION_MAJOR DEC(__ti_major__) - # define COMPILER_VERSION_MINOR DEC(__ti_minor__) - # define COMPILER_VERSION_PATCH DEC(__ti_patchlevel__) -# define COMPILER_VERSION_INTERNAL DEC(__ti_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(__LCC__ / 100) -# define COMPILER_VERSION_MINOR DEC(__LCC__ % 100) -# 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(__clang__) && defined(__ti__) -# if defined(__ARM_ARCH) -# define ARCHITECTURE_ID "Arm" - -# 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" - -#elif defined(__TASKING__) - -# if defined(__CTC__) || defined(__CPTC__) -# define ARCHITECTURE_ID "TriCore" - -# elif defined(__CMCS__) -# define ARCHITECTURE_ID "MCS" - -# elif defined(__CARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__CARC__) -# define ARCHITECTURE_ID "ARC" - -# elif defined(__C51__) -# define ARCHITECTURE_ID "8051" - -# elif defined(__CPCP__) -# define ARCHITECTURE_ID "PCP" - -# else -# define ARCHITECTURE_ID "" -# endif - -#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 "]"; - - - -#define CXX_STD_98 199711L -#define CXX_STD_11 201103L -#define CXX_STD_14 201402L -#define CXX_STD_17 201703L -#define CXX_STD_20 202002L -#define CXX_STD_23 202302L - -#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) -# if _MSVC_LANG > CXX_STD_17 -# define CXX_STD _MSVC_LANG -# elif _MSVC_LANG == CXX_STD_17 && defined(__cpp_aggregate_paren_init) -# define CXX_STD CXX_STD_20 -# elif _MSVC_LANG > CXX_STD_14 && __cplusplus > CXX_STD_17 -# define CXX_STD CXX_STD_20 -# elif _MSVC_LANG > CXX_STD_14 -# define CXX_STD CXX_STD_17 -# elif defined(__INTEL_CXX11_MODE__) && defined(__cpp_aggregate_nsdmi) -# define CXX_STD CXX_STD_14 -# elif defined(__INTEL_CXX11_MODE__) -# define CXX_STD CXX_STD_11 -# else -# define CXX_STD CXX_STD_98 -# endif -#elif defined(_MSC_VER) && defined(_MSVC_LANG) -# if _MSVC_LANG > __cplusplus -# define CXX_STD _MSVC_LANG -# else -# define CXX_STD __cplusplus -# endif -#elif defined(__NVCOMPILER) -# if __cplusplus == CXX_STD_17 && defined(__cpp_aggregate_paren_init) -# define CXX_STD CXX_STD_20 -# else -# define CXX_STD __cplusplus -# endif -#elif defined(__INTEL_COMPILER) || defined(__PGI) -# if __cplusplus == CXX_STD_11 && defined(__cpp_namespace_attributes) -# define CXX_STD CXX_STD_17 -# elif __cplusplus == CXX_STD_11 && defined(__cpp_aggregate_nsdmi) -# define CXX_STD CXX_STD_14 -# else -# define CXX_STD __cplusplus -# endif -#elif (defined(__IBMCPP__) || defined(__ibmxl__)) && defined(__linux__) -# if __cplusplus == CXX_STD_11 && defined(__cpp_aggregate_nsdmi) -# define CXX_STD CXX_STD_14 -# else -# define CXX_STD __cplusplus -# endif -#elif __cplusplus == 1 && defined(__GXX_EXPERIMENTAL_CXX0X__) -# define CXX_STD CXX_STD_11 -#else -# define CXX_STD __cplusplus -#endif - -const char* info_language_standard_default = "INFO" ":" "standard_default[" -#if CXX_STD > CXX_STD_23 - "26" -#elif CXX_STD > CXX_STD_20 - "23" -#elif CXX_STD > CXX_STD_17 - "20" -#elif CXX_STD > CXX_STD_14 - "17" -#elif CXX_STD > CXX_STD_11 - "14" -#elif CXX_STD >= CXX_STD_11 - "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]; - 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; -} diff --git a/esp32-thread/open-thread-rcp/build/CMakeFiles/3.30.2/CompilerIdCXX/a.out b/esp32-thread/open-thread-rcp/build/CMakeFiles/3.30.2/CompilerIdCXX/a.out deleted file mode 100644 index 54c700ac..00000000 Binary files a/esp32-thread/open-thread-rcp/build/CMakeFiles/3.30.2/CompilerIdCXX/a.out and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/CMakeFiles/CMakeConfigureLog.yaml b/esp32-thread/open-thread-rcp/build/CMakeFiles/CMakeConfigureLog.yaml deleted file mode 100644 index 0dc6c017..00000000 --- a/esp32-thread/open-thread-rcp/build/CMakeFiles/CMakeConfigureLog.yaml +++ /dev/null @@ -1,618 +0,0 @@ - ---- -events: - - - kind: "message-v1" - backtrace: - - "C:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineSystem.cmake:200 (message)" - - "C:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)" - - "CMakeLists.txt:8 (project)" - message: | - The target system is: Generic - - - The host system is: Windows - 10.0.26200 - AMD64 - - - kind: "message-v1" - backtrace: - - "C:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:17 (message)" - - "C:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" - - "C:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCCompiler.cmake:123 (CMAKE_DETERMINE_COMPILER_ID)" - - "C:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)" - - "CMakeLists.txt:8 (project)" - message: | - Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. - Compiler: C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc.exe - Build flags: -march=rv32imac_zicsr_zifencei - Id flags: - - The output was: - 0 - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld.exe: C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32\\libc.a(libc_a-closer.o): in function `_close_r': - /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/newlib/newlib/libc/reent/closer.c:47:(.text+0x14): warning: _close is not implemented and will always fail - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld.exe: C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32\\libc.a(libc_a-lseekr.o): in function `_lseek_r': - /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/newlib/newlib/libc/reent/lseekr.c:49:(.text+0x18): warning: _lseek is not implemented and will always fail - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld.exe: C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32\\libc.a(libc_a-readr.o): in function `_read_r': - /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/newlib/newlib/libc/reent/readr.c:49:(.text+0x18): warning: _read is not implemented and will always fail - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld.exe: C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32\\libc.a(libc_a-writer.o): in function `_write_r': - /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/newlib/newlib/libc/reent/writer.c:49:(.text+0x18): warning: _write is not implemented and will always fail - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld.exe: C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32\\libc.a(libc_a-fclose.o): in function `fclose': - /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/newlib/newlib/libc/stdio/fclose.c:125:(.text+0xf4): warning: __getreent is not implemented and will always fail - - - Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out" - - The C compiler identification is GNU, found in: - C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/CMakeFiles/3.30.2/CompilerIdC/a.out - - - - kind: "message-v1" - backtrace: - - "C:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:17 (message)" - - "C:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" - - "C:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCXXCompiler.cmake:126 (CMAKE_DETERMINE_COMPILER_ID)" - - "C:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)" - - "CMakeLists.txt:8 (project)" - message: | - Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. - Compiler: C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-g++.exe - Build flags: -march=rv32imac_zicsr_zifencei - Id flags: - - The output was: - 0 - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld.exe: C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32\\libc.a(libc_a-closer.o): in function `_close_r': - /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/newlib/newlib/libc/reent/closer.c:47:(.text+0x14): warning: _close is not implemented and will always fail - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld.exe: C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32\\libc.a(libc_a-lseekr.o): in function `_lseek_r': - /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/newlib/newlib/libc/reent/lseekr.c:49:(.text+0x18): warning: _lseek is not implemented and will always fail - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld.exe: C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32\\libc.a(libc_a-readr.o): in function `_read_r': - /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/newlib/newlib/libc/reent/readr.c:49:(.text+0x18): warning: _read is not implemented and will always fail - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld.exe: C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32\\libc.a(libc_a-writer.o): in function `_write_r': - /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/newlib/newlib/libc/reent/writer.c:49:(.text+0x18): warning: _write is not implemented and will always fail - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld.exe: C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32\\libc.a(libc_a-fclose.o): in function `fclose': - /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/newlib/newlib/libc/stdio/fclose.c:125:(.text+0xf4): warning: __getreent is not implemented and will always fail - - - Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out" - - The CXX compiler identification is GNU, found in: - C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/CMakeFiles/3.30.2/CompilerIdCXX/a.out - - - - kind: "message-v1" - backtrace: - - "C:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:1192 (message)" - - "C:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineASMCompiler.cmake:135 (CMAKE_DETERMINE_COMPILER_ID_VENDOR)" - - "C:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)" - - "CMakeLists.txt:8 (project)" - message: | - Checking whether the ASM compiler is GNU using "--version" matched "(GNU assembler)|(GCC)|(Free Software Foundation)": - riscv32-esp-elf-gcc.exe (crosstool-NG esp-14.2.0_20241119) 14.2.0 - Copyright (C) 2024 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. - - - - kind: "try_compile-v1" - backtrace: - - "C:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:74 (try_compile)" - - "C:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" - - "C:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)" - - "CMakeLists.txt:8 (project)" - checks: - - "Detecting C compiler ABI info" - directories: - source: "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/CMakeFiles/CMakeScratch/TryCompile-tc02in" - binary: "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/CMakeFiles/CMakeScratch/TryCompile-tc02in" - cmakeVariables: - CMAKE_C_FLAGS: "-march=rv32imac_zicsr_zifencei " - CMAKE_C_FLAGS_DEBUG: "-g" - CMAKE_EXE_LINKER_FLAGS: "-nostartfiles -march=rv32imac_zicsr_zifencei " - CMAKE_MODULE_PATH: "C:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake;C:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/third_party" - buildResult: - variable: "CMAKE_C_ABI_COMPILED" - cached: true - stdout: | - Change Dir: 'C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/CMakeFiles/CMakeScratch/TryCompile-tc02in' - - Run Build Command(s): C:/Users/Laurent/.espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_a9c19 - [1/2] C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -march=rv32imac_zicsr_zifencei -v -o CMakeFiles/cmTC_a9c19.dir/CMakeCCompilerABI.c.obj -c C:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c - Using built-in specs. - COLLECT_GCC=C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe - Target: riscv32-esp-elf - Configured with: /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=riscv32-esp-elf --prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-arch=rv32gc --with-abi=ilp32 --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --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/riscv32-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/riscv32-esp-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 zstd - gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) - COLLECT_GCC_OPTIONS='-march=rv32imac_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_a9c19.dir/CMakeCCompilerABI.c.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_a9c19.dir/' - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/cc1.exe -quiet -v -imultilib rv32imac_zicsr_zifencei/ilp32 -iprefix C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/ -isysroot C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf C:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_a9c19.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -march=rv32imac_zicsr_zifencei -mabi=ilp32 -misa-spec=20191213 -march=rv32imac_zicsr_zifencei -version -o C:\\Users\\Laurent\\AppData\\Local\\Temp\\ccbxkiF2.s - GNU C17 (crosstool-NG esp-14.2.0_20241119) version 14.2.0 (riscv32-esp-elf) - compiled by GNU C version 6.3.0 20170516, GMP version 6.2.1, MPFR version 4.2.1, MPC version 1.2.1, isl version isl-0.26-GMP - - GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 - ignoring duplicate directory "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/include" - ignoring nonexistent directory "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/builds/idf/crosstool-NG/builds/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/../../../../include" - ignoring duplicate directory "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/include-fixed" - ignoring duplicate directory "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include" - ignoring duplicate directory "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/include" - #include "..." search starts here: - #include <...> search starts here: - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include-fixed - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include - End of search list. - Compiler executable checksum: bd4b44cd937a52babfee906ad526682a - COLLECT_GCC_OPTIONS='-march=rv32imac_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_a9c19.dir/CMakeCCompilerABI.c.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_a9c19.dir/' - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/as.exe -v --traditional-format -march=rv32imac_zicsr_zifencei -march=rv32imac_zicsr_zifencei -mabi=ilp32 -misa-spec=20191213 -o CMakeFiles/cmTC_a9c19.dir/CMakeCCompilerABI.c.obj C:\\Users\\Laurent\\AppData\\Local\\Temp\\ccbxkiF2.s - GNU assembler version 2.43.1 (riscv32-esp-elf) using BFD version (crosstool-NG esp-14.2.0_20241119) 2.43.1 - COMPILER_PATH=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ - LIBRARY_PATH=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib/\x0d - COLLECT_GCC_OPTIONS='-march=rv32imac_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_a9c19.dir/CMakeCCompilerABI.c.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_a9c19.dir/CMakeCCompilerABI.c.'\x0d - [2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -march=rv32imac_zicsr_zifencei -nostartfiles -march=rv32imac_zicsr_zifencei -v CMakeFiles/cmTC_a9c19.dir/CMakeCCompilerABI.c.obj -o cmTC_a9c19 && cd ." - Using built-in specs. - COLLECT_GCC=C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe - COLLECT_LTO_WRAPPER=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/lto-wrapper.exe - Target: riscv32-esp-elf - Configured with: /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=riscv32-esp-elf --prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-arch=rv32gc --with-abi=ilp32 --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --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/riscv32-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/riscv32-esp-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 zstd - gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) - COMPILER_PATH=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ - LIBRARY_PATH=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib/ - COLLECT_GCC_OPTIONS='-nostartfiles' '-march=rv32imac_zicsr_zifencei' '-v' '-o' 'cmTC_a9c19' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'cmTC_a9c19.' - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/collect2.exe -plugin C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/liblto_plugin.dll -plugin-opt=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\Laurent\\AppData\\Local\\Temp\\cchGLbK8.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 --sysroot=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf -melf32lriscv -X -o cmTC_a9c19 -LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32 -LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32 -LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32 -LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0 -LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc -LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib -LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib -LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib CMakeFiles/cmTC_a9c19.dir/CMakeCCompilerABI.c.obj -lgcc -lc -lnosys -lc -lgcc - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld.exe: warning: cannot find entry symbol _start; defaulting to 00010094\x0d - COLLECT_GCC_OPTIONS='-nostartfiles' '-march=rv32imac_zicsr_zifencei' '-v' '-o' 'cmTC_a9c19' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'cmTC_a9c19.'\x0d - - exitCode: 0 - - - kind: "message-v1" - backtrace: - - "C:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:182 (message)" - - "C:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" - - "C:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)" - - "CMakeLists.txt:8 (project)" - message: | - Parsed C implicit include dir info: rv=done - found start of include info - found start of implicit include info - add: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include] - add: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include-fixed] - add: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include] - end of search list found - collapse include dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include] ==> [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/include] - collapse include dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include-fixed] ==> [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/include-fixed] - collapse include dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include] ==> [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include] - implicit include dirs: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/include;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/include-fixed;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include] - - - - - kind: "message-v1" - backtrace: - - "C:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:218 (message)" - - "C:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" - - "C:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)" - - "CMakeLists.txt:8 (project)" - message: | - Parsed C implicit link information: - link line regex: [^( *|.*[/\\])(ld[0-9]*(\\.[a-z]+)?|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] - linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(\\.[a-z]+)?))("|,| |$)] - ignore line: [Change Dir: 'C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/CMakeFiles/CMakeScratch/TryCompile-tc02in'] - ignore line: [] - ignore line: [Run Build Command(s): C:/Users/Laurent/.espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_a9c19] - ignore line: [[1/2] C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -march=rv32imac_zicsr_zifencei -v -o CMakeFiles/cmTC_a9c19.dir/CMakeCCompilerABI.c.obj -c C:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c] - ignore line: [Using built-in specs.] - ignore line: [COLLECT_GCC=C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe] - ignore line: [Target: riscv32-esp-elf] - ignore line: [Configured with: /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=riscv32-esp-elf --prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-arch=rv32gc --with-abi=ilp32 --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --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/riscv32-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/riscv32-esp-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 zstd] - ignore line: [gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) ] - ignore line: [COLLECT_GCC_OPTIONS='-march=rv32imac_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_a9c19.dir/CMakeCCompilerABI.c.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_a9c19.dir/'] - ignore line: [ C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/cc1.exe -quiet -v -imultilib rv32imac_zicsr_zifencei/ilp32 -iprefix C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/ -isysroot C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf C:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_a9c19.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -march=rv32imac_zicsr_zifencei -mabi=ilp32 -misa-spec=20191213 -march=rv32imac_zicsr_zifencei -version -o C:\\Users\\Laurent\\AppData\\Local\\Temp\\ccbxkiF2.s] - ignore line: [GNU C17 (crosstool-NG esp-14.2.0_20241119) version 14.2.0 (riscv32-esp-elf)] - ignore line: [ compiled by GNU C version 6.3.0 20170516 GMP version 6.2.1 MPFR version 4.2.1 MPC version 1.2.1 isl version isl-0.26-GMP] - ignore line: [] - ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] - ignore line: [ignoring duplicate directory "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/include"] - ignore line: [ignoring nonexistent directory "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/builds/idf/crosstool-NG/builds/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/../../../../include"] - ignore line: [ignoring duplicate directory "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/include-fixed"] - ignore line: [ignoring duplicate directory "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include"] - ignore line: [ignoring duplicate directory "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/include"] - ignore line: [#include "..." search starts here:] - ignore line: [#include <...> search starts here:] - ignore line: [ C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include] - ignore line: [ C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include-fixed] - ignore line: [ C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include] - ignore line: [End of search list.] - ignore line: [Compiler executable checksum: bd4b44cd937a52babfee906ad526682a] - ignore line: [COLLECT_GCC_OPTIONS='-march=rv32imac_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_a9c19.dir/CMakeCCompilerABI.c.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_a9c19.dir/'] - ignore line: [ C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/as.exe -v --traditional-format -march=rv32imac_zicsr_zifencei -march=rv32imac_zicsr_zifencei -mabi=ilp32 -misa-spec=20191213 -o CMakeFiles/cmTC_a9c19.dir/CMakeCCompilerABI.c.obj C:\\Users\\Laurent\\AppData\\Local\\Temp\\ccbxkiF2.s] - ignore line: [GNU assembler version 2.43.1 (riscv32-esp-elf) using BFD version (crosstool-NG esp-14.2.0_20241119) 2.43.1] - ignore line: [COMPILER_PATH=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/] - ignore line: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/] - ignore line: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/] - ignore line: [LIBRARY_PATH=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/] - ignore line: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/] - ignore line: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/] - ignore line: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/] - ignore line: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/] - ignore line: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/] - ignore line: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/] - ignore line: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib/\x0d] - ignore line: [COLLECT_GCC_OPTIONS='-march=rv32imac_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_a9c19.dir/CMakeCCompilerABI.c.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_a9c19.dir/CMakeCCompilerABI.c.'\x0d] - ignore line: [[2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -march=rv32imac_zicsr_zifencei -nostartfiles -march=rv32imac_zicsr_zifencei -v CMakeFiles/cmTC_a9c19.dir/CMakeCCompilerABI.c.obj -o cmTC_a9c19 && cd ."] - ignore line: [Using built-in specs.] - ignore line: [COLLECT_GCC=C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe] - ignore line: [COLLECT_LTO_WRAPPER=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/lto-wrapper.exe] - ignore line: [Target: riscv32-esp-elf] - ignore line: [Configured with: /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=riscv32-esp-elf --prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-arch=rv32gc --with-abi=ilp32 --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --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/riscv32-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/riscv32-esp-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 zstd] - ignore line: [gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) ] - ignore line: [COMPILER_PATH=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/] - ignore line: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/] - ignore line: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/] - ignore line: [LIBRARY_PATH=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/] - ignore line: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/] - ignore line: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/] - ignore line: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/] - ignore line: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/] - ignore line: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/] - ignore line: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/] - ignore line: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib/] - ignore line: [COLLECT_GCC_OPTIONS='-nostartfiles' '-march=rv32imac_zicsr_zifencei' '-v' '-o' 'cmTC_a9c19' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'cmTC_a9c19.'] - link line: [ C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/collect2.exe -plugin C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/liblto_plugin.dll -plugin-opt=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\Laurent\\AppData\\Local\\Temp\\cchGLbK8.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 --sysroot=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf -melf32lriscv -X -o cmTC_a9c19 -LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32 -LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32 -LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32 -LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0 -LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc -LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib -LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib -LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib CMakeFiles/cmTC_a9c19.dir/CMakeCCompilerABI.c.obj -lgcc -lc -lnosys -lc -lgcc] - arg [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/collect2.exe] ==> ignore - arg [-plugin] ==> ignore - arg [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/liblto_plugin.dll] ==> ignore - arg [-plugin-opt=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/lto-wrapper.exe] ==> ignore - arg [-plugin-opt=-fresolution=C:\\Users\\Laurent\\AppData\\Local\\Temp\\cchGLbK8.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 [--sysroot=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf] ==> ignore - arg [-melf32lriscv] ==> ignore - arg [-X] ==> ignore - arg [-o] ==> ignore - arg [cmTC_a9c19] ==> ignore - arg [-LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32] ==> dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32] - arg [-LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32] ==> dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32] - arg [-LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32] ==> dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32] - arg [-LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0] ==> dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0] - arg [-LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc] ==> dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc] - arg [-LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib] ==> dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib] - arg [-LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib] ==> dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib] - arg [-LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib] ==> dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib] - arg [CMakeFiles/cmTC_a9c19.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] - ignore line: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld.exe: warning: cannot find entry symbol _start] - ignore line: [ defaulting to 00010094\x0d] - ignore line: [COLLECT_GCC_OPTIONS='-nostartfiles' '-march=rv32imac_zicsr_zifencei' '-v' '-o' 'cmTC_a9c19' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'cmTC_a9c19.'\x0d] - ignore line: [] - ignore line: [] - collapse library dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32] ==> [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32] - collapse library dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32] ==> [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32] - collapse library dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32] ==> [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32] - collapse library dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0] ==> [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0] - collapse library dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc] ==> [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc] - collapse library dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib] ==> [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib] - collapse library dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib] ==> [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib] - collapse library dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib] ==> [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/usr/lib] - implicit libs: [gcc;c;nosys;c;gcc] - implicit objs: [] - implicit dirs: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/usr/lib] - implicit fwks: [] - - - - - kind: "try_compile-v1" - backtrace: - - "C:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:74 (try_compile)" - - "C:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" - - "C:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)" - - "CMakeLists.txt:8 (project)" - checks: - - "Detecting CXX compiler ABI info" - directories: - source: "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/CMakeFiles/CMakeScratch/TryCompile-rli8z6" - binary: "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/CMakeFiles/CMakeScratch/TryCompile-rli8z6" - cmakeVariables: - CMAKE_CXX_FLAGS: "-march=rv32imac_zicsr_zifencei " - CMAKE_CXX_FLAGS_DEBUG: "-g" - CMAKE_CXX_SCAN_FOR_MODULES: "OFF" - CMAKE_EXE_LINKER_FLAGS: "-nostartfiles -march=rv32imac_zicsr_zifencei " - CMAKE_MODULE_PATH: "C:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake;C:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/third_party" - buildResult: - variable: "CMAKE_CXX_ABI_COMPILED" - cached: true - stdout: | - Change Dir: 'C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/CMakeFiles/CMakeScratch/TryCompile-rli8z6' - - Run Build Command(s): C:/Users/Laurent/.espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_9791d - [1/2] C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -march=rv32imac_zicsr_zifencei -v -o CMakeFiles/cmTC_9791d.dir/CMakeCXXCompilerABI.cpp.obj -c C:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp - Using built-in specs. - COLLECT_GCC=C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe - Target: riscv32-esp-elf - Configured with: /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=riscv32-esp-elf --prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-arch=rv32gc --with-abi=ilp32 --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --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/riscv32-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/riscv32-esp-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 zstd - gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) - COLLECT_GCC_OPTIONS='-march=rv32imac_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_9791d.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_9791d.dir/' - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/cc1plus.exe -quiet -v -imultilib rv32imac_zicsr_zifencei/ilp32 -iprefix C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/ -isysroot C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf C:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_9791d.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -march=rv32imac_zicsr_zifencei -mabi=ilp32 -misa-spec=20191213 -march=rv32imac_zicsr_zifencei -version -o C:\\Users\\Laurent\\AppData\\Local\\Temp\\ccAL7Sgb.s - GNU C++17 (crosstool-NG esp-14.2.0_20241119) version 14.2.0 (riscv32-esp-elf) - compiled by GNU C version 6.3.0 20170516, GMP version 6.2.1, MPFR version 4.2.1, MPC version 1.2.1, isl version isl-0.26-GMP - - GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 - ignoring duplicate directory "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0" - ignoring duplicate directory "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0/riscv32-esp-elf/rv32imac_zicsr_zifencei/ilp32" - ignoring duplicate directory "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0/backward" - ignoring duplicate directory "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/include" - ignoring nonexistent directory "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/builds/idf/crosstool-NG/builds/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/../../../../include" - ignoring duplicate directory "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/include-fixed" - ignoring duplicate directory "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include" - ignoring duplicate directory "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/include" - #include "..." search starts here: - #include <...> search starts here: - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0 - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0/riscv32-esp-elf/rv32imac_zicsr_zifencei/ilp32 - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0/backward - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include-fixed - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include - End of search list. - Compiler executable checksum: b8daf4944b33b24ed9ecf5a047df93fe - COLLECT_GCC_OPTIONS='-march=rv32imac_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_9791d.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_9791d.dir/' - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/as.exe -v --traditional-format -march=rv32imac_zicsr_zifencei -march=rv32imac_zicsr_zifencei -mabi=ilp32 -misa-spec=20191213 -o CMakeFiles/cmTC_9791d.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\Laurent\\AppData\\Local\\Temp\\ccAL7Sgb.s - GNU assembler version 2.43.1 (riscv32-esp-elf) using BFD version (crosstool-NG esp-14.2.0_20241119) 2.43.1 - COMPILER_PATH=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ - LIBRARY_PATH=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib/ - COLLECT_GCC_OPTIONS='-march=rv32imac_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_9791d.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_9791d.dir/CMakeCXXCompilerABI.cpp.'\x0d - [2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -march=rv32imac_zicsr_zifencei -nostartfiles -march=rv32imac_zicsr_zifencei -v CMakeFiles/cmTC_9791d.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_9791d && cd ." - Using built-in specs. - COLLECT_GCC=C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe - COLLECT_LTO_WRAPPER=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/lto-wrapper.exe - Target: riscv32-esp-elf - Configured with: /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=riscv32-esp-elf --prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-arch=rv32gc --with-abi=ilp32 --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --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/riscv32-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/riscv32-esp-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 zstd - gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) - COMPILER_PATH=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ - LIBRARY_PATH=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib/ - COLLECT_GCC_OPTIONS='-nostartfiles' '-march=rv32imac_zicsr_zifencei' '-v' '-o' 'cmTC_9791d' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'cmTC_9791d.' - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/collect2.exe -plugin C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/liblto_plugin.dll -plugin-opt=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\Laurent\\AppData\\Local\\Temp\\cc292Egg.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 --sysroot=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf -melf32lriscv -X -o cmTC_9791d -LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32 -LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32 -LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32 -LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0 -LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc -LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib -LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib -LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib CMakeFiles/cmTC_9791d.dir/CMakeCXXCompilerABI.cpp.obj -lstdc++ -lm -lgcc -lc -lnosys -lc -lgcc\x0d - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld.exe: warning: cannot find entry symbol _start; defaulting to 00010094\x0d - COLLECT_GCC_OPTIONS='-nostartfiles' '-march=rv32imac_zicsr_zifencei' '-v' '-o' 'cmTC_9791d' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'cmTC_9791d.'\x0d - - exitCode: 0 - - - kind: "message-v1" - backtrace: - - "C:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:182 (message)" - - "C:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" - - "C:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)" - - "CMakeLists.txt:8 (project)" - message: | - Parsed CXX implicit include dir info: rv=done - found start of include info - found start of implicit include info - add: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0] - add: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0/riscv32-esp-elf/rv32imac_zicsr_zifencei/ilp32] - add: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0/backward] - add: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include] - add: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include-fixed] - add: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include] - end of search list found - collapse include dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0] ==> [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include/c++/14.2.0] - collapse include dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0/riscv32-esp-elf/rv32imac_zicsr_zifencei/ilp32] ==> [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include/c++/14.2.0/riscv32-esp-elf/rv32imac_zicsr_zifencei/ilp32] - collapse include dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0/backward] ==> [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include/c++/14.2.0/backward] - collapse include dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include] ==> [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/include] - collapse include dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include-fixed] ==> [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/include-fixed] - collapse include dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include] ==> [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include] - implicit include dirs: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include/c++/14.2.0;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include/c++/14.2.0/riscv32-esp-elf/rv32imac_zicsr_zifencei/ilp32;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include/c++/14.2.0/backward;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/include;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/include-fixed;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include] - - - - - kind: "message-v1" - backtrace: - - "C:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:218 (message)" - - "C:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" - - "C:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)" - - "CMakeLists.txt:8 (project)" - message: | - Parsed CXX implicit link information: - link line regex: [^( *|.*[/\\])(ld[0-9]*(\\.[a-z]+)?|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] - linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(\\.[a-z]+)?))("|,| |$)] - ignore line: [Change Dir: 'C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/CMakeFiles/CMakeScratch/TryCompile-rli8z6'] - ignore line: [] - ignore line: [Run Build Command(s): C:/Users/Laurent/.espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_9791d] - ignore line: [[1/2] C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -march=rv32imac_zicsr_zifencei -v -o CMakeFiles/cmTC_9791d.dir/CMakeCXXCompilerABI.cpp.obj -c C:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp] - ignore line: [Using built-in specs.] - ignore line: [COLLECT_GCC=C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe] - ignore line: [Target: riscv32-esp-elf] - ignore line: [Configured with: /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=riscv32-esp-elf --prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-arch=rv32gc --with-abi=ilp32 --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --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/riscv32-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/riscv32-esp-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 zstd] - ignore line: [gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) ] - ignore line: [COLLECT_GCC_OPTIONS='-march=rv32imac_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_9791d.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_9791d.dir/'] - ignore line: [ C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/cc1plus.exe -quiet -v -imultilib rv32imac_zicsr_zifencei/ilp32 -iprefix C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/ -isysroot C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf C:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_9791d.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -march=rv32imac_zicsr_zifencei -mabi=ilp32 -misa-spec=20191213 -march=rv32imac_zicsr_zifencei -version -o C:\\Users\\Laurent\\AppData\\Local\\Temp\\ccAL7Sgb.s] - ignore line: [GNU C++17 (crosstool-NG esp-14.2.0_20241119) version 14.2.0 (riscv32-esp-elf)] - ignore line: [ compiled by GNU C version 6.3.0 20170516 GMP version 6.2.1 MPFR version 4.2.1 MPC version 1.2.1 isl version isl-0.26-GMP] - ignore line: [] - ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] - ignore line: [ignoring duplicate directory "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0"] - ignore line: [ignoring duplicate directory "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0/riscv32-esp-elf/rv32imac_zicsr_zifencei/ilp32"] - ignore line: [ignoring duplicate directory "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0/backward"] - ignore line: [ignoring duplicate directory "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/include"] - ignore line: [ignoring nonexistent directory "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/builds/idf/crosstool-NG/builds/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/../../../../include"] - ignore line: [ignoring duplicate directory "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/include-fixed"] - ignore line: [ignoring duplicate directory "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include"] - ignore line: [ignoring duplicate directory "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/include"] - ignore line: [#include "..." search starts here:] - ignore line: [#include <...> search starts here:] - ignore line: [ C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0] - ignore line: [ C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0/riscv32-esp-elf/rv32imac_zicsr_zifencei/ilp32] - ignore line: [ C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0/backward] - ignore line: [ C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include] - ignore line: [ C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include-fixed] - ignore line: [ C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include] - ignore line: [End of search list.] - ignore line: [Compiler executable checksum: b8daf4944b33b24ed9ecf5a047df93fe] - ignore line: [COLLECT_GCC_OPTIONS='-march=rv32imac_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_9791d.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_9791d.dir/'] - ignore line: [ C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/as.exe -v --traditional-format -march=rv32imac_zicsr_zifencei -march=rv32imac_zicsr_zifencei -mabi=ilp32 -misa-spec=20191213 -o CMakeFiles/cmTC_9791d.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\Laurent\\AppData\\Local\\Temp\\ccAL7Sgb.s] - ignore line: [GNU assembler version 2.43.1 (riscv32-esp-elf) using BFD version (crosstool-NG esp-14.2.0_20241119) 2.43.1] - ignore line: [COMPILER_PATH=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/] - ignore line: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/] - ignore line: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/] - ignore line: [LIBRARY_PATH=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/] - ignore line: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/] - ignore line: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/] - ignore line: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/] - ignore line: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/] - ignore line: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/] - ignore line: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/] - ignore line: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib/] - ignore line: [COLLECT_GCC_OPTIONS='-march=rv32imac_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_9791d.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_9791d.dir/CMakeCXXCompilerABI.cpp.'\x0d] - ignore line: [[2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -march=rv32imac_zicsr_zifencei -nostartfiles -march=rv32imac_zicsr_zifencei -v CMakeFiles/cmTC_9791d.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_9791d && cd ."] - ignore line: [Using built-in specs.] - ignore line: [COLLECT_GCC=C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe] - ignore line: [COLLECT_LTO_WRAPPER=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/lto-wrapper.exe] - ignore line: [Target: riscv32-esp-elf] - ignore line: [Configured with: /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=riscv32-esp-elf --prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-arch=rv32gc --with-abi=ilp32 --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --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/riscv32-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/riscv32-esp-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 zstd] - ignore line: [gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) ] - ignore line: [COMPILER_PATH=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/] - ignore line: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/] - ignore line: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/] - ignore line: [LIBRARY_PATH=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/] - ignore line: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/] - ignore line: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/] - ignore line: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/] - ignore line: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/] - ignore line: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/] - ignore line: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/] - ignore line: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib/] - ignore line: [COLLECT_GCC_OPTIONS='-nostartfiles' '-march=rv32imac_zicsr_zifencei' '-v' '-o' 'cmTC_9791d' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'cmTC_9791d.'] - link line: [ C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/collect2.exe -plugin C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/liblto_plugin.dll -plugin-opt=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\Laurent\\AppData\\Local\\Temp\\cc292Egg.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 --sysroot=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf -melf32lriscv -X -o cmTC_9791d -LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32 -LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32 -LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32 -LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0 -LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc -LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib -LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib -LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib CMakeFiles/cmTC_9791d.dir/CMakeCXXCompilerABI.cpp.obj -lstdc++ -lm -lgcc -lc -lnosys -lc -lgcc\x0d] - arg [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/collect2.exe] ==> ignore - arg [-plugin] ==> ignore - arg [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/liblto_plugin.dll] ==> ignore - arg [-plugin-opt=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/lto-wrapper.exe] ==> ignore - arg [-plugin-opt=-fresolution=C:\\Users\\Laurent\\AppData\\Local\\Temp\\cc292Egg.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 [--sysroot=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf] ==> ignore - arg [-melf32lriscv] ==> ignore - arg [-X] ==> ignore - arg [-o] ==> ignore - arg [cmTC_9791d] ==> ignore - arg [-LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32] ==> dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32] - arg [-LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32] ==> dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32] - arg [-LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32] ==> dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32] - arg [-LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0] ==> dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0] - arg [-LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc] ==> dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc] - arg [-LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib] ==> dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib] - arg [-LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib] ==> dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib] - arg [-LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib] ==> dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib] - arg [CMakeFiles/cmTC_9791d.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] - ignore line: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld.exe: warning: cannot find entry symbol _start] - ignore line: [ defaulting to 00010094\x0d] - ignore line: [COLLECT_GCC_OPTIONS='-nostartfiles' '-march=rv32imac_zicsr_zifencei' '-v' '-o' 'cmTC_9791d' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'cmTC_9791d.'\x0d] - ignore line: [] - ignore line: [] - collapse library dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32] ==> [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32] - collapse library dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32] ==> [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32] - collapse library dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32] ==> [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32] - collapse library dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0] ==> [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0] - collapse library dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc] ==> [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc] - collapse library dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib] ==> [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib] - collapse library dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib] ==> [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib] - collapse library dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib] ==> [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/usr/lib] - implicit libs: [stdc++;m;gcc;c;nosys;c;gcc] - implicit objs: [] - implicit dirs: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/usr/lib] - implicit fwks: [] - - - - - kind: "try_compile-v1" - backtrace: - - "C:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckSourceCompiles.cmake:101 (try_compile)" - - "C:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCSourceCompiles.cmake:52 (cmake_check_source_compiles)" - - "C:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindThreads.cmake:97 (CHECK_C_SOURCE_COMPILES)" - - "C:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindThreads.cmake:163 (_threads_check_libc)" - - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/CMakeLists.txt:139 (find_package)" - checks: - - "Performing Test CMAKE_HAVE_LIBC_PTHREAD" - directories: - source: "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/CMakeFiles/CMakeScratch/TryCompile-6hfgl8" - binary: "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/CMakeFiles/CMakeScratch/TryCompile-6hfgl8" - cmakeVariables: - CMAKE_C_FLAGS: "-march=rv32imac_zicsr_zifencei " - CMAKE_C_FLAGS_DEBUG: "-g" - CMAKE_EXE_LINKER_FLAGS: "-nostartfiles -march=rv32imac_zicsr_zifencei " - CMAKE_MODULE_PATH: "C:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake;C:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/third_party" - buildResult: - variable: "CMAKE_HAVE_LIBC_PTHREAD" - cached: true - stdout: | - Change Dir: 'C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/CMakeFiles/CMakeScratch/TryCompile-6hfgl8' - - Run Build Command(s): C:/Users/Laurent/.espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_9ea80 - [1/2] C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DCMAKE_HAVE_LIBC_PTHREAD -march=rv32imac_zicsr_zifencei -o CMakeFiles/cmTC_9ea80.dir/src.c.obj -c C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/CMakeFiles/CMakeScratch/TryCompile-6hfgl8/src.c - [2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -march=rv32imac_zicsr_zifencei -nostartfiles -march=rv32imac_zicsr_zifencei CMakeFiles/cmTC_9ea80.dir/src.c.obj -o cmTC_9ea80 && cd ." - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld.exe: CMakeFiles/cmTC_9ea80.dir/src.c.obj: in function `main': - src.c:(.text+0x6e): warning: pthread_atfork is not implemented and will always fail - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld.exe: src.c:(.text+0x50): warning: pthread_cancel is not implemented and will always fail - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld.exe: src.c:(.text+0x34): warning: pthread_create is not implemented and will always fail - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld.exe: src.c:(.text+0x42): warning: pthread_detach is not implemented and will always fail - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld.exe: src.c:(.text+0x78): warning: pthread_exit is not implemented and will always fail - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld.exe: src.c:(.text+0x60): warning: pthread_join is not implemented and will always fail\x0d - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld.exe: warning: cannot find entry symbol _start; defaulting to 00010094\x0d - - exitCode: 0 - - - kind: "try_compile-v1" - backtrace: - - "C:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckSourceCompiles.cmake:101 (try_compile)" - - "C:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckCompilerFlag.cmake:18 (cmake_check_source_compiles)" - - "C:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCCompilerFlag.cmake:51 (cmake_check_compiler_flag)" - - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/CMakeLists.txt:222 (CHECK_C_COMPILER_FLAG)" - checks: - - "Performing Test C_COMPILER_SUPPORTS_WFORMAT_SIGNEDNESS" - directories: - source: "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/CMakeFiles/CMakeScratch/TryCompile-lqikt9" - binary: "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/CMakeFiles/CMakeScratch/TryCompile-lqikt9" - cmakeVariables: - CMAKE_C_FLAGS: "-march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow" - CMAKE_C_FLAGS_DEBUG: "-g" - CMAKE_EXE_LINKER_FLAGS: "-nostartfiles -march=rv32imac_zicsr_zifencei " - CMAKE_MODULE_PATH: "C:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake;C:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/third_party" - buildResult: - variable: "C_COMPILER_SUPPORTS_WFORMAT_SIGNEDNESS" - cached: true - stdout: | - Change Dir: 'C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/CMakeFiles/CMakeScratch/TryCompile-lqikt9' - - Run Build Command(s): C:/Users/Laurent/.espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_9d3e9 - [1/2] C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DC_COMPILER_SUPPORTS_WFORMAT_SIGNEDNESS -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -o CMakeFiles/cmTC_9d3e9.dir/src.c.obj -c C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/CMakeFiles/CMakeScratch/TryCompile-lqikt9/src.c - [2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -nostartfiles -march=rv32imac_zicsr_zifencei CMakeFiles/cmTC_9d3e9.dir/src.c.obj -o cmTC_9d3e9 && cd ." - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld.exe: warning: cannot find entry symbol _start; defaulting to 00010094\x0d - - exitCode: 0 -... diff --git a/esp32-thread/open-thread-rcp/build/CMakeFiles/TargetDirectories.txt b/esp32-thread/open-thread-rcp/build/CMakeFiles/TargetDirectories.txt deleted file mode 100644 index 0acd64e6..00000000 --- a/esp32-thread/open-thread-rcp/build/CMakeFiles/TargetDirectories.txt +++ /dev/null @@ -1,590 +0,0 @@ -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/CMakeFiles/menuconfig.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/CMakeFiles/confserver.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/CMakeFiles/save-defconfig.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/CMakeFiles/bootloader.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/CMakeFiles/gen_project_binary.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/CMakeFiles/app.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/CMakeFiles/erase_flash.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/CMakeFiles/merge-bin.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/CMakeFiles/monitor.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/CMakeFiles/flash.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/CMakeFiles/encrypted-flash.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/CMakeFiles/_project_elf_src.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/CMakeFiles/open-thread-rcp.elf.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/CMakeFiles/size.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/CMakeFiles/size-files.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/CMakeFiles/size-components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/CMakeFiles/uf2.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/CMakeFiles/uf2-app.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/CMakeFiles/__ldgen_output_sections.ld.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/riscv/CMakeFiles/__idf_riscv.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/riscv/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/riscv/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/riscv/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/riscv/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/riscv/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/riscv/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_gpio/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_gpio/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_gpio/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_gpio/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_gpio/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_gpio/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_timer/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_timer/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_timer/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_timer/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_timer/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_timer/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_pm/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_pm/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_pm/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_pm/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_pm/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_pm/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/CMakeFiles/custom_bundle.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/CMakeFiles/apidoc.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/lib.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/bootloader/CMakeFiles/bootloader-flash.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/bootloader/CMakeFiles/encrypted-bootloader-flash.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/bootloader/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/bootloader/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/bootloader/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/bootloader/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/bootloader/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/bootloader/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esptool_py/CMakeFiles/app-flash.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esptool_py/CMakeFiles/encrypted-app-flash.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esptool_py/CMakeFiles/app_check_size.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esptool_py/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esptool_py/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esptool_py/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esptool_py/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esptool_py/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esptool_py/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/partition_table/CMakeFiles/partition_table_bin.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/partition_table/CMakeFiles/partition-table.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/partition_table/CMakeFiles/partition_table.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/partition_table/CMakeFiles/partition-table-flash.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/partition_table/CMakeFiles/encrypted-partition-table-flash.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/partition_table/CMakeFiles/partition_table-flash.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/partition_table/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/partition_table/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/partition_table/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/partition_table/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/partition_table/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/partition_table/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_app_format/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_app_format/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_app_format/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_app_format/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_app_format/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_app_format/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_bootloader_format/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_bootloader_format/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_bootloader_format/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_bootloader_format/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_bootloader_format/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_bootloader_format/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/app_update/CMakeFiles/__idf_app_update.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/app_update/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/app_update/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/app_update/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/app_update/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/app_update/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/app_update/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_partition/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_partition/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_partition/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_partition/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_partition/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_partition/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/efuse/CMakeFiles/efuse-common-table.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/efuse/CMakeFiles/efuse_common_table.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/efuse/CMakeFiles/efuse-custom-table.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/efuse/CMakeFiles/efuse_custom_table.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/efuse/CMakeFiles/show-efuse-table.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/efuse/CMakeFiles/show_efuse_table.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/efuse/CMakeFiles/efuse_test_table.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/efuse/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/efuse/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/efuse/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/efuse/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/efuse/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/efuse/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/bootloader_support/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/bootloader_support/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/bootloader_support/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/bootloader_support/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/bootloader_support/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/bootloader_support/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_mm/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_mm/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_mm/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_mm/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_mm/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_mm/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/spi_flash/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/spi_flash/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/spi_flash/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/spi_flash/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/spi_flash/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/spi_flash/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/memory.ld.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/sections.ld.in.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/port/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/port/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/port/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/port/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/port/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/port/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/port/soc/esp32h2/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/port/soc/esp32h2/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/port/soc/esp32h2/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/port/soc/esp32h2/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/port/soc/esp32h2/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/port/soc/esp32h2/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_common/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_common/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_common/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_common/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_common/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_common/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_rom/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_rom/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_rom/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_rom/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_rom/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_rom/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/log/CMakeFiles/__idf_log.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/log/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/log/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/log/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/log/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/log/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/log/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/heap/CMakeFiles/__idf_heap.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/heap/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/heap/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/heap/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/heap/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/heap/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/heap/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_security/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_security/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_security/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_security/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_security/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_security/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/port/esp32h2/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/port/esp32h2/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/port/esp32h2/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/port/esp32h2/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/port/esp32h2/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/port/esp32h2/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/lowpower/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/lowpower/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/lowpower/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/lowpower/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/lowpower/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/lowpower/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/freertos/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/freertos/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/freertos/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/freertos/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/freertos/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/freertos/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/newlib/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/newlib/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/newlib/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/newlib/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/newlib/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/newlib/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/newlib/src/port/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/newlib/src/port/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/newlib/src/port/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/newlib/src/port/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/newlib/src/port/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/newlib/src/port/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/pthread/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/pthread/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/pthread/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/pthread/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/pthread/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/pthread/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/cxx/CMakeFiles/__idf_cxx.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/cxx/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/cxx/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/cxx/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/cxx/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/cxx/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/cxx/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_coex/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_coex/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_coex/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_coex/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_coex/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_coex/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_event/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_event/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_event/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_event/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_event/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_event/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/nvs_flash/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/nvs_flash/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/nvs_flash/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/nvs_flash/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/nvs_flash/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/nvs_flash/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_ringbuf/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_ringbuf/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_ringbuf/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_ringbuf/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_ringbuf/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_ringbuf/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_uart/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_uart/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_uart/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_uart/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_uart/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_uart/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_vfs_console/CMakeFiles/__idf_esp_vfs_console.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_vfs_console/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_vfs_console/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_vfs_console/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_vfs_console/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_vfs_console/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_vfs_console/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/vfs/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/vfs/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/vfs/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/vfs/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/vfs/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/vfs/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_netif_stack/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_netif_stack/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_netif_stack/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_netif_stack/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_netif_stack/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_netif_stack/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_netif/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_netif/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_netif/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_netif/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_netif/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_netif/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_pcnt/CMakeFiles/__idf_esp_driver_pcnt.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_pcnt/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_pcnt/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_pcnt/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_pcnt/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_pcnt/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_pcnt/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_gptimer/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_gptimer/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_gptimer/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_gptimer/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_gptimer/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_gptimer/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_spi/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_spi/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_spi/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_spi/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_spi/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_spi/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_mcpwm/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_mcpwm/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_mcpwm/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_mcpwm/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_mcpwm/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_mcpwm/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_ana_cmpr/CMakeFiles/__idf_esp_driver_ana_cmpr.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_ana_cmpr/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_ana_cmpr/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_ana_cmpr/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_ana_cmpr/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_ana_cmpr/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_ana_cmpr/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_i2s/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_i2s/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_i2s/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_i2s/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_i2s/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_i2s/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/sdmmc/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/sdmmc/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/sdmmc/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/sdmmc/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/sdmmc/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/sdmmc/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_sdmmc/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_sdmmc/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_sdmmc/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_sdmmc/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_sdmmc/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_sdmmc/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_sdspi/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_sdspi/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_sdspi/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_sdspi/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_sdspi/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_sdspi/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_sdio/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_sdio/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_sdio/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_sdio/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_sdio/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_sdio/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_dac/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_dac/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_dac/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_dac/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_dac/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_dac/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_bitscrambler/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_bitscrambler/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_bitscrambler/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_bitscrambler/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_bitscrambler/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_bitscrambler/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_rmt/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_rmt/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_rmt/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_rmt/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_rmt/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_rmt/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_tsens/CMakeFiles/__idf_esp_driver_tsens.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_tsens/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_tsens/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_tsens/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_tsens/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_tsens/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_tsens/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_sdm/CMakeFiles/__idf_esp_driver_sdm.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_sdm/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_sdm/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_sdm/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_sdm/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_sdm/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_sdm/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_i2c/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_i2c/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_i2c/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_i2c/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_i2c/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_i2c/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_ledc/CMakeFiles/__idf_esp_driver_ledc.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_ledc/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_ledc/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_ledc/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_ledc/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_ledc/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_ledc/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_parlio/CMakeFiles/__idf_esp_driver_parlio.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_parlio/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_parlio/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_parlio/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_parlio/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_parlio/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_parlio/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_twai/CMakeFiles/__idf_esp_driver_twai.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_twai/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_twai/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_twai/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_twai/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_twai/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_twai/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/driver/CMakeFiles/__idf_driver.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/driver/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/driver/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/driver/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/driver/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/driver/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/driver/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/console/CMakeFiles/__idf_console.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/console/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/console/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/console/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/console/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/console/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/console/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/wpa_supplicant/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/wpa_supplicant/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/wpa_supplicant/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/wpa_supplicant/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/wpa_supplicant/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/wpa_supplicant/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_wifi/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_wifi/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_wifi/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_wifi/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_wifi/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_wifi/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_phy/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_phy/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_phy/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_phy/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_phy/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_phy/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/ieee802154/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/ieee802154/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/ieee802154/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/ieee802154/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/ieee802154/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/ieee802154/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/install/strip.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/main/CMakeFiles/__idf_main.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/main/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/main/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/main/CMakeFiles/list_install_components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/main/CMakeFiles/install.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/main/CMakeFiles/install/local.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/main/CMakeFiles/install/strip.dir diff --git a/esp32-thread/open-thread-rcp/build/CMakeFiles/bootloader-complete b/esp32-thread/open-thread-rcp/build/CMakeFiles/bootloader-complete deleted file mode 100644 index e69de29b..00000000 diff --git a/esp32-thread/open-thread-rcp/build/CMakeFiles/bootloader.dir/Labels.json b/esp32-thread/open-thread-rcp/build/CMakeFiles/bootloader.dir/Labels.json deleted file mode 100644 index e5506646..00000000 --- a/esp32-thread/open-thread-rcp/build/CMakeFiles/bootloader.dir/Labels.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "sources" : - [ - { - "file" : "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/CMakeFiles/bootloader" - }, - { - "file" : "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/CMakeFiles/bootloader.rule" - }, - { - "file" : "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/CMakeFiles/bootloader-complete.rule" - }, - { - "file" : "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader-prefix/src/bootloader-stamp/bootloader-build.rule" - }, - { - "file" : "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader-prefix/src/bootloader-stamp/bootloader-configure.rule" - }, - { - "file" : "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader-prefix/src/bootloader-stamp/bootloader-download.rule" - }, - { - "file" : "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader-prefix/src/bootloader-stamp/bootloader-install.rule" - }, - { - "file" : "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader-prefix/src/bootloader-stamp/bootloader-mkdir.rule" - }, - { - "file" : "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch.rule" - }, - { - "file" : "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader-prefix/src/bootloader-stamp/bootloader-update.rule" - } - ], - "target" : - { - "labels" : - [ - "bootloader" - ], - "name" : "bootloader" - } -} \ No newline at end of file diff --git a/esp32-thread/open-thread-rcp/build/CMakeFiles/bootloader.dir/Labels.txt b/esp32-thread/open-thread-rcp/build/CMakeFiles/bootloader.dir/Labels.txt deleted file mode 100644 index d24efb3b..00000000 --- a/esp32-thread/open-thread-rcp/build/CMakeFiles/bootloader.dir/Labels.txt +++ /dev/null @@ -1,13 +0,0 @@ -# Target labels - bootloader -# Source files and their labels -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/CMakeFiles/bootloader -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/CMakeFiles/bootloader.rule -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/CMakeFiles/bootloader-complete.rule -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader-prefix/src/bootloader-stamp/bootloader-build.rule -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader-prefix/src/bootloader-stamp/bootloader-configure.rule -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader-prefix/src/bootloader-stamp/bootloader-download.rule -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader-prefix/src/bootloader-stamp/bootloader-install.rule -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader-prefix/src/bootloader-stamp/bootloader-mkdir.rule -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch.rule -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader-prefix/src/bootloader-stamp/bootloader-update.rule diff --git a/esp32-thread/open-thread-rcp/build/CMakeFiles/clean_additional.cmake b/esp32-thread/open-thread-rcp/build/CMakeFiles/clean_additional.cmake deleted file mode 100644 index 9720491d..00000000 --- a/esp32-thread/open-thread-rcp/build/CMakeFiles/clean_additional.cmake +++ /dev/null @@ -1,24 +0,0 @@ -# Additional clean files -cmake_minimum_required(VERSION 3.16) - -if("${CONFIG}" STREQUAL "" OR "${CONFIG}" STREQUAL "") - file(REMOVE_RECURSE - "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" - "open-thread-rcp.bin" - "open-thread-rcp.map" - "project_elf_src_esp32h2.c" - "x509_crt_bundle.S" - ) -endif() diff --git a/esp32-thread/open-thread-rcp/build/CMakeFiles/cmake.check_cache b/esp32-thread/open-thread-rcp/build/CMakeFiles/cmake.check_cache deleted file mode 100644 index 3dccd731..00000000 --- a/esp32-thread/open-thread-rcp/build/CMakeFiles/cmake.check_cache +++ /dev/null @@ -1 +0,0 @@ -# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/esp32-thread/open-thread-rcp/build/CMakeFiles/git-data/HEAD b/esp32-thread/open-thread-rcp/build/CMakeFiles/git-data/HEAD deleted file mode 100644 index b870d826..00000000 --- a/esp32-thread/open-thread-rcp/build/CMakeFiles/git-data/HEAD +++ /dev/null @@ -1 +0,0 @@ -ref: refs/heads/main diff --git a/esp32-thread/open-thread-rcp/build/CMakeFiles/git-data/grabRef.cmake b/esp32-thread/open-thread-rcp/build/CMakeFiles/git-data/grabRef.cmake deleted file mode 100644 index c9778ab3..00000000 --- a/esp32-thread/open-thread-rcp/build/CMakeFiles/git-data/grabRef.cmake +++ /dev/null @@ -1,50 +0,0 @@ -# -# Internal file for GetGitRevisionDescription.cmake -# -# Requires CMake 2.6 or newer (uses the 'function' command) -# -# Original Author: -# 2009-2010 Ryan Pavlik -# 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/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/CMakeFiles/git-data/HEAD" HEAD_CONTENTS LIMIT 1024) - -string(STRIP "${HEAD_CONTENTS}" HEAD_CONTENTS) -set(GIT_DIR "C:/Users/Laurent/Desktop/board-mate/.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/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/CMakeFiles/git-data/head-ref" COPYONLY) - elseif(EXISTS "${GIT_DIR}/logs/${HEAD_REF}") - configure_file("${GIT_DIR}/logs/${HEAD_REF}" "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/CMakeFiles/git-data/head-ref" COPYONLY) - set(HEAD_HASH "${HEAD_REF}") - endif() -else() - # detached HEAD - configure_file("${GIT_DIR}/HEAD" "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/CMakeFiles/git-data/head-ref" COPYONLY) -endif() - -if(NOT HEAD_HASH) - file(READ "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/CMakeFiles/git-data/head-ref" HEAD_HASH LIMIT 1024) - string(STRIP "${HEAD_HASH}" HEAD_HASH) -endif() diff --git a/esp32-thread/open-thread-rcp/build/CMakeFiles/git-data/head-ref b/esp32-thread/open-thread-rcp/build/CMakeFiles/git-data/head-ref deleted file mode 100644 index 79daa754..00000000 --- a/esp32-thread/open-thread-rcp/build/CMakeFiles/git-data/head-ref +++ /dev/null @@ -1 +0,0 @@ -c9e7aad7c4921625a5cea185844487fae07a37f6 diff --git a/esp32-thread/open-thread-rcp/build/CMakeFiles/open-thread-rcp.elf.dir/project_elf_src_esp32h2.c.obj b/esp32-thread/open-thread-rcp/build/CMakeFiles/open-thread-rcp.elf.dir/project_elf_src_esp32h2.c.obj deleted file mode 100644 index fd7fbd67..00000000 Binary files a/esp32-thread/open-thread-rcp/build/CMakeFiles/open-thread-rcp.elf.dir/project_elf_src_esp32h2.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/CMakeFiles/rules.ninja b/esp32-thread/open-thread-rcp/build/CMakeFiles/rules.ninja deleted file mode 100644 index 47662c88..00000000 --- a/esp32-thread/open-thread-rcp/build/CMakeFiles/rules.ninja +++ /dev/null @@ -1,1316 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Ninja" Generator, CMake Version 3.30 - -# 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: open-thread-rcp -# Configurations: -# ============================================================================= -# ============================================================================= - -############################################# -# Rule for compiling C files. - -rule C_COMPILER__open-thread-rcp.2eelf_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking CXX executable. - -rule CXX_EXECUTABLE_LINKER__open-thread-rcp.2eelf_ - command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-g++.exe $FLAGS $LINK_FLAGS @$RSP_FILE -o $TARGET_FILE && $POST_BUILD" - description = Linking CXX executable $TARGET_FILE - rspfile = $RSP_FILE - rspfile_content = $in $LINK_PATH $LINK_LIBRARIES - restat = $RESTAT - - -############################################# -# Rule for running custom commands. - -rule CUSTOM_COMMAND - command = $COMMAND - description = $DESC - - -############################################# -# Rule for compiling ASM files. - -rule ASM_COMPILER____idf_riscv_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_riscv_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_riscv_ - command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_driver_gpio_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_driver_gpio_ - command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_timer_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_timer_ - command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_pm_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_pm_ - command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_mbedtls_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_mbedtls_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_mbedtls_ - command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER__everest_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking CXX static library. - -rule CXX_STATIC_LIBRARY_LINKER__everest_ - command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" - description = Linking CXX static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER__p256m_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking CXX static library. - -rule CXX_STATIC_LIBRARY_LINKER__p256m_ - command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" - description = Linking CXX static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER__mbedcrypto_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking CXX static library. - -rule CXX_STATIC_LIBRARY_LINKER__mbedcrypto_ - command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS @$RSP_FILE && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" - description = Linking CXX static library $TARGET_FILE - rspfile = $RSP_FILE - rspfile_content = $in $LINK_PATH $LINK_LIBRARIES - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER__mbedx509_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking CXX static library. - -rule CXX_STATIC_LIBRARY_LINKER__mbedx509_ - command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" - description = Linking CXX static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER__mbedtls_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for linking CXX static library. - -rule CXX_STATIC_LIBRARY_LINKER__mbedtls_ - command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" - description = Linking CXX static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_esp_app_format_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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 = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_bootloader_format_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_bootloader_format_ - command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_app_update_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_app_update_ - command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_partition_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_partition_ - command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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 = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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 = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_mm_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_mm_ - command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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 = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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 = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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 = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_rom_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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 = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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 = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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 = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_heap_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_heap_ - command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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 = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_security_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_security_ - command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_hw_support_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_hw_support_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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 = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_freertos_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_freertos_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_freertos_ - command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_newlib_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_newlib_ - command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_pthread_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_pthread_ - command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" - description = Linking C static library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling CXX files. - -rule CXX_COMPILER____idf_cxx_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-g++.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building CXX object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_cxx_ - command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_event_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_event_ - command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_nvs_flash_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for compiling CXX files. - -rule CXX_COMPILER____idf_nvs_flash_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-g++.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building CXX object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_nvs_flash_ - command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_ringbuf_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_ringbuf_ - command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_driver_uart_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_driver_uart_ - command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_driver_usb_serial_jtag_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_driver_usb_serial_jtag_ - command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_vfs_console_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_vfs_console_ - command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_vfs_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_vfs_ - command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_lwip_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_lwip_ - command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_netif_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_netif_ - command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_driver_pcnt_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_driver_pcnt_ - command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_driver_gptimer_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_driver_gptimer_ - command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_driver_spi_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_driver_spi_ - command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_driver_mcpwm_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_driver_mcpwm_ - command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_driver_ana_cmpr_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_driver_ana_cmpr_ - command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_driver_i2s_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_driver_i2s_ - command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_sdmmc_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_sdmmc_ - command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_driver_sdspi_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_driver_sdspi_ - command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_driver_rmt_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_driver_rmt_ - command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_driver_tsens_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_driver_tsens_ - command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_driver_sdm_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_driver_sdm_ - command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_driver_i2c_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_driver_i2c_ - command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_driver_ledc_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_driver_ledc_ - command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_driver_parlio_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_driver_parlio_ - command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_driver_twai_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_driver_twai_ - command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_driver_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_driver_ - command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_console_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_console_ - command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_wifi_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_wifi_ - command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_phy_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_phy_ - command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_ieee802154_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_ieee802154_ - command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_openthread_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building C object $out - - -############################################# -# Rule for compiling CXX files. - -rule CXX_COMPILER____idf_openthread_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-g++.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building CXX object $out - - -############################################# -# Rule for linking C static library. - -rule C_STATIC_LIBRARY_LINKER____idf_openthread_ - command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS @$RSP_FILE && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ranlib.exe $TARGET_FILE && $POST_BUILD" - description = Linking C static library $TARGET_FILE - rspfile = $RSP_FILE - rspfile_content = $in $LINK_PATH $LINK_LIBRARIES - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER____idf_main_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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 = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build - description = Re-running CMake... - generator = 1 - - -############################################# -# Rule for cleaning additional files. - -rule CLEAN_ADDITIONAL - command = C:\Users\Laurent\.espressif\tools\cmake\3.30.2\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\Laurent\.espressif\tools\ninja\1.12.1\ninja.exe $FILE_ARG -t clean $TARGETS - description = Cleaning all built files... - - -############################################# -# Rule for printing all primary targets available. - -rule HELP - command = C:\Users\Laurent\.espressif\tools\ninja\1.12.1\ninja.exe -t targets - description = All primary targets available: - diff --git a/esp32-thread/open-thread-rcp/build/CMakeFiles/sections.ld-d65dc84.bat b/esp32-thread/open-thread-rcp/build/CMakeFiles/sections.ld-d65dc84.bat deleted file mode 100644 index c204a9b7..00000000 --- a/esp32-thread/open-thread-rcp/build/CMakeFiles/sections.ld-d65dc84.bat +++ /dev/null @@ -1,9 +0,0 @@ -@echo off -cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build || (set FAIL_LINE=2& goto :ABORT) -C:\Users\Laurent\.espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe C:/Users/Laurent/esp/v5.5.1/esp-idf/tools/ldgen/ldgen.py --config C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/sdkconfig --fragments-list C:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/linker.lf;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/linker.lf;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/linker.lf;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/linker.lf;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/linker.lf;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/linker.lf;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/app.lf;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/common.lf;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/soc.lf;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/linker.lf;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/linker.lf;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/linker.lf;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/linker.lf;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/linker.lf;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/linker.lf;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/linker.lf;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/linker.lf;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/linker.lf;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/linker_common.lf;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/linker.lf;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/src/newlib.lf;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/src/system_libs.lf;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/linker.lf;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/linker.lf;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/linker.lf;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/linker.lf;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/linker.lf;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/linker.lf;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/linker.lf;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/linker.lf;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/linker.lf;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/linker.lf;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/linker.lf;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/linker.lf;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/linker.lf;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_bitscrambler/linker.lf;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/linker.lf;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/linker.lf;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/linker.lf;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/linker.lf;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/linker.lf;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/linker.lf;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/linker.lf;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/linker.lf;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/linker.lf;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/linker.lf --input C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/ld/sections.ld.in --output C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/ld/sections.ld --kconfig C:/Users/Laurent/esp/v5.5.1/esp-idf/Kconfig --env-file C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config.env --libraries-file C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/ldgen_libraries --objdump C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe || (set FAIL_LINE=3& goto :ABORT) -goto :EOF - -:ABORT -set ERROR_CODE=%ERRORLEVEL% -echo Batch file failed at line %FAIL_LINE% with errorcode %ERRORLEVEL% -exit /b %ERROR_CODE% \ No newline at end of file diff --git a/esp32-thread/open-thread-rcp/build/app-flash_args b/esp32-thread/open-thread-rcp/build/app-flash_args deleted file mode 100644 index 28a37912..00000000 --- a/esp32-thread/open-thread-rcp/build/app-flash_args +++ /dev/null @@ -1,2 +0,0 @@ ---flash_mode dio --flash_freq 48m --flash_size 2MB -0x10000 open-thread-rcp.bin diff --git a/esp32-thread/open-thread-rcp/build/bootloader-flash_args b/esp32-thread/open-thread-rcp/build/bootloader-flash_args deleted file mode 100644 index 354407ec..00000000 --- a/esp32-thread/open-thread-rcp/build/bootloader-flash_args +++ /dev/null @@ -1,2 +0,0 @@ ---flash_mode dio --flash_freq 48m --flash_size 2MB -0x0 bootloader/bootloader.bin diff --git a/esp32-thread/open-thread-rcp/build/bootloader-prefix/src/bootloader-stamp/bootloader-configure b/esp32-thread/open-thread-rcp/build/bootloader-prefix/src/bootloader-stamp/bootloader-configure deleted file mode 100644 index e69de29b..00000000 diff --git a/esp32-thread/open-thread-rcp/build/bootloader-prefix/src/bootloader-stamp/bootloader-done b/esp32-thread/open-thread-rcp/build/bootloader-prefix/src/bootloader-stamp/bootloader-done deleted file mode 100644 index e69de29b..00000000 diff --git a/esp32-thread/open-thread-rcp/build/bootloader-prefix/src/bootloader-stamp/bootloader-download b/esp32-thread/open-thread-rcp/build/bootloader-prefix/src/bootloader-stamp/bootloader-download deleted file mode 100644 index e69de29b..00000000 diff --git a/esp32-thread/open-thread-rcp/build/bootloader-prefix/src/bootloader-stamp/bootloader-mkdir b/esp32-thread/open-thread-rcp/build/bootloader-prefix/src/bootloader-stamp/bootloader-mkdir deleted file mode 100644 index e69de29b..00000000 diff --git a/esp32-thread/open-thread-rcp/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch b/esp32-thread/open-thread-rcp/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch deleted file mode 100644 index e69de29b..00000000 diff --git a/esp32-thread/open-thread-rcp/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch-info.txt b/esp32-thread/open-thread-rcp/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch-info.txt deleted file mode 100644 index 53e1e1e6..00000000 --- a/esp32-thread/open-thread-rcp/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch-info.txt +++ /dev/null @@ -1,6 +0,0 @@ -# This is a generated file and its contents are an internal implementation detail. -# The update step will be re-executed if anything in this file changes. -# No other meaning or use of this file is supported. - -command= -work_dir= diff --git a/esp32-thread/open-thread-rcp/build/bootloader-prefix/src/bootloader-stamp/bootloader-source_dirinfo.txt b/esp32-thread/open-thread-rcp/build/bootloader-prefix/src/bootloader-stamp/bootloader-source_dirinfo.txt deleted file mode 100644 index 742ad99a..00000000 --- a/esp32-thread/open-thread-rcp/build/bootloader-prefix/src/bootloader-stamp/bootloader-source_dirinfo.txt +++ /dev/null @@ -1,9 +0,0 @@ -# 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/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject -work_dir= - diff --git a/esp32-thread/open-thread-rcp/build/bootloader-prefix/src/bootloader-stamp/bootloader-update b/esp32-thread/open-thread-rcp/build/bootloader-prefix/src/bootloader-stamp/bootloader-update deleted file mode 100644 index e69de29b..00000000 diff --git a/esp32-thread/open-thread-rcp/build/bootloader-prefix/src/bootloader-stamp/bootloader-update-info.txt b/esp32-thread/open-thread-rcp/build/bootloader-prefix/src/bootloader-stamp/bootloader-update-info.txt deleted file mode 100644 index 31617d15..00000000 --- a/esp32-thread/open-thread-rcp/build/bootloader-prefix/src/bootloader-stamp/bootloader-update-info.txt +++ /dev/null @@ -1,7 +0,0 @@ -# This is a generated file and its contents are an internal implementation detail. -# The patch step will be re-executed if anything in this file changes. -# No other meaning or use of this file is supported. - -command (connected)= -command (disconnected)= -work_dir= diff --git a/esp32-thread/open-thread-rcp/build/bootloader-prefix/tmp/bootloader-cfgcmd.txt b/esp32-thread/open-thread-rcp/build/bootloader-prefix/tmp/bootloader-cfgcmd.txt deleted file mode 100644 index 90fde817..00000000 --- a/esp32-thread/open-thread-rcp/build/bootloader-prefix/tmp/bootloader-cfgcmd.txt +++ /dev/null @@ -1 +0,0 @@ -cmd='C:/Users/Laurent/.espressif/tools/cmake/3.30.2/bin/cmake.exe;-DSDKCONFIG=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/sdkconfig;-DIDF_PATH=C:/Users/Laurent/esp/v5.5.1/esp-idf;-DIDF_TARGET=esp32h2;-DPYTHON_DEPS_CHECKED=1;-DPYTHON=C:/Users/Laurent/.espressif/python_env/idf5.5_py3.11_env/Scripts/python.exe;-DEXTRA_COMPONENT_DIRS=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader;-DPROJECT_SOURCE_DIR=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp;-DIGNORE_EXTRA_COMPONENT=;-GNinja;-S;;-B;' diff --git a/esp32-thread/open-thread-rcp/build/bootloader-prefix/tmp/bootloader-mkdirs.cmake b/esp32-thread/open-thread-rcp/build/bootloader-prefix/tmp/bootloader-mkdirs.cmake deleted file mode 100644 index c9c2062d..00000000 --- a/esp32-thread/open-thread-rcp/build/bootloader-prefix/tmp/bootloader-mkdirs.cmake +++ /dev/null @@ -1,27 +0,0 @@ -# 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) - -# If CMAKE_DISABLE_SOURCE_CHANGES is set to true and the source directory is an -# existing directory in our source tree, calling file(MAKE_DIRECTORY) on it -# would cause a fatal error, even though it would be a no-op. -if(NOT EXISTS "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject") - file(MAKE_DIRECTORY "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject") -endif() -file(MAKE_DIRECTORY - "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader" - "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader-prefix" - "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader-prefix/tmp" - "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader-prefix/src/bootloader-stamp" - "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader-prefix/src" - "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader-prefix/src/bootloader-stamp" -) - -set(configSubDirs ) -foreach(subDir IN LISTS configSubDirs) - file(MAKE_DIRECTORY "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader-prefix/src/bootloader-stamp/${subDir}") -endforeach() -if(cfgdir) - file(MAKE_DIRECTORY "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader-prefix/src/bootloader-stamp${cfgdir}") # cfgdir has leading slash -endif() diff --git a/esp32-thread/open-thread-rcp/build/bootloader/.bin_timestamp b/esp32-thread/open-thread-rcp/build/bootloader/.bin_timestamp deleted file mode 100644 index 35a7c70d..00000000 --- a/esp32-thread/open-thread-rcp/build/bootloader/.bin_timestamp +++ /dev/null @@ -1 +0,0 @@ -6b952e4a780729e53b0f9d2715443948 C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/bootloader.bin diff --git a/esp32-thread/open-thread-rcp/build/bootloader/.ninja_deps b/esp32-thread/open-thread-rcp/build/bootloader/.ninja_deps deleted file mode 100644 index 09809533..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/.ninja_deps and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/.ninja_log b/esp32-thread/open-thread-rcp/build/bootloader/.ninja_log deleted file mode 100644 index 4dd276d4..00000000 --- a/esp32-thread/open-thread-rcp/build/bootloader/.ninja_log +++ /dev/null @@ -1,127 +0,0 @@ -# ninja log v6 -25 100 7882180579426826 esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/util.c.obj 88fee4747d74c620 -19 136 7882180579366446 esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/log_lock.c.obj 6f60a514bb7bc242 -47 140 7882180579644364 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj 4a55370b5fb8695 -28 165 7882180579446820 esp-idf/log/CMakeFiles/__idf_log.dir/src/util.c.obj 5701ed1c3c8b38e9 -33 170 7882180579503298 esp-idf/log/CMakeFiles/__idf_log.dir/src/log_print.c.obj 4257c536f047cbf1 -15 176 7882180579321692 esp-idf/log/CMakeFiles/__idf_log.dir/src/log_timestamp_common.c.obj e13592d9910ffc40 -80 181 7882180579973172 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_usb_serial.c.obj b6bcb615cf64b699 -40 240 7882180579569214 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj de1e5531cdea856 -30 244 7882180579471929 esp-idf/log/CMakeFiles/__idf_log.dir/src/log_format_text.c.obj 7d65f7bc33b7e996 -63 248 7882180579796508 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_gpio.c.obj 2f98d3046c3697ef -55 252 7882180579721385 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj 846e24a415a874dd -85 286 7882180580023387 esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj 2ff003cc7c5cc96a -11 291 7882180579281120 esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/log_timestamp.c.obj 4ef3668b289c5d40 -36 296 7882180579533313 esp-idf/log/CMakeFiles/__idf_log.dir/src/log.c.obj 9c9460594767717d -101 301 7882180580183720 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/esp_cpu_intr.c.obj c4802635888e915c -67 306 7882180579841676 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_regi2c_esp32h2.c.obj c8e68905eb2f805e -51 311 7882180579681219 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj 9694a65aaa1bff04 -23 316 7882180579396810 esp-idf/log/CMakeFiles/__idf_log.dir/src/buffer/log_buffers.c.obj b368bcf2c3879e71 -75 325 7882180579926830 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_wdt.c.obj 7ebcb22e4ac984b0 -140 330 7882180580578738 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/cpu_region_protect.c.obj 9e008b6ab0a08264 -89 336 7882180580063404 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj 997699fffb5eb243 -59 350 7882180579761400 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj 7222acc8b4bad024 -43 355 7882180579604344 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_print.c.obj 65cad4d7a03c63ef -71 364 7882180579881658 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj 7331a6fc3042e78e -176 370 7882180580936234 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/pmu_param.c.obj dd88be64b654ab10 -136 402 7882180580529620 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj 9c508141b4070d39 -252 408 7882180581691679 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj ea0577b66866af6e -291 426 7882180582083479 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32h2/esp_efuse_table_v0.0_v1.1.c.obj d25551787b6eba5a -248 440 7882180581656540 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/chip_info.c.obj 2e437978a2c42a6c -181 453 7882180580981293 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/pmu_init.c.obj 67f517520ad63c1c -286 485 7882180582036617 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32h2/esp_efuse_table.c.obj f2d3a7a363a71f61 -166 527 7882180580831008 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/rtc_clk_init.c.obj c626b7fcded3e543 -296 532 7882180582123581 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32h2/esp_efuse_fields.c.obj 1776f920f44f0edb -240 562 7882180581573917 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/pmu_sleep.c.obj 961d961727fd96de -171 567 7882180580881000 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/rtc_clk.c.obj d45e4e3d6a040a42 -244 572 7882180581606526 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/rtc_time.c.obj 99487400c4ac26fa -306 576 7882180582224842 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32h2/esp_efuse_utility.c.obj 83519e51409872df -370 588 7882180582866125 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj 1d7c7bfa438e4839 -364 630 7882180582806136 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj cd2a5e7860651a11 -326 635 7882180582425282 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj 4864731a61cea12c -336 640 7882180582530604 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c.obj b18b24ad539b664d -408 645 7882180583247405 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj c4891af90ca819fe -311 655 7882180582284856 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj 9d4757d31c26d2e -426 661 7882180583428488 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj d08a6943b9eead0c -453 665 7882180583704633 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32h2.c.obj 1ae2d68a5ec68352 -402 670 7882180583197325 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj 37ddb534da93e837 -316 674 7882180582340065 esp-idf/log/liblog.a 256c192b9156dfa6 -440 682 7882180583573719 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj 20be4203a0800cae -350 699 7882180582665788 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj 28bfe87b3f1d3d5f -331 713 7882180582480417 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj 9127d561479a0f48 -355 729 7882180582721045 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj 9779474b9d6462a0 -576 769 7882180584939900 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_sha.c.obj 238c78173a683fd0 -567 779 7882180584839542 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj 2581ed2abf9d5b6d -301 787 7882180582169599 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32h2/esp_efuse_rtc_calib.c.obj cf9f911840edc2bf -666 830 7882180585823133 esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj b9b69132d96c00d5 -533 835 7882180584501366 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32h2.c.obj bb488c1bdf8cfaac -646 840 7882180585622641 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32h2/bootloader_soc.c.obj ee1185b4d83157be -661 849 7882180585782943 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_panic.c.obj 1c9a7664f473b997 -635 854 7882180585525083 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console.c.obj d3d1bbf09a9fadb -527 868 7882180584442858 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj 2e0d509344a2412e -729 873 7882180586456198 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/interrupts.c.obj 3fe273974b586882 -640 877 7882180585567303 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console_loader.c.obj 916cdc229fab44f2 -769 894 7882180586865188 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/gpio_periph.c.obj 2aa2060f5f45a68 -699 899 7882180586163962 esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj 2ee077970dd04860 -630 904 7882180585471313 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_loader.c.obj fc090c69d6104ef5 -674 919 7882180585918358 esp-idf/esp_rom/libesp_rom.a 47dc70dcb443f5ae -655 979 7882180585717889 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32h2/bootloader_esp32h2.c.obj 256381691948e250 -787 1034 7882180587046884 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/adc_periph.c.obj 4b8e6de617ea1bcf -589 1040 7882180585055100 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_init.c.obj 38cdd162b635f5c7 -873 1045 7882180587899701 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/pcnt_periph.c.obj 49ea551313e6f988 -980 1050 7882180588973164 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/temperature_sensor_periph.c.obj 6a997b786f06ca7 -830 1055 7882180587473151 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/ana_cmpr_periph.c.obj 4cbf7260970cce77 -878 1059 7882180587949776 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/rmt_periph.c.obj df5af8d0888c2a7a -779 1066 7882180586961682 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/uart_periph.c.obj 82b74670fc72ddf -713 1070 7882180586306980 esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj 18ca7f5b1adebb45 -849 1075 7882180587664011 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/gdma_periph.c.obj 930a989f48080bf5 -835 1080 7882180587528390 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/dedic_gpio_periph.c.obj 34195d6ed5329cd3 -840 1085 7882180587568383 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/etm_periph.c.obj e5e345ba95d5dba5 -485 1090 7882180584020758 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj b7668dcdebbcf535 -670 1095 7882180585873111 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj e9a116361f2fa933 -900 1109 7882180588164238 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/i2s_periph.c.obj 32b91df5f58e6f4 -905 1119 7882180588219430 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/i2c_periph.c.obj 6e7345b16db436a2 -895 1125 7882180588119091 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/sdm_periph.c.obj 6b6aef1da552a427 -562 1129 7882180584789369 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj f50547cc8ba2cd7e -572 1135 7882180584884623 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj 773e0018d51aac0c -920 1143 7882180588366497 esp-idf/esp_common/libesp_common.a 1ce74a6de5cde431 -1040 1151 7882180589572757 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/parlio_periph.c.obj b2dbc5a22c2d6242 -1080 1156 7882180589970998 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/power_supply_periph.c.obj 21f8dc7a642ddd1 -1070 1157 7882180589867418 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/rtc_io_periph.c.obj d10aa5e9458d87d0 -854 1159 7882180587709259 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/spi_periph.c.obj abf6c48e3f50a422 -1059 1213 7882180589763834 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/wdt_periph.c.obj c8d50a14084873e4 -1066 1213 7882180589827436 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/ieee802154_periph.c.obj f77fd2fb4fdb052c -868 1214 7882180587844586 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/ledc_periph.c.obj 35c6e372785c6251 -1050 1214 7882180589668637 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/mpi_periph.c.obj 6854713702aafa0a -1034 1215 7882180589512727 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/timer_periph.c.obj 52e05a4b7966ab18 -1045 1215 7882180589623506 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/mcpwm_periph.c.obj d8ee1cf90c80a18a -1055 1216 7882180589723860 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/twai_periph.c.obj f62f3578f952bb81 -1135 1224 7882180591269041 project_elf_src_esp32h2.c e7857b6905dda4ab -1135 1224 7882180591269041 C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/project_elf_src_esp32h2.c e7857b6905dda4ab -1085 1228 7882180590026198 esp-idf/riscv/CMakeFiles/__idf_riscv.dir/rv_utils.c.obj bc0b29cdbbb9a92b -1076 1231 7882180589922620 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/system_retention_periph.c.obj 12596a87882c6d00 -1095 1260 7882180590126218 esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj e48998a65fda6ea5 -1224 1278 7882180591413079 CMakeFiles/bootloader.elf.dir/project_elf_src_esp32h2.c.obj 855c0d097b999ada -1151 1280 7882180590683488 esp-idf/main/CMakeFiles/__idf_main.dir/bootloader_start.c.obj 55329b1a26ee3c -1109 1281 7882180590269556 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32h2/efuse_hal.c.obj c8bce3fa1328ddbc -1090 1289 7882180590066195 esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj d3548d4ab9532883 -1143 1301 7882180590600093 esp-idf/esp_hw_support/libesp_hw_support.a 9d6ffb3006343c7c -1130 1306 7882180590471287 esp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj 1dc365bb4cfe857c -1119 1311 7882180590366296 esp-idf/hal/CMakeFiles/__idf_hal.dir/lp_timer_hal.c.obj a9d19bb81fbda08e -1125 1319 7882180590427340 esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj a9fd11e5cba25b3a -682 1352 7882180585993500 esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir/uECC_verify_antifault.c.obj 5f96337d973a7b93 -1301 1358 7882180592180684 esp-idf/esp_system/libesp_system.a 455bd86c823917a8 -1358 1433 7882180592758005 esp-idf/efuse/libefuse.a ed373e92b3f018f9 -1433 1530 7882180593505430 esp-idf/bootloader_support/libbootloader_support.a ad477f9ad706a58e -1530 1586 7882180594469958 esp-idf/esp_bootloader_format/libesp_bootloader_format.a df1c5e5d59c71e36 -1586 1643 7882180595031283 esp-idf/spi_flash/libspi_flash.a 66d910c2cbabb6ec -1643 1700 7882180595595182 esp-idf/micro-ecc/libmicro-ecc.a 78431d99ae85a5a0 -1700 1825 7882180596167686 esp-idf/soc/libsoc.a f2863a6cb5075951 -1825 1879 7882180597424475 esp-idf/riscv/libriscv.a 636d0893ce23f843 -1879 1947 7882180597962406 esp-idf/hal/libhal.a cb3d51767a4c171d -1947 2012 7882180598644835 esp-idf/main/libmain.a 81a14e4f1b27224b -2012 2090 7882180599284903 bootloader.elf 1a724eca586fc766 -2090 2320 7882180602298316 .bin_timestamp d8254a8825a8c0bb -2090 2320 7882180602298316 C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/.bin_timestamp d8254a8825a8c0bb -2320 2384 7882180602367402 esp-idf/esptool_py/CMakeFiles/bootloader_check_size db78d920b5d5e12b -2320 2384 7882180602367402 C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size db78d920b5d5e12b diff --git a/esp32-thread/open-thread-rcp/build/bootloader/CMakeCache.txt b/esp32-thread/open-thread-rcp/build/bootloader/CMakeCache.txt deleted file mode 100644 index 70b72397..00000000 --- a/esp32-thread/open-thread-rcp/build/bootloader/CMakeCache.txt +++ /dev/null @@ -1,444 +0,0 @@ -# This is the CMakeCache file. -# For build in directory: c:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader -# It was generated by CMake: C:/Users/Laurent/.espressif/tools/cmake/3.30.2/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/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-addr2line.exe - -//Path to a program. -CMAKE_AR:FILEPATH=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar.exe - -//A wrapper around 'ar' adding the appropriate '--plugin' option -// for the GCC compiler -CMAKE_ASM_COMPILER_AR:FILEPATH=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ar.exe - -//A wrapper around 'ranlib' adding the appropriate '--plugin' option -// for the GCC compiler -CMAKE_ASM_COMPILER_RANLIB:FILEPATH=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ranlib.exe - -//Flags used by the ASM compiler during all build types. -CMAKE_ASM_FLAGS:STRING= - -//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/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ar.exe - -//A wrapper around 'ranlib' adding the appropriate '--plugin' option -// for the GCC compiler -CMAKE_CXX_COMPILER_RANLIB:FILEPATH=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ranlib.exe - -//C++ Compiler Base Flags -CMAKE_CXX_FLAGS:STRING='-march=rv32imac_zicsr_zifencei ' - -//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/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ar.exe - -//A wrapper around 'ranlib' adding the appropriate '--plugin' option -// for the GCC compiler -CMAKE_C_COMPILER_RANLIB:FILEPATH=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ranlib.exe - -//C Compiler Base Flags -CMAKE_C_FLAGS:STRING='-march=rv32imac_zicsr_zifencei ' - -//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 - -//Linker Base Flags -CMAKE_EXE_LINKER_FLAGS:STRING='-nostartfiles -march=rv32imac_zicsr_zifencei ' - -//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/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/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/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ld.exe - -//Program used to build from build.ninja files. -CMAKE_MAKE_PROGRAM:FILEPATH=C:/Users/Laurent/.espressif/tools/ninja/1.12.1/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/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-nm.exe - -//Path to a program. -CMAKE_OBJCOPY:FILEPATH=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objcopy.exe - -//Path to a program. -CMAKE_OBJDUMP:FILEPATH=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-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/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib.exe - -//Path to a program. -CMAKE_READELF:FILEPATH=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-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/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-strip.exe - -//Path to a program. -CMAKE_TAPI:FILEPATH=CMAKE_TAPI-NOTFOUND - -//The CMake toolchain file -CMAKE_TOOLCHAIN_FILE:FILEPATH=C:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/toolchain-esp32h2.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/Laurent/esp/v5.5.1/esp-idf/components/bootloader - -//Git command line client -GIT_EXECUTABLE:FILEPATH=C:/Users/Laurent/.espressif/tools/idf-git/2.39.2/cmd/git.exe - -//No help, variable specified on the command line. -IDF_PATH:UNINITIALIZED=C:/Users/Laurent/esp/v5.5.1/esp-idf - -//IDF Build Target -IDF_TARGET:STRING=esp32h2 - -//IDF Build Toolchain Type -IDF_TOOLCHAIN:STRING=gcc - -//No help, variable specified on the command line. -IGNORE_EXTRA_COMPONENT:UNINITIALIZED= - -//No help, variable specified on the command line. -PROJECT_SOURCE_DIR:UNINITIALIZED=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp - -//No help, variable specified on the command line. -PYTHON:UNINITIALIZED=C:/Users/Laurent/.espressif/python_env/idf5.5_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/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/sdkconfig - -//Value Computed by CMake -bootloader_BINARY_DIR:STATIC=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader - -//Value Computed by CMake -bootloader_IS_TOP_LEVEL:STATIC=ON - -//Value Computed by CMake -bootloader_SOURCE_DIR:STATIC=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject - -//Value Computed by CMake -esp-idf_BINARY_DIR:STATIC=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/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/Laurent/esp/v5.5.1/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/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/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=30 -//Patch version of cmake used to create the current loaded cache -CMAKE_CACHE_PATCH_VERSION:INTERNAL=2 -//Path to CMake executable. -CMAKE_COMMAND:INTERNAL=C:/Users/Laurent/.espressif/tools/cmake/3.30.2/bin/cmake.exe -//Path to cpack program executable. -CMAKE_CPACK_COMMAND:INTERNAL=C:/Users/Laurent/.espressif/tools/cmake/3.30.2/bin/cpack.exe -//Path to ctest program executable. -CMAKE_CTEST_COMMAND:INTERNAL=C:/Users/Laurent/.espressif/tools/cmake/3.30.2/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/Laurent/.espressif/tools/cmake/3.30.2/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/Laurent/esp/v5.5.1/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=26 -//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/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30 -//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_TAPI -CMAKE_TAPI-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/Laurent/.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 - diff --git a/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/3.30.2/CMakeASMCompiler.cmake b/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/3.30.2/CMakeASMCompiler.cmake deleted file mode 100644 index 29a17f1a..00000000 --- a/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/3.30.2/CMakeASMCompiler.cmake +++ /dev/null @@ -1,29 +0,0 @@ -set(CMAKE_ASM_COMPILER "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc.exe") -set(CMAKE_ASM_COMPILER_ARG1 "") -set(CMAKE_AR "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar.exe") -set(CMAKE_ASM_COMPILER_AR "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ar.exe") -set(CMAKE_RANLIB "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib.exe") -set(CMAKE_ASM_COMPILER_RANLIB "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ranlib.exe") -set(CMAKE_LINKER "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ld.exe") -set(CMAKE_LINKER_LINK "") -set(CMAKE_LINKER_LLD "") -set(CMAKE_ASM_COMPILER_LINKER "") -set(CMAKE_ASM_COMPILER_LINKER_ID "") -set(CMAKE_ASM_COMPILER_LINKER_VERSION ) -set(CMAKE_ASM_COMPILER_LINKER_FRONTEND_VARIANT ) -set(CMAKE_MT "") -set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND") -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_COMPILER_SYSROOT "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr") -set(CMAKE_COMPILER_SYSROOT "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr") - -set(CMAKE_ASM_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) -set(CMAKE_ASM_LINKER_PREFERENCE 0) -set(CMAKE_ASM_LINKER_DEPFILE_SUPPORTED ) - - diff --git a/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/3.30.2/CMakeCCompiler.cmake b/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/3.30.2/CMakeCCompiler.cmake deleted file mode 100644 index 40107f21..00000000 --- a/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/3.30.2/CMakeCCompiler.cmake +++ /dev/null @@ -1,82 +0,0 @@ -set(CMAKE_C_COMPILER "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc.exe") -set(CMAKE_C_COMPILER_ARG1 "") -set(CMAKE_C_COMPILER_ID "GNU") -set(CMAKE_C_COMPILER_VERSION "14.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_STANDARD_LATEST "23") -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 "GNU") -set(CMAKE_C_SIMULATE_VERSION "") - -set(CMAKE_C_COMPILER_SYSROOT "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr") -set(CMAKE_COMPILER_SYSROOT "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr") - - -set(CMAKE_AR "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar.exe") -set(CMAKE_C_COMPILER_AR "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ar.exe") -set(CMAKE_RANLIB "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib.exe") -set(CMAKE_C_COMPILER_RANLIB "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ranlib.exe") -set(CMAKE_LINKER "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ld.exe") -set(CMAKE_LINKER_LINK "") -set(CMAKE_LINKER_LLD "") -set(CMAKE_C_COMPILER_LINKER "NOTFOUND") -set(CMAKE_C_COMPILER_LINKER_ID "") -set(CMAKE_C_COMPILER_LINKER_VERSION ) -set(CMAKE_C_COMPILER_LINKER_FRONTEND_VARIANT ) -set(CMAKE_MT "") -set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND") -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) -set(CMAKE_C_LINKER_DEPFILE_SUPPORTED FALSE) - -# 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/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/include;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/include-fixed;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include") -set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "gcc;c;nosys;c;gcc") -set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/usr/lib") -set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/3.30.2/CMakeCXXCompiler.cmake b/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/3.30.2/CMakeCXXCompiler.cmake deleted file mode 100644 index 2d6d4545..00000000 --- a/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/3.30.2/CMakeCXXCompiler.cmake +++ /dev/null @@ -1,106 +0,0 @@ -set(CMAKE_CXX_COMPILER "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-g++.exe") -set(CMAKE_CXX_COMPILER_ARG1 "") -set(CMAKE_CXX_COMPILER_ID "GNU") -set(CMAKE_CXX_COMPILER_VERSION "14.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_STANDARD_LATEST "26") -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;cxx_std_26") -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_CXX26_COMPILE_FEATURES "cxx_std_26") - -set(CMAKE_CXX_PLATFORM_ID "") -set(CMAKE_CXX_SIMULATE_ID "") -set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU") -set(CMAKE_CXX_SIMULATE_VERSION "") - -set(CMAKE_CXX_COMPILER_SYSROOT "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr") -set(CMAKE_COMPILER_SYSROOT "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr") - - -set(CMAKE_AR "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ar.exe") -set(CMAKE_CXX_COMPILER_AR "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ar.exe") -set(CMAKE_RANLIB "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ranlib.exe") -set(CMAKE_CXX_COMPILER_RANLIB "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc-ranlib.exe") -set(CMAKE_LINKER "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-ld.exe") -set(CMAKE_LINKER_LINK "") -set(CMAKE_LINKER_LLD "") -set(CMAKE_CXX_COMPILER_LINKER "NOTFOUND") -set(CMAKE_CXX_COMPILER_LINKER_ID "") -set(CMAKE_CXX_COMPILER_LINKER_VERSION ) -set(CMAKE_CXX_COMPILER_LINKER_FRONTEND_VARIANT ) -set(CMAKE_MT "") -set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND") -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;ccm;cxxm;c++m) -set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) - -foreach (lang IN ITEMS 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) -set(CMAKE_CXX_LINKER_DEPFILE_SUPPORTED FALSE) - -# 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/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include/c++/14.2.0;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include/c++/14.2.0/riscv32-esp-elf/rv32imac_zicsr_zifencei/ilp32;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include/c++/14.2.0/backward;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/include;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/include-fixed;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include") -set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;m;gcc;c;nosys;c;gcc") -set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/usr/lib") -set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") -set(CMAKE_CXX_COMPILER_CLANG_RESOURCE_DIR "") - -set(CMAKE_CXX_COMPILER_IMPORT_STD "") -### Imported target for C++23 standard library -set(CMAKE_CXX23_COMPILER_IMPORT_STD_NOT_FOUND_MESSAGE "Toolchain does not support discovering `import std` support") - - -### Imported target for C++26 standard library -set(CMAKE_CXX26_COMPILER_IMPORT_STD_NOT_FOUND_MESSAGE "Toolchain does not support discovering `import std` support") - - - diff --git a/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/3.30.2/CMakeDetermineCompilerABI_C.bin b/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/3.30.2/CMakeDetermineCompilerABI_C.bin deleted file mode 100644 index cfc3f039..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/3.30.2/CMakeDetermineCompilerABI_C.bin and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/3.30.2/CMakeDetermineCompilerABI_CXX.bin b/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/3.30.2/CMakeDetermineCompilerABI_CXX.bin deleted file mode 100644 index 78914114..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/3.30.2/CMakeDetermineCompilerABI_CXX.bin and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/3.30.2/CMakeSystem.cmake b/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/3.30.2/CMakeSystem.cmake deleted file mode 100644 index d5e072fd..00000000 --- a/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/3.30.2/CMakeSystem.cmake +++ /dev/null @@ -1,15 +0,0 @@ -set(CMAKE_HOST_SYSTEM "Windows-10.0.26200") -set(CMAKE_HOST_SYSTEM_NAME "Windows") -set(CMAKE_HOST_SYSTEM_VERSION "10.0.26200") -set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64") - -include("C:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/toolchain-esp32h2.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) diff --git a/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/3.30.2/CompilerIdC/CMakeCCompilerId.c b/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/3.30.2/CompilerIdC/CMakeCCompilerId.c deleted file mode 100644 index 8d8bb038..00000000 --- a/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/3.30.2/CompilerIdC/CMakeCCompilerId.c +++ /dev/null @@ -1,904 +0,0 @@ -#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(__clang__) && defined(__cray__) -# define COMPILER_ID "CrayClang" -# define COMPILER_VERSION_MAJOR DEC(__cray_major__) -# define COMPILER_VERSION_MINOR DEC(__cray_minor__) -# define COMPILER_VERSION_PATCH DEC(__cray_patchlevel__) -# define COMPILER_VERSION_INTERNAL_STR __clang_version__ - - -#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(__TASKING__) -# define COMPILER_ID "Tasking" - # define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000) - # define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100) -# define COMPILER_VERSION_INTERNAL DEC(__VERSION__) - -#elif defined(__ORANGEC__) -# define COMPILER_ID "OrangeC" -# define COMPILER_VERSION_MAJOR DEC(__ORANGEC_MAJOR__) -# define COMPILER_VERSION_MINOR DEC(__ORANGEC_MINOR__) -# define COMPILER_VERSION_PATCH DEC(__ORANGEC_PATCHLEVEL__) - -#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/100 % 100) -# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) - -#elif defined(__clang__) && defined(__ti__) -# define COMPILER_ID "TIClang" - # define COMPILER_VERSION_MAJOR DEC(__ti_major__) - # define COMPILER_VERSION_MINOR DEC(__ti_minor__) - # define COMPILER_VERSION_PATCH DEC(__ti_patchlevel__) -# define COMPILER_VERSION_INTERNAL DEC(__ti_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(__LCC__ / 100) -# define COMPILER_VERSION_MINOR DEC(__LCC__ % 100) -# 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(__clang__) && defined(__ti__) -# if defined(__ARM_ARCH) -# define ARCHITECTURE_ID "Arm" - -# 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" - -#elif defined(__TASKING__) - -# if defined(__CTC__) || defined(__CPTC__) -# define ARCHITECTURE_ID "TriCore" - -# elif defined(__CMCS__) -# define ARCHITECTURE_ID "MCS" - -# elif defined(__CARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__CARC__) -# define ARCHITECTURE_ID "ARC" - -# elif defined(__C51__) -# define ARCHITECTURE_ID "8051" - -# elif defined(__CPCP__) -# define ARCHITECTURE_ID "PCP" - -# else -# define ARCHITECTURE_ID "" -# endif - -#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 "]"; - - - -#define C_STD_99 199901L -#define C_STD_11 201112L -#define C_STD_17 201710L -#define C_STD_23 202311L - -#ifdef __STDC_VERSION__ -# define C_STD __STDC_VERSION__ -#endif - -#if !defined(__STDC__) && !defined(__clang__) -# if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__) -# define C_VERSION "90" -# else -# define C_VERSION -# endif -#elif C_STD > C_STD_17 -# define C_VERSION "23" -#elif C_STD > C_STD_11 -# define C_VERSION "17" -#elif C_STD > C_STD_99 -# define C_VERSION "11" -#elif C_STD >= C_STD_99 -# 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 diff --git a/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/3.30.2/CompilerIdC/a.out b/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/3.30.2/CompilerIdC/a.out deleted file mode 100644 index 5d6b01d4..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/3.30.2/CompilerIdC/a.out and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/3.30.2/CompilerIdCXX/CMakeCXXCompilerId.cpp b/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/3.30.2/CompilerIdCXX/CMakeCXXCompilerId.cpp deleted file mode 100644 index da6c824a..00000000 --- a/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/3.30.2/CompilerIdCXX/CMakeCXXCompilerId.cpp +++ /dev/null @@ -1,919 +0,0 @@ -/* 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(__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(__clang__) && defined(__cray__) -# define COMPILER_ID "CrayClang" -# define COMPILER_VERSION_MAJOR DEC(__cray_major__) -# define COMPILER_VERSION_MINOR DEC(__cray_minor__) -# define COMPILER_VERSION_PATCH DEC(__cray_patchlevel__) -# define COMPILER_VERSION_INTERNAL_STR __clang_version__ - - -#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(__TASKING__) -# define COMPILER_ID "Tasking" - # define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000) - # define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100) -# define COMPILER_VERSION_INTERNAL DEC(__VERSION__) - -#elif defined(__ORANGEC__) -# define COMPILER_ID "OrangeC" -# define COMPILER_VERSION_MAJOR DEC(__ORANGEC_MAJOR__) -# define COMPILER_VERSION_MINOR DEC(__ORANGEC_MINOR__) -# define COMPILER_VERSION_PATCH DEC(__ORANGEC_PATCHLEVEL__) - -#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/100 % 100) -# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) - -#elif defined(__clang__) && defined(__ti__) -# define COMPILER_ID "TIClang" - # define COMPILER_VERSION_MAJOR DEC(__ti_major__) - # define COMPILER_VERSION_MINOR DEC(__ti_minor__) - # define COMPILER_VERSION_PATCH DEC(__ti_patchlevel__) -# define COMPILER_VERSION_INTERNAL DEC(__ti_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(__LCC__ / 100) -# define COMPILER_VERSION_MINOR DEC(__LCC__ % 100) -# 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(__clang__) && defined(__ti__) -# if defined(__ARM_ARCH) -# define ARCHITECTURE_ID "Arm" - -# 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" - -#elif defined(__TASKING__) - -# if defined(__CTC__) || defined(__CPTC__) -# define ARCHITECTURE_ID "TriCore" - -# elif defined(__CMCS__) -# define ARCHITECTURE_ID "MCS" - -# elif defined(__CARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__CARC__) -# define ARCHITECTURE_ID "ARC" - -# elif defined(__C51__) -# define ARCHITECTURE_ID "8051" - -# elif defined(__CPCP__) -# define ARCHITECTURE_ID "PCP" - -# else -# define ARCHITECTURE_ID "" -# endif - -#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 "]"; - - - -#define CXX_STD_98 199711L -#define CXX_STD_11 201103L -#define CXX_STD_14 201402L -#define CXX_STD_17 201703L -#define CXX_STD_20 202002L -#define CXX_STD_23 202302L - -#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) -# if _MSVC_LANG > CXX_STD_17 -# define CXX_STD _MSVC_LANG -# elif _MSVC_LANG == CXX_STD_17 && defined(__cpp_aggregate_paren_init) -# define CXX_STD CXX_STD_20 -# elif _MSVC_LANG > CXX_STD_14 && __cplusplus > CXX_STD_17 -# define CXX_STD CXX_STD_20 -# elif _MSVC_LANG > CXX_STD_14 -# define CXX_STD CXX_STD_17 -# elif defined(__INTEL_CXX11_MODE__) && defined(__cpp_aggregate_nsdmi) -# define CXX_STD CXX_STD_14 -# elif defined(__INTEL_CXX11_MODE__) -# define CXX_STD CXX_STD_11 -# else -# define CXX_STD CXX_STD_98 -# endif -#elif defined(_MSC_VER) && defined(_MSVC_LANG) -# if _MSVC_LANG > __cplusplus -# define CXX_STD _MSVC_LANG -# else -# define CXX_STD __cplusplus -# endif -#elif defined(__NVCOMPILER) -# if __cplusplus == CXX_STD_17 && defined(__cpp_aggregate_paren_init) -# define CXX_STD CXX_STD_20 -# else -# define CXX_STD __cplusplus -# endif -#elif defined(__INTEL_COMPILER) || defined(__PGI) -# if __cplusplus == CXX_STD_11 && defined(__cpp_namespace_attributes) -# define CXX_STD CXX_STD_17 -# elif __cplusplus == CXX_STD_11 && defined(__cpp_aggregate_nsdmi) -# define CXX_STD CXX_STD_14 -# else -# define CXX_STD __cplusplus -# endif -#elif (defined(__IBMCPP__) || defined(__ibmxl__)) && defined(__linux__) -# if __cplusplus == CXX_STD_11 && defined(__cpp_aggregate_nsdmi) -# define CXX_STD CXX_STD_14 -# else -# define CXX_STD __cplusplus -# endif -#elif __cplusplus == 1 && defined(__GXX_EXPERIMENTAL_CXX0X__) -# define CXX_STD CXX_STD_11 -#else -# define CXX_STD __cplusplus -#endif - -const char* info_language_standard_default = "INFO" ":" "standard_default[" -#if CXX_STD > CXX_STD_23 - "26" -#elif CXX_STD > CXX_STD_20 - "23" -#elif CXX_STD > CXX_STD_17 - "20" -#elif CXX_STD > CXX_STD_14 - "17" -#elif CXX_STD > CXX_STD_11 - "14" -#elif CXX_STD >= CXX_STD_11 - "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]; - 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; -} diff --git a/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/3.30.2/CompilerIdCXX/a.out b/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/3.30.2/CompilerIdCXX/a.out deleted file mode 100644 index 54c700ac..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/3.30.2/CompilerIdCXX/a.out and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/CMakeConfigureLog.yaml b/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/CMakeConfigureLog.yaml deleted file mode 100644 index 1b860a32..00000000 --- a/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/CMakeConfigureLog.yaml +++ /dev/null @@ -1,552 +0,0 @@ - ---- -events: - - - kind: "message-v1" - backtrace: - - "C:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineSystem.cmake:200 (message)" - - "C:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)" - - "CMakeLists.txt:72 (project)" - message: | - The target system is: Generic - - - The host system is: Windows - 10.0.26200 - AMD64 - - - kind: "message-v1" - backtrace: - - "C:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:17 (message)" - - "C:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" - - "C:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCCompiler.cmake:123 (CMAKE_DETERMINE_COMPILER_ID)" - - "C:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)" - - "CMakeLists.txt:72 (project)" - message: | - Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. - Compiler: C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc.exe - Build flags: -march=rv32imac_zicsr_zifencei - Id flags: - - The output was: - 0 - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld.exe: C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32\\libc.a(libc_a-closer.o): in function `_close_r': - /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/newlib/newlib/libc/reent/closer.c:47:(.text+0x14): warning: _close is not implemented and will always fail - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld.exe: C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32\\libc.a(libc_a-lseekr.o): in function `_lseek_r': - /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/newlib/newlib/libc/reent/lseekr.c:49:(.text+0x18): warning: _lseek is not implemented and will always fail - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld.exe: C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32\\libc.a(libc_a-readr.o): in function `_read_r': - /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/newlib/newlib/libc/reent/readr.c:49:(.text+0x18): warning: _read is not implemented and will always fail - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld.exe: C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32\\libc.a(libc_a-writer.o): in function `_write_r': - /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/newlib/newlib/libc/reent/writer.c:49:(.text+0x18): warning: _write is not implemented and will always fail - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld.exe: C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32\\libc.a(libc_a-fclose.o): in function `fclose': - /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/newlib/newlib/libc/stdio/fclose.c:125:(.text+0xf4): warning: __getreent is not implemented and will always fail - - - Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out" - - The C compiler identification is GNU, found in: - C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/3.30.2/CompilerIdC/a.out - - - - kind: "message-v1" - backtrace: - - "C:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:17 (message)" - - "C:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" - - "C:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCXXCompiler.cmake:126 (CMAKE_DETERMINE_COMPILER_ID)" - - "C:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)" - - "CMakeLists.txt:72 (project)" - message: | - Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. - Compiler: C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-g++.exe - Build flags: -march=rv32imac_zicsr_zifencei - Id flags: - - The output was: - 0 - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld.exe: C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32\\libc.a(libc_a-closer.o): in function `_close_r': - /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/newlib/newlib/libc/reent/closer.c:47:(.text+0x14): warning: _close is not implemented and will always fail - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld.exe: C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32\\libc.a(libc_a-lseekr.o): in function `_lseek_r': - /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/newlib/newlib/libc/reent/lseekr.c:49:(.text+0x18): warning: _lseek is not implemented and will always fail - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld.exe: C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32\\libc.a(libc_a-readr.o): in function `_read_r': - /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/newlib/newlib/libc/reent/readr.c:49:(.text+0x18): warning: _read is not implemented and will always fail - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld.exe: C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32\\libc.a(libc_a-writer.o): in function `_write_r': - /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/newlib/newlib/libc/reent/writer.c:49:(.text+0x18): warning: _write is not implemented and will always fail - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld.exe: C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32\\libc.a(libc_a-fclose.o): in function `fclose': - /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/newlib/newlib/libc/stdio/fclose.c:125:(.text+0xf4): warning: __getreent is not implemented and will always fail - - - Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out" - - The CXX compiler identification is GNU, found in: - C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/3.30.2/CompilerIdCXX/a.out - - - - kind: "message-v1" - backtrace: - - "C:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:1192 (message)" - - "C:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineASMCompiler.cmake:135 (CMAKE_DETERMINE_COMPILER_ID_VENDOR)" - - "C:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)" - - "CMakeLists.txt:72 (project)" - message: | - Checking whether the ASM compiler is GNU using "--version" matched "(GNU assembler)|(GCC)|(Free Software Foundation)": - riscv32-esp-elf-gcc.exe (crosstool-NG esp-14.2.0_20241119) 14.2.0 - Copyright (C) 2024 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. - - - - kind: "try_compile-v1" - backtrace: - - "C:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:74 (try_compile)" - - "C:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" - - "C:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)" - - "CMakeLists.txt:72 (project)" - checks: - - "Detecting C compiler ABI info" - directories: - source: "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-qi0ahj" - binary: "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-qi0ahj" - cmakeVariables: - CMAKE_C_FLAGS: "-march=rv32imac_zicsr_zifencei " - CMAKE_C_FLAGS_DEBUG: "-g" - CMAKE_EXE_LINKER_FLAGS: "-nostartfiles -march=rv32imac_zicsr_zifencei " - CMAKE_MODULE_PATH: "C:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake;C:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/third_party" - buildResult: - variable: "CMAKE_C_ABI_COMPILED" - cached: true - stdout: | - Change Dir: 'C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-qi0ahj' - - Run Build Command(s): C:/Users/Laurent/.espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_2fa63 - [1/2] C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -march=rv32imac_zicsr_zifencei -v -o CMakeFiles/cmTC_2fa63.dir/CMakeCCompilerABI.c.obj -c C:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c - Using built-in specs. - COLLECT_GCC=C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe - Target: riscv32-esp-elf - Configured with: /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=riscv32-esp-elf --prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-arch=rv32gc --with-abi=ilp32 --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --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/riscv32-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/riscv32-esp-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 zstd - gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) - COLLECT_GCC_OPTIONS='-march=rv32imac_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_2fa63.dir/CMakeCCompilerABI.c.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_2fa63.dir/' - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/cc1.exe -quiet -v -imultilib rv32imac_zicsr_zifencei/ilp32 -iprefix C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/ -isysroot C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf C:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_2fa63.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -march=rv32imac_zicsr_zifencei -mabi=ilp32 -misa-spec=20191213 -march=rv32imac_zicsr_zifencei -version -o C:\\Users\\Laurent\\AppData\\Local\\Temp\\ccVuhqmc.s - GNU C17 (crosstool-NG esp-14.2.0_20241119) version 14.2.0 (riscv32-esp-elf) - compiled by GNU C version 6.3.0 20170516, GMP version 6.2.1, MPFR version 4.2.1, MPC version 1.2.1, isl version isl-0.26-GMP - - GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 - ignoring duplicate directory "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/include" - ignoring nonexistent directory "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/builds/idf/crosstool-NG/builds/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/../../../../include" - ignoring duplicate directory "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/include-fixed" - ignoring duplicate directory "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include" - ignoring duplicate directory "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/include" - #include "..." search starts here: - #include <...> search starts here: - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include-fixed - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include - End of search list. - Compiler executable checksum: bd4b44cd937a52babfee906ad526682a - COLLECT_GCC_OPTIONS='-march=rv32imac_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_2fa63.dir/CMakeCCompilerABI.c.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_2fa63.dir/' - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/as.exe -v --traditional-format -march=rv32imac_zicsr_zifencei -march=rv32imac_zicsr_zifencei -mabi=ilp32 -misa-spec=20191213 -o CMakeFiles/cmTC_2fa63.dir/CMakeCCompilerABI.c.obj C:\\Users\\Laurent\\AppData\\Local\\Temp\\ccVuhqmc.s - GNU assembler version 2.43.1 (riscv32-esp-elf) using BFD version (crosstool-NG esp-14.2.0_20241119) 2.43.1 - COMPILER_PATH=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ - LIBRARY_PATH=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib/\x0d - COLLECT_GCC_OPTIONS='-march=rv32imac_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_2fa63.dir/CMakeCCompilerABI.c.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_2fa63.dir/CMakeCCompilerABI.c.'\x0d - [2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -march=rv32imac_zicsr_zifencei -nostartfiles -march=rv32imac_zicsr_zifencei -v CMakeFiles/cmTC_2fa63.dir/CMakeCCompilerABI.c.obj -o cmTC_2fa63 && cd ." - Using built-in specs. - COLLECT_GCC=C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe - COLLECT_LTO_WRAPPER=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/lto-wrapper.exe - Target: riscv32-esp-elf - Configured with: /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=riscv32-esp-elf --prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-arch=rv32gc --with-abi=ilp32 --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --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/riscv32-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/riscv32-esp-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 zstd - gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) - COMPILER_PATH=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ - LIBRARY_PATH=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib/ - COLLECT_GCC_OPTIONS='-nostartfiles' '-march=rv32imac_zicsr_zifencei' '-v' '-o' 'cmTC_2fa63' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'cmTC_2fa63.' - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/collect2.exe -plugin C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/liblto_plugin.dll -plugin-opt=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\Laurent\\AppData\\Local\\Temp\\ccZEA78c.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 --sysroot=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf -melf32lriscv -X -o cmTC_2fa63 -LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32 -LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32 -LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32 -LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0 -LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc -LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib -LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib -LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib CMakeFiles/cmTC_2fa63.dir/CMakeCCompilerABI.c.obj -lgcc -lc -lnosys -lc -lgcc - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld.exe: warning: cannot find entry symbol _start; defaulting to 00010094\x0d - COLLECT_GCC_OPTIONS='-nostartfiles' '-march=rv32imac_zicsr_zifencei' '-v' '-o' 'cmTC_2fa63' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'cmTC_2fa63.'\x0d - - exitCode: 0 - - - kind: "message-v1" - backtrace: - - "C:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:182 (message)" - - "C:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" - - "C:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)" - - "CMakeLists.txt:72 (project)" - message: | - Parsed C implicit include dir info: rv=done - found start of include info - found start of implicit include info - add: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include] - add: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include-fixed] - add: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include] - end of search list found - collapse include dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include] ==> [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/include] - collapse include dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include-fixed] ==> [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/include-fixed] - collapse include dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include] ==> [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include] - implicit include dirs: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/include;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/include-fixed;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include] - - - - - kind: "message-v1" - backtrace: - - "C:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:218 (message)" - - "C:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" - - "C:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)" - - "CMakeLists.txt:72 (project)" - message: | - Parsed C implicit link information: - link line regex: [^( *|.*[/\\])(ld[0-9]*(\\.[a-z]+)?|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] - linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(\\.[a-z]+)?))("|,| |$)] - ignore line: [Change Dir: 'C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-qi0ahj'] - ignore line: [] - ignore line: [Run Build Command(s): C:/Users/Laurent/.espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_2fa63] - ignore line: [[1/2] C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -march=rv32imac_zicsr_zifencei -v -o CMakeFiles/cmTC_2fa63.dir/CMakeCCompilerABI.c.obj -c C:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c] - ignore line: [Using built-in specs.] - ignore line: [COLLECT_GCC=C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe] - ignore line: [Target: riscv32-esp-elf] - ignore line: [Configured with: /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=riscv32-esp-elf --prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-arch=rv32gc --with-abi=ilp32 --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --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/riscv32-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/riscv32-esp-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 zstd] - ignore line: [gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) ] - ignore line: [COLLECT_GCC_OPTIONS='-march=rv32imac_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_2fa63.dir/CMakeCCompilerABI.c.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_2fa63.dir/'] - ignore line: [ C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/cc1.exe -quiet -v -imultilib rv32imac_zicsr_zifencei/ilp32 -iprefix C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/ -isysroot C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf C:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_2fa63.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -march=rv32imac_zicsr_zifencei -mabi=ilp32 -misa-spec=20191213 -march=rv32imac_zicsr_zifencei -version -o C:\\Users\\Laurent\\AppData\\Local\\Temp\\ccVuhqmc.s] - ignore line: [GNU C17 (crosstool-NG esp-14.2.0_20241119) version 14.2.0 (riscv32-esp-elf)] - ignore line: [ compiled by GNU C version 6.3.0 20170516 GMP version 6.2.1 MPFR version 4.2.1 MPC version 1.2.1 isl version isl-0.26-GMP] - ignore line: [] - ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] - ignore line: [ignoring duplicate directory "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/include"] - ignore line: [ignoring nonexistent directory "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/builds/idf/crosstool-NG/builds/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/../../../../include"] - ignore line: [ignoring duplicate directory "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/include-fixed"] - ignore line: [ignoring duplicate directory "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include"] - ignore line: [ignoring duplicate directory "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/include"] - ignore line: [#include "..." search starts here:] - ignore line: [#include <...> search starts here:] - ignore line: [ C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include] - ignore line: [ C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include-fixed] - ignore line: [ C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include] - ignore line: [End of search list.] - ignore line: [Compiler executable checksum: bd4b44cd937a52babfee906ad526682a] - ignore line: [COLLECT_GCC_OPTIONS='-march=rv32imac_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_2fa63.dir/CMakeCCompilerABI.c.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_2fa63.dir/'] - ignore line: [ C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/as.exe -v --traditional-format -march=rv32imac_zicsr_zifencei -march=rv32imac_zicsr_zifencei -mabi=ilp32 -misa-spec=20191213 -o CMakeFiles/cmTC_2fa63.dir/CMakeCCompilerABI.c.obj C:\\Users\\Laurent\\AppData\\Local\\Temp\\ccVuhqmc.s] - ignore line: [GNU assembler version 2.43.1 (riscv32-esp-elf) using BFD version (crosstool-NG esp-14.2.0_20241119) 2.43.1] - ignore line: [COMPILER_PATH=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/] - ignore line: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/] - ignore line: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/] - ignore line: [LIBRARY_PATH=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/] - ignore line: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/] - ignore line: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/] - ignore line: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/] - ignore line: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/] - ignore line: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/] - ignore line: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/] - ignore line: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib/\x0d] - ignore line: [COLLECT_GCC_OPTIONS='-march=rv32imac_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_2fa63.dir/CMakeCCompilerABI.c.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_2fa63.dir/CMakeCCompilerABI.c.'\x0d] - ignore line: [[2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -march=rv32imac_zicsr_zifencei -nostartfiles -march=rv32imac_zicsr_zifencei -v CMakeFiles/cmTC_2fa63.dir/CMakeCCompilerABI.c.obj -o cmTC_2fa63 && cd ."] - ignore line: [Using built-in specs.] - ignore line: [COLLECT_GCC=C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe] - ignore line: [COLLECT_LTO_WRAPPER=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/lto-wrapper.exe] - ignore line: [Target: riscv32-esp-elf] - ignore line: [Configured with: /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=riscv32-esp-elf --prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-arch=rv32gc --with-abi=ilp32 --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --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/riscv32-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/riscv32-esp-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 zstd] - ignore line: [gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) ] - ignore line: [COMPILER_PATH=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/] - ignore line: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/] - ignore line: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/] - ignore line: [LIBRARY_PATH=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/] - ignore line: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/] - ignore line: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/] - ignore line: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/] - ignore line: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/] - ignore line: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/] - ignore line: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/] - ignore line: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib/] - ignore line: [COLLECT_GCC_OPTIONS='-nostartfiles' '-march=rv32imac_zicsr_zifencei' '-v' '-o' 'cmTC_2fa63' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'cmTC_2fa63.'] - link line: [ C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/collect2.exe -plugin C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/liblto_plugin.dll -plugin-opt=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\Laurent\\AppData\\Local\\Temp\\ccZEA78c.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 --sysroot=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf -melf32lriscv -X -o cmTC_2fa63 -LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32 -LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32 -LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32 -LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0 -LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc -LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib -LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib -LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib CMakeFiles/cmTC_2fa63.dir/CMakeCCompilerABI.c.obj -lgcc -lc -lnosys -lc -lgcc] - arg [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/collect2.exe] ==> ignore - arg [-plugin] ==> ignore - arg [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/liblto_plugin.dll] ==> ignore - arg [-plugin-opt=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/lto-wrapper.exe] ==> ignore - arg [-plugin-opt=-fresolution=C:\\Users\\Laurent\\AppData\\Local\\Temp\\ccZEA78c.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 [--sysroot=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf] ==> ignore - arg [-melf32lriscv] ==> ignore - arg [-X] ==> ignore - arg [-o] ==> ignore - arg [cmTC_2fa63] ==> ignore - arg [-LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32] ==> dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32] - arg [-LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32] ==> dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32] - arg [-LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32] ==> dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32] - arg [-LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0] ==> dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0] - arg [-LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc] ==> dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc] - arg [-LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib] ==> dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib] - arg [-LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib] ==> dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib] - arg [-LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib] ==> dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib] - arg [CMakeFiles/cmTC_2fa63.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] - ignore line: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld.exe: warning: cannot find entry symbol _start] - ignore line: [ defaulting to 00010094\x0d] - ignore line: [COLLECT_GCC_OPTIONS='-nostartfiles' '-march=rv32imac_zicsr_zifencei' '-v' '-o' 'cmTC_2fa63' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'cmTC_2fa63.'\x0d] - ignore line: [] - ignore line: [] - collapse library dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32] ==> [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32] - collapse library dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32] ==> [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32] - collapse library dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32] ==> [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32] - collapse library dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0] ==> [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0] - collapse library dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc] ==> [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc] - collapse library dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib] ==> [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib] - collapse library dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib] ==> [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib] - collapse library dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib] ==> [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/usr/lib] - implicit libs: [gcc;c;nosys;c;gcc] - implicit objs: [] - implicit dirs: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/usr/lib] - implicit fwks: [] - - - - - kind: "try_compile-v1" - backtrace: - - "C:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:74 (try_compile)" - - "C:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" - - "C:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)" - - "CMakeLists.txt:72 (project)" - checks: - - "Detecting CXX compiler ABI info" - directories: - source: "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-jvczq9" - binary: "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-jvczq9" - cmakeVariables: - CMAKE_CXX_FLAGS: "-march=rv32imac_zicsr_zifencei " - CMAKE_CXX_FLAGS_DEBUG: "-g" - CMAKE_CXX_SCAN_FOR_MODULES: "OFF" - CMAKE_EXE_LINKER_FLAGS: "-nostartfiles -march=rv32imac_zicsr_zifencei " - CMAKE_MODULE_PATH: "C:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake;C:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/third_party" - buildResult: - variable: "CMAKE_CXX_ABI_COMPILED" - cached: true - stdout: | - Change Dir: 'C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-jvczq9' - - Run Build Command(s): C:/Users/Laurent/.espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_bb640 - [1/2] C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -march=rv32imac_zicsr_zifencei -v -o CMakeFiles/cmTC_bb640.dir/CMakeCXXCompilerABI.cpp.obj -c C:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp - Using built-in specs. - COLLECT_GCC=C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe - Target: riscv32-esp-elf - Configured with: /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=riscv32-esp-elf --prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-arch=rv32gc --with-abi=ilp32 --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --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/riscv32-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/riscv32-esp-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 zstd - gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) - COLLECT_GCC_OPTIONS='-march=rv32imac_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_bb640.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_bb640.dir/' - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/cc1plus.exe -quiet -v -imultilib rv32imac_zicsr_zifencei/ilp32 -iprefix C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/ -isysroot C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf C:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_bb640.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -march=rv32imac_zicsr_zifencei -mabi=ilp32 -misa-spec=20191213 -march=rv32imac_zicsr_zifencei -version -o C:\\Users\\Laurent\\AppData\\Local\\Temp\\ccZ6m8to.s - GNU C++17 (crosstool-NG esp-14.2.0_20241119) version 14.2.0 (riscv32-esp-elf) - compiled by GNU C version 6.3.0 20170516, GMP version 6.2.1, MPFR version 4.2.1, MPC version 1.2.1, isl version isl-0.26-GMP - - GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 - ignoring duplicate directory "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0" - ignoring duplicate directory "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0/riscv32-esp-elf/rv32imac_zicsr_zifencei/ilp32" - ignoring duplicate directory "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0/backward" - ignoring duplicate directory "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/include" - ignoring nonexistent directory "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/builds/idf/crosstool-NG/builds/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/../../../../include" - ignoring duplicate directory "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/include-fixed" - ignoring duplicate directory "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include" - ignoring duplicate directory "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/include" - #include "..." search starts here: - #include <...> search starts here: - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0 - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0/riscv32-esp-elf/rv32imac_zicsr_zifencei/ilp32 - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0/backward - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include-fixed - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include - End of search list. - Compiler executable checksum: b8daf4944b33b24ed9ecf5a047df93fe - COLLECT_GCC_OPTIONS='-march=rv32imac_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_bb640.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_bb640.dir/' - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/as.exe -v --traditional-format -march=rv32imac_zicsr_zifencei -march=rv32imac_zicsr_zifencei -mabi=ilp32 -misa-spec=20191213 -o CMakeFiles/cmTC_bb640.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\Laurent\\AppData\\Local\\Temp\\ccZ6m8to.s - GNU assembler version 2.43.1 (riscv32-esp-elf) using BFD version (crosstool-NG esp-14.2.0_20241119) 2.43.1 - COMPILER_PATH=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ - LIBRARY_PATH=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib/ - COLLECT_GCC_OPTIONS='-march=rv32imac_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_bb640.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_bb640.dir/CMakeCXXCompilerABI.cpp.'\x0d - [2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -march=rv32imac_zicsr_zifencei -nostartfiles -march=rv32imac_zicsr_zifencei -v CMakeFiles/cmTC_bb640.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_bb640 && cd ." - Using built-in specs. - COLLECT_GCC=C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe - COLLECT_LTO_WRAPPER=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/lto-wrapper.exe - Target: riscv32-esp-elf - Configured with: /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=riscv32-esp-elf --prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-arch=rv32gc --with-abi=ilp32 --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --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/riscv32-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/riscv32-esp-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 zstd - gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) - COMPILER_PATH=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ - LIBRARY_PATH=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib/ - COLLECT_GCC_OPTIONS='-nostartfiles' '-march=rv32imac_zicsr_zifencei' '-v' '-o' 'cmTC_bb640' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'cmTC_bb640.' - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/collect2.exe -plugin C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/liblto_plugin.dll -plugin-opt=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\Laurent\\AppData\\Local\\Temp\\ccZQVNWt.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 --sysroot=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf -melf32lriscv -X -o cmTC_bb640 -LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32 -LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32 -LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32 -LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0 -LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc -LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib -LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib -LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib CMakeFiles/cmTC_bb640.dir/CMakeCXXCompilerABI.cpp.obj -lstdc++ -lm -lgcc -lc -lnosys -lc -lgcc\x0d - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld.exe: warning: cannot find entry symbol _start; defaulting to 00010094\x0d - COLLECT_GCC_OPTIONS='-nostartfiles' '-march=rv32imac_zicsr_zifencei' '-v' '-o' 'cmTC_bb640' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'cmTC_bb640.'\x0d - - exitCode: 0 - - - kind: "message-v1" - backtrace: - - "C:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:182 (message)" - - "C:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" - - "C:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)" - - "CMakeLists.txt:72 (project)" - message: | - Parsed CXX implicit include dir info: rv=done - found start of include info - found start of implicit include info - add: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0] - add: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0/riscv32-esp-elf/rv32imac_zicsr_zifencei/ilp32] - add: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0/backward] - add: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include] - add: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include-fixed] - add: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include] - end of search list found - collapse include dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0] ==> [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include/c++/14.2.0] - collapse include dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0/riscv32-esp-elf/rv32imac_zicsr_zifencei/ilp32] ==> [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include/c++/14.2.0/riscv32-esp-elf/rv32imac_zicsr_zifencei/ilp32] - collapse include dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0/backward] ==> [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include/c++/14.2.0/backward] - collapse include dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include] ==> [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/include] - collapse include dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include-fixed] ==> [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/include-fixed] - collapse include dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include] ==> [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include] - implicit include dirs: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include/c++/14.2.0;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include/c++/14.2.0/riscv32-esp-elf/rv32imac_zicsr_zifencei/ilp32;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include/c++/14.2.0/backward;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/include;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/include-fixed;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/include] - - - - - kind: "message-v1" - backtrace: - - "C:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:218 (message)" - - "C:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" - - "C:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/project.cmake:589 (__project)" - - "CMakeLists.txt:72 (project)" - message: | - Parsed CXX implicit link information: - link line regex: [^( *|.*[/\\])(ld[0-9]*(\\.[a-z]+)?|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] - linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(\\.[a-z]+)?))("|,| |$)] - ignore line: [Change Dir: 'C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/CMakeScratch/TryCompile-jvczq9'] - ignore line: [] - ignore line: [Run Build Command(s): C:/Users/Laurent/.espressif/tools/ninja/1.12.1/ninja.exe -v cmTC_bb640] - ignore line: [[1/2] C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -march=rv32imac_zicsr_zifencei -v -o CMakeFiles/cmTC_bb640.dir/CMakeCXXCompilerABI.cpp.obj -c C:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp] - ignore line: [Using built-in specs.] - ignore line: [COLLECT_GCC=C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe] - ignore line: [Target: riscv32-esp-elf] - ignore line: [Configured with: /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=riscv32-esp-elf --prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-arch=rv32gc --with-abi=ilp32 --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --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/riscv32-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/riscv32-esp-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 zstd] - ignore line: [gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) ] - ignore line: [COLLECT_GCC_OPTIONS='-march=rv32imac_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_bb640.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_bb640.dir/'] - ignore line: [ C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/cc1plus.exe -quiet -v -imultilib rv32imac_zicsr_zifencei/ilp32 -iprefix C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/ -isysroot C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf C:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_bb640.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -march=rv32imac_zicsr_zifencei -mabi=ilp32 -misa-spec=20191213 -march=rv32imac_zicsr_zifencei -version -o C:\\Users\\Laurent\\AppData\\Local\\Temp\\ccZ6m8to.s] - ignore line: [GNU C++17 (crosstool-NG esp-14.2.0_20241119) version 14.2.0 (riscv32-esp-elf)] - ignore line: [ compiled by GNU C version 6.3.0 20170516 GMP version 6.2.1 MPFR version 4.2.1 MPC version 1.2.1 isl version isl-0.26-GMP] - ignore line: [] - ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] - ignore line: [ignoring duplicate directory "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0"] - ignore line: [ignoring duplicate directory "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0/riscv32-esp-elf/rv32imac_zicsr_zifencei/ilp32"] - ignore line: [ignoring duplicate directory "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0/backward"] - ignore line: [ignoring duplicate directory "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/include"] - ignore line: [ignoring nonexistent directory "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/builds/idf/crosstool-NG/builds/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/../../../../include"] - ignore line: [ignoring duplicate directory "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/include-fixed"] - ignore line: [ignoring duplicate directory "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/../../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include"] - ignore line: [ignoring duplicate directory "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/include"] - ignore line: [#include "..." search starts here:] - ignore line: [#include <...> search starts here:] - ignore line: [ C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0] - ignore line: [ C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0/riscv32-esp-elf/rv32imac_zicsr_zifencei/ilp32] - ignore line: [ C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include/c++/14.2.0/backward] - ignore line: [ C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include] - ignore line: [ C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/include-fixed] - ignore line: [ C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/include] - ignore line: [End of search list.] - ignore line: [Compiler executable checksum: b8daf4944b33b24ed9ecf5a047df93fe] - ignore line: [COLLECT_GCC_OPTIONS='-march=rv32imac_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_bb640.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_bb640.dir/'] - ignore line: [ C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/as.exe -v --traditional-format -march=rv32imac_zicsr_zifencei -march=rv32imac_zicsr_zifencei -mabi=ilp32 -misa-spec=20191213 -o CMakeFiles/cmTC_bb640.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\Laurent\\AppData\\Local\\Temp\\ccZ6m8to.s] - ignore line: [GNU assembler version 2.43.1 (riscv32-esp-elf) using BFD version (crosstool-NG esp-14.2.0_20241119) 2.43.1] - ignore line: [COMPILER_PATH=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/] - ignore line: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/] - ignore line: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/] - ignore line: [LIBRARY_PATH=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/] - ignore line: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/] - ignore line: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/] - ignore line: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/] - ignore line: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/] - ignore line: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/] - ignore line: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/] - ignore line: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib/] - ignore line: [COLLECT_GCC_OPTIONS='-march=rv32imac_zicsr_zifencei' '-v' '-o' 'CMakeFiles/cmTC_bb640.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'CMakeFiles/cmTC_bb640.dir/CMakeCXXCompilerABI.cpp.'\x0d] - ignore line: [[2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -march=rv32imac_zicsr_zifencei -nostartfiles -march=rv32imac_zicsr_zifencei -v CMakeFiles/cmTC_bb640.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_bb640 && cd ."] - ignore line: [Using built-in specs.] - ignore line: [COLLECT_GCC=C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe] - ignore line: [COLLECT_LTO_WRAPPER=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/lto-wrapper.exe] - ignore line: [Target: riscv32-esp-elf] - ignore line: [Configured with: /builds/idf/crosstool-NG/.build/riscv32-esp-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=riscv32-esp-elf --prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --exec_prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-sysroot=/builds/idf/crosstool-NG/builds/riscv32-esp-elf/riscv32-esp-elf --with-native-system-header-dir=/include --with-newlib --enable-threads=no --disable-shared --with-arch=rv32gc --with-abi=ilp32 --with-pkgversion='crosstool-NG esp-14.2.0_20241119' --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/riscv32-esp-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/riscv32-esp-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/riscv32-esp-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 zstd] - ignore line: [gcc version 14.2.0 (crosstool-NG esp-14.2.0_20241119) ] - ignore line: [COMPILER_PATH=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/] - ignore line: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/] - ignore line: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/] - ignore line: [LIBRARY_PATH=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/] - ignore line: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/] - ignore line: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/] - ignore line: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/] - ignore line: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/] - ignore line: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/] - ignore line: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/] - ignore line: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib/] - ignore line: [COLLECT_GCC_OPTIONS='-nostartfiles' '-march=rv32imac_zicsr_zifencei' '-v' '-o' 'cmTC_bb640' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'cmTC_bb640.'] - link line: [ C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/collect2.exe -plugin C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/liblto_plugin.dll -plugin-opt=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\Laurent\\AppData\\Local\\Temp\\ccZQVNWt.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 --sysroot=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf -melf32lriscv -X -o cmTC_bb640 -LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32 -LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32 -LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32 -LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0 -LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc -LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib -LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib -LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib CMakeFiles/cmTC_bb640.dir/CMakeCXXCompilerABI.cpp.obj -lstdc++ -lm -lgcc -lc -lnosys -lc -lgcc\x0d] - arg [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/collect2.exe] ==> ignore - arg [-plugin] ==> ignore - arg [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/liblto_plugin.dll] ==> ignore - arg [-plugin-opt=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../libexec/gcc/riscv32-esp-elf/14.2.0/lto-wrapper.exe] ==> ignore - arg [-plugin-opt=-fresolution=C:\\Users\\Laurent\\AppData\\Local\\Temp\\ccZQVNWt.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 [--sysroot=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf] ==> ignore - arg [-melf32lriscv] ==> ignore - arg [-X] ==> ignore - arg [-o] ==> ignore - arg [cmTC_bb640] ==> ignore - arg [-LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32] ==> dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32] - arg [-LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32] ==> dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32] - arg [-LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32] ==> dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32] - arg [-LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0] ==> dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0] - arg [-LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc] ==> dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc] - arg [-LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib] ==> dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib] - arg [-LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib] ==> dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib] - arg [-LC:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib] ==> dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib] - arg [CMakeFiles/cmTC_bb640.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] - ignore line: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/bin/ld.exe: warning: cannot find entry symbol _start] - ignore line: [ defaulting to 00010094\x0d] - ignore line: [COLLECT_GCC_OPTIONS='-nostartfiles' '-march=rv32imac_zicsr_zifencei' '-v' '-o' 'cmTC_bb640' '-mabi=ilp32' '-misa-spec=20191213' '-march=rv32imac_zicsr_zifencei' '-dumpdir' 'cmTC_bb640.'\x0d] - ignore line: [] - ignore line: [] - collapse library dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32] ==> [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32] - collapse library dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32] ==> [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32] - collapse library dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32] ==> [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32] - collapse library dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0] ==> [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0] - collapse library dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc] ==> [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc] - collapse library dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib] ==> [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib] - collapse library dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/lib] ==> [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib] - collapse library dir [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../riscv32-esp-elf/usr/lib] ==> [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/usr/lib] - implicit libs: [stdc++;m;gcc;c;nosys;c;gcc] - implicit objs: [] - implicit dirs: [C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc/riscv32-esp-elf/14.2.0;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/lib/gcc;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/lib;C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/riscv32-esp-elf/usr/lib] - implicit fwks: [] - - -... diff --git a/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/TargetDirectories.txt b/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/TargetDirectories.txt deleted file mode 100644 index 08e2d9f0..00000000 --- a/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/TargetDirectories.txt +++ /dev/null @@ -1,89 +0,0 @@ -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/menuconfig.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/confserver.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/save-defconfig.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/gen_project_binary.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/app.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/erase_flash.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/merge-bin.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/monitor.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/_project_elf_src.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/bootloader.elf.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/size.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/size-files.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/size-components.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/uf2.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/uf2-app.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/hal/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/hal/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/riscv/CMakeFiles/__idf_riscv.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/riscv/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/riscv/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/newlib/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/newlib/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/micro-ecc/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/micro-ecc/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/spi_flash/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/spi_flash/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_bootloader_format/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_bootloader_format/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_app_format/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_app_format/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/efuse/CMakeFiles/efuse-common-table.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/efuse/CMakeFiles/efuse_common_table.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/efuse/CMakeFiles/efuse-custom-table.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/efuse/CMakeFiles/efuse_custom_table.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/efuse/CMakeFiles/show-efuse-table.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/efuse/CMakeFiles/show_efuse_table.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/efuse/CMakeFiles/efuse_test_table.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/efuse/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/efuse/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_security/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_security/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_system/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_system/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_hw_support/port/esp32h2/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_hw_support/port/esp32h2/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_hw_support/lowpower/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_hw_support/lowpower/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_common/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_common/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_rom/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_rom/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/log/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/log/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esptool_py/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esptool_py/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/partition_table/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/partition_table/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_tee/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_tee/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/freertos/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/freertos/CMakeFiles/rebuild_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/main/CMakeFiles/__idf_main.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/main/CMakeFiles/edit_cache.dir -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/main/CMakeFiles/rebuild_cache.dir diff --git a/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/bootloader.elf.dir/project_elf_src_esp32h2.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/bootloader.elf.dir/project_elf_src_esp32h2.c.obj deleted file mode 100644 index fd7fbd67..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/bootloader.elf.dir/project_elf_src_esp32h2.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/clean_additional.cmake b/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/clean_additional.cmake deleted file mode 100644 index 90446264..00000000 --- a/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/clean_additional.cmake +++ /dev/null @@ -1,12 +0,0 @@ -# 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_esp32h2.c" - ) -endif() diff --git a/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/cmake.check_cache b/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/cmake.check_cache deleted file mode 100644 index 3dccd731..00000000 --- a/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/cmake.check_cache +++ /dev/null @@ -1 +0,0 @@ -# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/git-data/HEAD b/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/git-data/HEAD deleted file mode 100644 index 3dc2aed0..00000000 --- a/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/git-data/HEAD +++ /dev/null @@ -1 +0,0 @@ -fcae32885b0296b32044cb99ecbdc50d98dddb83 diff --git a/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/git-data/grabRef.cmake b/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/git-data/grabRef.cmake deleted file mode 100644 index 7e0ca55d..00000000 --- a/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/git-data/grabRef.cmake +++ /dev/null @@ -1,50 +0,0 @@ -# -# Internal file for GetGitRevisionDescription.cmake -# -# Requires CMake 2.6 or newer (uses the 'function' command) -# -# Original Author: -# 2009-2010 Ryan Pavlik -# 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/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/git-data/HEAD" HEAD_CONTENTS LIMIT 1024) - -string(STRIP "${HEAD_CONTENTS}" HEAD_CONTENTS) -set(GIT_DIR "C:/Users/Laurent/esp/v5.5.1/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/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/git-data/head-ref" COPYONLY) - elseif(EXISTS "${GIT_DIR}/logs/${HEAD_REF}") - configure_file("${GIT_DIR}/logs/${HEAD_REF}" "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/git-data/head-ref" COPYONLY) - set(HEAD_HASH "${HEAD_REF}") - endif() -else() - # detached HEAD - configure_file("${GIT_DIR}/HEAD" "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/git-data/head-ref" COPYONLY) -endif() - -if(NOT HEAD_HASH) - file(READ "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/git-data/head-ref" HEAD_HASH LIMIT 1024) - string(STRIP "${HEAD_HASH}" HEAD_HASH) -endif() diff --git a/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/git-data/head-ref b/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/git-data/head-ref deleted file mode 100644 index 3dc2aed0..00000000 --- a/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/git-data/head-ref +++ /dev/null @@ -1 +0,0 @@ -fcae32885b0296b32044cb99ecbdc50d98dddb83 diff --git a/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/rules.ninja b/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/rules.ninja deleted file mode 100644 index f8b52e4e..00000000 --- a/esp32-thread/open-thread-rcp/build/bootloader/CMakeFiles/rules.ninja +++ /dev/null @@ -1,338 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Ninja" Generator, CMake Version 3.30 - -# 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_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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 = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_hal_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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 = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_riscv_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_riscv_ - command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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 = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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 = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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 = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_bootloader_format_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_bootloader_format_ - command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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 = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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 = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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 = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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 = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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 = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_rom_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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 = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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 = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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_unscanned_ - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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 = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\Laurent\.espressif\tools\riscv32-esp-elf\esp-14.2.0_20241119\riscv32-esp-elf\bin\riscv32-esp-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\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\esp\v5.5.1\esp-idf\components\bootloader\subproject -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader - description = Re-running CMake... - generator = 1 - - -############################################# -# Rule for cleaning additional files. - -rule CLEAN_ADDITIONAL - command = C:\Users\Laurent\.espressif\tools\cmake\3.30.2\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\Laurent\.espressif\tools\ninja\1.12.1\ninja.exe $FILE_ARG -t clean $TARGETS - description = Cleaning all built files... - - -############################################# -# Rule for printing all primary targets available. - -rule HELP - command = C:\Users\Laurent\.espressif\tools\ninja\1.12.1\ninja.exe -t targets - description = All primary targets available: - diff --git a/esp32-thread/open-thread-rcp/build/bootloader/bootloader.bin b/esp32-thread/open-thread-rcp/build/bootloader/bootloader.bin deleted file mode 100644 index 3b3e6d2b..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/bootloader.bin and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/bootloader.elf b/esp32-thread/open-thread-rcp/build/bootloader/bootloader.elf deleted file mode 100644 index d9ccf332..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/bootloader.elf and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/bootloader.map b/esp32-thread/open-thread-rcp/build/bootloader/bootloader.map deleted file mode 100644 index 3a5e4531..00000000 --- a/esp32-thread/open-thread-rcp/build/bootloader/bootloader.map +++ /dev/null @@ -1,4444 +0,0 @@ -Archive member included to satisfy reference by file (symbol) - -esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) - (esp_bootloader_desc) -esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) - (abort) -esp-idf/main/libmain.a(bootloader_start.c.obj) - (call_start_cpu0) -esp-idf/riscv/libriscv.a(rv_utils.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) (rv_utils_dbgr_is_attached) -esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - esp-idf/main/libmain.a(bootloader_start.c.obj) (bootloader_utility_load_partition_table) -esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (esp_partition_table_verify) -esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (bootloader_load_image) -esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (bootloader_sha256_start) -esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (bootloader_console_deinit) -esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (bootloader_ana_clock_glitch_reset_config) -esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32h2.c.obj) - esp-idf/main/libmain.a(bootloader_start.c.obj) (bootloader_init) -esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (bootloader_common_ota_select_crc) -esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32h2.c.obj) (bootloader_clock_configure) -esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32h2.c.obj) (bootloader_init_mem) -esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) (bootloader_fill_random) -esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (esp_flash_encryption_enabled) -esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32h2.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (bootloader_random_disable) -esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (bootloader_mmap_get_free_pages) -esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32h2.c.obj) (bootloader_flash_update_id) -esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32h2.c.obj) (bootloader_clear_bss_section) -esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32h2.c.obj) (bootloader_console_init) -esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) (ESP_EFUSE_DIS_DIRECT_BOOT) -esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) (esp_efuse_enable_rom_secure_download_mode) -esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) (esp_efuse_read_field_blob) -esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) (esp_efuse_utility_process) -esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) (esp_efuse_get_key_dis_read) -esp-idf/efuse/libefuse.a(esp_efuse_table_v0.0_v1.1.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) (ESP_EFUSE_ECDSA_FORCE_USE_HARDWARE_K) -esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) (esp_efuse_utility_clear_program_registers) -esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) (esp_cpu_configure_region_protection) -esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) (rtc_clk_init) -esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) (rtc_clk_32k_enable) -esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) (get_act_hp_dbias) -esp-idf/esp_rom/libesp_rom.a(esp_rom_regi2c_esp32h2.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32h2.c.obj) (esp_rom_regi2c_write_mask) -esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) (wdt_hal_init) -esp-idf/log/liblog.a(log_timestamp.c.obj) - esp-idf/main/libmain.a(bootloader_start.c.obj) (esp_log_timestamp) -esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) (efuse_hal_chip_revision) -esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/hal/libhal.a(efuse_hal.c.obj) (efuse_hal_get_major_chip_version) -esp-idf/hal/libhal.a(lp_timer_hal.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) (lp_timer_hal_get_cycle_count) -esp-idf/hal/libhal.a(mmu_hal.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (mmu_hal_unmap_all) -esp-idf/hal/libhal.a(cache_hal.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32h2.c.obj) (cache_hal_init) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_lshrdi3.o) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) (__lshrdi3) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ashldi3.o) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) (__ashldi3) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_popcountsi2.o) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) (__popcountsi2) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_udivdi3.o) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) (__udivdi3) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(save-restore.o) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) (__riscv_save_12) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clz.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_udivdi3.o) (__clz_tab) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcmp.o) - esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) (memcmp) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-impure.o) - esp-idf/main/libmain.a(bootloader_start.c.obj) (_impure_data) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memset.o) - esp-idf/main/libmain.a(bootloader_start.c.obj) (memset) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcpy.o) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (memcpy) - -Discarded input sections - - .text 0x00000000 0x0 CMakeFiles/bootloader.elf.dir/project_elf_src_esp32h2.c.obj - .data 0x00000000 0x0 CMakeFiles/bootloader.elf.dir/project_elf_src_esp32h2.c.obj - .bss 0x00000000 0x0 CMakeFiles/bootloader.elf.dir/project_elf_src_esp32h2.c.obj - .comment 0x00000000 0x30 CMakeFiles/bootloader.elf.dir/project_elf_src_esp32h2.c.obj - .note.GNU-stack - 0x00000000 0x0 CMakeFiles/bootloader.elf.dir/project_elf_src_esp32h2.c.obj - .riscv.attributes - 0x00000000 0x5c CMakeFiles/bootloader.elf.dir/project_elf_src_esp32h2.c.obj - .text 0x00000000 0x0 esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) - .data 0x00000000 0x0 esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) - .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) - .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) - .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) - .text 0x00000000 0x0 esp-idf/main/libmain.a(bootloader_start.c.obj) - .data 0x00000000 0x0 esp-idf/main/libmain.a(bootloader_start.c.obj) - .bss 0x00000000 0x0 esp-idf/main/libmain.a(bootloader_start.c.obj) - .text.__getreent - 0x00000000 0xa esp-idf/main/libmain.a(bootloader_start.c.obj) - .text 0x00000000 0x0 esp-idf/riscv/libriscv.a(rv_utils.c.obj) - .data 0x00000000 0x0 esp-idf/riscv/libriscv.a(rv_utils.c.obj) - .bss 0x00000000 0x0 esp-idf/riscv/libriscv.a(rv_utils.c.obj) - .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .text.bootloader_common_get_partition_description - 0x00000000 0x98 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .text.bootloader_atexit - 0x00000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .text.bootloader_sha256_hex_to_str - 0x00000000 0x50 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .rodata.bootloader_sha256_flash_contents.str1.4 - 0x00000000 0x2d esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .text.bootloader_sha256_flash_contents - 0x00000000 0xe2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .text.esp_image_bootloader_offset_get - 0x00000000 0xa esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .rodata.esp_image_bootloader_offset_set.str1.4 - 0x00000000 0x44 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .text.esp_image_bootloader_offset_set - 0x00000000 0x40 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .text.bootloader_load_image_no_verify - 0x00000000 0xe esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .text.esp_image_verify - 0x00000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .text.esp_image_get_metadata - 0x00000000 0xb8 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .text.esp_image_verify_bootloader_data - 0x00000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .text.esp_image_verify_bootloader - 0x00000000 0x2a esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .text.esp_image_get_flash_size - 0x00000000 0x52 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) - .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) - .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) - .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) - .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) - .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) - .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32h2.c.obj) - .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32h2.c.obj) - .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32h2.c.obj) - .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) - .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) - .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) - .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) - .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) - .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) - .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .text.esp_flash_write_protect_crypt_cnt - 0x00000000 0x10 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .text.esp_get_flash_encryption_mode - 0x00000000 0x7e esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .rodata.esp_flash_encryption_set_release_mode.str1.4 - 0x00000000 0xb6 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .text.esp_flash_encryption_set_release_mode - 0x00000000 0x140 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .rodata.esp_flash_encryption_cfg_verify_release_mode.str1.4 - 0x00000000 0x3d6 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .text.esp_flash_encryption_cfg_verify_release_mode - 0x00000000 0x354 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32h2.c.obj) - .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32h2.c.obj) - .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32h2.c.obj) - .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .text.bootloader_flash_erase_range - 0x00000000 0x72 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .text.bootloader_spi_flash_reset - 0x00000000 0x34 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .iram1.7 0x00000000 0x8a esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .iram1.8 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) - .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) - .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) - .text.bootloader_flash_update_size - 0x00000000 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) - .iram1.1 0x00000000 0x2a esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) - .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) - .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) - .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) - .text 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .data 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .bss 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_SYS_DATA_PART2 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_KEY5 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_KEY4 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_KEY3 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_KEY2 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_KEY1 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_KEY0 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_USER_DATA_MAC_CUSTOM - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_USER_DATA - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_ADC1_CH4_ATTEN0_INITCODE_DIFF - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_ADC1_CH3_ATTEN0_INITCODE_DIFF - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_ADC1_CH2_ATTEN0_INITCODE_DIFF - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_ADC1_CH1_ATTEN0_INITCODE_DIFF - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_ADC1_CH0_ATTEN0_INITCODE_DIFF - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_ADC1_HI_DOUT_ATTEN3 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_ADC1_HI_DOUT_ATTEN2 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_ADC1_HI_DOUT_ATTEN1 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_ADC1_HI_DOUT_ATTEN0 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_ADC1_AVE_INITCODE_ATTEN3 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_ADC1_AVE_INITCODE_ATTEN2 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_ADC1_AVE_INITCODE_ATTEN1 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_ADC1_AVE_INITCODE_ATTEN0 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_TEMP_CALIB - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_DISABLE_BLK_VERSION_MAJOR - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_BLK_VERSION_MAJOR - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_BLK_VERSION_MINOR - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_OPTIONAL_UNIQUE_ID - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_PKG_VERSION - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_FLASH_VENDOR - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_FLASH_TEMP - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_FLASH_CAP - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_DISABLE_WAFER_VERSION_MAJOR - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WAFER_VERSION_MAJOR - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WAFER_VERSION_MINOR - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_DBIAS_VOL_GAP - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_DSLP_DBIAS - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_ACTIVE_LP_DBIAS - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_ACTIVE_HP_DBIAS - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_RXIQ_1 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_RXIQ_0 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_RXIQ_VERSION - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .data.ESP_EFUSE_MAC_EXT - 0x00000000 0xc esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .data.ESP_EFUSE_MAC - 0x00000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_HYS_EN_PAD1 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_HYS_EN_PAD0 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_SECURE_BOOT_DISABLE_FAST_WAKE - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_SECURE_VERSION - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_FORCE_SEND_RESUME - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_UART_PRINT_CONTROL - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_ENABLE_SECURITY_DOWNLOAD - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_DIS_USB_SERIAL_JTAG_DOWNLOAD_MODE - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_DIS_USB_SERIAL_JTAG_ROM_PRINT - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_DIS_DIRECT_BOOT - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_DIS_DOWNLOAD_MODE - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_FLASH_TPUW - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_POWERGLITCH_EN1 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_SECURE_BOOT_AGGRESSIVE_REVOKE - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_SECURE_BOOT_EN - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_CRYPT_DPA_ENABLE - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_SEC_DPA_LEVEL - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_KEY_PURPOSE_5 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_KEY_PURPOSE_4 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_KEY_PURPOSE_3 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_KEY_PURPOSE_2 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_KEY_PURPOSE_1 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_KEY_PURPOSE_0 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_SECURE_BOOT_KEY_REVOKE2 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_SECURE_BOOT_KEY_REVOKE1 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_SECURE_BOOT_KEY_REVOKE0 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_SPI_BOOT_CRYPT_CNT - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WDT_DELAY_SEL - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_XTS_DPA_PSEUDO_LEVEL - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_ECC_FORCE_CONST_TIME - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_ECDSA_CURVE_MODE - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_VDD_SPI_AS_GPIO - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_USB_EXCHG_PINS - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_DIS_DOWNLOAD_MANUAL_ENCRYPT - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_DIS_PAD_JTAG - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_SOFT_DIS_JTAG - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_JTAG_SEL_ENABLE - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_DIS_TWAI - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_SPI_DOWNLOAD_MSPI_DIS - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_DIS_FORCE_DOWNLOAD - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_POWERGLITCH_EN - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_DIS_USB_JTAG - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_DIS_ICACHE - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_RD_DIS_BLOCK_SYS_DATA2 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_RD_DIS_BLOCK_KEY5 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_RD_DIS_BLOCK_KEY4 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_RD_DIS_BLOCK_KEY3 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_RD_DIS_BLOCK_KEY2 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_RD_DIS_BLOCK_KEY1 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_RD_DIS_BLOCK_KEY0 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_RD_DIS - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_SOFT_DIS_JTAG - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_VDD_SPI_AS_GPIO - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_USB_EXCHG_PINS - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_BLOCK_SYS_DATA2 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_BLOCK_KEY5 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_BLOCK_KEY4 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_BLOCK_KEY3 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_BLOCK_KEY2 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_BLOCK_KEY1 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_BLOCK_KEY0 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_CUSTOM_MAC - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_BLOCK_USR_DATA - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_ADC1_CH4_ATTEN0_INITCODE_DIFF - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_ADC1_CH3_ATTEN0_INITCODE_DIFF - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_ADC1_CH2_ATTEN0_INITCODE_DIFF - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_ADC1_CH1_ATTEN0_INITCODE_DIFF - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_ADC1_CH0_ATTEN0_INITCODE_DIFF - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_ADC1_HI_DOUT_ATTEN3 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_ADC1_HI_DOUT_ATTEN2 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_ADC1_HI_DOUT_ATTEN1 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_ADC1_HI_DOUT_ATTEN0 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_ADC1_AVE_INITCODE_ATTEN3 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_ADC1_AVE_INITCODE_ATTEN2 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_ADC1_AVE_INITCODE_ATTEN1 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_ADC1_AVE_INITCODE_ATTEN0 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_TEMP_CALIB - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_DISABLE_BLK_VERSION_MAJOR - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_BLK_VERSION_MAJOR - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_BLK_VERSION_MINOR - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_OPTIONAL_UNIQUE_ID - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_SYS_DATA_PART1 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_PKG_VERSION - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_FLASH_VENDOR - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_FLASH_TEMP - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_FLASH_CAP - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_DISABLE_WAFER_VERSION_MAJOR - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_WAFER_VERSION_MAJOR - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_WAFER_VERSION_MINOR - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_DBIAS_VOL_GAP - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_DSLP_DBIAS - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_ACTIVE_LP_DBIAS - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_ACTIVE_HP_DBIAS - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_RXIQ_1 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_RXIQ_0 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_RXIQ_VERSION - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_MAC_EXT - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_MAC - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_BLK1 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_HYS_EN_PAD1 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_HYS_EN_PAD0 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_SECURE_BOOT_DISABLE_FAST_WAKE - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_SECURE_VERSION - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_FORCE_SEND_RESUME - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_UART_PRINT_CONTROL - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_ENABLE_SECURITY_DOWNLOAD - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_DIS_USB_SERIAL_JTAG_DOWNLOAD_MODE - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_DIS_USB_SERIAL_JTAG_ROM_PRINT - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_DIS_DIRECT_BOOT - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_DIS_DOWNLOAD_MODE - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_FLASH_TPUW - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_ECC_FORCE_CONST_TIME - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_ECDSA_CURVE_MODE - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_SECURE_BOOT_AGGRESSIVE_REVOKE - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_SECURE_BOOT_EN - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_CRYPT_DPA_ENABLE - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_SEC_DPA_LEVEL - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_XTS_DPA_PSEUDO_LEVEL - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_KEY_PURPOSE_5 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_KEY_PURPOSE_4 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_KEY_PURPOSE_3 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_KEY_PURPOSE_2 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_KEY_PURPOSE_1 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_KEY_PURPOSE_0 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_SECURE_BOOT_KEY_REVOKE2 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_SECURE_BOOT_KEY_REVOKE1 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_SECURE_BOOT_KEY_REVOKE0 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_SPI_BOOT_CRYPT_CNT - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_WDT_DELAY_SEL - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_POWERGLITCH_EN1 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_DIS_DOWNLOAD_MANUAL_ENCRYPT - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_DIS_PAD_JTAG - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_JTAG_SEL_ENABLE - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_DIS_TWAI - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_SPI_DOWNLOAD_MSPI_DIS - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_DIS_FORCE_DOWNLOAD - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_POWERGLITCH_EN - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_DIS_USB_JTAG - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_DIS_ICACHE - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_RD_DIS - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SYS_DATA_PART2 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.KEY5 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.KEY4 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.KEY3 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.KEY2 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.KEY1 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.KEY0 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.USER_DATA_MAC_CUSTOM - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.USER_DATA - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.ADC1_CH4_ATTEN0_INITCODE_DIFF - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.ADC1_CH3_ATTEN0_INITCODE_DIFF - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.ADC1_CH2_ATTEN0_INITCODE_DIFF - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.ADC1_CH1_ATTEN0_INITCODE_DIFF - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.ADC1_CH0_ATTEN0_INITCODE_DIFF - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.ADC1_HI_DOUT_ATTEN3 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.ADC1_HI_DOUT_ATTEN2 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.ADC1_HI_DOUT_ATTEN1 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.ADC1_HI_DOUT_ATTEN0 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.ADC1_AVE_INITCODE_ATTEN3 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.ADC1_AVE_INITCODE_ATTEN2 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.ADC1_AVE_INITCODE_ATTEN1 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.ADC1_AVE_INITCODE_ATTEN0 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.TEMP_CALIB - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.DISABLE_BLK_VERSION_MAJOR - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.BLK_VERSION_MAJOR - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.BLK_VERSION_MINOR - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.OPTIONAL_UNIQUE_ID - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.PKG_VERSION - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.FLASH_VENDOR - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.FLASH_TEMP - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.FLASH_CAP - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.DISABLE_WAFER_VERSION_MAJOR - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WAFER_VERSION_MAJOR - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WAFER_VERSION_MINOR - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.DBIAS_VOL_GAP - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.DSLP_DBIAS - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.ACTIVE_LP_DBIAS - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.ACTIVE_HP_DBIAS - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.RXIQ_1 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.RXIQ_0 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.RXIQ_VERSION - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.MAC_EXT - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .rodata.MAC 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.HYS_EN_PAD1 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.HYS_EN_PAD0 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SECURE_BOOT_DISABLE_FAST_WAKE - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SECURE_VERSION - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.FORCE_SEND_RESUME - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.UART_PRINT_CONTROL - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.ENABLE_SECURITY_DOWNLOAD - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.DIS_USB_SERIAL_JTAG_DOWNLOAD_MODE - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.DIS_USB_SERIAL_JTAG_ROM_PRINT - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.DIS_DIRECT_BOOT - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.DIS_DOWNLOAD_MODE - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.FLASH_TPUW - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.POWERGLITCH_EN1 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SECURE_BOOT_AGGRESSIVE_REVOKE - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SECURE_BOOT_EN - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.CRYPT_DPA_ENABLE - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SEC_DPA_LEVEL - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.KEY_PURPOSE_5 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.KEY_PURPOSE_4 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.KEY_PURPOSE_3 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.KEY_PURPOSE_2 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.KEY_PURPOSE_1 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.KEY_PURPOSE_0 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SECURE_BOOT_KEY_REVOKE2 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SECURE_BOOT_KEY_REVOKE1 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SECURE_BOOT_KEY_REVOKE0 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SPI_BOOT_CRYPT_CNT - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WDT_DELAY_SEL - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.XTS_DPA_PSEUDO_LEVEL - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.ECC_FORCE_CONST_TIME - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.ECDSA_CURVE_MODE - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.VDD_SPI_AS_GPIO - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.USB_EXCHG_PINS - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.DIS_DOWNLOAD_MANUAL_ENCRYPT - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.DIS_PAD_JTAG - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SOFT_DIS_JTAG - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.JTAG_SEL_ENABLE - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.DIS_TWAI - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SPI_DOWNLOAD_MSPI_DIS - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.DIS_FORCE_DOWNLOAD - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.POWERGLITCH_EN - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.DIS_USB_JTAG - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.DIS_ICACHE - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.RD_DIS_BLOCK_SYS_DATA2 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.RD_DIS_BLOCK_KEY5 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.RD_DIS_BLOCK_KEY4 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.RD_DIS_BLOCK_KEY3 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.RD_DIS_BLOCK_KEY2 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.RD_DIS_BLOCK_KEY1 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.RD_DIS_BLOCK_KEY0 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.RD_DIS - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_SOFT_DIS_JTAG - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_VDD_SPI_AS_GPIO - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_USB_EXCHG_PINS - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_BLOCK_SYS_DATA2 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_BLOCK_KEY5 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_BLOCK_KEY4 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_BLOCK_KEY3 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_BLOCK_KEY2 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_BLOCK_KEY1 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_BLOCK_KEY0 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_CUSTOM_MAC - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_BLOCK_USR_DATA - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_ADC1_CH4_ATTEN0_INITCODE_DIFF - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_ADC1_CH3_ATTEN0_INITCODE_DIFF - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_ADC1_CH2_ATTEN0_INITCODE_DIFF - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_ADC1_CH1_ATTEN0_INITCODE_DIFF - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_ADC1_CH0_ATTEN0_INITCODE_DIFF - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_ADC1_HI_DOUT_ATTEN3 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_ADC1_HI_DOUT_ATTEN2 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_ADC1_HI_DOUT_ATTEN1 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_ADC1_HI_DOUT_ATTEN0 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_ADC1_AVE_INITCODE_ATTEN3 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_ADC1_AVE_INITCODE_ATTEN2 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_ADC1_AVE_INITCODE_ATTEN1 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_ADC1_AVE_INITCODE_ATTEN0 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_TEMP_CALIB - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_DISABLE_BLK_VERSION_MAJOR - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_BLK_VERSION_MAJOR - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_BLK_VERSION_MINOR - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_OPTIONAL_UNIQUE_ID - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_SYS_DATA_PART1 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_PKG_VERSION - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_FLASH_VENDOR - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_FLASH_TEMP - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_FLASH_CAP - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_DISABLE_WAFER_VERSION_MAJOR - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_WAFER_VERSION_MAJOR - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_WAFER_VERSION_MINOR - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_DBIAS_VOL_GAP - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_DSLP_DBIAS - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_ACTIVE_LP_DBIAS - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_ACTIVE_HP_DBIAS - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_RXIQ_1 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_RXIQ_0 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_RXIQ_VERSION - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_MAC_EXT - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_MAC - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_BLK1 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_HYS_EN_PAD1 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_HYS_EN_PAD0 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_SECURE_BOOT_DISABLE_FAST_WAKE - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_SECURE_VERSION - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_FORCE_SEND_RESUME - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_UART_PRINT_CONTROL - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_ENABLE_SECURITY_DOWNLOAD - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_DIS_USB_SERIAL_JTAG_DOWNLOAD_MODE - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_DIS_USB_SERIAL_JTAG_ROM_PRINT - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_DIS_DIRECT_BOOT - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_DIS_DOWNLOAD_MODE - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_FLASH_TPUW - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_ECC_FORCE_CONST_TIME - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_ECDSA_CURVE_MODE - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_SECURE_BOOT_AGGRESSIVE_REVOKE - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_SECURE_BOOT_EN - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_CRYPT_DPA_ENABLE - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_SEC_DPA_LEVEL - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_XTS_DPA_PSEUDO_LEVEL - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_KEY_PURPOSE_5 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_KEY_PURPOSE_4 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_KEY_PURPOSE_3 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_KEY_PURPOSE_2 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_KEY_PURPOSE_1 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_KEY_PURPOSE_0 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_SECURE_BOOT_KEY_REVOKE2 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_SECURE_BOOT_KEY_REVOKE1 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_SECURE_BOOT_KEY_REVOKE0 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_SPI_BOOT_CRYPT_CNT - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_WDT_DELAY_SEL - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_POWERGLITCH_EN1 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_DIS_DOWNLOAD_MANUAL_ENCRYPT - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_DIS_PAD_JTAG - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_JTAG_SEL_ENABLE - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_DIS_TWAI - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_SPI_DOWNLOAD_MSPI_DIS - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_DIS_FORCE_DOWNLOAD - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_POWERGLITCH_EN - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_DIS_USB_JTAG - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_DIS_ICACHE - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_RD_DIS - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .debug_info 0x00000000 0x25f3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .debug_abbrev 0x00000000 0x106 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .debug_aranges - 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .debug_line 0x00000000 0x281 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .debug_str 0x00000000 0x2905 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .comment 0x00000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .riscv.attributes - 0x00000000 0x5c esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .text 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .data 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .bss 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .text.esp_efuse_get_pkg_ver - 0x00000000 0x34 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .text.esp_efuse_set_rom_log_scheme - 0x00000000 0x44 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .text.esp_efuse_disable_rom_download_mode - 0x00000000 0x10 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .text.esp_efuse_enable_rom_secure_download_mode - 0x00000000 0x38 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .debug_info 0x00000000 0x3ba esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .debug_abbrev 0x00000000 0x18f esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .debug_loc 0x00000000 0x1f esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .debug_aranges - 0x00000000 0x38 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .debug_ranges 0x00000000 0x28 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .debug_line 0x00000000 0x458 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .debug_str 0x00000000 0x622 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .comment 0x00000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .debug_frame 0x00000000 0x80 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .riscv.attributes - 0x00000000 0x5c esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .text 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .data 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .bss 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .text.esp_efuse_read_field_blob - 0x00000000 0x60 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .text.esp_efuse_read_field_bit - 0x00000000 0x40 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .text.esp_efuse_read_field_cnt - 0x00000000 0x46 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .text.esp_efuse_write_field_blob - 0x00000000 0x76 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .rodata.esp_efuse_write_field_cnt.str1.4 - 0x00000000 0x4e esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .text.esp_efuse_write_field_cnt - 0x00000000 0xb0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .text.esp_efuse_write_field_bit - 0x00000000 0x60 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .text.esp_efuse_get_field_size - 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .text.esp_efuse_write_reg - 0x00000000 0x60 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .text.esp_efuse_read_block - 0x00000000 0x4e esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .text.esp_efuse_read_reg - 0x00000000 0x3c esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .text.esp_efuse_write_block - 0x00000000 0x4e esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .rodata.esp_efuse_batch_write_begin.str1.4 - 0x00000000 0x35 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .text.esp_efuse_batch_write_begin - 0x00000000 0x64 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .rodata.esp_efuse_batch_write_cancel.str1.4 - 0x00000000 0x5f esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .text.esp_efuse_batch_write_cancel - 0x00000000 0x78 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .rodata.esp_efuse_batch_write_commit.str1.4 - 0x00000000 0x37 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .text.esp_efuse_batch_write_commit - 0x00000000 0x90 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .text.esp_efuse_check_errors - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .rodata.esp_efuse_destroy_block.str1.4 - 0x00000000 0x120 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .text.esp_efuse_destroy_block - 0x00000000 0x13a esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .sbss.s_batch_writing_mode - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .debug_info 0x00000000 0x1202 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .debug_abbrev 0x00000000 0x3e8 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .debug_loc 0x00000000 0xa62 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .debug_aranges - 0x00000000 0x98 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .debug_ranges 0x00000000 0xd0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .debug_line 0x00000000 0x13f4 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .debug_str 0x00000000 0x9b0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .comment 0x00000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .debug_frame 0x00000000 0x228 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .riscv.attributes - 0x00000000 0x5c esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .text 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .data 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .bss 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.write_reg.part.0 - 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.write_reg - 0x00000000 0x5e esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .rodata.esp_efuse_utility_process.str1.4 - 0x00000000 0x44 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.esp_efuse_utility_process - 0x00000000 0x13a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.esp_efuse_utility_reset - 0x00000000 0x52 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.esp_efuse_utility_burn_efuses - 0x00000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.esp_efuse_utility_erase_virt_blocks - 0x00000000 0x2 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .rodata.esp_efuse_utility_update_virt_blocks.str1.4 - 0x00000000 0x27 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.esp_efuse_utility_update_virt_blocks - 0x00000000 0x32 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .rodata.esp_efuse_utility_debug_dump_single_block.str1.4 - 0x00000000 0x12 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.esp_efuse_utility_debug_dump_single_block - 0x00000000 0x8a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.esp_efuse_utility_debug_dump_pending - 0x00000000 0x40 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .rodata.esp_efuse_utility_debug_dump_blocks.str1.4 - 0x00000000 0xd esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.esp_efuse_utility_debug_dump_blocks - 0x00000000 0x46 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.esp_efuse_utility_get_number_of_items - 0x00000000 0x10 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.esp_efuse_utility_read_reg - 0x00000000 0x4c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.esp_efuse_utility_fill_buff - 0x00000000 0xc8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.esp_efuse_utility_count_once - 0x00000000 0x58 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.esp_efuse_utility_write_cnt - 0x00000000 0xac esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .rodata.esp_efuse_utility_write_reg.str1.4 - 0x00000000 0x53 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.esp_efuse_utility_write_reg - 0x00000000 0x66 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.esp_efuse_utility_write_blob - 0x00000000 0x92 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.esp_efuse_utility_get_read_register_address - 0x00000000 0x2e esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .rodata.esp_efuse_utility_is_correct_written_data.str1.4 - 0x00000000 0xba esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.esp_efuse_utility_is_correct_written_data - 0x00000000 0xcc esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .sbss.s_burn_counter - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_info 0x00000000 0x13d6 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_abbrev 0x00000000 0x468 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_loc 0x00000000 0x101b esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_aranges - 0x00000000 0xb0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_ranges 0x00000000 0x288 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_line 0x00000000 0x176e esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_str 0x00000000 0xb13 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .comment 0x00000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_frame 0x00000000 0x290 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .riscv.attributes - 0x00000000 0x5c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .data 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .bss 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_get_key_dis_read.part.0 - 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_block_is_empty - 0x00000000 0x42 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_set_write_protect - 0x00000000 0x7a esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_set_read_protect - 0x00000000 0x4e esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_get_coding_scheme - 0x00000000 0x6 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_get_purpose_field - 0x00000000 0x20 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_get_key - 0x00000000 0x20 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_get_key_dis_read - 0x00000000 0x3a esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_set_key_dis_read - 0x00000000 0x28 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_get_key_dis_write - 0x00000000 0x3a esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_set_key_dis_write - 0x00000000 0x28 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_get_key_purpose - 0x00000000 0x52 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_set_key_purpose - 0x00000000 0x46 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_get_keypurpose_dis_write - 0x00000000 0x3a esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_set_keypurpose_dis_write - 0x00000000 0x28 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_find_purpose - 0x00000000 0x3c esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_key_block_unused - 0x00000000 0x5c esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_find_unused_key_block - 0x00000000 0x28 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_count_unused_key_blocks - 0x00000000 0x2a esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .rodata.esp_efuse_write_key.str1.4 - 0x00000000 0x65 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_write_key - 0x00000000 0x146 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .rodata.esp_efuse_write_keys.str1.4 - 0x00000000 0xd2 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_write_keys - 0x00000000 0x11c esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_get_digest_revoke - 0x00000000 0x38 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_set_digest_revoke - 0x00000000 0x26 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_get_write_protect_of_digest_revoke - 0x00000000 0x40 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_set_write_protect_of_digest_revoke - 0x00000000 0x26 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_secure_boot_read_key_digests - 0x00000000 0x86 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .rodata.s_revoke_table - 0x00000000 0x24 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .rodata.s_table - 0x00000000 0x78 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .debug_info 0x00000000 0x1527 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .debug_abbrev 0x00000000 0x3ca esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .debug_loc 0x00000000 0xb3f esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .debug_aranges - 0x00000000 0xe8 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .debug_ranges 0x00000000 0x170 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .debug_line 0x00000000 0x168c esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .debug_str 0x00000000 0x1165 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .comment 0x00000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .debug_frame 0x00000000 0x318 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .riscv.attributes - 0x00000000 0x5c esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table_v0.0_v1.1.c.obj) - .data 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table_v0.0_v1.1.c.obj) - .bss 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table_v0.0_v1.1.c.obj) - .sdata.ESP_EFUSE_ECDSA_FORCE_USE_HARDWARE_K - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table_v0.0_v1.1.c.obj) - .sdata.ESP_EFUSE_WR_DIS_ECDSA_FORCE_USE_HARDWARE_K - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table_v0.0_v1.1.c.obj) - .srodata.ECDSA_FORCE_USE_HARDWARE_K - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table_v0.0_v1.1.c.obj) - .srodata.WR_DIS_ECDSA_FORCE_USE_HARDWARE_K - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table_v0.0_v1.1.c.obj) - .debug_info 0x00000000 0x255 esp-idf/efuse/libefuse.a(esp_efuse_table_v0.0_v1.1.c.obj) - .debug_abbrev 0x00000000 0xe4 esp-idf/efuse/libefuse.a(esp_efuse_table_v0.0_v1.1.c.obj) - .debug_aranges - 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_table_v0.0_v1.1.c.obj) - .debug_line 0x00000000 0x295 esp-idf/efuse/libefuse.a(esp_efuse_table_v0.0_v1.1.c.obj) - .debug_str 0x00000000 0x4df esp-idf/efuse/libefuse.a(esp_efuse_table_v0.0_v1.1.c.obj) - .comment 0x00000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_table_v0.0_v1.1.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table_v0.0_v1.1.c.obj) - .riscv.attributes - 0x00000000 0x5c esp-idf/efuse/libefuse.a(esp_efuse_table_v0.0_v1.1.c.obj) - .text 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .data 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .bss 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.esp_efuse_utility_clear_program_registers - 0x00000000 0x20 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.esp_efuse_utility_check_errors - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .rodata.esp_efuse_utility_burn_chip_opt.str1.4 - 0x00000000 0x1b0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.esp_efuse_utility_burn_chip_opt - 0x00000000 0x294 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.esp_efuse_utility_burn_chip - 0x00000000 0xc esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .rodata.esp_efuse_utility_apply_new_coding_scheme.str1.4 - 0x00000000 0x3f esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.esp_efuse_utility_apply_new_coding_scheme - 0x00000000 0x9e esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .rodata.range_write_addr_blocks - 0x00000000 0x58 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .bss.write_mass_blocks - 0x00000000 0x160 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .rodata.range_read_addr_blocks - 0x00000000 0x58 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_info 0x00000000 0x9ab esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_abbrev 0x00000000 0x2ba esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_loc 0x00000000 0x31d esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_aranges - 0x00000000 0x40 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_ranges 0x00000000 0x110 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_line 0x00000000 0xd5f esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_str 0x00000000 0x870 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .comment 0x00000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_frame 0x00000000 0xc4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .riscv.attributes - 0x00000000 0x5c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_clk_bbpll_add_consumer - 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_clk_bbpll_remove_consumer - 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_clk_32k_disable_external - 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_clk_32k_bootstrap - 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_clk_32k_enabled - 0x00000000 0xe esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_clk_8m_enabled - 0x00000000 0xe esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_clk_lp_pll_enable - 0x00000000 0x2e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_clk_lp_pll_src_set - 0x00000000 0x42 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_clk_cpu_freq_set_config_fast - 0x00000000 0x7e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_clk_cpu_set_to_default_config - 0x00000000 0x2a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_clk_cpu_freq_set_xtal - 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_clk_cpu_freq_set_xtal_for_sleep - 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_dig_clk8m_enable - 0x00000000 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_dig_clk8m_disable - 0x00000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_dig_8m_enabled - 0x00000000 0xe esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - .text.pmu_hp_system_power_param_default - 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - .text.pmu_hp_system_clock_param_default - 0x00000000 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - .text.pmu_hp_system_digital_param_default - 0x00000000 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - .text.pmu_hp_system_analog_param_default - 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - .text.pmu_hp_system_retention_param_default - 0x00000000 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - .text.pmu_lp_system_power_param_default - 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - .text.pmu_lp_system_analog_param_default - 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - .rodata.lp_analog.0 - 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - .rodata.lp_power.1 - 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - .rodata.hp_retention.2 - 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - .rodata.hp_analog.3 - 0x00000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - .rodata.hp_digital.4 - 0x00000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - .rodata.hp_clock.5 - 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - .rodata.hp_power.6 - 0x00000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - .text 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_regi2c_esp32h2.c.obj) - .data 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_regi2c_esp32h2.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_regi2c_esp32h2.c.obj) - .iram1.1 0x00000000 0x4c esp-idf/esp_rom/libesp_rom.a(esp_rom_regi2c_esp32h2.c.obj) - .iram1.2 0x00000000 0x7e esp-idf/esp_rom/libesp_rom.a(esp_rom_regi2c_esp32h2.c.obj) - .iram1.3 0x00000000 0x50 esp-idf/esp_rom/libesp_rom.a(esp_rom_regi2c_esp32h2.c.obj) - .text 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) - .data 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) - .text.wdt_hal_deinit - 0x00000000 0x84 esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) - .text 0x00000000 0x0 esp-idf/log/liblog.a(log_timestamp.c.obj) - .data 0x00000000 0x0 esp-idf/log/liblog.a(log_timestamp.c.obj) - .bss 0x00000000 0x0 esp-idf/log/liblog.a(log_timestamp.c.obj) - .text 0x00000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .data 0x00000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .bss 0x00000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .text.efuse_hal_get_mac - 0x00000000 0x14 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .iram1.3 0x00000000 0xe esp-idf/hal/libhal.a(efuse_hal.c.obj) - .text.efuse_hal_set_ecdsa_key - 0x00000000 0x2a esp-idf/hal/libhal.a(efuse_hal.c.obj) - .text 0x00000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .data 0x00000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .bss 0x00000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .text.efuse_hal_set_timing - 0x00000000 0x44 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .text.efuse_hal_read - 0x00000000 0x52 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .text.efuse_hal_clear_program_registers - 0x00000000 0x8 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .text.efuse_hal_program - 0x00000000 0x6e esp-idf/hal/libhal.a(efuse_hal.c.obj) - .text.efuse_hal_rs_calculate - 0x00000000 0x8 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .text.efuse_hal_get_ecdsa_curve_mode - 0x00000000 0x32 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .text.efuse_hal_is_coding_error_in_block - 0x00000000 0x54 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .text 0x00000000 0x0 esp-idf/hal/libhal.a(lp_timer_hal.c.obj) - .data 0x00000000 0x0 esp-idf/hal/libhal.a(lp_timer_hal.c.obj) - .bss 0x00000000 0x0 esp-idf/hal/libhal.a(lp_timer_hal.c.obj) - .iram1.1 0x00000000 0x46 esp-idf/hal/libhal.a(lp_timer_hal.c.obj) - .iram1.3 0x00000000 0x14 esp-idf/hal/libhal.a(lp_timer_hal.c.obj) - .iram1.4 0x00000000 0x14 esp-idf/hal/libhal.a(lp_timer_hal.c.obj) - .text 0x00000000 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .data 0x00000000 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .bss 0x00000000 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .text.mmu_hal_bytes_to_pages - 0x00000000 0x30 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .text.mmu_hal_paddr_to_vaddr - 0x00000000 0x112 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .text.mmu_hal_unmap_region - 0x00000000 0x9c esp-idf/hal/libhal.a(mmu_hal.c.obj) - .text.mmu_hal_vaddr_to_paddr - 0x00000000 0xcc esp-idf/hal/libhal.a(mmu_hal.c.obj) - .text 0x00000000 0x0 esp-idf/hal/libhal.a(cache_hal.c.obj) - .data 0x00000000 0x0 esp-idf/hal/libhal.a(cache_hal.c.obj) - .bss 0x00000000 0x0 esp-idf/hal/libhal.a(cache_hal.c.obj) - .text.s_get_cache_state - 0x00000000 0x3a esp-idf/hal/libhal.a(cache_hal.c.obj) - .text.cache_hal_suspend - 0x00000000 0x3c esp-idf/hal/libhal.a(cache_hal.c.obj) - .text.cache_hal_resume - 0x00000000 0x44 esp-idf/hal/libhal.a(cache_hal.c.obj) - .text.cache_hal_is_cache_enabled - 0x00000000 0x8 esp-idf/hal/libhal.a(cache_hal.c.obj) - .text.cache_hal_vaddr_to_cache_level_id - 0x00000000 0x30 esp-idf/hal/libhal.a(cache_hal.c.obj) - .text.cache_hal_invalidate_addr - 0x00000000 0x42 esp-idf/hal/libhal.a(cache_hal.c.obj) - .text.cache_hal_freeze - 0x00000000 0x28 esp-idf/hal/libhal.a(cache_hal.c.obj) - .text.cache_hal_unfreeze - 0x00000000 0x26 esp-idf/hal/libhal.a(cache_hal.c.obj) - .text.cache_hal_get_cache_line_size - 0x00000000 0x2e esp-idf/hal/libhal.a(cache_hal.c.obj) - .text 0x00000000 0x28 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_lshrdi3.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_lshrdi3.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_lshrdi3.o) - .debug_info 0x00000000 0x1b6 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_lshrdi3.o) - .debug_abbrev 0x00000000 0x10c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_lshrdi3.o) - .debug_loclists - 0x00000000 0x6b C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_lshrdi3.o) - .debug_aranges - 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_lshrdi3.o) - .debug_line 0x00000000 0x107 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_lshrdi3.o) - .debug_str 0x00000000 0x1e4 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_lshrdi3.o) - .debug_line_str - 0x00000000 0x1b2 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_lshrdi3.o) - .comment 0x00000000 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_lshrdi3.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_lshrdi3.o) - .debug_frame 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_lshrdi3.o) - .riscv.attributes - 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_lshrdi3.o) - .text 0x00000000 0x28 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ashldi3.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ashldi3.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ashldi3.o) - .debug_info 0x00000000 0x1b6 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ashldi3.o) - .debug_abbrev 0x00000000 0x10c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ashldi3.o) - .debug_loclists - 0x00000000 0x6b C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ashldi3.o) - .debug_aranges - 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ashldi3.o) - .debug_line 0x00000000 0x107 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ashldi3.o) - .debug_str 0x00000000 0x1e4 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ashldi3.o) - .debug_line_str - 0x00000000 0x1b2 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ashldi3.o) - .comment 0x00000000 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ashldi3.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ashldi3.o) - .debug_frame 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ashldi3.o) - .riscv.attributes - 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ashldi3.o) - .text 0x00000000 0x42 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_popcountsi2.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_popcountsi2.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_popcountsi2.o) - .debug_info 0x00000000 0xe6 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_popcountsi2.o) - .debug_abbrev 0x00000000 0x65 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_popcountsi2.o) - .debug_loclists - 0x00000000 0xd6 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_popcountsi2.o) - .debug_aranges - 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_popcountsi2.o) - .debug_line 0x00000000 0xe9 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_popcountsi2.o) - .debug_str 0x00000000 0x1ab C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_popcountsi2.o) - .debug_line_str - 0x00000000 0x1b2 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_popcountsi2.o) - .comment 0x00000000 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_popcountsi2.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_popcountsi2.o) - .debug_frame 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_popcountsi2.o) - .riscv.attributes - 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_popcountsi2.o) - .text 0x00000000 0x35a C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_udivdi3.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_udivdi3.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_udivdi3.o) - .debug_info 0x00000000 0x776 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_udivdi3.o) - .debug_abbrev 0x00000000 0x1a6 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_udivdi3.o) - .debug_loclists - 0x00000000 0x6ad C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_udivdi3.o) - .debug_aranges - 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_udivdi3.o) - .debug_rnglists - 0x00000000 0x8f C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_udivdi3.o) - .debug_line 0x00000000 0x97b C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_udivdi3.o) - .debug_str 0x00000000 0x25a C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_udivdi3.o) - .debug_line_str - 0x00000000 0x1b2 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_udivdi3.o) - .comment 0x00000000 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_udivdi3.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_udivdi3.o) - .eh_frame 0x00000000 0x28 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_udivdi3.o) - .riscv.attributes - 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_udivdi3.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(save-restore.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(save-restore.o) - .eh_frame 0x00000000 0xf8 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(save-restore.o) - .text 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clz.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clz.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clz.o) - .rodata 0x00000000 0x100 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clz.o) - .debug_info 0x00000000 0xed C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clz.o) - .debug_abbrev 0x00000000 0x70 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clz.o) - .debug_aranges - 0x00000000 0x18 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clz.o) - .debug_line 0x00000000 0x3f C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clz.o) - .debug_str 0x00000000 0x1a7 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clz.o) - .debug_line_str - 0x00000000 0x1b2 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clz.o) - .comment 0x00000000 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clz.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clz.o) - .riscv.attributes - 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clz.o) - .text 0x00000000 0x48 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcmp.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcmp.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcmp.o) - .debug_info 0x00000000 0x10f C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcmp.o) - .debug_abbrev 0x00000000 0x8a C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcmp.o) - .debug_loclists - 0x00000000 0x130 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcmp.o) - .debug_aranges - 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcmp.o) - .debug_line 0x00000000 0x157 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcmp.o) - .debug_str 0x00000000 0x113 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcmp.o) - .debug_line_str - 0x00000000 0x273 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcmp.o) - .comment 0x00000000 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcmp.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcmp.o) - .debug_frame 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcmp.o) - .riscv.attributes - 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcmp.o) - .text 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-impure.o) - .data 0x00000000 0xf0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-impure.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-impure.o) - .sdata 0x00000000 0x4 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-impure.o) - .debug_info 0x00000000 0x84c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-impure.o) - .debug_abbrev 0x00000000 0x174 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-impure.o) - .debug_aranges - 0x00000000 0x18 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-impure.o) - .debug_line 0x00000000 0x51 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-impure.o) - .debug_str 0x00000000 0x4e3 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-impure.o) - .debug_line_str - 0x00000000 0x27b C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-impure.o) - .comment 0x00000000 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-impure.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-impure.o) - .riscv.attributes - 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-impure.o) - .text 0x00000000 0xa8 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memset.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memset.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memset.o) - .debug_line 0x00000000 0x18e C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memset.o) - .debug_line_str - 0x00000000 0xdc C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memset.o) - .debug_info 0x00000000 0x33 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memset.o) - .debug_abbrev 0x00000000 0x28 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memset.o) - .debug_aranges - 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memset.o) - .debug_str 0x00000000 0xf1 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memset.o) - .riscv.attributes - 0x00000000 0x5a C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memset.o) - .text 0x00000000 0xe8 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcpy.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcpy.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcpy.o) - .debug_info 0x00000000 0x256 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcpy.o) - .debug_abbrev 0x00000000 0x107 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcpy.o) - .debug_loclists - 0x00000000 0x1d6 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcpy.o) - .debug_aranges - 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcpy.o) - .debug_line 0x00000000 0x31c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcpy.o) - .debug_str 0x00000000 0x134 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcpy.o) - .debug_line_str - 0x00000000 0x340 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcpy.o) - .comment 0x00000000 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcpy.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcpy.o) - .debug_frame 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcpy.o) - .riscv.attributes - 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcpy.o) - -Memory Configuration - -Name Origin Length Attributes -iram_seg 0x4083c2d0 0x00002d00 xrw -iram_loader_seg 0x4083efd0 0x00007000 xrw -dram_seg 0x40845fd0 0x00005000 rw -*default* 0x00000000 0xffffffff - -Linker script and memory map - - 0x00000000 IDF_TARGET_ESP32H2 = 0x0 -LOAD CMakeFiles/bootloader.elf.dir/project_elf_src_esp32h2.c.obj -LOAD esp-idf/hal/libhal.a -LOAD esp-idf/riscv/libriscv.a -LOAD esp-idf/soc/libsoc.a -LOAD esp-idf/micro-ecc/libmicro-ecc.a -LOAD esp-idf/spi_flash/libspi_flash.a -LOAD esp-idf/esp_bootloader_format/libesp_bootloader_format.a -LOAD esp-idf/bootloader_support/libbootloader_support.a -LOAD esp-idf/efuse/libefuse.a -LOAD esp-idf/esp_system/libesp_system.a -LOAD esp-idf/esp_hw_support/libesp_hw_support.a -LOAD esp-idf/esp_common/libesp_common.a -LOAD esp-idf/esp_rom/libesp_rom.a -LOAD esp-idf/log/liblog.a -LOAD esp-idf/main/libmain.a -LOAD esp-idf/hal/libhal.a -LOAD esp-idf/riscv/libriscv.a -LOAD esp-idf/soc/libsoc.a -LOAD esp-idf/micro-ecc/libmicro-ecc.a -LOAD esp-idf/spi_flash/libspi_flash.a -LOAD esp-idf/esp_bootloader_format/libesp_bootloader_format.a -LOAD esp-idf/bootloader_support/libbootloader_support.a -LOAD esp-idf/efuse/libefuse.a -LOAD esp-idf/esp_system/libesp_system.a -LOAD esp-idf/esp_hw_support/libesp_hw_support.a -LOAD esp-idf/esp_common/libesp_common.a -LOAD esp-idf/esp_rom/libesp_rom.a -LOAD esp-idf/log/liblog.a -LOAD esp-idf/hal/libhal.a -LOAD esp-idf/riscv/libriscv.a -LOAD esp-idf/soc/libsoc.a -LOAD esp-idf/micro-ecc/libmicro-ecc.a -LOAD esp-idf/spi_flash/libspi_flash.a -LOAD esp-idf/esp_bootloader_format/libesp_bootloader_format.a -LOAD esp-idf/bootloader_support/libbootloader_support.a -LOAD esp-idf/efuse/libefuse.a -LOAD esp-idf/esp_system/libesp_system.a -LOAD esp-idf/esp_hw_support/libesp_hw_support.a -LOAD esp-idf/esp_common/libesp_common.a -LOAD esp-idf/esp_rom/libesp_rom.a -LOAD esp-idf/log/liblog.a -LOAD esp-idf/hal/libhal.a -LOAD esp-idf/riscv/libriscv.a -LOAD esp-idf/soc/libsoc.a -LOAD esp-idf/micro-ecc/libmicro-ecc.a -LOAD esp-idf/spi_flash/libspi_flash.a -LOAD esp-idf/esp_bootloader_format/libesp_bootloader_format.a -LOAD esp-idf/bootloader_support/libbootloader_support.a -LOAD esp-idf/efuse/libefuse.a -LOAD esp-idf/esp_system/libesp_system.a -LOAD esp-idf/esp_hw_support/libesp_hw_support.a -LOAD esp-idf/esp_common/libesp_common.a -LOAD esp-idf/esp_rom/libesp_rom.a -LOAD esp-idf/log/liblog.a -LOAD esp-idf/hal/libhal.a -LOAD esp-idf/riscv/libriscv.a -LOAD esp-idf/soc/libsoc.a -LOAD esp-idf/micro-ecc/libmicro-ecc.a -LOAD esp-idf/spi_flash/libspi_flash.a -LOAD esp-idf/esp_bootloader_format/libesp_bootloader_format.a -LOAD esp-idf/bootloader_support/libbootloader_support.a -LOAD esp-idf/efuse/libefuse.a -LOAD esp-idf/esp_system/libesp_system.a -LOAD esp-idf/esp_hw_support/libesp_hw_support.a -LOAD esp-idf/esp_common/libesp_common.a -LOAD esp-idf/esp_rom/libesp_rom.a -LOAD esp-idf/log/liblog.a -LOAD C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a -LOAD C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a -LOAD C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libnosys.a -LOAD C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a -LOAD C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a - 0x40000018 rtc_get_reset_reason = 0x40000018 - 0x4000001c analog_super_wdt_reset_happened = 0x4000001c - 0x40000020 rtc_get_wakeup_cause = 0x40000020 - 0x40000024 rtc_unhold_all_pads = 0x40000024 - 0x40000028 ets_printf = 0x40000028 - 0x4000002c ets_install_putc1 = 0x4000002c - 0x40000030 ets_install_putc2 = 0x40000030 - 0x40000034 ets_install_uart_printf = 0x40000034 - 0x40000038 ets_install_usb_printf = 0x40000038 - 0x4000003c ets_get_printf_channel = 0x4000003c - 0x40000040 ets_delay_us = 0x40000040 - 0x40000044 ets_get_cpu_frequency = 0x40000044 - 0x40000048 ets_update_cpu_frequency = 0x40000048 - 0x4000004c ets_install_lock = 0x4000004c - 0x40000050 UartRxString = 0x40000050 - 0x40000054 UartGetCmdLn = 0x40000054 - 0x40000058 uart_tx_one_char = 0x40000058 - 0x4000005c uart_tx_one_char2 = 0x4000005c - 0x40000060 uart_rx_one_char = 0x40000060 - 0x40000064 uart_rx_one_char_block = 0x40000064 - 0x40000068 uart_rx_intr_handler = 0x40000068 - 0x4000006c uart_rx_readbuff = 0x4000006c - 0x40000070 uartAttach = 0x40000070 - 0x40000074 uart_tx_flush = 0x40000074 - 0x40000078 uart_tx_wait_idle = 0x40000078 - 0x4000007c uart_div_modify = 0x4000007c - 0x40000080 ets_write_char_uart = 0x40000080 - 0x40000084 uart_tx_switch = 0x40000084 - 0x40000088 roundup2 = 0x40000088 - 0x4000008c multofup = 0x4000008c - 0x40000090 software_reset = 0x40000090 - 0x40000094 software_reset_cpu = 0x40000094 - 0x40000098 ets_clk_assist_debug_clock_enable = 0x40000098 - 0x4000009c clear_super_wdt_reset_flag = 0x4000009c - 0x400000a0 disable_default_watchdog = 0x400000a0 - 0x400000a4 esp_rom_set_rtc_wake_addr = 0x400000a4 - 0x400000a8 esp_rom_get_rtc_wake_addr = 0x400000a8 - 0x400000ac send_packet = 0x400000ac - 0x400000b0 recv_packet = 0x400000b0 - 0x400000b4 GetUartDevice = 0x400000b4 - 0x400000b8 UartDwnLdProc = 0x400000b8 - 0x400000bc GetSecurityInfoProc = 0x400000bc - 0x400000c0 Uart_Init = 0x400000c0 - 0x400000c4 ets_set_user_start = 0x400000c4 - 0x4001fffc ets_rom_layout_p = 0x4001fffc - 0x4084fff8 ets_ops_table_ptr = 0x4084fff8 - 0x4084fffc g_saved_pc = 0x4084fffc - 0x400000c8 mz_adler32 = 0x400000c8 - 0x400000cc mz_free = 0x400000cc - 0x400000d0 tdefl_compress = 0x400000d0 - 0x400000d4 tdefl_compress_buffer = 0x400000d4 - 0x400000d8 tdefl_compress_mem_to_heap = 0x400000d8 - 0x400000dc tdefl_compress_mem_to_mem = 0x400000dc - 0x400000e0 tdefl_compress_mem_to_output = 0x400000e0 - 0x400000e4 tdefl_get_adler32 = 0x400000e4 - 0x400000e8 tdefl_get_prev_return_status = 0x400000e8 - 0x400000ec tdefl_init = 0x400000ec - 0x400000f0 tdefl_write_image_to_png_file_in_memory = 0x400000f0 - 0x400000f4 tdefl_write_image_to_png_file_in_memory_ex = 0x400000f4 - 0x400000f8 tinfl_decompress = 0x400000f8 - 0x400000fc tinfl_decompress_mem_to_callback = 0x400000fc - 0x40000100 tinfl_decompress_mem_to_heap = 0x40000100 - 0x40000104 tinfl_decompress_mem_to_mem = 0x40000104 - 0x40000108 esp_rom_spiflash_wait_idle = 0x40000108 - 0x4000010c esp_rom_spiflash_write_encrypted = 0x4000010c - 0x40000110 esp_rom_spiflash_write_encrypted_dest = 0x40000110 - 0x40000114 esp_rom_spiflash_write_encrypted_enable = 0x40000114 - 0x40000118 esp_rom_spiflash_write_encrypted_disable = 0x40000118 - 0x4000011c esp_rom_spiflash_erase_chip = 0x4000011c - 0x40000120 _esp_rom_spiflash_erase_sector = 0x40000120 - 0x40000124 _esp_rom_spiflash_erase_block = 0x40000124 - 0x40000128 _esp_rom_spiflash_write = 0x40000128 - 0x4000012c _esp_rom_spiflash_read = 0x4000012c - 0x40000130 _esp_rom_spiflash_unlock = 0x40000130 - 0x40000134 _SPIEraseArea = 0x40000134 - 0x40000138 _SPI_write_enable = 0x40000138 - 0x4000013c esp_rom_spiflash_erase_sector = 0x4000013c - 0x40000140 esp_rom_spiflash_erase_block = 0x40000140 - 0x40000144 esp_rom_spiflash_write = 0x40000144 - 0x40000148 esp_rom_spiflash_read = 0x40000148 - 0x4000014c esp_rom_spiflash_unlock = 0x4000014c - 0x40000150 SPIEraseArea = 0x40000150 - 0x40000154 SPI_write_enable = 0x40000154 - 0x40000158 esp_rom_spiflash_config_param = 0x40000158 - 0x4000015c esp_rom_spiflash_read_user_cmd = 0x4000015c - 0x40000160 esp_rom_spiflash_select_qio_pins = 0x40000160 - 0x40000164 esp_rom_spi_flash_auto_sus_res = 0x40000164 - 0x40000168 esp_rom_spi_flash_send_resume = 0x40000168 - 0x4000016c esp_rom_spi_flash_update_id = 0x4000016c - 0x40000170 esp_rom_spiflash_config_clk = 0x40000170 - 0x40000174 esp_rom_spiflash_config_readmode = 0x40000174 - 0x40000178 esp_rom_spiflash_read_status = 0x40000178 - 0x4000017c esp_rom_spiflash_read_statushigh = 0x4000017c - 0x40000180 esp_rom_spiflash_write_status = 0x40000180 - 0x40000184 spi_cache_mode_switch = 0x40000184 - 0x40000188 spi_common_set_dummy_output = 0x40000188 - 0x4000018c spi_common_set_flash_cs_timing = 0x4000018c - 0x40000190 esp_rom_spi_set_address_bit_len = 0x40000190 - 0x40000194 SPILock = 0x40000194 - 0x40000198 SPIMasterReadModeCnfig = 0x40000198 - 0x4000019c SPI_Common_Command = 0x4000019c - 0x400001a0 SPI_WakeUp = 0x400001a0 - 0x400001a4 SPI_block_erase = 0x400001a4 - 0x400001a8 SPI_chip_erase = 0x400001a8 - 0x400001ac SPI_init = 0x400001ac - 0x400001b0 SPI_page_program = 0x400001b0 - 0x400001b4 SPI_read_data = 0x400001b4 - 0x400001b8 SPI_sector_erase = 0x400001b8 - 0x400001bc SelectSpiFunction = 0x400001bc - 0x400001c0 SetSpiDrvs = 0x400001c0 - 0x400001c4 Wait_SPI_Idle = 0x400001c4 - 0x400001c8 spi_dummy_len_fix = 0x400001c8 - 0x400001cc Disable_QMode = 0x400001cc - 0x400001d0 Enable_QMode = 0x400001d0 - 0x400001d4 spi_flash_attach = 0x400001d4 - 0x400001d8 spi_flash_get_chip_size = 0x400001d8 - 0x400001dc spi_flash_guard_set = 0x400001dc - 0x400001e0 spi_flash_guard_get = 0x400001e0 - 0x400001e4 spi_flash_read_encrypted = 0x400001e4 - 0x4084fff0 rom_spiflash_legacy_funcs = 0x4084fff0 - 0x4084ffec rom_spiflash_legacy_data = 0x4084ffec - 0x4084fff4 g_flash_guard_ops = 0x4084fff4 - 0x40000270 esp_rom_spiflash_write_disable = 0x40000270 - 0x400005fc Cache_Get_ICache_Line_Size = 0x400005fc - 0x40000600 Cache_Get_Mode = 0x40000600 - 0x40000604 Cache_Address_Through_Cache = 0x40000604 - 0x40000608 ROM_Boot_Cache_Init = 0x40000608 - 0x4000060c MMU_Set_Page_Mode = 0x4000060c - 0x40000610 MMU_Get_Page_Mode = 0x40000610 - 0x40000614 Cache_Invalidate_ICache_Items = 0x40000614 - 0x40000618 Cache_Op_Addr = 0x40000618 - 0x4000061c Cache_Invalidate_Addr = 0x4000061c - 0x40000620 Cache_Invalidate_ICache_All = 0x40000620 - 0x40000624 Cache_Mask_All = 0x40000624 - 0x40000628 Cache_UnMask_Dram0 = 0x40000628 - 0x4000062c Cache_Suspend_ICache_Autoload = 0x4000062c - 0x40000630 Cache_Resume_ICache_Autoload = 0x40000630 - 0x40000634 Cache_Start_ICache_Preload = 0x40000634 - 0x40000638 Cache_ICache_Preload_Done = 0x40000638 - 0x4000063c Cache_End_ICache_Preload = 0x4000063c - 0x40000640 Cache_Config_ICache_Autoload = 0x40000640 - 0x40000644 Cache_Enable_ICache_Autoload = 0x40000644 - 0x40000648 Cache_Disable_ICache_Autoload = 0x40000648 - 0x4000064c Cache_Enable_ICache_PreLock = 0x4000064c - 0x40000650 Cache_Disable_ICache_PreLock = 0x40000650 - 0x40000654 Cache_Lock_ICache_Items = 0x40000654 - 0x40000658 Cache_Unlock_ICache_Items = 0x40000658 - 0x4000065c Cache_Lock_Addr = 0x4000065c - 0x40000660 Cache_Unlock_Addr = 0x40000660 - 0x40000664 Cache_Disable_ICache = 0x40000664 - 0x40000668 Cache_Enable_ICache = 0x40000668 - 0x4000066c Cache_Suspend_ICache = 0x4000066c - 0x40000670 Cache_Resume_ICache = 0x40000670 - 0x40000674 Cache_Freeze_ICache_Enable = 0x40000674 - 0x40000678 Cache_Freeze_ICache_Disable = 0x40000678 - 0x4000067c Cache_Set_IDROM_MMU_Size = 0x4000067c - 0x40000680 Cache_Get_IROM_MMU_End = 0x40000680 - 0x40000684 Cache_Get_DROM_MMU_End = 0x40000684 - 0x40000688 Cache_MMU_Init = 0x40000688 - 0x4000068c Cache_MSPI_MMU_Set = 0x4000068c - 0x40000690 Cache_Travel_Tag_Memory = 0x40000690 - 0x40000694 Cache_Get_Virtual_Addr = 0x40000694 - 0x4084ffcc rom_cache_op_cb = 0x4084ffcc - 0x4084ffc8 rom_cache_internal_table_ptr = 0x4084ffc8 - 0x40000698 ets_clk_get_xtal_freq = 0x40000698 - 0x4000069c ets_clk_get_cpu_freq = 0x4000069c - 0x400006a0 gpio_input_get = 0x400006a0 - 0x400006a4 gpio_matrix_in = 0x400006a4 - 0x400006a8 gpio_matrix_out = 0x400006a8 - 0x400006b4 gpio_output_set = 0x400006b4 - 0x400006b8 gpio_pad_hold = 0x400006b8 - 0x400006bc gpio_pad_input_disable = 0x400006bc - 0x400006c0 gpio_pad_input_enable = 0x400006c0 - 0x400006c4 gpio_pad_pulldown = 0x400006c4 - 0x400006c8 gpio_pad_pullup = 0x400006c8 - 0x400006cc gpio_pad_select_gpio = 0x400006cc - 0x400006d0 gpio_pad_set_drv = 0x400006d0 - 0x400006d4 gpio_pad_unhold = 0x400006d4 - 0x400006d8 gpio_pin_wakeup_disable = 0x400006d8 - 0x400006dc gpio_pin_wakeup_enable = 0x400006dc - 0x400006e0 gpio_bypass_matrix_in = 0x400006e0 - 0x400006e4 esprv_intc_int_set_priority = 0x400006e4 - 0x400006e8 esprv_intc_int_set_threshold = 0x400006e8 - 0x400006ec esprv_intc_int_enable = 0x400006ec - 0x400006f0 esprv_intc_int_disable = 0x400006f0 - 0x400006f4 esprv_intc_int_set_type = 0x400006f4 - [!provide] PROVIDE (intr_handler_set = 0x400006f8) - 0x400006fc intr_matrix_set = 0x400006fc - 0x40000700 ets_intr_lock = 0x40000700 - 0x40000704 ets_intr_unlock = 0x40000704 - 0x40000708 ets_isr_attach = 0x40000708 - 0x4000070c ets_isr_mask = 0x4000070c - 0x40000710 ets_isr_unmask = 0x40000710 - 0x40000714 md5_vector = 0x40000714 - 0x40000718 MD5Init = 0x40000718 - 0x4000071c MD5Update = 0x4000071c - 0x40000720 MD5Final = 0x40000720 - 0x40000724 crc32_le = 0x40000724 - 0x40000728 crc16_le = 0x40000728 - 0x4000072c crc8_le = 0x4000072c - 0x40000730 crc32_be = 0x40000730 - 0x40000734 crc16_be = 0x40000734 - 0x40000738 crc8_be = 0x40000738 - 0x4000073c esp_crc8 = 0x4000073c - 0x40000740 ets_sha_enable = 0x40000740 - 0x40000744 ets_sha_disable = 0x40000744 - 0x40000748 ets_sha_get_state = 0x40000748 - 0x4000074c ets_sha_init = 0x4000074c - 0x40000750 ets_sha_process = 0x40000750 - 0x40000754 ets_sha_starts = 0x40000754 - 0x40000758 ets_sha_update = 0x40000758 - 0x4000075c ets_sha_finish = 0x4000075c - 0x40000760 ets_sha_clone = 0x40000760 - 0x40000764 ets_hmac_enable = 0x40000764 - 0x40000768 ets_hmac_disable = 0x40000768 - 0x4000076c ets_hmac_calculate_message = 0x4000076c - 0x40000770 ets_hmac_calculate_downstream = 0x40000770 - 0x40000774 ets_hmac_invalidate_downstream = 0x40000774 - 0x40000778 ets_jtag_enable_temporarily = 0x40000778 - 0x4000077c ets_aes_enable = 0x4000077c - 0x40000780 ets_aes_disable = 0x40000780 - 0x40000784 ets_aes_setkey = 0x40000784 - 0x40000788 ets_aes_block = 0x40000788 - 0x4000078c ets_aes_setkey_dec = 0x4000078c - 0x40000790 ets_aes_setkey_enc = 0x40000790 - 0x40000794 ets_bigint_enable = 0x40000794 - 0x40000798 ets_bigint_disable = 0x40000798 - 0x4000079c ets_bigint_multiply = 0x4000079c - 0x400007a0 ets_bigint_modmult = 0x400007a0 - 0x400007a4 ets_bigint_modexp = 0x400007a4 - 0x400007a8 ets_bigint_wait_finish = 0x400007a8 - 0x400007ac ets_bigint_getz = 0x400007ac - 0x400007b0 ets_ds_enable = 0x400007b0 - 0x400007b4 ets_ds_disable = 0x400007b4 - 0x400007b8 ets_ds_start_sign = 0x400007b8 - 0x400007bc ets_ds_is_busy = 0x400007bc - 0x400007c0 ets_ds_finish_sign = 0x400007c0 - 0x400007c4 ets_ds_encrypt_params = 0x400007c4 - 0x400007c8 ets_mgf1_sha256 = 0x400007c8 - 0x4001fff8 crc32_le_table_ptr = 0x4001fff8 - 0x4001fff4 crc16_le_table_ptr = 0x4001fff4 - 0x4001fff0 crc8_le_table_ptr = 0x4001fff0 - 0x4001ffec crc32_be_table_ptr = 0x4001ffec - 0x4001ffe8 crc16_be_table_ptr = 0x4001ffe8 - 0x4001ffe4 crc8_be_table_ptr = 0x4001ffe4 - 0x400007cc ets_efuse_read = 0x400007cc - 0x400007d0 ets_efuse_program = 0x400007d0 - 0x400007d4 ets_efuse_clear_program_registers = 0x400007d4 - 0x400007d8 ets_efuse_write_key = 0x400007d8 - 0x400007dc ets_efuse_get_read_register_address = 0x400007dc - 0x400007e0 ets_efuse_get_key_purpose = 0x400007e0 - 0x400007e4 ets_efuse_key_block_unused = 0x400007e4 - 0x400007e8 ets_efuse_find_unused_key_block = 0x400007e8 - 0x400007ec ets_efuse_rs_calculate = 0x400007ec - 0x400007f0 ets_efuse_count_unused_key_blocks = 0x400007f0 - 0x400007f4 ets_efuse_secure_boot_enabled = 0x400007f4 - 0x400007f8 ets_efuse_secure_boot_aggressive_revoke_enabled = 0x400007f8 - 0x400007fc ets_efuse_cache_encryption_enabled = 0x400007fc - 0x40000800 ets_efuse_download_modes_disabled = 0x40000800 - 0x40000804 ets_efuse_find_purpose = 0x40000804 - 0x40000808 ets_efuse_force_send_resume = 0x40000808 - 0x4000080c ets_efuse_get_flash_delay_us = 0x4000080c - 0x40000810 ets_efuse_get_mac = 0x40000810 - 0x40000814 ets_efuse_get_uart_print_control = 0x40000814 - 0x40000818 ets_efuse_direct_boot_mode_disabled = 0x40000818 - 0x4000081c ets_efuse_security_download_modes_enabled = 0x4000081c - 0x40000820 ets_efuse_jtag_disabled = 0x40000820 - 0x40000824 ets_efuse_usb_print_is_disabled = 0x40000824 - 0x40000828 ets_efuse_usb_download_mode_disabled = 0x40000828 - 0x4000082c ets_efuse_usb_device_disabled = 0x4000082c - 0x40000830 ets_efuse_secure_boot_fast_wake_enabled = 0x40000830 - 0x40000834 ets_emsa_pss_verify = 0x40000834 - 0x40000838 ets_rsa_pss_verify = 0x40000838 - 0x4000083c ets_ecdsa_verify = 0x4000083c - 0x40000840 ets_secure_boot_verify_bootloader_with_keys = 0x40000840 - 0x40000844 ets_secure_boot_verify_signature = 0x40000844 - 0x40000848 ets_secure_boot_read_key_digests = 0x40000848 - 0x4000084c ets_secure_boot_revoke_public_key_digest = 0x4000084c - 0x400009c0 usb_serial_device_rx_one_char = 0x400009c0 - 0x400009c4 usb_serial_device_rx_one_char_block = 0x400009c4 - 0x400009c8 usb_serial_device_tx_flush = 0x400009c8 - 0x400009cc usb_serial_device_tx_one_char = 0x400009cc - 0x40000724 PROVIDE (esp_rom_crc32_le = crc32_le) - [!provide] PROVIDE (esp_rom_crc16_le = crc16_le) - [!provide] PROVIDE (esp_rom_crc8_le = crc8_le) - [!provide] PROVIDE (esp_rom_crc32_be = crc32_be) - [!provide] PROVIDE (esp_rom_crc16_be = crc16_be) - [!provide] PROVIDE (esp_rom_crc8_be = crc8_be) - [!provide] PROVIDE (esp_rom_gpio_pad_select_gpio = gpio_pad_select_gpio) - [!provide] PROVIDE (esp_rom_gpio_pad_pullup_only = gpio_pad_pullup) - 0x400006d0 PROVIDE (esp_rom_gpio_pad_set_drv = gpio_pad_set_drv) - [!provide] PROVIDE (esp_rom_gpio_pad_unhold = gpio_pad_unhold) - [!provide] PROVIDE (esp_rom_gpio_connect_in_signal = gpio_matrix_in) - [!provide] PROVIDE (esp_rom_gpio_connect_out_signal = gpio_matrix_out) - [!provide] PROVIDE (esp_rom_efuse_mac_address_crc8 = esp_crc8) - [!provide] PROVIDE (esp_rom_efuse_is_secure_boot_enabled = ets_efuse_secure_boot_enabled) - [!provide] PROVIDE (esp_rom_uart_flush_tx = uart_tx_flush) - [!provide] PROVIDE (esp_rom_uart_tx_one_char = uart_tx_one_char2) - [!provide] PROVIDE (esp_rom_uart_tx_wait_idle = uart_tx_wait_idle) - [!provide] PROVIDE (esp_rom_uart_rx_one_char = uart_rx_one_char) - [!provide] PROVIDE (esp_rom_uart_rx_string = UartRxString) - [!provide] PROVIDE (esp_rom_uart_set_as_console = uart_tx_switch) - [!provide] PROVIDE (esp_rom_uart_putc = ets_write_char_uart) - 0x40000074 PROVIDE (esp_rom_output_flush_tx = uart_tx_flush) - [!provide] PROVIDE (esp_rom_output_tx_one_char = uart_tx_one_char) - 0x40000078 PROVIDE (esp_rom_output_tx_wait_idle = uart_tx_wait_idle) - [!provide] PROVIDE (esp_rom_output_rx_one_char = uart_rx_one_char) - [!provide] PROVIDE (esp_rom_output_rx_string = UartRxString) - [!provide] PROVIDE (esp_rom_output_set_as_console = uart_tx_switch) - [!provide] PROVIDE (esp_rom_output_putc = ets_write_char_uart) - 0x40000718 PROVIDE (esp_rom_md5_init = MD5Init) - 0x4000071c PROVIDE (esp_rom_md5_update = MD5Update) - 0x40000720 PROVIDE (esp_rom_md5_final = MD5Final) - 0x40000090 PROVIDE (esp_rom_software_reset_system = software_reset) - [!provide] PROVIDE (esp_rom_software_reset_cpu = software_reset_cpu) - 0x40000028 PROVIDE (esp_rom_printf = ets_printf) - 0x40000034 PROVIDE (esp_rom_install_uart_printf = ets_install_uart_printf) - 0x40000040 PROVIDE (esp_rom_delay_us = ets_delay_us) - 0x40000018 PROVIDE (esp_rom_get_reset_reason = rtc_get_reset_reason) - [!provide] PROVIDE (esp_rom_route_intr_matrix = intr_matrix_set) - 0x40000044 PROVIDE (esp_rom_get_cpu_ticks_per_us = ets_get_cpu_frequency) - 0x40000048 PROVIDE (esp_rom_set_cpu_ticks_per_us = ets_update_cpu_frequency) - [!provide] PROVIDE (esp_rom_spiflash_attach = spi_flash_attach) - [!provide] PROVIDE (esp_rom_spiflash_clear_bp = esp_rom_spiflash_unlock) - [!provide] PROVIDE (esp_rom_spiflash_write_enable = SPI_write_enable) - [!provide] PROVIDE (esp_rom_spiflash_erase_area = SPIEraseArea) - [!provide] PROVIDE (esp_rom_spiflash_fix_dummylen = spi_dummy_len_fix) - [!provide] PROVIDE (esp_rom_spiflash_set_drvs = SetSpiDrvs) - [!provide] PROVIDE (esp_rom_spiflash_select_padsfunc = SelectSpiFunction) - [!provide] PROVIDE (esp_rom_spiflash_common_cmd = SPI_Common_Command) - 0x40000850 __absvdi2 = 0x40000850 - 0x40000854 __absvsi2 = 0x40000854 - 0x40000858 __adddf3 = 0x40000858 - 0x4000085c __addsf3 = 0x4000085c - 0x40000860 __addvdi3 = 0x40000860 - 0x40000864 __addvsi3 = 0x40000864 - 0x40000868 __ashldi3 = 0x40000868 - 0x4000086c __ashrdi3 = 0x4000086c - 0x40000870 __bswapdi2 = 0x40000870 - 0x40000874 __bswapsi2 = 0x40000874 - 0x40000878 __clear_cache = 0x40000878 - 0x4000087c __clrsbdi2 = 0x4000087c - 0x40000880 __clrsbsi2 = 0x40000880 - 0x40000884 __clzdi2 = 0x40000884 - 0x40000888 __clzsi2 = 0x40000888 - 0x4000088c __cmpdi2 = 0x4000088c - 0x40000890 __ctzdi2 = 0x40000890 - 0x40000894 __ctzsi2 = 0x40000894 - 0x40000898 __divdc3 = 0x40000898 - 0x4000089c __divdf3 = 0x4000089c - 0x400008a0 __divdi3 = 0x400008a0 - 0x400008a4 __divsc3 = 0x400008a4 - 0x400008a8 __divsf3 = 0x400008a8 - 0x400008ac __divsi3 = 0x400008ac - 0x400008b0 __eqdf2 = 0x400008b0 - 0x400008b4 __eqsf2 = 0x400008b4 - 0x400008b8 __extendsfdf2 = 0x400008b8 - 0x400008bc __ffsdi2 = 0x400008bc - 0x400008c0 __ffssi2 = 0x400008c0 - 0x400008c4 __fixdfdi = 0x400008c4 - 0x400008c8 __fixdfsi = 0x400008c8 - 0x400008cc __fixsfdi = 0x400008cc - 0x400008d0 __fixsfsi = 0x400008d0 - 0x400008d4 __fixunsdfsi = 0x400008d4 - 0x400008d8 __fixunssfdi = 0x400008d8 - 0x400008dc __fixunssfsi = 0x400008dc - 0x400008e0 __floatdidf = 0x400008e0 - 0x400008e4 __floatdisf = 0x400008e4 - 0x400008e8 __floatsidf = 0x400008e8 - 0x400008ec __floatsisf = 0x400008ec - 0x400008f0 __floatundidf = 0x400008f0 - 0x400008f4 __floatundisf = 0x400008f4 - 0x400008f8 __floatunsidf = 0x400008f8 - 0x400008fc __floatunsisf = 0x400008fc - 0x40000900 __gcc_bcmp = 0x40000900 - 0x40000904 __gedf2 = 0x40000904 - 0x40000908 __gesf2 = 0x40000908 - 0x4000090c __gtdf2 = 0x4000090c - 0x40000910 __gtsf2 = 0x40000910 - 0x40000914 __ledf2 = 0x40000914 - 0x40000918 __lesf2 = 0x40000918 - 0x4000091c __lshrdi3 = 0x4000091c - 0x40000920 __ltdf2 = 0x40000920 - 0x40000924 __ltsf2 = 0x40000924 - 0x40000928 __moddi3 = 0x40000928 - 0x4000092c __modsi3 = 0x4000092c - 0x40000930 __muldc3 = 0x40000930 - 0x40000934 __muldf3 = 0x40000934 - 0x40000938 __muldi3 = 0x40000938 - 0x4000093c __mulsc3 = 0x4000093c - 0x40000940 __mulsf3 = 0x40000940 - 0x40000944 __mulsi3 = 0x40000944 - 0x40000948 __mulvdi3 = 0x40000948 - 0x4000094c __mulvsi3 = 0x4000094c - 0x40000950 __nedf2 = 0x40000950 - 0x40000954 __negdf2 = 0x40000954 - 0x40000958 __negdi2 = 0x40000958 - 0x4000095c __negsf2 = 0x4000095c - 0x40000960 __negvdi2 = 0x40000960 - 0x40000964 __negvsi2 = 0x40000964 - 0x40000968 __nesf2 = 0x40000968 - 0x4000096c __paritysi2 = 0x4000096c - 0x40000970 __popcountdi2 = 0x40000970 - 0x40000974 __popcountsi2 = 0x40000974 - 0x40000978 __powidf2 = 0x40000978 - 0x4000097c __powisf2 = 0x4000097c - 0x40000980 __subdf3 = 0x40000980 - 0x40000984 __subsf3 = 0x40000984 - 0x40000988 __subvdi3 = 0x40000988 - 0x4000098c __subvsi3 = 0x4000098c - 0x40000990 __truncdfsf2 = 0x40000990 - 0x40000994 __ucmpdi2 = 0x40000994 - 0x40000998 __udivdi3 = 0x40000998 - 0x4000099c __udivmoddi4 = 0x4000099c - 0x400009a0 __udivsi3 = 0x400009a0 - 0x400009a4 __udiv_w_sdiv = 0x400009a4 - 0x400009a8 __umoddi3 = 0x400009a8 - 0x400009ac __umodsi3 = 0x400009ac - 0x400009b0 __unorddf2 = 0x400009b0 - 0x400009b4 __unordsf2 = 0x400009b4 - 0x400009b8 __extenddftf2 = 0x400009b8 - 0x400009bc __trunctfdf2 = 0x400009bc - 0x40000394 wdt_hal_config_stage = 0x40000394 - 0x40000398 wdt_hal_write_protect_disable = 0x40000398 - 0x4000039c wdt_hal_write_protect_enable = 0x4000039c - 0x400003a0 wdt_hal_enable = 0x400003a0 - 0x400003a4 wdt_hal_disable = 0x400003a4 - 0x400003a8 wdt_hal_handle_intr = 0x400003a8 - 0x400003ac wdt_hal_feed = 0x400003ac - 0x400003b0 wdt_hal_set_flashboot_en = 0x400003b0 - 0x400003b4 wdt_hal_is_enabled = 0x400003b4 - 0x400003c0 systimer_hal_set_tick_rate_ops = 0x400003c0 - 0x400003c4 systimer_hal_get_counter_value = 0x400003c4 - 0x400003c8 systimer_hal_get_time = 0x400003c8 - 0x400003cc systimer_hal_set_alarm_target = 0x400003cc - 0x400003d0 systimer_hal_set_alarm_period = 0x400003d0 - 0x400003d4 systimer_hal_get_alarm_value = 0x400003d4 - 0x400003d8 systimer_hal_enable_alarm_int = 0x400003d8 - 0x400003dc systimer_hal_on_apb_freq_update = 0x400003dc - 0x400003e0 systimer_hal_counter_value_advance = 0x400003e0 - 0x400003e4 systimer_hal_enable_counter = 0x400003e4 - 0x400003e8 systimer_hal_select_alarm_mode = 0x400003e8 - 0x400003ec systimer_hal_connect_alarm_counter = 0x400003ec - 0x400003f0 systimer_hal_counter_can_stall_by_cpu = 0x400003f0 - 0x40000010 _rom_chip_id = 0x40000010 - 0x40000014 _rom_eco_version = 0x40000014 - 0x4000049c esp_rom_newlib_init_common_mutexes = 0x4000049c - 0x400004a0 memset = 0x400004a0 - 0x400004c0 strlen = 0x400004c0 - 0x400004c4 strstr = 0x400004c4 - 0x400004c8 bzero = 0x400004c8 - 0x400004d0 sbrk = 0x400004d0 - 0x400004d4 isalnum = 0x400004d4 - 0x400004d8 isalpha = 0x400004d8 - 0x400004dc isascii = 0x400004dc - 0x400004e0 isblank = 0x400004e0 - 0x400004e4 iscntrl = 0x400004e4 - 0x400004e8 isdigit = 0x400004e8 - 0x400004ec islower = 0x400004ec - 0x400004f0 isgraph = 0x400004f0 - 0x400004f4 isprint = 0x400004f4 - 0x400004f8 ispunct = 0x400004f8 - 0x400004fc isspace = 0x400004fc - 0x40000500 isupper = 0x40000500 - 0x40000504 toupper = 0x40000504 - 0x40000508 tolower = 0x40000508 - 0x4000050c toascii = 0x4000050c - 0x40000510 memccpy = 0x40000510 - 0x40000514 memchr = 0x40000514 - 0x40000518 memrchr = 0x40000518 - 0x4000051c strcasecmp = 0x4000051c - 0x40000520 strcasestr = 0x40000520 - 0x40000524 strcat = 0x40000524 - 0x4000052c strchr = 0x4000052c - 0x40000530 strcspn = 0x40000530 - 0x40000534 strcoll = 0x40000534 - 0x40000538 strlcat = 0x40000538 - 0x4000053c strlcpy = 0x4000053c - 0x40000540 strlwr = 0x40000540 - 0x40000544 strncasecmp = 0x40000544 - 0x40000548 strncat = 0x40000548 - 0x40000550 strnlen = 0x40000550 - 0x40000554 strrchr = 0x40000554 - 0x40000558 strsep = 0x40000558 - 0x4000055c strspn = 0x4000055c - 0x40000560 strtok_r = 0x40000560 - 0x40000564 strupr = 0x40000564 - 0x40000568 longjmp = 0x40000568 - 0x4000056c setjmp = 0x4000056c - 0x40000570 abs = 0x40000570 - 0x40000574 div = 0x40000574 - 0x40000578 labs = 0x40000578 - 0x4000057c ldiv = 0x4000057c - 0x40000580 qsort = 0x40000580 - 0x40000590 utoa = 0x40000590 - 0x40000594 itoa = 0x40000594 - 0x4084ffd4 syscall_table_ptr = 0x4084ffd4 - 0x4084ffd0 _global_impure_ptr = 0x4084ffd0 - 0x400004a4 memcpy = 0x400004a4 - 0x400004a8 memmove = 0x400004a8 - 0x400004ac memcmp = 0x400004ac - 0x400004b0 strcpy = 0x400004b0 - 0x400004b4 strncpy = 0x400004b4 - 0x400004b8 strcmp = 0x400004b8 - 0x400004bc strncmp = 0x400004bc - 0x400004cc _isatty_r = 0x400004cc - 0x40000528 strdup = 0x40000528 - 0x4000054c strndup = 0x4000054c - 0x40000584 rand_r = 0x40000584 - 0x40000588 rand = 0x40000588 - 0x4000058c srand = 0x4000058c - 0x40000598 atoi = 0x40000598 - 0x4000059c atol = 0x4000059c - 0x400005a0 strtol = 0x400005a0 - 0x400005a4 strtoul = 0x400005a4 - 0x400005a8 fflush = 0x400005a8 - 0x400005ac _fflush_r = 0x400005ac - 0x400005b0 _fwalk = 0x400005b0 - 0x400005b4 _fwalk_reent = 0x400005b4 - 0x400005b8 __smakebuf_r = 0x400005b8 - 0x400005bc __swhatbuf_r = 0x400005bc - 0x400005c0 __swbuf_r = 0x400005c0 - 0x400005c4 __swbuf = 0x400005c4 - 0x400005c8 __swsetup_r = 0x400005c8 - [!provide] PROVIDE (esprv_int_set_priority = esprv_intc_int_set_priority) - [!provide] PROVIDE (esprv_int_set_threshold = esprv_intc_int_set_threshold) - [!provide] PROVIDE (esprv_int_enable = esprv_intc_int_enable) - [!provide] PROVIDE (esprv_int_disable = esprv_intc_int_disable) - [!provide] PROVIDE (esprv_int_set_type = esprv_intc_int_set_type) - 0x60000000 PROVIDE (UART0 = 0x60000000) - [!provide] PROVIDE (UART1 = 0x60001000) - 0x60002000 PROVIDE (SPIMEM0 = 0x60002000) - 0x60003000 PROVIDE (SPIMEM1 = 0x60003000) - [!provide] PROVIDE (I2C0 = 0x60004000) - [!provide] PROVIDE (I2C1 = 0x60005000) - [!provide] PROVIDE (UHCI0 = 0x60006000) - [!provide] PROVIDE (RMT = 0x60007000) - [!provide] PROVIDE (RMTMEM = 0x60007400) - [!provide] PROVIDE (LEDC = 0x60008000) - 0x60009000 PROVIDE (TIMERG0 = 0x60009000) - 0x6000a000 PROVIDE (TIMERG1 = 0x6000a000) - [!provide] PROVIDE (SYSTIMER = 0x6000b000) - [!provide] PROVIDE (TWAI0 = 0x6000c000) - [!provide] PROVIDE (I2S0 = 0x6000d000) - 0x6000e000 PROVIDE (APB_SARADC = 0x6000e000) - [!provide] PROVIDE (USB_SERIAL_JTAG = 0x6000f000) - [!provide] PROVIDE (INTMTX = 0x60010000) - [!provide] PROVIDE (ATOMIC_LOCKER = 0x60011000) - [!provide] PROVIDE (PCNT = 0x60012000) - [!provide] PROVIDE (SOC_ETM = 0x60013000) - [!provide] PROVIDE (MCPWM0 = 0x60014000) - [!provide] PROVIDE (PARL_IO = 0x60015000) - [!provide] PROVIDE (PVT_MONITOR = 0x60019000) - [!provide] PROVIDE (GDMA = 0x60080000) - [!provide] PROVIDE (GPSPI2 = 0x60081000) - [!provide] PROVIDE (AES = 0x60088000) - [!provide] PROVIDE (SHA = 0x60089000) - [!provide] PROVIDE (RSA = 0x6008a000) - [!provide] PROVIDE (ECC = 0x6008b000) - [!provide] PROVIDE (DS = 0x6008c000) - [!provide] PROVIDE (HMAC = 0x6008d000) - [!provide] PROVIDE (ECDSA = 0x6008e000) - [!provide] PROVIDE (IO_MUX = 0x60090000) - [!provide] PROVIDE (GPIO = 0x60091000) - [!provide] PROVIDE (GPIO_EXT = 0x60091f00) - [!provide] PROVIDE (SDM = 0x60091f00) - [!provide] PROVIDE (GLITCH_FILTER = 0x60091f30) - [!provide] PROVIDE (GPIO_ETM = 0x60091f60) - [!provide] PROVIDE (MEM_ACS_MONITOR = 0x60092000) - [!provide] PROVIDE (PAU = 0x60093000) - [!provide] PROVIDE (HP_SYSTEM = 0x60095000) - 0x60096000 PROVIDE (PCR = 0x60096000) - [!provide] PROVIDE (TEE = 0x60098000) - [!provide] PROVIDE (HP_APM = 0x60099000) - [!provide] PROVIDE (IEEE802154 = 0x600a3000) - [!provide] PROVIDE (MODEM_SYSCON = 0x600a5400) - 0x600ad000 PROVIDE (MODEM_LPCON = 0x600ad000) - [!provide] PROVIDE (PMU = 0x600b0000) - 0x600b0400 PROVIDE (LP_CLKRST = 0x600b0400) - 0x600b0800 PROVIDE (EFUSE = 0x600b0800) - 0x600b0c00 PROVIDE (LP_TIMER = 0x600b0c00) - [!provide] PROVIDE (LP_AON = 0x600b1000) - 0x600b1c00 PROVIDE (LP_WDT = 0x600b1c00) - [!provide] PROVIDE (I2C_ANA_MST = 0x600b2400) - [!provide] PROVIDE (LPPERI = 0x600b2800) - 0x600b2c00 PROVIDE (LP_ANA_PERI = 0x600b2c00) - [!provide] PROVIDE (LP_APM = 0x600b3800) - [!provide] PROVIDE (OTP_DEBUG = 0x600b3c00) - 0x4084cfd0 bootloader_usable_dram_end = 0x4084cfd0 - 0x00002000 bootloader_stack_overhead = 0x2000 - 0x00005000 bootloader_dram_seg_len = 0x5000 - 0x00007000 bootloader_iram_loader_seg_len = 0x7000 - 0x00002d00 bootloader_iram_seg_len = 0x2d00 - 0x4084afd0 bootloader_dram_seg_end = (bootloader_usable_dram_end - bootloader_stack_overhead) - 0x40845fd0 bootloader_dram_seg_start = (bootloader_dram_seg_end - bootloader_dram_seg_len) - 0x4083efd0 bootloader_iram_loader_seg_start = (bootloader_dram_seg_start - bootloader_iram_loader_seg_len) - 0x4083c2d0 bootloader_iram_seg_start = (bootloader_iram_loader_seg_start - bootloader_iram_seg_len) - 0x00000001 ASSERT ((bootloader_iram_loader_seg_start == 0x4083efd0), bootloader_iram_loader_seg_start inconsistent with SRAM_DRAM_END) - -.iram_loader.text - 0x4083efd0 0x2c6c - 0x4083efd0 . = ALIGN (0x10) - 0x4083efd0 _loader_text_start = ABSOLUTE (.) - *(.stub .gnu.warning .gnu.linkonce.literal.* .gnu.linkonce.t.*.literal .gnu.linkonce.t.*) - *(.iram1 .iram1.*) - .iram1.0 0x4083efd0 0x2 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - 0x4083efd0 esp_flash_encryption_enabled - .iram1.5 0x4083efd2 0x50 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .iram1.1 0x4083f022 0x1c6 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - 0x4083f022 bootloader_flash_execute_command_common - .iram1.2 0x4083f1e8 0xe esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - 0x4083f1e8 bootloader_execute_flash_command - .iram1.0 0x4083f1f6 0x13a esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - 0x4083f1f6 bootloader_flash_unlock_default - 0x4083f1f6 bootloader_flash_unlock - .iram1.3 0x4083f330 0x2e esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - 0x4083f330 bootloader_flash_read_sfdp - .iram1.4 0x4083f35e 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - 0x4083f35e bootloader_read_flash_id - .iram1.6 0x4083f38e 0xb2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - 0x4083f38e bootloader_flash_xmc_startup - .iram1.0 0x4083f440 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) - 0x4083f440 bootloader_flash_cs_timing_config - .iram1.2 0x4083f460 0x50 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) - 0x4083f460 bootloader_configure_spi_pins - .iram1.0 0x4083f4b0 0xd8 esp-idf/esp_rom/libesp_rom.a(esp_rom_regi2c_esp32h2.c.obj) - .iram1.4 0x4083f588 0xac esp-idf/esp_rom/libesp_rom.a(esp_rom_regi2c_esp32h2.c.obj) - 0x4083f588 regi2c_write_mask_impl - 0x4083f588 esp_rom_regi2c_write_mask - .iram1.0 0x4083f634 0x16 esp-idf/hal/libhal.a(efuse_hal.c.obj) - 0x4083f634 efuse_hal_chip_revision - .iram1.1 0x4083f64a 0x20 esp-idf/hal/libhal.a(efuse_hal.c.obj) - 0x4083f64a efuse_hal_blk_version - .iram1.2 0x4083f66a 0x10 esp-idf/hal/libhal.a(efuse_hal.c.obj) - 0x4083f66a efuse_hal_get_disable_wafer_version_major - .iram1.4 0x4083f67a 0x10 esp-idf/hal/libhal.a(efuse_hal.c.obj) - 0x4083f67a efuse_hal_get_disable_blk_version_major - .iram1.5 0x4083f68a 0x1e esp-idf/hal/libhal.a(efuse_hal.c.obj) - 0x4083f68a efuse_hal_flash_encryption_enabled - .iram1.0 0x4083f6a8 0x10 esp-idf/hal/libhal.a(efuse_hal.c.obj) - 0x4083f6a8 efuse_hal_get_major_chip_version - .iram1.1 0x4083f6b8 0x10 esp-idf/hal/libhal.a(efuse_hal.c.obj) - 0x4083f6b8 efuse_hal_get_minor_chip_version - .iram1.2 0x4083f6c8 0x28 esp-idf/hal/libhal.a(lp_timer_hal.c.obj) - 0x4083f6c8 lp_timer_hal_get_cycle_count - *liblog.a:(.literal .text .literal.* .text.*) - .text.esp_log_early_timestamp - 0x4083f6f0 0x1e esp-idf/log/liblog.a(log_timestamp.c.obj) - 0x4083f6f0 esp_log_early_timestamp - 0x4083f6f0 esp_log_timestamp - *libgcc.a:(.literal .text .literal.* .text.*) - .text 0x4083f70e 0x60 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(save-restore.o) - 0x4083f70e __riscv_save_12 - 0x4083f716 __riscv_save_9 - 0x4083f716 __riscv_save_11 - 0x4083f716 __riscv_save_10 - 0x4083f716 __riscv_save_8 - 0x4083f724 __riscv_save_4 - 0x4083f724 __riscv_save_6 - 0x4083f724 __riscv_save_5 - 0x4083f724 __riscv_save_7 - 0x4083f73e __riscv_save_3 - 0x4083f73e __riscv_save_2 - 0x4083f73e __riscv_save_1 - 0x4083f73e __riscv_save_0 - 0x4083f74a __riscv_restore_12 - 0x4083f74e __riscv_restore_11 - 0x4083f74e __riscv_restore_9 - 0x4083f74e __riscv_restore_10 - 0x4083f74e __riscv_restore_8 - 0x4083f758 __riscv_restore_5 - 0x4083f758 __riscv_restore_7 - 0x4083f758 __riscv_restore_6 - 0x4083f758 __riscv_restore_4 - 0x4083f762 __riscv_restore_3 - 0x4083f762 __riscv_restore_0 - 0x4083f762 __riscv_restore_2 - 0x4083f762 __riscv_restore_1 - *libclang_rt.builtins.a:(.literal .text .literal.* .text.*) - *libbootloader_support.a:bootloader_clock_loader.*(.literal .text .literal.* .text.*) - *libbootloader_support.a:bootloader_common_loader.*(.literal .text .literal.* .text.*) - .text.bootloader_common_check_chip_revision_validity - 0x4083f76e 0xae esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - 0x4083f76e bootloader_common_check_chip_revision_validity - .text.bootloader_common_ota_select_crc - 0x4083f81c 0xe esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - 0x4083f81c bootloader_common_ota_select_crc - .text.bootloader_common_ota_select_invalid - 0x4083f82a 0x16 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - 0x4083f82a bootloader_common_ota_select_invalid - .text.bootloader_common_ota_select_valid - 0x4083f840 0x1e esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - 0x4083f840 bootloader_common_ota_select_valid - .text.bootloader_common_check_efuse_blk_validity - 0x4083f85e 0x94 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - 0x4083f85e bootloader_common_check_efuse_blk_validity - .text.bootloader_common_check_chip_validity - 0x4083f8f2 0x5c esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - 0x4083f8f2 bootloader_common_check_chip_validity - .text.bootloader_common_select_otadata - 0x4083f94e 0x3e esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - 0x4083f94e bootloader_common_select_otadata - .text.bootloader_common_get_active_otadata - 0x4083f98c 0x2a esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - 0x4083f98c bootloader_common_get_active_otadata - *libbootloader_support.a:bootloader_flash.*(.literal .text .literal.* .text.*) - .text.spi_to_esp_err - 0x4083f9b6 0x24 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .text.bootloader_mmap_get_free_pages - 0x4083f9da 0x6 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - 0x4083f9da bootloader_mmap_get_free_pages - .text.bootloader_mmap - 0x4083f9e0 0xbc esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - 0x4083f9e0 bootloader_mmap - .text.bootloader_munmap - 0x4083fa9c 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - 0x4083fa9c bootloader_munmap - .text.bootloader_flash_read - 0x4083fabc 0x108 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - 0x4083fabc bootloader_flash_read - .text.bootloader_flash_erase_sector - 0x4083fbc4 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - 0x4083fbc4 bootloader_flash_erase_sector - .text.bootloader_flash_write - 0x4083fbd4 0xbc esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - 0x4083fbd4 bootloader_flash_write - .text.bootloader_enable_wp - 0x4083fc90 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - 0x4083fc90 bootloader_enable_wp - .text.bootloader_flash_get_spi_mode - 0x4083fc9c 0x3e esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - 0x4083fc9c bootloader_flash_get_spi_mode - *libbootloader_support.a:bootloader_random.*(.literal .text .literal.* .text.*) - .text.bootloader_fill_random - 0x4083fcda 0x9e esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) - 0x4083fcda bootloader_fill_random - *libbootloader_support.a:bootloader_random*.*(.literal.bootloader_random_disable .text.bootloader_random_disable) - .text.bootloader_random_disable - 0x4083fd78 0xf8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32h2.c.obj) - 0x4083fd78 bootloader_random_disable - *libbootloader_support.a:bootloader_efuse.*(.literal .text .literal.* .text.*) - *libbootloader_support.a:bootloader_utility.*(.literal .text .literal.* .text.*) - .text.log_invalid_app_partition - 0x4083fe70 0x7a esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .text.index_to_partition - 0x4083feea 0x46 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .text.try_load_partition - 0x4083ff30 0x3e esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .text.set_actual_ota_seq - 0x4083ff6e 0xa0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .text.load_image - 0x4084000e 0x194 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .text.bootloader_common_read_otadata - 0x408401a2 0x94 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - 0x408401a2 bootloader_common_read_otadata - .text.bootloader_utility_load_partition_table - 0x40840236 0x258 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - 0x40840236 bootloader_utility_load_partition_table - .text.bootloader_utility_get_selected_boot_partition - 0x4084048e 0x108 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - 0x4084048e bootloader_utility_get_selected_boot_partition - .text.bootloader_reset - 0x40840596 0x1c esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - 0x40840596 bootloader_reset - .text.bootloader_utility_load_boot_image - 0x408405b2 0x10c esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - 0x408405b2 bootloader_utility_load_boot_image - .text.bootloader_debug_buffer - 0x408406be 0x2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - 0x408406be bootloader_debug_buffer - *libbootloader_support.a:bootloader_sha.*(.literal .text .literal.* .text.*) - .text.bootloader_sha256_start - 0x408406c0 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - 0x408406c0 bootloader_sha256_start - .text.bootloader_sha256_data - 0x408406e6 0x22 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - 0x408406e6 bootloader_sha256_data - .text.bootloader_sha256_finish - 0x40840708 0x36 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - 0x40840708 bootloader_sha256_finish - *libbootloader_support.a:bootloader_console_loader.*(.literal .text .literal.* .text.*) - .text.bootloader_console_deinit - 0x4084073e 0xa esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) - 0x4084073e bootloader_console_deinit - *libbootloader_support.a:bootloader_panic.*(.literal .text .literal.* .text.*) - .text.__assert_func - 0x40840748 0x2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) - 0x40840748 __assert_func - .text.unlikely.abort - 0x4084074a 0xe esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) - 0x4084074a abort - *libbootloader_support.a:bootloader_soc.*(.literal .text .literal.* .text.*) - .text.bootloader_ana_super_wdt_reset_config - 0x40840758 0x1e esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) - 0x40840758 bootloader_ana_super_wdt_reset_config - .text.bootloader_ana_clock_glitch_reset_config - 0x40840776 0x2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) - 0x40840776 bootloader_ana_clock_glitch_reset_config - *libbootloader_support.a:esp_image_format.*(.literal .text .literal.* .text.*) - .text.should_load - 0x40840778 0x48 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .text.bootloader_util_regions_overlap - 0x408407c0 0x22 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .text.process_segments - 0x408407e2 0x4ca esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .text.image_load - 0x40840cac 0x3dc esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .text.bootloader_load_image - 0x40841088 0xa esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - 0x40841088 bootloader_load_image - *libbootloader_support.a:flash_encrypt.*(.literal .text .literal.* .text.*) - *libbootloader_support.a:flash_encryption_secure_features.*(.literal .text .literal.* .text.*) - *libbootloader_support.a:flash_partitions.*(.literal .text .literal.* .text.*) - .text.esp_partition_table_verify - 0x40841092 0x168 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - 0x40841092 esp_partition_table_verify - *libbootloader_support.a:secure_boot.*(.literal .text .literal.* .text.*) - *libbootloader_support.a:secure_boot_secure_features.*(.literal .text .literal.* .text.*) - *libbootloader_support.a:secure_boot_signatures_bootloader.*(.literal .text .literal.* .text.*) - *libmicro-ecc.a:*.*(.literal .text .literal.* .text.*) - *libspi_flash.a:*.*(.literal .text .literal.* .text.*) - *libhal.a:wdt_hal_iram.*(.literal .text .literal.* .text.*) - *libhal.a:mmu_hal.*(.literal .text .literal.* .text.*) - .text.mmu_hal_unmap_all - 0x408411fa 0x24 esp-idf/hal/libhal.a(mmu_hal.c.obj) - 0x408411fa mmu_hal_unmap_all - .text.mmu_hal_init - 0x4084121e 0x24 esp-idf/hal/libhal.a(mmu_hal.c.obj) - 0x4084121e mmu_hal_init - .text.mmu_hal_pages_to_bytes - 0x40841242 0x2c esp-idf/hal/libhal.a(mmu_hal.c.obj) - 0x40841242 mmu_hal_pages_to_bytes - .text.mmu_hal_check_valid_ext_vaddr_region - 0x4084126e 0x20 esp-idf/hal/libhal.a(mmu_hal.c.obj) - 0x4084126e mmu_hal_check_valid_ext_vaddr_region - .text.mmu_hal_map_region - 0x4084128e 0x16a esp-idf/hal/libhal.a(mmu_hal.c.obj) - 0x4084128e mmu_hal_map_region - *libhal.a:cache_hal.*(.literal .text .literal.* .text.*) - .text.s_cache_hal_init_ctx - 0x408413f8 0x32 esp-idf/hal/libhal.a(cache_hal.c.obj) - 0x408413f8 s_cache_hal_init_ctx - .text.cache_hal_init - 0x4084142a 0x42 esp-idf/hal/libhal.a(cache_hal.c.obj) - 0x4084142a cache_hal_init - .text.s_update_cache_state - 0x4084146c 0x30 esp-idf/hal/libhal.a(cache_hal.c.obj) - 0x4084146c s_update_cache_state - .text.cache_hal_disable - 0x4084149c 0x2a esp-idf/hal/libhal.a(cache_hal.c.obj) - 0x4084149c cache_hal_disable - .text.cache_hal_enable - 0x408414c6 0x32 esp-idf/hal/libhal.a(cache_hal.c.obj) - 0x408414c6 cache_hal_enable - *libhal.a:efuse_hal.*(.literal .text .literal.* .text.*) - *libesp_hw_support.a:rtc_clk.*(.literal .text .literal.* .text.*) - .text.rtc_clk_bbpll_disable - 0x408414f8 0x22 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_clk_bbpll_enable - 0x4084151a 0x1e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_clk_cpu_freq_to_8m - 0x40841538 0x68 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_clk_cpu_freq_to_xtal - 0x408415a0 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_clk_cpu_freq_to_pll_mhz - 0x40841610 0x9a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_clk_cpu_freq_to_flash_pll - 0x408416aa 0x80 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_clk_bbpll_configure - 0x4084172a 0xa8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_clk_32k_enable.part.0 - 0x408417d2 0x54 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_clk_32k_enable - 0x40841826 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x40841826 rtc_clk_32k_enable - .text.rtc_clk_32k_enable_external - 0x40841840 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x40841840 rtc_clk_32k_enable_external - .text.rtc_clk_rc32k_enable - 0x4084185a 0x2e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x4084185a rtc_clk_rc32k_enable - .text.rtc_clk_8m_enable - 0x40841888 0x2e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x40841888 rtc_clk_8m_enable - .text.rtc_clk_slow_src_set - 0x408418b6 0x54 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x408418b6 rtc_clk_slow_src_set - .text.rtc_clk_slow_src_get - 0x4084190a 0x1e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x4084190a rtc_clk_slow_src_get - .text.rtc_clk_slow_freq_get_hz - 0x40841928 0x1e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x40841928 rtc_clk_slow_freq_get_hz - .text.rtc_clk_fast_src_set - 0x40841946 0x46 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x40841946 rtc_clk_fast_src_set - .text.rtc_clk_fast_src_get - 0x4084198c 0x2a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x4084198c rtc_clk_fast_src_get - .text.rtc_clk_set_cpu_switch_to_pll - 0x408419b6 0x2 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x408419b6 rtc_clk_set_cpu_switch_to_pll - .text.rtc_clk_xtal_freq_get - 0x408419b8 0x52 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x408419b8 rtc_clk_xtal_freq_get - .text.rtc_clk_cpu_freq_mhz_to_config - 0x40841a0a 0x64 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x40841a0a rtc_clk_cpu_freq_mhz_to_config - .text.rtc_clk_cpu_freq_set_config - 0x40841a6e 0xae esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x40841a6e rtc_clk_cpu_freq_set_config - .text.rtc_clk_cpu_freq_get_config - 0x40841b1c 0x6e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x40841b1c rtc_clk_cpu_freq_get_config - .text.rtc_clk_xtal_freq_update - 0x40841b8a 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x40841b8a rtc_clk_xtal_freq_update - .text.rtc_clk_apb_freq_get - 0x40841bb0 0x80 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x40841bb0 rtc_clk_apb_freq_get - *libesp_hw_support.a:rtc_time.*(.literal .text .literal.* .text.*) - *libesp_hw_support.a:regi2c_ctrl.*(.literal .text .literal.* .text.*) - *libefuse.a:*.*(.literal .text .literal.* .text.*) - *libriscv.a:rv_utils.*(.literal .text .literal.* .text.*) - .text.rv_utils_dbgr_is_attached - 0x40841c30 0xc esp-idf/riscv/libriscv.a(rv_utils.c.obj) - 0x40841c30 rv_utils_dbgr_is_attached - *(.fini.literal) - *(.fini) - *(.gnu.version) - 0x40841c3c _loader_text_end = ABSOLUTE (.) - -.iram.text 0x4083c2d0 0x0 - 0x4083c2d0 . = ALIGN (0x10) - *(.entry.text) - *(.init.literal) - *(.init) - -.dram0.bss 0x40845fd0 0x118 - 0x40845fd0 . = ALIGN (0x8) - 0x40845fd0 _dram_start = ABSOLUTE (.) - 0x40845fd0 _bss_start = ABSOLUTE (.) - *(.dynsbss) - *(.sbss) - *(.sbss.*) - .sbss.ota_has_initial_contents - 0x40845fd0 0x1 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - *fill* 0x40845fd1 0x3 - .sbss.s_bootloader_partition_offset - 0x40845fd4 0x4 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .sbss.ram_obfs_value - 0x40845fd8 0x8 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .sbss.mapped 0x40845fe0 0x1 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - *fill* 0x40845fe1 0x3 - .sbss.s_bbpll_digi_consumers_ref_count - 0x40845fe4 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .sbss.s_cur_pll_freq - 0x40845fe8 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .sbss.ctx 0x40845fec 0x8 esp-idf/hal/libhal.a(cache_hal.c.obj) - *(.gnu.linkonce.sb.*) - *(.scommon) - *(.sbss2) - *(.sbss2.*) - *(.gnu.linkonce.sb2.*) - *(.dynbss) - *(.bss) - *(.bss.*) - .bss.ctx 0x40845ff4 0xd8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - .bss.bootloader_image_hdr - 0x408460cc 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - 0x408460cc bootloader_image_hdr - *(.gnu.linkonce.b.*) - *(COMMON) - 0x408460e8 . = ALIGN (0x8) - *fill* 0x408460e4 0x4 - 0x408460e8 _bss_end = ABSOLUTE (.) - -.dram0.bootdesc - 0x408460f0 0x50 - 0x408460f0 _data_start = ABSOLUTE (.) - *(.data_bootloader_desc .data_bootloader_desc.*) - .data_bootloader_desc - 0x408460f0 0x50 esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) - 0x408460f0 esp_bootloader_desc - -.dram0.data 0x40846140 0x8 - *(.dram1 .dram1.*) - .dram1.0 0x40846140 0x4 esp-idf/hal/libhal.a(lp_timer_hal.c.obj) - *(.data) - *(.data.*) - *(.gnu.linkonce.d.*) - *(.data1) - *(.sdata) - *(.sdata.*) - .sdata.current_read_mapping - 0x40846144 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - *(.gnu.linkonce.s.*) - *(.gnu.linkonce.s2.*) - *(.jcr) - 0x40846148 _data_end = ABSOLUTE (.) - -.dram0.rodata 0x40846148 0x11b4 - 0x40846148 _rodata_start = ABSOLUTE (.) - *(.rodata) - *(.rodata.*) - .rodata.call_start_cpu0.str1.4 - 0x40846148 0x11b3 esp-idf/main/libmain.a(bootloader_start.c.obj) - 0x31 (size before relaxing) - .rodata.log_invalid_app_partition.str1.4 - 0x408472fb 0x99 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .rodata.try_load_partition.str1.4 - 0x408472fb 0x37 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .rodata.set_actual_ota_seq.str1.4 - 0x408472fb 0x6e esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .rodata.load_image.str1.4 - 0x408472fb 0x33 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .rodata.bootloader_common_read_otadata.str1.4 - 0x408472fb 0x7e esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .rodata.bootloader_utility_load_partition_table.str1.4 - 0x408472fb 0x1fc esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .rodata.bootloader_utility_get_selected_boot_partition.str1.4 - 0x408472fb 0xec esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .rodata.bootloader_utility_load_boot_image.str1.4 - 0x408472fb 0xc3 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .rodata.esp_partition_table_verify.str1.4 - 0x408472fb 0x131 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - .rodata.process_segments.str1.4 - 0x408472fb 0x29e esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .rodata.image_load.str1.4 - 0x408472fb 0x192 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .rodata.bootloader_init.str1.4 - 0x408472fb 0x78 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32h2.c.obj) - .rodata.bootloader_common_check_chip_revision_validity.str1.4 - 0x408472fb 0xa3 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .rodata.bootloader_common_check_efuse_blk_validity.str1.4 - 0x408472fb 0x98 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .rodata.bootloader_common_check_chip_validity.str1.4 - 0x408472fb 0x35 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .rodata.bootloader_mmap.str1.4 - 0x408472fb 0x8d esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .rodata.bootloader_flash_read.str1.4 - 0x408472fb 0xc4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .rodata.bootloader_flash_write.str1.4 - 0x408472fb 0xcc esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .rodata.str1.4 - 0x408472fb 0x48 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .rodata.bootloader_init_spi_flash.str1.4 - 0x408472fb 0xe1 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) - .rodata.bootloader_read_bootloader_header.str1.4 - 0x408472fb 0x3d esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - .rodata.bootloader_check_bootloader_validity.str1.4 - 0x408472fb 0x4e esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - .rodata.bootloader_enable_random.str1.4 - 0x408472fb 0x32 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - .rodata.bootloader_print_banner.str1.4 - 0x408472fb 0x4d esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - .rodata.rtc_clk_init.str1.4 - 0x408472fb 0x39 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) - .rodata.rtc_clk_xtal_freq_get.str1.4 - 0x408472fb 0x43 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - *(.gnu.linkonce.r.*) - *(.rodata1) - *(.sdata2 .sdata2.* .srodata .srodata.*) - 0x408472fb __XT_EXCEPTION_TABLE_ = ABSOLUTE (.) - *(.xt_except_table) - *(.gcc_except_table) - *(.gnu.linkonce.e.*) - *(.gnu.version_r) - *(.eh_frame_hdr) - *(.eh_frame) - 0x4084759c . = ((. + 0x3) & 0xfffffffffffffffc) - *fill* 0x408472fb 0x1 - 0x408472fc __init_array_start = ABSOLUTE (.) - *crtbegin.*(.ctors) - *(EXCLUDE_FILE(*crtend.*) .ctors) - *(SORT_BY_NAME(.ctors.*)) - *(.ctors) - 0x408472fc __init_array_end = ABSOLUTE (.) - *crtbegin.*(.dtors) - *(EXCLUDE_FILE(*crtend.*) .dtors) - *(SORT_BY_NAME(.dtors.*)) - *(.dtors) - 0x408472fc __XT_EXCEPTION_DESCS_ = ABSOLUTE (.) - *(.xt_except_desc) - *(.gnu.linkonce.h.*) - 0x408472fc __XT_EXCEPTION_DESCS_END__ = ABSOLUTE (.) - *(.xt_except_desc_end) - *(.dynamic) - *(.gnu.version_d) - 0x408472fc _rodata_end = ABSOLUTE (.) - 0x408472fc _lit4_start = ABSOLUTE (.) - *(*.lit4) - *(.lit4.*) - *(.gnu.linkonce.lit4.*) - 0x408472fc _lit4_end = ABSOLUTE (.) - 0x408472fc . = ALIGN (0x4) - 0x408472fc _dram_end = ABSOLUTE (.) - -.iram.text 0x4083c2d0 0xefc - 0x4083c2d0 _stext = . - 0x4083c2d0 _text_start = ABSOLUTE (.) - *(.literal .text .literal.* .text.* .stub .gnu.warning .gnu.linkonce.literal.* .gnu.linkonce.t.*.literal .gnu.linkonce.t.*) - .text.esp_bootloader_get_description - 0x4083c2d0 0xa esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) - 0x4083c2d0 esp_bootloader_get_description - .text.call_start_cpu0 - 0x4083c2da 0x84 esp-idf/main/libmain.a(bootloader_start.c.obj) - 0x4083c2da call_start_cpu0 - .text.bootloader_init - 0x4083c35e 0x16e esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32h2.c.obj) - 0x4083c35e bootloader_init - .text.bootloader_clock_configure - 0x4083c4cc 0x148 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) - 0x4083c4cc bootloader_clock_configure - .text.bootloader_init_mem - 0x4083c614 0x2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - 0x4083c614 bootloader_init_mem - .text.bootloader_random_enable - 0x4083c616 0x19e esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32h2.c.obj) - 0x4083c616 bootloader_random_enable - .text.bootloader_flash_update_id - 0x4083c7b4 0x16 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) - 0x4083c7b4 bootloader_flash_update_id - .text.bootloader_init_spi_flash - 0x4083c7ca 0x1f6 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) - 0x4083c7ca bootloader_init_spi_flash - .text.bootloader_clear_bss_section - 0x4083c9c0 0x22 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - 0x4083c9c0 bootloader_clear_bss_section - .text.bootloader_read_bootloader_header - 0x4083c9e2 0x3c esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - 0x4083c9e2 bootloader_read_bootloader_header - .text.bootloader_check_bootloader_validity - 0x4083ca1e 0x76 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - 0x4083ca1e bootloader_check_bootloader_validity - .text.bootloader_config_wdt - 0x4083ca94 0xa8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - 0x4083ca94 bootloader_config_wdt - .text.bootloader_enable_random - 0x4083cb3c 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - 0x4083cb3c bootloader_enable_random - .text.bootloader_print_banner - 0x4083cb64 0x4e esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - 0x4083cb64 bootloader_print_banner - .text.bootloader_console_init - 0x4083cbb2 0xd6 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) - 0x4083cbb2 bootloader_console_init - .text.esp_cpu_configure_region_protection - 0x4083cc88 0x18c esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) - 0x4083cc88 esp_cpu_configure_region_protection - .text.rtc_clk_init - 0x4083ce14 0x176 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) - 0x4083ce14 rtc_clk_init - .text.get_act_hp_dbias - 0x4083cf8a 0x32 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - 0x4083cf8a get_act_hp_dbias - .text.get_act_lp_dbias - 0x4083cfbc 0x32 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - 0x4083cfbc get_act_lp_dbias - .text.wdt_hal_init - 0x4083cfee 0x1ce esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) - 0x4083cfee wdt_hal_init - *(.iram .iram.*) - *(.fini.literal) - *(.fini) - *(.gnu.version) - 0x4083d1cc . = (. + 0x10) - *fill* 0x4083d1bc 0x10 - 0x4083d1cc _text_end = ABSOLUTE (.) - 0x4083d1cc _etext = . - -.riscv.attributes - 0x00000000 0x60 - *(.riscv.attributes) - .riscv.attributes - 0x00000000 0x5c esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) - .riscv.attributes - 0x0000005c 0x5c esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) - .riscv.attributes - 0x000000b8 0x5c esp-idf/main/libmain.a(bootloader_start.c.obj) - .riscv.attributes - 0x00000114 0x5c esp-idf/riscv/libriscv.a(rv_utils.c.obj) - .riscv.attributes - 0x00000170 0x5c esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .riscv.attributes - 0x000001cc 0x5c esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - .riscv.attributes - 0x00000228 0x5c esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .riscv.attributes - 0x00000284 0x5c esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - .riscv.attributes - 0x000002e0 0x5c esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) - .riscv.attributes - 0x0000033c 0x5c esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) - .riscv.attributes - 0x00000398 0x5c esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32h2.c.obj) - .riscv.attributes - 0x000003f4 0x5c esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .riscv.attributes - 0x00000450 0x5c esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) - .riscv.attributes - 0x000004ac 0x5c esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - .riscv.attributes - 0x00000508 0x60 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) - .riscv.attributes - 0x00000568 0x5c esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .riscv.attributes - 0x000005c4 0x5c esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32h2.c.obj) - .riscv.attributes - 0x00000620 0x5c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .riscv.attributes - 0x0000067c 0x5c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) - .riscv.attributes - 0x000006d8 0x5c esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - .riscv.attributes - 0x00000734 0x5c esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) - .riscv.attributes - 0x00000790 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) - .riscv.attributes - 0x000007f0 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) - .riscv.attributes - 0x00000850 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .riscv.attributes - 0x000008ac 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - .riscv.attributes - 0x00000908 0x5c esp-idf/esp_rom/libesp_rom.a(esp_rom_regi2c_esp32h2.c.obj) - .riscv.attributes - 0x00000964 0x5c esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) - .riscv.attributes - 0x000009c0 0x60 esp-idf/log/liblog.a(log_timestamp.c.obj) - .riscv.attributes - 0x00000a20 0x5c esp-idf/hal/libhal.a(efuse_hal.c.obj) - .riscv.attributes - 0x00000a7c 0x5c esp-idf/hal/libhal.a(efuse_hal.c.obj) - .riscv.attributes - 0x00000ad8 0x5c esp-idf/hal/libhal.a(lp_timer_hal.c.obj) - .riscv.attributes - 0x00000b34 0x5c esp-idf/hal/libhal.a(mmu_hal.c.obj) - .riscv.attributes - 0x00000b90 0x5c esp-idf/hal/libhal.a(cache_hal.c.obj) - .riscv.attributes - 0x00000bec 0x5a C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(save-restore.o) - -.debug - *(.debug) - -.line - *(.line) - -.debug_srcinfo - *(.debug_srcinfo) - -.debug_sfnames - *(.debug_sfnames) - -.debug_aranges 0x00000000 0x950 - *(.debug_aranges) - .debug_aranges - 0x00000000 0x20 esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) - .debug_aranges - 0x00000020 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) - .debug_aranges - 0x00000048 0x28 esp-idf/main/libmain.a(bootloader_start.c.obj) - .debug_aranges - 0x00000070 0x20 esp-idf/riscv/libriscv.a(rv_utils.c.obj) - .debug_aranges - 0x00000090 0x90 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .debug_aranges - 0x00000120 0x20 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - .debug_aranges - 0x00000140 0x80 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .debug_aranges - 0x000001c0 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - .debug_aranges - 0x000001f0 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) - .debug_aranges - 0x00000210 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) - .debug_aranges - 0x00000238 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32h2.c.obj) - .debug_aranges - 0x00000258 0x58 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .debug_aranges - 0x000002b0 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) - .debug_aranges - 0x000002d0 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - .debug_aranges - 0x000002f0 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) - .debug_aranges - 0x00000310 0x40 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .debug_aranges - 0x00000350 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32h2.c.obj) - .debug_aranges - 0x00000378 0xb8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .debug_aranges - 0x00000430 0x48 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) - .debug_aranges - 0x00000478 0x48 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - .debug_aranges - 0x000004c0 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) - .debug_aranges - 0x000004e0 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) - .debug_aranges - 0x00000500 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) - .debug_aranges - 0x00000520 0x150 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .debug_aranges - 0x00000670 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - .debug_aranges - 0x000006d0 0x40 esp-idf/esp_rom/libesp_rom.a(esp_rom_regi2c_esp32h2.c.obj) - .debug_aranges - 0x00000710 0x28 esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) - .debug_aranges - 0x00000738 0x20 esp-idf/log/liblog.a(log_timestamp.c.obj) - .debug_aranges - 0x00000758 0x58 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .debug_aranges - 0x000007b0 0x60 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .debug_aranges - 0x00000810 0x38 esp-idf/hal/libhal.a(lp_timer_hal.c.obj) - .debug_aranges - 0x00000848 0x60 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .debug_aranges - 0x000008a8 0x88 esp-idf/hal/libhal.a(cache_hal.c.obj) - .debug_aranges - 0x00000930 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(save-restore.o) - -.debug_pubnames - *(.debug_pubnames) - -.debug_info 0x00000000 0x3cbed - *(.debug_info .gnu.linkonce.wi.*) - .debug_info 0x00000000 0x18e esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) - .debug_info 0x0000018e 0x161 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) - .debug_info 0x000002ef 0xd59 esp-idf/main/libmain.a(bootloader_start.c.obj) - .debug_info 0x00001048 0xd1 esp-idf/riscv/libriscv.a(rv_utils.c.obj) - .debug_info 0x00001119 0x2250 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .debug_info 0x00003369 0x676 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - .debug_info 0x000039df 0x2832 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .debug_info 0x00006211 0x3f8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - .debug_info 0x00006609 0xc6 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) - .debug_info 0x000066cf 0x133 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) - .debug_info 0x00006802 0x16b5 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32h2.c.obj) - .debug_info 0x00007eb7 0xb7a esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .debug_info 0x00008a31 0x35e esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) - .debug_info 0x00008d8f 0xa6 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - .debug_info 0x00008e35 0x28e esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) - .debug_info 0x000090c3 0xbf0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .debug_info 0x00009cb3 0x4db3 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32h2.c.obj) - .debug_info 0x0000ea66 0x5ae7 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .debug_info 0x0001454d 0x3e02 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) - .debug_info 0x0001834f 0x20fe esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - .debug_info 0x0001a44d 0x4dc6 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) - .debug_info 0x0001f213 0x364 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) - .debug_info 0x0001f577 0xbf9 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) - .debug_info 0x00020170 0x5412 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .debug_info 0x00025582 0x4872 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - .debug_info 0x00029df4 0x8f1 esp-idf/esp_rom/libesp_rom.a(esp_rom_regi2c_esp32h2.c.obj) - .debug_info 0x0002a6e5 0x5096 esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) - .debug_info 0x0002f77b 0x142 esp-idf/log/liblog.a(log_timestamp.c.obj) - .debug_info 0x0002f8bd 0x3907 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .debug_info 0x000331c4 0x3aa1 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .debug_info 0x00036c65 0x999 esp-idf/hal/libhal.a(lp_timer_hal.c.obj) - .debug_info 0x000375fe 0x4588 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .debug_info 0x0003bb86 0xf09 esp-idf/hal/libhal.a(cache_hal.c.obj) - .debug_info 0x0003ca8f 0x15e C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(save-restore.o) - -.debug_abbrev 0x00000000 0x5ac9 - *(.debug_abbrev) - .debug_abbrev 0x00000000 0xaa esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) - .debug_abbrev 0x000000aa 0xe3 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) - .debug_abbrev 0x0000018d 0x33b esp-idf/main/libmain.a(bootloader_start.c.obj) - .debug_abbrev 0x000004c8 0x7b esp-idf/riscv/libriscv.a(rv_utils.c.obj) - .debug_abbrev 0x00000543 0x527 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .debug_abbrev 0x00000a6a 0x23e esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - .debug_abbrev 0x00000ca8 0x547 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .debug_abbrev 0x000011ef 0x19f esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - .debug_abbrev 0x0000138e 0x89 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) - .debug_abbrev 0x00001417 0xd7 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) - .debug_abbrev 0x000014ee 0x364 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32h2.c.obj) - .debug_abbrev 0x00001852 0x2b9 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .debug_abbrev 0x00001b0b 0x12e esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) - .debug_abbrev 0x00001c39 0x65 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - .debug_abbrev 0x00001c9e 0x17c esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) - .debug_abbrev 0x00001e1a 0x369 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .debug_abbrev 0x00002183 0x3e0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32h2.c.obj) - .debug_abbrev 0x00002563 0x561 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .debug_abbrev 0x00002ac4 0x445 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) - .debug_abbrev 0x00002f09 0x35b esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - .debug_abbrev 0x00003264 0x367 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) - .debug_abbrev 0x000035cb 0x138 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) - .debug_abbrev 0x00003703 0x317 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) - .debug_abbrev 0x00003a1a 0x666 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .debug_abbrev 0x00004080 0x309 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - .debug_abbrev 0x00004389 0x1e3 esp-idf/esp_rom/libesp_rom.a(esp_rom_regi2c_esp32h2.c.obj) - .debug_abbrev 0x0000456c 0x3a9 esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) - .debug_abbrev 0x00004915 0xee esp-idf/log/liblog.a(log_timestamp.c.obj) - .debug_abbrev 0x00004a03 0x2ca esp-idf/hal/libhal.a(efuse_hal.c.obj) - .debug_abbrev 0x00004ccd 0x38f esp-idf/hal/libhal.a(efuse_hal.c.obj) - .debug_abbrev 0x0000505c 0x2b1 esp-idf/hal/libhal.a(lp_timer_hal.c.obj) - .debug_abbrev 0x0000530d 0x408 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .debug_abbrev 0x00005715 0x38c esp-idf/hal/libhal.a(cache_hal.c.obj) - .debug_abbrev 0x00005aa1 0x28 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(save-restore.o) - -.debug_line 0x00000000 0x16604 - *(.debug_line) - .debug_line 0x00000000 0x21a esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) - .debug_line 0x0000021a 0x23b esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) - .debug_line 0x00000455 0x6b3 esp-idf/main/libmain.a(bootloader_start.c.obj) - .debug_line 0x00000b08 0x1ff esp-idf/riscv/libriscv.a(rv_utils.c.obj) - .debug_line 0x00000d07 0x27ee esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .debug_line 0x000034f5 0x806 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - .debug_line 0x00003cfb 0x27f8 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .debug_line 0x000064f3 0x41b esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - .debug_line 0x0000690e 0x1f8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) - .debug_line 0x00006b06 0x272 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) - .debug_line 0x00006d78 0xaaf esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32h2.c.obj) - .debug_line 0x00007827 0xb12 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .debug_line 0x00008339 0x550 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) - .debug_line 0x00008889 0xe5 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - .debug_line 0x0000896e 0x54e esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) - .debug_line 0x00008ebc 0x116e esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .debug_line 0x0000a02a 0xa22 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32h2.c.obj) - .debug_line 0x0000aa4c 0x1dfd esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .debug_line 0x0000c849 0xcb6 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) - .debug_line 0x0000d4ff 0xbc0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - .debug_line 0x0000e0bf 0x58f esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) - .debug_line 0x0000e64e 0x741 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) - .debug_line 0x0000ed8f 0x89c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) - .debug_line 0x0000f62b 0x1d7b esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .debug_line 0x000113a6 0x7fd esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - .debug_line 0x00011ba3 0x83f esp-idf/esp_rom/libesp_rom.a(esp_rom_regi2c_esp32h2.c.obj) - .debug_line 0x000123e2 0xce0 esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) - .debug_line 0x000130c2 0x2d6 esp-idf/log/liblog.a(log_timestamp.c.obj) - .debug_line 0x00013398 0x533 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .debug_line 0x000138cb 0x790 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .debug_line 0x0001405b 0x456 esp-idf/hal/libhal.a(lp_timer_hal.c.obj) - .debug_line 0x000144b1 0x149a esp-idf/hal/libhal.a(mmu_hal.c.obj) - .debug_line 0x0001594b 0xb5a esp-idf/hal/libhal.a(cache_hal.c.obj) - .debug_line 0x000164a5 0x15f C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(save-restore.o) - -.debug_frame 0x00000000 0x1748 - *(.debug_frame) - .debug_frame 0x00000000 0x20 esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) - .debug_frame 0x00000020 0x38 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) - .debug_frame 0x00000058 0x3c esp-idf/main/libmain.a(bootloader_start.c.obj) - .debug_frame 0x00000094 0x20 esp-idf/riscv/libriscv.a(rv_utils.c.obj) - .debug_frame 0x000000b4 0x240 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .debug_frame 0x000002f4 0x50 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - .debug_frame 0x00000344 0x1ac esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .debug_frame 0x000004f0 0x64 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - .debug_frame 0x00000554 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) - .debug_frame 0x00000574 0x3c esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) - .debug_frame 0x000005b0 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32h2.c.obj) - .debug_frame 0x000005e0 0x10c esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .debug_frame 0x000006ec 0x34 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) - .debug_frame 0x00000720 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - .debug_frame 0x00000740 0x3c esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) - .debug_frame 0x0000077c 0xac esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .debug_frame 0x00000828 0x5c esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32h2.c.obj) - .debug_frame 0x00000884 0x278 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .debug_frame 0x00000afc 0xa8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) - .debug_frame 0x00000ba4 0xc0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - .debug_frame 0x00000c64 0x34 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) - .debug_frame 0x00000c98 0x34 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) - .debug_frame 0x00000ccc 0x3c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) - .debug_frame 0x00000d08 0x394 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .debug_frame 0x0000109c 0x10c esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - .debug_frame 0x000011a8 0xc4 esp-idf/esp_rom/libesp_rom.a(esp_rom_regi2c_esp32h2.c.obj) - .debug_frame 0x0000126c 0x50 esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) - .debug_frame 0x000012bc 0x2c esp-idf/log/liblog.a(log_timestamp.c.obj) - .debug_frame 0x000012e8 0x9c esp-idf/hal/libhal.a(efuse_hal.c.obj) - .debug_frame 0x00001384 0xc8 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .debug_frame 0x0000144c 0x60 esp-idf/hal/libhal.a(lp_timer_hal.c.obj) - .debug_frame 0x000014ac 0x124 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .debug_frame 0x000015d0 0x178 esp-idf/hal/libhal.a(cache_hal.c.obj) - -.debug_str 0x00000000 0x112f7 - *(.debug_str) - .debug_str 0x00000000 0x112f7 esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) - 0x307 (size before relaxing) - .debug_str 0x000112f7 0x2d7 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) - .debug_str 0x000112f7 0xafb esp-idf/main/libmain.a(bootloader_start.c.obj) - .debug_str 0x000112f7 0x28d esp-idf/riscv/libriscv.a(rv_utils.c.obj) - .debug_str 0x000112f7 0x19bf esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .debug_str 0x000112f7 0x578 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - .debug_str 0x000112f7 0x1a40 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .debug_str 0x000112f7 0x418 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - .debug_str 0x000112f7 0x29c esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) - .debug_str 0x000112f7 0x2d3 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) - .debug_str 0x000112f7 0x1d11 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32h2.c.obj) - .debug_str 0x000112f7 0x112d esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .debug_str 0x000112f7 0x72e esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) - .debug_str 0x000112f7 0x28b esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - .debug_str 0x000112f7 0x362 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) - .debug_str 0x000112f7 0xc00 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .debug_str 0x000112f7 0x3448 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32h2.c.obj) - .debug_str 0x000112f7 0x3d19 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .debug_str 0x000112f7 0x31da esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) - .debug_str 0x000112f7 0x1d0b esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - .debug_str 0x000112f7 0x2b7d esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) - .debug_str 0x000112f7 0x357 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) - .debug_str 0x000112f7 0x14d7 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) - .debug_str 0x000112f7 0x3e8a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .debug_str 0x000112f7 0x33a3 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - .debug_str 0x000112f7 0x6ba esp-idf/esp_rom/libesp_rom.a(esp_rom_regi2c_esp32h2.c.obj) - .debug_str 0x000112f7 0x2e4f esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) - .debug_str 0x000112f7 0x2d8 esp-idf/log/liblog.a(log_timestamp.c.obj) - .debug_str 0x000112f7 0x29f6 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .debug_str 0x000112f7 0x2afa esp-idf/hal/libhal.a(efuse_hal.c.obj) - .debug_str 0x000112f7 0x5dd esp-idf/hal/libhal.a(lp_timer_hal.c.obj) - .debug_str 0x000112f7 0x2b58 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .debug_str 0x000112f7 0x742 esp-idf/hal/libhal.a(cache_hal.c.obj) - .debug_str 0x000112f7 0x2a2 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(save-restore.o) - -.debug_loc 0x00000000 0x9610 - *(.debug_loc) - .debug_loc 0x00000000 0xc7 esp-idf/main/libmain.a(bootloader_start.c.obj) - .debug_loc 0x000000c7 0x1202 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .debug_loc 0x000012c9 0x15e esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - .debug_loc 0x00001427 0x2484 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .debug_loc 0x000038ab 0x17d esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - .debug_loc 0x00003a28 0x32 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) - .debug_loc 0x00003a5a 0x7b esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32h2.c.obj) - .debug_loc 0x00003ad5 0x3c6 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .debug_loc 0x00003e9b 0x19c esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) - .debug_loc 0x00004037 0x1ec esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .debug_loc 0x00004223 0x357 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32h2.c.obj) - .debug_loc 0x0000457a 0x1439 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .debug_loc 0x000059b3 0x122 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) - .debug_loc 0x00005ad5 0xf7 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - .debug_loc 0x00005bcc 0x65 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) - .debug_loc 0x00005c31 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) - .debug_loc 0x00005c79 0xbc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) - .debug_loc 0x00005d35 0xb7a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .debug_loc 0x000068af 0x268 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - .debug_loc 0x00006b17 0x6c6 esp-idf/esp_rom/libesp_rom.a(esp_rom_regi2c_esp32h2.c.obj) - .debug_loc 0x000071dd 0x4a7 esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) - .debug_loc 0x00007684 0x9b esp-idf/hal/libhal.a(efuse_hal.c.obj) - .debug_loc 0x0000771f 0x182 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .debug_loc 0x000078a1 0x175 esp-idf/hal/libhal.a(lp_timer_hal.c.obj) - .debug_loc 0x00007a16 0xf37 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .debug_loc 0x0000894d 0xcc3 esp-idf/hal/libhal.a(cache_hal.c.obj) - -.debug_macinfo - *(.debug_macinfo) - -.debug_pubtypes - *(.debug_pubtypes) - -.debug_ranges 0x00000000 0x1d60 - *(.debug_ranges) - .debug_ranges 0x00000000 0x10 esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) - .debug_ranges 0x00000010 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) - .debug_ranges 0x00000028 0x30 esp-idf/main/libmain.a(bootloader_start.c.obj) - .debug_ranges 0x00000058 0x10 esp-idf/riscv/libriscv.a(rv_utils.c.obj) - .debug_ranges 0x00000068 0x220 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .debug_ranges 0x00000288 0x70 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - .debug_ranges 0x000002f8 0x410 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .debug_ranges 0x00000708 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - .debug_ranges 0x00000728 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) - .debug_ranges 0x00000738 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) - .debug_ranges 0x00000750 0x70 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32h2.c.obj) - .debug_ranges 0x000007c0 0x48 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .debug_ranges 0x00000808 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) - .debug_ranges 0x00000818 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - .debug_ranges 0x00000828 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) - .debug_ranges 0x00000868 0x90 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .debug_ranges 0x000008f8 0x1e8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32h2.c.obj) - .debug_ranges 0x00000ae0 0x278 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .debug_ranges 0x00000d58 0xb8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) - .debug_ranges 0x00000e10 0x38 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - .debug_ranges 0x00000e48 0x50 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) - .debug_ranges 0x00000e98 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) - .debug_ranges 0x00000ec0 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) - .debug_ranges 0x00000ee8 0x450 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .debug_ranges 0x00001338 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - .debug_ranges 0x00001388 0x30 esp-idf/esp_rom/libesp_rom.a(esp_rom_regi2c_esp32h2.c.obj) - .debug_ranges 0x000013b8 0x298 esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) - .debug_ranges 0x00001650 0x10 esp-idf/log/liblog.a(log_timestamp.c.obj) - .debug_ranges 0x00001660 0x98 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .debug_ranges 0x000016f8 0xa0 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .debug_ranges 0x00001798 0x88 esp-idf/hal/libhal.a(lp_timer_hal.c.obj) - .debug_ranges 0x00001820 0x3d0 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .debug_ranges 0x00001bf0 0x170 esp-idf/hal/libhal.a(cache_hal.c.obj) - -.debug_weaknames - *(.debug_weaknames) - -.debug_funcnames - *(.debug_funcnames) - -.debug_typenames - *(.debug_typenames) - -.debug_varnames - *(.debug_varnames) - -.debug_gnu_pubnames - *(.debug_gnu_pubnames) - -.debug_gnu_pubtypes - *(.debug_gnu_pubtypes) - -.debug_types - *(.debug_types) - -.debug_addr - *(.debug_addr) - -.debug_line_str - 0x00000000 0xe1 - *(.debug_line_str) - .debug_line_str - 0x00000000 0xe1 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(save-restore.o) - -.debug_loclists - *(.debug_loclists) - -.debug_macro - *(.debug_macro) - -.debug_names - *(.debug_names) - -.debug_rnglists - *(.debug_rnglists) - -.debug_str_offsets - *(.debug_str_offsets) - -.comment 0x00000000 0x2f - *(.comment) - .comment 0x00000000 0x2f esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) - 0x30 (size before relaxing) - .comment 0x0000002f 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) - .comment 0x0000002f 0x30 esp-idf/main/libmain.a(bootloader_start.c.obj) - .comment 0x0000002f 0x30 esp-idf/riscv/libriscv.a(rv_utils.c.obj) - .comment 0x0000002f 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .comment 0x0000002f 0x30 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - .comment 0x0000002f 0x30 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .comment 0x0000002f 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - .comment 0x0000002f 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) - .comment 0x0000002f 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) - .comment 0x0000002f 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32h2.c.obj) - .comment 0x0000002f 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .comment 0x0000002f 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) - .comment 0x0000002f 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - .comment 0x0000002f 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) - .comment 0x0000002f 0x30 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .comment 0x0000002f 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32h2.c.obj) - .comment 0x0000002f 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .comment 0x0000002f 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) - .comment 0x0000002f 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - .comment 0x0000002f 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) - .comment 0x0000002f 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) - .comment 0x0000002f 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) - .comment 0x0000002f 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .comment 0x0000002f 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - .comment 0x0000002f 0x30 esp-idf/esp_rom/libesp_rom.a(esp_rom_regi2c_esp32h2.c.obj) - .comment 0x0000002f 0x30 esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) - .comment 0x0000002f 0x30 esp-idf/log/liblog.a(log_timestamp.c.obj) - .comment 0x0000002f 0x30 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .comment 0x0000002f 0x30 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .comment 0x0000002f 0x30 esp-idf/hal/libhal.a(lp_timer_hal.c.obj) - .comment 0x0000002f 0x30 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .comment 0x0000002f 0x30 esp-idf/hal/libhal.a(cache_hal.c.obj) - -.note.GNU-stack - 0x00000000 0x0 - *(.note.GNU-stack) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/main/libmain.a(bootloader_start.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/riscv/libriscv.a(rv_utils.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32h2.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32h2.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_regi2c_esp32h2.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/log/liblog.a(log_timestamp.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/hal/libhal.a(lp_timer_hal.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/hal/libhal.a(cache_hal.c.obj) - -/DISCARD/ - *(.rela.*) - -.noload 0x00000000 0x0 - 0x00000000 _noload_keep_in_elf_start = ABSOLUTE (.) - *(.noload_keep_in_elf .noload_keep_in_elf.*) - 0x00000000 _noload_keep_in_elf_end = ABSOLUTE (.) -OUTPUT(bootloader.elf elf32-littleriscv) - -Cross Reference Table - -Symbol File -APB_SARADC esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32h2.c.obj) -Cache_Disable_ICache esp-idf/hal/libhal.a(cache_hal.c.obj) -Cache_Enable_ICache esp-idf/hal/libhal.a(cache_hal.c.obj) -Cache_Freeze_ICache_Disable esp-idf/hal/libhal.a(cache_hal.c.obj) -Cache_Freeze_ICache_Enable esp-idf/hal/libhal.a(cache_hal.c.obj) -Cache_Get_ICache_Line_Size esp-idf/hal/libhal.a(cache_hal.c.obj) -Cache_Invalidate_Addr esp-idf/hal/libhal.a(cache_hal.c.obj) -Cache_Resume_ICache esp-idf/hal/libhal.a(cache_hal.c.obj) -Cache_Suspend_ICache esp-idf/hal/libhal.a(cache_hal.c.obj) -EFUSE esp-idf/hal/libhal.a(mmu_hal.c.obj) - esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) -ESP_EFUSE_ACTIVE_HP_DBIAS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_ACTIVE_LP_DBIAS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_ADC1_AVE_INITCODE_ATTEN0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_ADC1_AVE_INITCODE_ATTEN1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_ADC1_AVE_INITCODE_ATTEN2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_ADC1_AVE_INITCODE_ATTEN3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_ADC1_CH0_ATTEN0_INITCODE_DIFF esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_ADC1_CH1_ATTEN0_INITCODE_DIFF esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_ADC1_CH2_ATTEN0_INITCODE_DIFF esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_ADC1_CH3_ATTEN0_INITCODE_DIFF esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_ADC1_CH4_ATTEN0_INITCODE_DIFF esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_ADC1_HI_DOUT_ATTEN0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_ADC1_HI_DOUT_ATTEN1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_ADC1_HI_DOUT_ATTEN2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_ADC1_HI_DOUT_ATTEN3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_BLK_VERSION_MAJOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_BLK_VERSION_MINOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_CRYPT_DPA_ENABLE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_DBIAS_VOL_GAP esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_DISABLE_BLK_VERSION_MAJOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_DISABLE_WAFER_VERSION_MAJOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_DIS_DIRECT_BOOT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -ESP_EFUSE_DIS_DOWNLOAD_MANUAL_ENCRYPT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -ESP_EFUSE_DIS_DOWNLOAD_MODE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) -ESP_EFUSE_DIS_FORCE_DOWNLOAD esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_DIS_ICACHE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_DIS_PAD_JTAG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -ESP_EFUSE_DIS_TWAI esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_DIS_USB_JTAG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -ESP_EFUSE_DIS_USB_SERIAL_JTAG_DOWNLOAD_MODE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_DIS_USB_SERIAL_JTAG_ROM_PRINT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_DSLP_DBIAS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_ECC_FORCE_CONST_TIME esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_ECDSA_CURVE_MODE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_ECDSA_FORCE_USE_HARDWARE_K esp-idf/efuse/libefuse.a(esp_efuse_table_v0.0_v1.1.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_ENABLE_SECURITY_DOWNLOAD esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) -ESP_EFUSE_FLASH_CAP esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_FLASH_TEMP esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_FLASH_TPUW esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_FLASH_VENDOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_FORCE_SEND_RESUME esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_HYS_EN_PAD0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_HYS_EN_PAD1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_JTAG_SEL_ENABLE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_KEY0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_KEY1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_KEY2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_KEY3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_KEY4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_KEY5 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_KEY_PURPOSE_0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_KEY_PURPOSE_1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_KEY_PURPOSE_2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_KEY_PURPOSE_3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_KEY_PURPOSE_4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_KEY_PURPOSE_5 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_MAC esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_MAC_EXT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_OPTIONAL_UNIQUE_ID esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_PKG_VERSION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) -ESP_EFUSE_POWERGLITCH_EN esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_POWERGLITCH_EN1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_RD_DIS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_RD_DIS_BLOCK_KEY0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_RD_DIS_BLOCK_KEY1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_RD_DIS_BLOCK_KEY2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_RD_DIS_BLOCK_KEY3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_RD_DIS_BLOCK_KEY4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_RD_DIS_BLOCK_KEY5 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_RD_DIS_BLOCK_SYS_DATA2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_RXIQ_0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_RXIQ_1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_RXIQ_VERSION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_SECURE_BOOT_AGGRESSIVE_REVOKE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_SECURE_BOOT_DISABLE_FAST_WAKE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_SECURE_BOOT_EN esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_SECURE_BOOT_KEY_REVOKE0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_SECURE_BOOT_KEY_REVOKE1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_SECURE_BOOT_KEY_REVOKE2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_SECURE_VERSION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_SEC_DPA_LEVEL esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_SOFT_DIS_JTAG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -ESP_EFUSE_SPI_BOOT_CRYPT_CNT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -ESP_EFUSE_SPI_DOWNLOAD_MSPI_DIS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_SYS_DATA_PART2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_TEMP_CALIB esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_UART_PRINT_CONTROL esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) -ESP_EFUSE_USB_EXCHG_PINS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_USER_DATA esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_USER_DATA_MAC_CUSTOM esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_VDD_SPI_AS_GPIO esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WAFER_VERSION_MAJOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WAFER_VERSION_MINOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WDT_DELAY_SEL esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_ACTIVE_HP_DBIAS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_ACTIVE_LP_DBIAS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_ADC1_AVE_INITCODE_ATTEN0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_ADC1_AVE_INITCODE_ATTEN1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_ADC1_AVE_INITCODE_ATTEN2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_ADC1_AVE_INITCODE_ATTEN3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_ADC1_CH0_ATTEN0_INITCODE_DIFF esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_ADC1_CH1_ATTEN0_INITCODE_DIFF esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_ADC1_CH2_ATTEN0_INITCODE_DIFF esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_ADC1_CH3_ATTEN0_INITCODE_DIFF esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_ADC1_CH4_ATTEN0_INITCODE_DIFF esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_ADC1_HI_DOUT_ATTEN0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_ADC1_HI_DOUT_ATTEN1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_ADC1_HI_DOUT_ATTEN2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_ADC1_HI_DOUT_ATTEN3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_BLK1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_BLK_VERSION_MAJOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_BLK_VERSION_MINOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_BLOCK_KEY0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_BLOCK_KEY1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_BLOCK_KEY2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_BLOCK_KEY3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_BLOCK_KEY4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_BLOCK_KEY5 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_BLOCK_SYS_DATA2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_BLOCK_USR_DATA esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_CRYPT_DPA_ENABLE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_CUSTOM_MAC esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_DBIAS_VOL_GAP esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_DISABLE_BLK_VERSION_MAJOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_DISABLE_WAFER_VERSION_MAJOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_DIS_DIRECT_BOOT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_DIS_DOWNLOAD_MANUAL_ENCRYPT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_DIS_DOWNLOAD_MODE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_DIS_FORCE_DOWNLOAD esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_DIS_ICACHE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -ESP_EFUSE_WR_DIS_DIS_PAD_JTAG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_DIS_TWAI esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_DIS_USB_JTAG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_DIS_USB_SERIAL_JTAG_DOWNLOAD_MODE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_DIS_USB_SERIAL_JTAG_ROM_PRINT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_DSLP_DBIAS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_ECC_FORCE_CONST_TIME esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_ECDSA_CURVE_MODE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_ECDSA_FORCE_USE_HARDWARE_K esp-idf/efuse/libefuse.a(esp_efuse_table_v0.0_v1.1.c.obj) -ESP_EFUSE_WR_DIS_ENABLE_SECURITY_DOWNLOAD esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_FLASH_CAP esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_FLASH_TEMP esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_FLASH_TPUW esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_FLASH_VENDOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_FORCE_SEND_RESUME esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_HYS_EN_PAD0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_HYS_EN_PAD1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_JTAG_SEL_ENABLE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_KEY_PURPOSE_0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_KEY_PURPOSE_1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_KEY_PURPOSE_2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_KEY_PURPOSE_3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_KEY_PURPOSE_4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_KEY_PURPOSE_5 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_MAC esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_MAC_EXT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_OPTIONAL_UNIQUE_ID esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_PKG_VERSION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_POWERGLITCH_EN esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_POWERGLITCH_EN1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_RD_DIS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -ESP_EFUSE_WR_DIS_RXIQ_0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_RXIQ_1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_RXIQ_VERSION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_SECURE_BOOT_AGGRESSIVE_REVOKE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_SECURE_BOOT_DISABLE_FAST_WAKE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_SECURE_BOOT_EN esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_SECURE_BOOT_KEY_REVOKE0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_SECURE_BOOT_KEY_REVOKE1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_SECURE_BOOT_KEY_REVOKE2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_SECURE_VERSION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_SEC_DPA_LEVEL esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_SOFT_DIS_JTAG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_SPI_BOOT_CRYPT_CNT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -ESP_EFUSE_WR_DIS_SPI_DOWNLOAD_MSPI_DIS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_SYS_DATA_PART1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_TEMP_CALIB esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_UART_PRINT_CONTROL esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_USB_EXCHG_PINS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_VDD_SPI_AS_GPIO esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_WAFER_VERSION_MAJOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_WAFER_VERSION_MINOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_WDT_DELAY_SEL esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_XTS_DPA_PSEUDO_LEVEL esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_XTS_DPA_PSEUDO_LEVEL esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -LP_ANA_PERI esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32h2.c.obj) -LP_CLKRST esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) -LP_TIMER esp-idf/hal/libhal.a(lp_timer_hal.c.obj) -LP_WDT esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) -MODEM_LPCON esp-idf/esp_rom/libesp_rom.a(esp_rom_regi2c_esp32h2.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32h2.c.obj) -PCR esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32h2.c.obj) -ROM_Boot_Cache_Init esp-idf/hal/libhal.a(mmu_hal.c.obj) -SPIMEM0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) -SPIMEM1 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) -TIMERG0 esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) -TIMERG1 esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) -UART0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) -__ashldi3 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ashldi3.o) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -__assert_func esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) - esp-idf/esp_rom/libesp_rom.a(esp_rom_regi2c_esp32h2.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32h2.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -__clz_tab C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clz.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_udivdi3.o) -__getreent esp-idf/main/libmain.a(bootloader_start.c.obj) -__lshrdi3 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_lshrdi3.o) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -__popcountsi2 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_popcountsi2.o) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -__riscv_restore_0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(save-restore.o) - esp-idf/hal/libhal.a(cache_hal.c.obj) - esp-idf/hal/libhal.a(mmu_hal.c.obj) - esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) -__riscv_restore_1 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(save-restore.o) - esp-idf/hal/libhal.a(cache_hal.c.obj) - esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/log/liblog.a(log_timestamp.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32h2.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32h2.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -__riscv_restore_10 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(save-restore.o) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -__riscv_restore_11 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(save-restore.o) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) -__riscv_restore_12 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(save-restore.o) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) -__riscv_restore_2 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(save-restore.o) - esp-idf/esp_rom/libesp_rom.a(esp_rom_regi2c_esp32h2.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32h2.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -__riscv_restore_3 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(save-restore.o) - esp-idf/esp_rom/libesp_rom.a(esp_rom_regi2c_esp32h2.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -__riscv_restore_4 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(save-restore.o) - esp-idf/hal/libhal.a(mmu_hal.c.obj) - esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) - esp-idf/esp_rom/libesp_rom.a(esp_rom_regi2c_esp32h2.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) -__riscv_restore_5 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(save-restore.o) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) -__riscv_restore_6 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(save-restore.o) - esp-idf/hal/libhal.a(mmu_hal.c.obj) - esp-idf/esp_rom/libesp_rom.a(esp_rom_regi2c_esp32h2.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) -__riscv_restore_7 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(save-restore.o) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) -__riscv_restore_8 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(save-restore.o) -__riscv_restore_9 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(save-restore.o) - esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -__riscv_save_0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(save-restore.o) - esp-idf/hal/libhal.a(cache_hal.c.obj) - esp-idf/hal/libhal.a(mmu_hal.c.obj) - esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/esp_rom/libesp_rom.a(esp_rom_regi2c_esp32h2.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - esp-idf/main/libmain.a(bootloader_start.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) -__riscv_save_1 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(save-restore.o) - esp-idf/hal/libhal.a(cache_hal.c.obj) - esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/log/liblog.a(log_timestamp.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32h2.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32h2.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -__riscv_save_10 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(save-restore.o) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -__riscv_save_11 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(save-restore.o) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) -__riscv_save_12 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(save-restore.o) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) -__riscv_save_2 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(save-restore.o) - esp-idf/esp_rom/libesp_rom.a(esp_rom_regi2c_esp32h2.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32h2.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -__riscv_save_3 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(save-restore.o) - esp-idf/esp_rom/libesp_rom.a(esp_rom_regi2c_esp32h2.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -__riscv_save_4 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(save-restore.o) - esp-idf/hal/libhal.a(mmu_hal.c.obj) - esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) - esp-idf/esp_rom/libesp_rom.a(esp_rom_regi2c_esp32h2.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -__riscv_save_5 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(save-restore.o) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) -__riscv_save_6 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(save-restore.o) - esp-idf/hal/libhal.a(mmu_hal.c.obj) - esp-idf/esp_rom/libesp_rom.a(esp_rom_regi2c_esp32h2.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) -__riscv_save_7 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(save-restore.o) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) -__riscv_save_8 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(save-restore.o) -__riscv_save_9 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(save-restore.o) - esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -__sf C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-impure.o) -__udivdi3 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_udivdi3.o) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) -_bss_end esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32h2.c.obj) -_bss_start esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32h2.c.obj) -_data_end esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32h2.c.obj) -_data_start esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32h2.c.obj) -_dram_end esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) -_dram_start esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) -_impure_data C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-impure.o) - esp-idf/main/libmain.a(bootloader_start.c.obj) -_impure_ptr C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-impure.o) -abort esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) - esp-idf/hal/libhal.a(cache_hal.c.obj) - esp-idf/hal/libhal.a(mmu_hal.c.obj) - esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_after_init esp-idf/main/libmain.a(bootloader_start.c.obj) -bootloader_ana_clock_glitch_reset_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_ana_super_wdt_reset_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32h2.c.obj) -bootloader_atexit esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_before_init esp-idf/main/libmain.a(bootloader_start.c.obj) -bootloader_check_bootloader_validity esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32h2.c.obj) -bootloader_clear_bss_section esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32h2.c.obj) -bootloader_clock_configure esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32h2.c.obj) -bootloader_common_check_chip_revision_validity esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) -bootloader_common_check_chip_validity esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) -bootloader_common_check_efuse_blk_validity esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) -bootloader_common_get_active_otadata esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_common_get_partition_description esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_common_ota_select_crc esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_common_ota_select_invalid esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_common_ota_select_valid esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) -bootloader_common_read_otadata esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_common_select_otadata esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) -bootloader_config_wdt esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32h2.c.obj) -bootloader_configure_spi_pins esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) -bootloader_console_deinit esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_console_init esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32h2.c.obj) -bootloader_debug_buffer esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) -bootloader_enable_random esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32h2.c.obj) -bootloader_enable_wp esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) -bootloader_execute_flash_command esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) -bootloader_fill_random esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) -bootloader_flash_clock_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) -bootloader_flash_cs_timing_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) -bootloader_flash_erase_range esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) -bootloader_flash_erase_sector esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_flash_execute_command_common esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) -bootloader_flash_get_spi_mode esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) -bootloader_flash_is_octal_mode_enabled esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) -bootloader_flash_read esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) -bootloader_flash_read_sfdp esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) -bootloader_flash_reset_chip esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) -bootloader_flash_unlock esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) -bootloader_flash_unlock_default esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) -bootloader_flash_update_id esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32h2.c.obj) -bootloader_flash_update_size esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) -bootloader_flash_write esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_flash_xmc_startup esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32h2.c.obj) -bootloader_image_hdr esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) -bootloader_init esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32h2.c.obj) - esp-idf/main/libmain.a(bootloader_start.c.obj) -bootloader_init_mem esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32h2.c.obj) -bootloader_init_spi_flash esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32h2.c.obj) -bootloader_load_image esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_load_image_no_verify esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) -bootloader_mmap esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_mmap_get_free_pages esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_munmap esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_print_banner esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32h2.c.obj) -bootloader_random_disable esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32h2.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_random_enable esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32h2.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) -bootloader_read_bootloader_header esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32h2.c.obj) -bootloader_read_flash_id esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) -bootloader_reset esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - esp-idf/main/libmain.a(bootloader_start.c.obj) -bootloader_sha256_data esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_sha256_finish esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_sha256_flash_contents esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_sha256_hex_to_str esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_sha256_start esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_spi_flash_reset esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) -bootloader_utility_get_selected_boot_partition esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - esp-idf/main/libmain.a(bootloader_start.c.obj) -bootloader_utility_load_boot_image esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - esp-idf/main/libmain.a(bootloader_start.c.obj) -bootloader_utility_load_partition_table esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - esp-idf/main/libmain.a(bootloader_start.c.obj) -cache_hal_disable esp-idf/hal/libhal.a(cache_hal.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -cache_hal_enable esp-idf/hal/libhal.a(cache_hal.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -cache_hal_freeze esp-idf/hal/libhal.a(cache_hal.c.obj) -cache_hal_get_cache_line_size esp-idf/hal/libhal.a(cache_hal.c.obj) -cache_hal_init esp-idf/hal/libhal.a(cache_hal.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32h2.c.obj) -cache_hal_invalidate_addr esp-idf/hal/libhal.a(cache_hal.c.obj) -cache_hal_is_cache_enabled esp-idf/hal/libhal.a(cache_hal.c.obj) -cache_hal_resume esp-idf/hal/libhal.a(cache_hal.c.obj) -cache_hal_suspend esp-idf/hal/libhal.a(cache_hal.c.obj) -cache_hal_unfreeze esp-idf/hal/libhal.a(cache_hal.c.obj) -cache_hal_vaddr_to_cache_level_id esp-idf/hal/libhal.a(cache_hal.c.obj) -call_start_cpu0 esp-idf/main/libmain.a(bootloader_start.c.obj) -efuse_hal_blk_version esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) -efuse_hal_chip_revision esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) -efuse_hal_clear_program_registers esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -efuse_hal_flash_encryption_enabled esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -efuse_hal_get_chip_ver_pkg esp-idf/hal/libhal.a(efuse_hal.c.obj) -efuse_hal_get_disable_blk_version_major esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) -efuse_hal_get_disable_wafer_version_major esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) -efuse_hal_get_ecdsa_curve_mode esp-idf/hal/libhal.a(efuse_hal.c.obj) -efuse_hal_get_mac esp-idf/hal/libhal.a(efuse_hal.c.obj) -efuse_hal_get_major_chip_version esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/hal/libhal.a(efuse_hal.c.obj) -efuse_hal_get_minor_chip_version esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/hal/libhal.a(efuse_hal.c.obj) -efuse_hal_is_coding_error_in_block esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -efuse_hal_program esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -efuse_hal_read esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -efuse_hal_rs_calculate esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -efuse_hal_set_ecdsa_key esp-idf/hal/libhal.a(efuse_hal.c.obj) -efuse_hal_set_timing esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -esp_bootloader_desc esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) -esp_bootloader_get_description esp-idf/esp_bootloader_format/libesp_bootloader_format.a(esp_bootloader_desc.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) -esp_cpu_configure_region_protection esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) -esp_efuse_batch_write_begin esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -esp_efuse_batch_write_cancel esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_batch_write_commit esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -esp_efuse_block_is_empty esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_check_errors esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_count_unused_key_blocks esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_destroy_block esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_disable_rom_download_mode esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) -esp_efuse_enable_rom_secure_download_mode esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -esp_efuse_find_purpose esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -esp_efuse_find_unused_key_block esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_get_coding_scheme esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -esp_efuse_get_digest_revoke esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_get_field_size esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -esp_efuse_get_key esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_get_key_dis_read esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -esp_efuse_get_key_dis_write esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -esp_efuse_get_key_purpose esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_get_keypurpose_dis_write esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -esp_efuse_get_pkg_ver esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) -esp_efuse_get_purpose_field esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_get_write_protect_of_digest_revoke esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_key_block_unused esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_read_block esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_read_field_bit esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -esp_efuse_read_field_blob esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -esp_efuse_read_field_cnt esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -esp_efuse_read_reg esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_set_digest_revoke esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_set_key_dis_read esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_set_key_dis_write esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_set_key_purpose esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_set_keypurpose_dis_write esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_set_read_protect esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_set_rom_log_scheme esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) -esp_efuse_set_write_protect esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_set_write_protect_of_digest_revoke esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_utility_apply_new_coding_scheme esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_utility_burn_chip esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -esp_efuse_utility_burn_chip_opt esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_utility_burn_efuses esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_utility_check_errors esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_utility_clear_program_registers esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -esp_efuse_utility_count_once esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_utility_debug_dump_blocks esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -esp_efuse_utility_debug_dump_pending esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -esp_efuse_utility_debug_dump_single_block esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -esp_efuse_utility_erase_virt_blocks esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -esp_efuse_utility_fill_buff esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_utility_get_number_of_items esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_utility_get_read_register_address esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_utility_is_correct_written_data esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -esp_efuse_utility_process esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_utility_read_reg esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -esp_efuse_utility_reset esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_utility_update_virt_blocks esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -esp_efuse_utility_write_blob esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_utility_write_cnt esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_utility_write_reg esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_write_block esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_write_field_bit esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -esp_efuse_write_field_blob esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -esp_efuse_write_field_cnt esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -esp_efuse_write_key esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_write_keys esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_write_reg esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_flash_encryption_cfg_verify_release_mode esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -esp_flash_encryption_enabled esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -esp_flash_encryption_set_release_mode esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -esp_flash_write_protect_crypt_cnt esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -esp_get_flash_encryption_mode esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -esp_image_bootloader_offset_get esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) -esp_image_bootloader_offset_set esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) -esp_image_get_flash_size esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) -esp_image_get_metadata esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) -esp_image_verify esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) -esp_image_verify_bootloader esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) -esp_image_verify_bootloader_data esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) -esp_log_early_timestamp esp-idf/log/liblog.a(log_timestamp.c.obj) -esp_log_timestamp esp-idf/log/liblog.a(log_timestamp.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32h2.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - esp-idf/main/libmain.a(bootloader_start.c.obj) -esp_partition_table_verify esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -esp_rom_crc32_le esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) -esp_rom_delay_us esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -esp_rom_get_cpu_ticks_per_us esp-idf/log/liblog.a(log_timestamp.c.obj) -esp_rom_get_reset_reason esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32h2.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - esp-idf/main/libmain.a(bootloader_start.c.obj) -esp_rom_gpio_pad_set_drv esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) -esp_rom_install_uart_printf esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) -esp_rom_md5_final esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) -esp_rom_md5_init esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) -esp_rom_md5_update esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) -esp_rom_output_flush_tx esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj) -esp_rom_output_tx_wait_idle esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) -esp_rom_printf esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32h2.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - esp-idf/main/libmain.a(bootloader_start.c.obj) -esp_rom_regi2c_read esp-idf/esp_rom/libesp_rom.a(esp_rom_regi2c_esp32h2.c.obj) -esp_rom_regi2c_read_mask esp-idf/esp_rom/libesp_rom.a(esp_rom_regi2c_esp32h2.c.obj) -esp_rom_regi2c_write esp-idf/esp_rom/libesp_rom.a(esp_rom_regi2c_esp32h2.c.obj) -esp_rom_regi2c_write_mask esp-idf/esp_rom/libesp_rom.a(esp_rom_regi2c_esp32h2.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32h2.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32h2.c.obj) -esp_rom_set_cpu_ticks_per_us esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) -esp_rom_software_reset_system esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -esp_rom_spiflash_config_clk esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) -esp_rom_spiflash_config_param esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) -esp_rom_spiflash_erase_block esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) -esp_rom_spiflash_erase_sector esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) -esp_rom_spiflash_read esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) -esp_rom_spiflash_wait_idle esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) -esp_rom_spiflash_write esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) -esp_rom_spiflash_write_encrypted esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) -esp_secure_boot_read_key_digests esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ets_efuse_clear_program_registers esp-idf/hal/libhal.a(efuse_hal.c.obj) -ets_efuse_rs_calculate esp-idf/hal/libhal.a(efuse_hal.c.obj) -ets_sha_enable esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) -ets_sha_finish esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) -ets_sha_init esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) -ets_sha_update esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) -get_act_hp_dbias esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) -get_act_lp_dbias esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) -lp_timer_hal_clear_alarm_intr_status esp-idf/hal/libhal.a(lp_timer_hal.c.obj) -lp_timer_hal_clear_overflow_intr_status esp-idf/hal/libhal.a(lp_timer_hal.c.obj) -lp_timer_hal_get_cycle_count esp-idf/hal/libhal.a(lp_timer_hal.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) -lp_timer_hal_set_alarm_target esp-idf/hal/libhal.a(lp_timer_hal.c.obj) -memcmp C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcmp.o) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) -memcpy C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memcpy.o) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -memset C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc.a(libc_a-memset.o) - esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - esp-idf/main/libmain.a(bootloader_start.c.obj) -mmu_hal_bytes_to_pages esp-idf/hal/libhal.a(mmu_hal.c.obj) -mmu_hal_check_valid_ext_vaddr_region esp-idf/hal/libhal.a(mmu_hal.c.obj) -mmu_hal_init esp-idf/hal/libhal.a(mmu_hal.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32h2.c.obj) -mmu_hal_map_region esp-idf/hal/libhal.a(mmu_hal.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -mmu_hal_paddr_to_vaddr esp-idf/hal/libhal.a(mmu_hal.c.obj) -mmu_hal_pages_to_bytes esp-idf/hal/libhal.a(mmu_hal.c.obj) -mmu_hal_unmap_all esp-idf/hal/libhal.a(mmu_hal.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -mmu_hal_unmap_region esp-idf/hal/libhal.a(mmu_hal.c.obj) -mmu_hal_vaddr_to_paddr esp-idf/hal/libhal.a(mmu_hal.c.obj) -pmu_hp_system_analog_param_default esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) -pmu_hp_system_clock_param_default esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) -pmu_hp_system_digital_param_default esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) -pmu_hp_system_power_param_default esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) -pmu_hp_system_retention_param_default esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) -pmu_lp_system_analog_param_default esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) -pmu_lp_system_power_param_default esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) -range_read_addr_blocks esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -range_write_addr_blocks esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -regi2c_read_impl esp-idf/esp_rom/libesp_rom.a(esp_rom_regi2c_esp32h2.c.obj) -regi2c_read_mask_impl esp-idf/esp_rom/libesp_rom.a(esp_rom_regi2c_esp32h2.c.obj) -regi2c_write_impl esp-idf/esp_rom/libesp_rom.a(esp_rom_regi2c_esp32h2.c.obj) -regi2c_write_mask_impl esp-idf/esp_rom/libesp_rom.a(esp_rom_regi2c_esp32h2.c.obj) -rom_spiflash_legacy_data esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) -rtc_clk_32k_bootstrap esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) -rtc_clk_32k_disable_external esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) -rtc_clk_32k_enable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) -rtc_clk_32k_enable_external esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) -rtc_clk_32k_enabled esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) -rtc_clk_8m_enable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) -rtc_clk_8m_enabled esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) -rtc_clk_apb_freq_get esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) -rtc_clk_bbpll_add_consumer esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) -rtc_clk_bbpll_remove_consumer esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) -rtc_clk_cpu_freq_get_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) -rtc_clk_cpu_freq_mhz_to_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) -rtc_clk_cpu_freq_set_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) -rtc_clk_cpu_freq_set_config_fast esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) -rtc_clk_cpu_freq_set_xtal esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) -rtc_clk_cpu_freq_set_xtal_for_sleep esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) -rtc_clk_cpu_set_to_default_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) -rtc_clk_fast_src_get esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) -rtc_clk_fast_src_set esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) -rtc_clk_init esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) -rtc_clk_lp_pll_enable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) -rtc_clk_lp_pll_src_set esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) -rtc_clk_rc32k_enable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) -rtc_clk_set_cpu_switch_to_pll esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) -rtc_clk_slow_freq_get_hz esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) -rtc_clk_slow_src_get esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) -rtc_clk_slow_src_set esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) -rtc_clk_xtal_freq_get esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) -rtc_clk_xtal_freq_update esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) -rtc_dig_8m_enabled esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) -rtc_dig_clk8m_disable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) -rtc_dig_clk8m_enable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) -rv_utils_dbgr_is_attached esp-idf/riscv/libriscv.a(rv_utils.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj) -s_cache_hal_init_ctx esp-idf/hal/libhal.a(cache_hal.c.obj) -s_get_cache_state esp-idf/hal/libhal.a(cache_hal.c.obj) -s_revoke_table esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -s_table esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -s_update_cache_state esp-idf/hal/libhal.a(cache_hal.c.obj) -wdt_hal_config_stage esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) -wdt_hal_deinit esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) -wdt_hal_enable esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) -wdt_hal_init esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) -wdt_hal_set_flashboot_en esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) -wdt_hal_write_protect_disable esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) -wdt_hal_write_protect_enable esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) diff --git a/esp32-thread/open-thread-rcp/build/bootloader/build.ninja b/esp32-thread/open-thread-rcp/build/bootloader/build.ninja deleted file mode 100644 index 56e52cae..00000000 --- a/esp32-thread/open-thread-rcp/build/bootloader/build.ninja +++ /dev/null @@ -1,2836 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Ninja" Generator, CMake Version 3.30 - -# This file contains all the build statements describing the -# compilation DAG. - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# -# Which is the root file. -# ============================================================================= - -# ============================================================================= -# Project: bootloader -# Configurations: -# ============================================================================= - -############################################# -# Minimal version of Ninja required by this file - -ninja_required_version = 1.5 - -# ============================================================================= -# Include auxiliary files. - - -############################################# -# Include rules file. - -include CMakeFiles/rules.ninja - -# ============================================================================= - -############################################# -# Logical path to working directory; prefix for absolute paths. - -cmake_ninja_workdir = C$:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/ - -############################################# -# Utility command for menuconfig - -build menuconfig: phony CMakeFiles/menuconfig - - -############################################# -# Utility command for confserver - -build confserver: phony CMakeFiles/confserver - - -############################################# -# Utility command for save-defconfig - -build save-defconfig: phony CMakeFiles/save-defconfig - - -############################################# -# Utility command for gen_project_binary - -build gen_project_binary: phony CMakeFiles/gen_project_binary .bin_timestamp bootloader.elf - - -############################################# -# Utility command for app - -build app: phony CMakeFiles/app esp-idf/esptool_py/bootloader_check_size gen_project_binary - - -############################################# -# Utility command for erase_flash - -build erase_flash: phony CMakeFiles/erase_flash - - -############################################# -# Utility command for merge-bin - -build merge-bin: phony CMakeFiles/merge-bin gen_project_binary - - -############################################# -# Utility command for monitor - -build monitor: phony CMakeFiles/monitor bootloader.elf - - -############################################# -# Utility command for _project_elf_src - -build _project_elf_src: phony CMakeFiles/_project_elf_src project_elf_src_esp32h2.c - -# ============================================================================= -# Object build statements for EXECUTABLE target bootloader.elf - - -############################################# -# Order-only phony target for bootloader.elf - -build cmake_object_order_depends_target_bootloader.elf: phony || _project_elf_src cmake_object_order_depends_target___idf_hal cmake_object_order_depends_target___idf_main project_elf_src_esp32h2.c - -build CMakeFiles/bootloader.elf.dir/project_elf_src_esp32h2.c.obj: C_COMPILER__bootloader.2eelf_unscanned_ C$:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/project_elf_src_esp32h2.c || cmake_object_order_depends_target_bootloader.elf - DEFINES = -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ - DEP_FILE = CMakeFiles\bootloader.elf.dir\project_elf_src_esp32h2.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always - INCLUDES = -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include - OBJECT_DIR = CMakeFiles\bootloader.elf.dir - OBJECT_FILE_DIR = CMakeFiles\bootloader.elf.dir - TARGET_COMPILE_PDB = CMakeFiles\bootloader.elf.dir\ - TARGET_PDB = bootloader.elf.pdb - - -# ============================================================================= -# Link build statements for EXECUTABLE target bootloader.elf - - -############################################# -# Link the executable bootloader.elf - -build bootloader.elf: C_EXECUTABLE_LINKER__bootloader.2eelf_ CMakeFiles/bootloader.elf.dir/project_elf_src_esp32h2.c.obj | esp-idf/hal/libhal.a esp-idf/riscv/libriscv.a esp-idf/soc/libsoc.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_system/libesp_system.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/log/liblog.a esp-idf/main/libmain.a esp-idf/hal/libhal.a esp-idf/riscv/libriscv.a esp-idf/soc/libsoc.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_system/libesp_system.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/log/liblog.a esp-idf/hal/libhal.a esp-idf/riscv/libriscv.a esp-idf/soc/libsoc.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_system/libesp_system.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/log/liblog.a esp-idf/hal/libhal.a esp-idf/riscv/libriscv.a esp-idf/soc/libsoc.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_system/libesp_system.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/log/liblog.a esp-idf/hal/libhal.a esp-idf/riscv/libriscv.a esp-idf/soc/libsoc.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_system/libesp_system.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/log/liblog.a C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/ld/rom.api.ld C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/ld/esp32h2.peripherals.ld C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/ld/esp32h2.rom.ld C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/ld/esp32h2.rom.api.ld C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/ld/esp32h2.rom.libgcc.ld C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/ld/esp32h2.rom.wdt.ld C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/ld/esp32h2.rom.systimer.ld C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/ld/esp32h2.rom.version.ld C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/ld/esp32h2.rom.libc.ld C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/ld/esp32h2.rom.libc-suboptimal_for_misaligned_mem.ld C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/ld/esp32h2.rom.newlib.ld C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/main/ld/esp32h2/bootloader.ld C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/main/ld/esp32h2/bootloader.rom.ld || _project_elf_src esp-idf/hal/libhal.a esp-idf/main/libmain.a - FLAGS = -march=rv32imac_zicsr_zifencei - LINK_FLAGS = -nostartfiles -march=rv32imac_zicsr_zifencei -Wl,--cref -Wl,--defsym=IDF_TARGET_ESP32H2=0 -Wl,--Map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/bootloader.map -Wl,--no-warn-rwx-segments -Wl,--orphan-handling=warn -fno-rtti -fno-lto -Wl,--gc-sections -Wl,--warn-common -T esp32h2.rom.ld -T esp32h2.rom.api.ld -T esp32h2.rom.libgcc.ld -T esp32h2.rom.wdt.ld -T esp32h2.rom.systimer.ld -T esp32h2.rom.version.ld -T esp32h2.rom.libc.ld -T esp32h2.rom.libc-suboptimal_for_misaligned_mem.ld -T esp32h2.rom.newlib.ld -T rom.api.ld -T esp32h2.peripherals.ld -T bootloader.ld -T bootloader.rom.ld - LINK_LIBRARIES = esp-idf/hal/libhal.a esp-idf/riscv/libriscv.a esp-idf/soc/libsoc.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_system/libesp_system.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/log/liblog.a esp-idf/main/libmain.a esp-idf/hal/libhal.a esp-idf/riscv/libriscv.a esp-idf/soc/libsoc.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_system/libesp_system.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/log/liblog.a esp-idf/hal/libhal.a esp-idf/riscv/libriscv.a esp-idf/soc/libsoc.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_system/libesp_system.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/log/liblog.a esp-idf/hal/libhal.a esp-idf/riscv/libriscv.a esp-idf/soc/libsoc.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_system/libesp_system.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/log/liblog.a esp-idf/hal/libhal.a esp-idf/riscv/libriscv.a esp-idf/soc/libsoc.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_system/libesp_system.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/log/liblog.a -u abort -u esp_bootloader_desc -u __ubsan_include -u esp_system_include_startup_funcs -u esp_sleep_gpio_include -u bootloader_hooks_include - LINK_PATH = -LC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/ld -LC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/ld -LC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/ld -LC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/main/ld/esp32h2 - OBJECT_DIR = CMakeFiles\bootloader.elf.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = CMakeFiles\bootloader.elf.dir\ - TARGET_FILE = bootloader.elf - TARGET_PDB = bootloader.elf.pdb - - -############################################# -# Utility command for size - -build size: phony CMakeFiles/size - - -############################################# -# Utility command for size-files - -build size-files: phony CMakeFiles/size-files - - -############################################# -# Utility command for size-components - -build size-components: phony CMakeFiles/size-components - - -############################################# -# Utility command for uf2 - -build uf2: phony CMakeFiles/uf2 - - -############################################# -# Utility command for uf2-app - -build uf2-app: phony CMakeFiles/uf2-app - - -############################################# -# Utility command for edit_cache - -build CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\esp\v5.5.1\esp-idf\components\bootloader\subproject -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build edit_cache: phony CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\esp\v5.5.1\esp-idf\components\bootloader\subproject -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build rebuild_cache: phony CMakeFiles/rebuild_cache.util - - -############################################# -# Custom command for CMakeFiles\menuconfig - -build CMakeFiles/menuconfig | ${cmake_ninja_workdir}CMakeFiles/menuconfig: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader && C:\Users\Laurent\.espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe C:/Users/Laurent/esp/v5.5.1/esp-idf/tools/kconfig_new/prepare_kconfig_files.py --list-separator=semicolon --env-file C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config.env && C:\Users\Laurent\.espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe -m kconfgen --list-separator=semicolon --kconfig C:/Users/Laurent/esp/v5.5.1/esp-idf/Kconfig --sdkconfig-rename C:/Users/Laurent/esp/v5.5.1/esp-idf/sdkconfig.rename --config C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/sdkconfig --env IDF_MINIMAL_BUILD=n --env-file C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config.env --env IDF_TARGET=esp32h2 --env IDF_TOOLCHAIN=gcc --env IDF_ENV_FPGA= --env IDF_INIT_VERSION=5.5.1 --dont-write-deprecated --output config C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/sdkconfig && C:\Users\Laurent\.espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe C:/Users/Laurent/esp/v5.5.1/esp-idf/tools/check_term.py && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E env COMPONENT_KCONFIGS_SOURCE_FILE=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/kconfigs.in COMPONENT_KCONFIGS_PROJBUILD_SOURCE_FILE=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/kconfigs_projbuild.in KCONFIG_CONFIG=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/sdkconfig IDF_TARGET=esp32h2 IDF_TOOLCHAIN=gcc IDF_ENV_FPGA= IDF_INIT_VERSION=5.5.1 IDF_MINIMAL_BUILD=n C:/Users/Laurent/.espressif/python_env/idf5.5_py3.11_env/Scripts/python.exe -m menuconfig C:/Users/Laurent/esp/v5.5.1/esp-idf/Kconfig && C:\Users\Laurent\.espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe -m kconfgen --list-separator=semicolon --kconfig C:/Users/Laurent/esp/v5.5.1/esp-idf/Kconfig --sdkconfig-rename C:/Users/Laurent/esp/v5.5.1/esp-idf/sdkconfig.rename --config C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/sdkconfig --env IDF_MINIMAL_BUILD=n --env-file C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config.env --env IDF_TARGET=esp32h2 --env IDF_TOOLCHAIN=gcc --env IDF_ENV_FPGA= --env IDF_INIT_VERSION=5.5.1 --output config C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/sdkconfig" - pool = console - - -############################################# -# Custom command for CMakeFiles\confserver - -build CMakeFiles/confserver | ${cmake_ninja_workdir}CMakeFiles/confserver: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader && C:\Users\Laurent\.espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe C:/Users/Laurent/esp/v5.5.1/esp-idf/tools/kconfig_new/prepare_kconfig_files.py --list-separator=semicolon --env-file C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config.env && C:\Users\Laurent\.espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe -m kconfserver --env-file C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config.env --kconfig C:/Users/Laurent/esp/v5.5.1/esp-idf/Kconfig --sdkconfig-rename C:/Users/Laurent/esp/v5.5.1/esp-idf/sdkconfig.rename --config C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/sdkconfig" - pool = console - - -############################################# -# Custom command for CMakeFiles\save-defconfig - -build CMakeFiles/save-defconfig | ${cmake_ninja_workdir}CMakeFiles/save-defconfig: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader && C:\Users\Laurent\.espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe C:/Users/Laurent/esp/v5.5.1/esp-idf/tools/kconfig_new/prepare_kconfig_files.py --list-separator=semicolon --env-file C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config.env && C:\Users\Laurent\.espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe -m kconfgen --list-separator=semicolon --kconfig C:/Users/Laurent/esp/v5.5.1/esp-idf/Kconfig --sdkconfig-rename C:/Users/Laurent/esp/v5.5.1/esp-idf/sdkconfig.rename --config C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/sdkconfig --env IDF_MINIMAL_BUILD=n --env-file C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config.env --dont-write-deprecated --output savedefconfig C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/sdkconfig.defaults" - pool = console - - -############################################# -# Phony custom command for CMakeFiles\gen_project_binary - -build CMakeFiles/gen_project_binary | ${cmake_ninja_workdir}CMakeFiles/gen_project_binary: phony .bin_timestamp || _project_elf_src bootloader.elf esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_system/libesp_system.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/main/libmain.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/riscv/libriscv.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a - - -############################################# -# Custom command for .bin_timestamp - -build .bin_timestamp | ${cmake_ninja_workdir}.bin_timestamp: CUSTOM_COMMAND bootloader.elf || _project_elf_src bootloader.elf esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_system/libesp_system.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/main/libmain.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/riscv/libriscv.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader && C:\Users\Laurent\.espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esptool_py/esptool/esptool.py --chip esp32h2 elf2image --flash_mode dio --flash_freq 48m --flash_size 2MB --min-rev-full 0 --max-rev-full 199 -o C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/bootloader.bin C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/bootloader.elf && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E echo "Generated C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/bootloader.bin" && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E md5sum C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/bootloader.bin > C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/.bin_timestamp" - DESC = Generating binary image from built executable - restat = 1 - - -############################################# -# Phony custom command for CMakeFiles\app - -build CMakeFiles/app | ${cmake_ninja_workdir}CMakeFiles/app: phony || _project_elf_src bootloader.elf esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_system/libesp_system.a esp-idf/esptool_py/bootloader_check_size esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/main/libmain.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/riscv/libriscv.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a gen_project_binary - - -############################################# -# Custom command for CMakeFiles\erase_flash - -build CMakeFiles/erase_flash | ${cmake_ninja_workdir}CMakeFiles/erase_flash: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\esp\v5.5.1\esp-idf\components\esptool_py && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -D IDF_PATH=C:/Users/Laurent/esp/v5.5.1/esp-idf -D SERIAL_TOOL=C:/Users/Laurent/.espressif/python_env/idf5.5_py3.11_env/Scripts/python.exe;;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esptool_py/esptool/esptool.py;--chip;esp32h2 -D SERIAL_TOOL_ARGS=erase_flash -P run_serial_tool.cmake" - pool = console - - -############################################# -# Custom command for CMakeFiles\merge-bin - -build CMakeFiles/merge-bin | ${cmake_ninja_workdir}CMakeFiles/merge-bin: CUSTOM_COMMAND bootloader || _project_elf_src bootloader.elf esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_system/libesp_system.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/main/libmain.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/riscv/libriscv.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a gen_project_binary - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\esp\v5.5.1\esp-idf\components\esptool_py && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -D IDF_PATH=C:/Users/Laurent/esp/v5.5.1/esp-idf -D SERIAL_TOOL=C:/Users/Laurent/.espressif/python_env/idf5.5_py3.11_env/Scripts/python.exe;;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esptool_py/esptool/esptool.py;--chip;esp32h2 -D SERIAL_TOOL_ARGS=merge_bin;-o;C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/merged-binary.bin;@C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/flash_args -D WORKING_DIRECTORY=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader -P run_serial_tool.cmake" - pool = console - - -############################################# -# Custom command for CMakeFiles\monitor - -build CMakeFiles/monitor | ${cmake_ninja_workdir}CMakeFiles/monitor: CUSTOM_COMMAND || _project_elf_src bootloader.elf esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_system/libesp_system.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/main/libmain.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/riscv/libriscv.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\esp\v5.5.1\esp-idf\components\esptool_py && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -D IDF_PATH=C:/Users/Laurent/esp/v5.5.1/esp-idf -D SERIAL_TOOL=C:/Users/Laurent/.espressif/python_env/idf5.5_py3.11_env/Scripts/python.exe;-m;esp_idf_monitor -D SERIAL_TOOL_ARGS=--toolchain-prefix;riscv32-esp-elf-;;--target;esp32h2;;--revision;0;;--decode-panic;backtrace;;C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/bootloader.elf -D WORKING_DIRECTORY=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader -P run_serial_tool.cmake" - pool = console - - -############################################# -# Phony custom command for CMakeFiles\_project_elf_src - -build CMakeFiles/_project_elf_src | ${cmake_ninja_workdir}CMakeFiles/_project_elf_src: phony project_elf_src_esp32h2.c - - -############################################# -# Custom command for project_elf_src_esp32h2.c - -build project_elf_src_esp32h2.c | ${cmake_ninja_workdir}project_elf_src_esp32h2.c: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E touch C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/project_elf_src_esp32h2.c" - DESC = Generating project_elf_src_esp32h2.c - restat = 1 - - -############################################# -# Custom command for CMakeFiles\size - -build CMakeFiles/size | ${cmake_ninja_workdir}CMakeFiles/size: CUSTOM_COMMAND bootloader.map - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -D IDF_SIZE_TOOL=C:/Users/Laurent/.espressif/python_env/idf5.5_py3.11_env/Scripts/python.exe;-m;esp_idf_size -D MAP_FILE=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/bootloader.map -D OUTPUT_JSON= -P C:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/run_size_tool.cmake" - pool = console - - -############################################# -# Custom command for CMakeFiles\size-files - -build CMakeFiles/size-files | ${cmake_ninja_workdir}CMakeFiles/size-files: CUSTOM_COMMAND bootloader.map - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -D IDF_SIZE_TOOL=C:/Users/Laurent/.espressif/python_env/idf5.5_py3.11_env/Scripts/python.exe;-m;esp_idf_size -D IDF_SIZE_MODE=--files -D MAP_FILE=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/bootloader.map -D OUTPUT_JSON= -P C:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/run_size_tool.cmake" - pool = console - - -############################################# -# Custom command for CMakeFiles\size-components - -build CMakeFiles/size-components | ${cmake_ninja_workdir}CMakeFiles/size-components: CUSTOM_COMMAND bootloader.map - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -D IDF_SIZE_TOOL=C:/Users/Laurent/.espressif/python_env/idf5.5_py3.11_env/Scripts/python.exe;-m;esp_idf_size -D IDF_SIZE_MODE=--archives -D MAP_FILE=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/bootloader.map -D OUTPUT_JSON= -P C:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/run_size_tool.cmake" - pool = console - - -############################################# -# Custom command for CMakeFiles\uf2 - -build CMakeFiles/uf2 | ${cmake_ninja_workdir}CMakeFiles/uf2: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -D IDF_PATH=C:/Users/Laurent/esp/v5.5.1/esp-idf -D UF2_CMD=C:/Users/Laurent/.espressif/python_env/idf5.5_py3.11_env/Scripts/python.exe;C:/Users/Laurent/esp/v5.5.1/esp-idf/tools/mkuf2.py;write;--chip;esp32h2 -D UF2_ARGS=--json;C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/flasher_args.json;-o;C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/uf2.bin -P C:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/run_uf2_cmds.cmake" - pool = console - - -############################################# -# Custom command for CMakeFiles\uf2-app - -build CMakeFiles/uf2-app | ${cmake_ninja_workdir}CMakeFiles/uf2-app: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -D IDF_PATH=C:/Users/Laurent/esp/v5.5.1/esp-idf -D UF2_CMD=C:/Users/Laurent/.espressif/python_env/idf5.5_py3.11_env/Scripts/python.exe;C:/Users/Laurent/esp/v5.5.1/esp-idf/tools/mkuf2.py;write;--chip;esp32h2 -D UF2_ARGS=--json;C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/flasher_args.json;-o;C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/uf2-app.bin;--bin;app -P C:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/run_uf2_cmds.cmake" - pool = console - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/CMakeLists.txt -# ============================================================================= - - -############################################# -# Utility command for edit_cache - -build esp-idf/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader\esp-idf && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\esp\v5.5.1\esp-idf\components\bootloader\subproject -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/edit_cache: phony esp-idf/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader\esp-idf && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\esp\v5.5.1\esp-idf\components\bootloader\subproject -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/rebuild_cache: phony esp-idf/CMakeFiles/rebuild_cache.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_hal - - -############################################# -# Order-only phony target for __idf_hal - -build cmake_object_order_depends_target___idf_hal: phony || cmake_object_order_depends_target___idf_riscv - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/hal_utils.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\hal_utils.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register - OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb - TARGET_PDB = esp-idf\hal\libhal.pdb - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/efuse_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\efuse_hal.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register - OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb - TARGET_PDB = esp-idf\hal\libhal.pdb - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32h2/efuse_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/efuse_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\esp32h2\efuse_hal.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register - OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir\esp32h2 - TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb - TARGET_PDB = esp-idf\hal\libhal.pdb - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/lp_timer_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/lp_timer_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\lp_timer_hal.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register - OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb - TARGET_PDB = esp-idf\hal\libhal.pdb - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/mmu_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\mmu_hal.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register - OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb - TARGET_PDB = esp-idf\hal\libhal.pdb - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/cache_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\cache_hal.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register - OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb - TARGET_PDB = esp-idf\hal\libhal.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_hal - - -############################################# -# Link the static library esp-idf\hal\libhal.a - -build esp-idf/hal/libhal.a: C_STATIC_LIBRARY_LINKER____idf_hal_ esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32h2/efuse_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/lp_timer_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj || esp-idf/riscv/libriscv.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei - OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb - TARGET_FILE = esp-idf\hal\libhal.a - TARGET_PDB = esp-idf\hal\libhal.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/hal/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader\esp-idf\hal && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\esp\v5.5.1\esp-idf\components\bootloader\subproject -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/hal/edit_cache: phony esp-idf/hal/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/hal/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader\esp-idf\hal && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\esp\v5.5.1\esp-idf\components\bootloader\subproject -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/hal/rebuild_cache: phony esp-idf/hal/CMakeFiles/rebuild_cache.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_riscv - - -############################################# -# Order-only phony target for __idf_riscv - -build cmake_object_order_depends_target___idf_riscv: phony || cmake_object_order_depends_target___idf_soc - -build esp-idf/riscv/CMakeFiles/__idf_riscv.dir/rv_utils.c.obj: C_COMPILER____idf_riscv_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/rv_utils.c || cmake_object_order_depends_target___idf_riscv - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\riscv\CMakeFiles\__idf_riscv.dir\rv_utils.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include - OBJECT_DIR = esp-idf\riscv\CMakeFiles\__idf_riscv.dir - OBJECT_FILE_DIR = esp-idf\riscv\CMakeFiles\__idf_riscv.dir - TARGET_COMPILE_PDB = esp-idf\riscv\CMakeFiles\__idf_riscv.dir\__idf_riscv.pdb - TARGET_PDB = esp-idf\riscv\libriscv.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_riscv - - -############################################# -# Link the static library esp-idf\riscv\libriscv.a - -build esp-idf/riscv/libriscv.a: C_STATIC_LIBRARY_LINKER____idf_riscv_ esp-idf/riscv/CMakeFiles/__idf_riscv.dir/rv_utils.c.obj || esp-idf/soc/libsoc.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei - OBJECT_DIR = esp-idf\riscv\CMakeFiles\__idf_riscv.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = esp-idf\riscv\CMakeFiles\__idf_riscv.dir\__idf_riscv.pdb - TARGET_FILE = esp-idf\riscv\libriscv.a - TARGET_PDB = esp-idf\riscv\libriscv.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/riscv/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader\esp-idf\riscv && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\esp\v5.5.1\esp-idf\components\bootloader\subproject -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/riscv/edit_cache: phony esp-idf/riscv/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/riscv/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader\esp-idf\riscv && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\esp\v5.5.1\esp-idf\components\bootloader\subproject -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/riscv/rebuild_cache: phony esp-idf/riscv/CMakeFiles/rebuild_cache.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - - -############################################# -# Utility command for edit_cache - -build esp-idf/newlib/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader\esp-idf\newlib && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\esp\v5.5.1\esp-idf\components\bootloader\subproject -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/newlib/edit_cache: phony esp-idf/newlib/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/newlib/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader\esp-idf\newlib && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\esp\v5.5.1\esp-idf\components\bootloader\subproject -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/newlib/rebuild_cache: phony esp-idf/newlib/CMakeFiles/rebuild_cache.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_soc - - -############################################# -# Order-only phony target for __idf_soc - -build cmake_object_order_depends_target___idf_soc: phony || cmake_object_order_depends_target___idf_micro-ecc - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/lldesc.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\lldesc.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include - OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir - OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir - TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb - TARGET_PDB = esp-idf\soc\libsoc.pdb - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/dport_access_common.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\dport_access_common.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include - OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir - OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir - TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb - TARGET_PDB = esp-idf\soc\libsoc.pdb - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/interrupts.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/interrupts.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2\interrupts.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include - OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir - OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2 - TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb - TARGET_PDB = esp-idf\soc\libsoc.pdb - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/gpio_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/gpio_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2\gpio_periph.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include - OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir - OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2 - TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb - TARGET_PDB = esp-idf\soc\libsoc.pdb - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/uart_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/uart_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2\uart_periph.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include - OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir - OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2 - TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb - TARGET_PDB = esp-idf\soc\libsoc.pdb - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/adc_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/adc_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2\adc_periph.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include - OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir - OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2 - TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb - TARGET_PDB = esp-idf\soc\libsoc.pdb - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/ana_cmpr_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/ana_cmpr_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2\ana_cmpr_periph.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include - OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir - OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2 - TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb - TARGET_PDB = esp-idf\soc\libsoc.pdb - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/dedic_gpio_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/dedic_gpio_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2\dedic_gpio_periph.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include - OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir - OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2 - TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb - TARGET_PDB = esp-idf\soc\libsoc.pdb - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/etm_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/etm_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2\etm_periph.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include - OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir - OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2 - TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb - TARGET_PDB = esp-idf\soc\libsoc.pdb - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/gdma_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/gdma_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2\gdma_periph.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include - OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir - OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2 - TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb - TARGET_PDB = esp-idf\soc\libsoc.pdb - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/spi_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/spi_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2\spi_periph.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include - OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir - OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2 - TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb - TARGET_PDB = esp-idf\soc\libsoc.pdb - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/ledc_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/ledc_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2\ledc_periph.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include - OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir - OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2 - TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb - TARGET_PDB = esp-idf\soc\libsoc.pdb - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/pcnt_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/pcnt_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2\pcnt_periph.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include - OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir - OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2 - TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb - TARGET_PDB = esp-idf\soc\libsoc.pdb - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/rmt_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/rmt_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2\rmt_periph.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include - OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir - OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2 - TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb - TARGET_PDB = esp-idf\soc\libsoc.pdb - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/sdm_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/sdm_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2\sdm_periph.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include - OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir - OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2 - TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb - TARGET_PDB = esp-idf\soc\libsoc.pdb - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/i2s_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/i2s_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2\i2s_periph.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include - OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir - OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2 - TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb - TARGET_PDB = esp-idf\soc\libsoc.pdb - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/i2c_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/i2c_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2\i2c_periph.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include - OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir - OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2 - TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb - TARGET_PDB = esp-idf\soc\libsoc.pdb - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/temperature_sensor_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/temperature_sensor_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2\temperature_sensor_periph.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include - OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir - OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2 - TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb - TARGET_PDB = esp-idf\soc\libsoc.pdb - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/timer_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/timer_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2\timer_periph.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include - OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir - OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2 - TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb - TARGET_PDB = esp-idf\soc\libsoc.pdb - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/parlio_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/parlio_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2\parlio_periph.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include - OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir - OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2 - TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb - TARGET_PDB = esp-idf\soc\libsoc.pdb - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/mcpwm_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/mcpwm_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2\mcpwm_periph.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include - OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir - OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2 - TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb - TARGET_PDB = esp-idf\soc\libsoc.pdb - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/mpi_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/mpi_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2\mpi_periph.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include - OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir - OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2 - TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb - TARGET_PDB = esp-idf\soc\libsoc.pdb - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/twai_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/twai_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2\twai_periph.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include - OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir - OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2 - TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb - TARGET_PDB = esp-idf\soc\libsoc.pdb - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/wdt_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/wdt_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2\wdt_periph.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include - OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir - OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2 - TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb - TARGET_PDB = esp-idf\soc\libsoc.pdb - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/ieee802154_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/ieee802154_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2\ieee802154_periph.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include - OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir - OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2 - TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb - TARGET_PDB = esp-idf\soc\libsoc.pdb - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/rtc_io_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/rtc_io_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2\rtc_io_periph.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include - OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir - OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2 - TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb - TARGET_PDB = esp-idf\soc\libsoc.pdb - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/system_retention_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/system_retention_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2\system_retention_periph.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include - OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir - OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2 - TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb - TARGET_PDB = esp-idf\soc\libsoc.pdb - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/power_supply_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/power_supply_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2\power_supply_periph.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include - OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir - OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2 - TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb - TARGET_PDB = esp-idf\soc\libsoc.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_soc - - -############################################# -# Link the static library esp-idf\soc\libsoc.a - -build esp-idf/soc/libsoc.a: C_STATIC_LIBRARY_LINKER____idf_soc_ esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/interrupts.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/gpio_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/uart_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/adc_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/ana_cmpr_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/dedic_gpio_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/etm_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/gdma_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/spi_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/ledc_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/pcnt_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/rmt_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/sdm_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/i2s_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/i2c_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/temperature_sensor_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/timer_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/parlio_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/mcpwm_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/mpi_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/twai_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/wdt_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/ieee802154_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/rtc_io_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/system_retention_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/power_supply_periph.c.obj || esp-idf/micro-ecc/libmicro-ecc.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei - OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb - TARGET_FILE = esp-idf\soc\libsoc.a - TARGET_PDB = esp-idf\soc\libsoc.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/soc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader\esp-idf\soc && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\esp\v5.5.1\esp-idf\components\bootloader\subproject -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/soc/edit_cache: phony esp-idf/soc/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/soc/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader\esp-idf\soc && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\esp\v5.5.1\esp-idf\components\bootloader\subproject -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/soc/rebuild_cache: phony esp-idf/soc/CMakeFiles/rebuild_cache.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_micro-ecc - - -############################################# -# Order-only phony target for __idf_micro-ecc - -build cmake_object_order_depends_target___idf_micro-ecc: phony || cmake_object_order_depends_target___idf_spi_flash - -build esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir/uECC_verify_antifault.c.obj: C_COMPILER____idf_micro-ecc_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/uECC_verify_antifault.c || cmake_object_order_depends_target___idf_micro-ecc - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\micro-ecc\CMakeFiles\__idf_micro-ecc.dir\uECC_verify_antifault.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register - OBJECT_DIR = esp-idf\micro-ecc\CMakeFiles\__idf_micro-ecc.dir - OBJECT_FILE_DIR = esp-idf\micro-ecc\CMakeFiles\__idf_micro-ecc.dir - TARGET_COMPILE_PDB = esp-idf\micro-ecc\CMakeFiles\__idf_micro-ecc.dir\__idf_micro-ecc.pdb - TARGET_PDB = esp-idf\micro-ecc\libmicro-ecc.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_micro-ecc - - -############################################# -# Link the static library esp-idf\micro-ecc\libmicro-ecc.a - -build esp-idf/micro-ecc/libmicro-ecc.a: C_STATIC_LIBRARY_LINKER____idf_micro-ecc_ esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir/uECC_verify_antifault.c.obj || esp-idf/spi_flash/libspi_flash.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei - OBJECT_DIR = esp-idf\micro-ecc\CMakeFiles\__idf_micro-ecc.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = esp-idf\micro-ecc\CMakeFiles\__idf_micro-ecc.dir\__idf_micro-ecc.pdb - TARGET_FILE = esp-idf\micro-ecc\libmicro-ecc.a - TARGET_PDB = esp-idf\micro-ecc\libmicro-ecc.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/micro-ecc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader\esp-idf\micro-ecc && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\esp\v5.5.1\esp-idf\components\bootloader\subproject -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/micro-ecc/edit_cache: phony esp-idf/micro-ecc/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/micro-ecc/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader\esp-idf\micro-ecc && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\esp\v5.5.1\esp-idf\components\bootloader\subproject -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/micro-ecc/rebuild_cache: phony esp-idf/micro-ecc/CMakeFiles/rebuild_cache.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_spi_flash - - -############################################# -# Order-only phony target for __idf_spi_flash - -build cmake_object_order_depends_target___idf_spi_flash: phony || cmake_object_order_depends_target___idf_esp_bootloader_format - -build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj: C_COMPILER____idf_spi_flash_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/spi_flash_wrap.c || cmake_object_order_depends_target___idf_spi_flash - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\spi_flash_wrap.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include - OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir - OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir - TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb - TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_spi_flash - - -############################################# -# Link the static library esp-idf\spi_flash\libspi_flash.a - -build esp-idf/spi_flash/libspi_flash.a: C_STATIC_LIBRARY_LINKER____idf_spi_flash_ esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj || esp-idf/esp_bootloader_format/libesp_bootloader_format.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei - OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb - TARGET_FILE = esp-idf\spi_flash\libspi_flash.a - TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/spi_flash/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader\esp-idf\spi_flash && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\esp\v5.5.1\esp-idf\components\bootloader\subproject -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/spi_flash/edit_cache: phony esp-idf/spi_flash/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/spi_flash/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader\esp-idf\spi_flash && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\esp\v5.5.1\esp-idf\components\bootloader\subproject -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/spi_flash/rebuild_cache: phony esp-idf/spi_flash/CMakeFiles/rebuild_cache.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_bootloader_format - - -############################################# -# Order-only phony target for __idf_esp_bootloader_format - -build cmake_object_order_depends_target___idf_esp_bootloader_format: phony || cmake_object_order_depends_target___idf_bootloader_support - -build esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj: C_COMPILER____idf_esp_bootloader_format_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/esp_bootloader_desc.c || cmake_object_order_depends_target___idf_esp_bootloader_format - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\esp_bootloader_format\CMakeFiles\__idf_esp_bootloader_format.dir\esp_bootloader_desc.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register - OBJECT_DIR = esp-idf\esp_bootloader_format\CMakeFiles\__idf_esp_bootloader_format.dir - OBJECT_FILE_DIR = esp-idf\esp_bootloader_format\CMakeFiles\__idf_esp_bootloader_format.dir - TARGET_COMPILE_PDB = esp-idf\esp_bootloader_format\CMakeFiles\__idf_esp_bootloader_format.dir\__idf_esp_bootloader_format.pdb - TARGET_PDB = esp-idf\esp_bootloader_format\libesp_bootloader_format.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_bootloader_format - - -############################################# -# Link the static library esp-idf\esp_bootloader_format\libesp_bootloader_format.a - -build esp-idf/esp_bootloader_format/libesp_bootloader_format.a: C_STATIC_LIBRARY_LINKER____idf_esp_bootloader_format_ esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj || esp-idf/bootloader_support/libbootloader_support.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei - OBJECT_DIR = esp-idf\esp_bootloader_format\CMakeFiles\__idf_esp_bootloader_format.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = esp-idf\esp_bootloader_format\CMakeFiles\__idf_esp_bootloader_format.dir\__idf_esp_bootloader_format.pdb - TARGET_FILE = esp-idf\esp_bootloader_format\libesp_bootloader_format.a - TARGET_PDB = esp-idf\esp_bootloader_format\libesp_bootloader_format.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_bootloader_format/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader\esp-idf\esp_bootloader_format && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\esp\v5.5.1\esp-idf\components\bootloader\subproject -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_bootloader_format/edit_cache: phony esp-idf/esp_bootloader_format/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_bootloader_format/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader\esp-idf\esp_bootloader_format && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\esp\v5.5.1\esp-idf\components\bootloader\subproject -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_bootloader_format/rebuild_cache: phony esp-idf/esp_bootloader_format/CMakeFiles/rebuild_cache.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_app_format/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader\esp-idf\esp_app_format && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\esp\v5.5.1\esp-idf\components\bootloader\subproject -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_app_format/edit_cache: phony esp-idf/esp_app_format/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_app_format/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader\esp-idf\esp_app_format && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\esp\v5.5.1\esp-idf\components\bootloader\subproject -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_app_format/rebuild_cache: phony esp-idf/esp_app_format/CMakeFiles/rebuild_cache.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_bootloader_support - - -############################################# -# Order-only phony target for __idf_bootloader_support - -build cmake_object_order_depends_target___idf_bootloader_support: phony || cmake_object_order_depends_target___idf_efuse - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_common.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_common.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src - TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb - TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_common_loader.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_common_loader.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src - TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb - TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_clock_init.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_clock_init.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src - TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb - TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_mem.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_mem.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src - TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb - TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_random.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_random.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src - TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb - TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_efuse.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_efuse.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src - TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb - TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/src/flash_encrypt.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\flash_encrypt.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src - TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb - TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/src/secure_boot.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\secure_boot.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src - TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb - TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32h2.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_random_esp32h2.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_random_esp32h2.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src - TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb - TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/src/bootloader_flash.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\bootloader_flash\src\bootloader_flash.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\bootloader_flash\src - TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb - TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/src/flash_qio_mode.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\bootloader_flash\src\flash_qio_mode.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\bootloader_flash\src - TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb - TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32h2.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/src/bootloader_flash_config_esp32h2.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\bootloader_flash\src\bootloader_flash_config_esp32h2.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\bootloader_flash\src - TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb - TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_utility.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_utility.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src - TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb - TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/src/flash_partitions.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\flash_partitions.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src - TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb - TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/src/esp_image_format.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\esp_image_format.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src - TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb - TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_sha.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_sha.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_sha.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src - TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb - TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_init.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_init.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_init.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src - TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb - TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_loader.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_clock_loader.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_clock_loader.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src - TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb - TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_console.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_console.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src - TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb - TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console_loader.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_console_loader.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_console_loader.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src - TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb - TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32h2/bootloader_soc.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/src/esp32h2/bootloader_soc.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\esp32h2\bootloader_soc.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\esp32h2 - TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb - TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32h2/bootloader_esp32h2.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/src/esp32h2/bootloader_esp32h2.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\esp32h2\bootloader_esp32h2.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\esp32h2 - TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb - TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_panic.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_panic.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_panic.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src - TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb - TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_bootloader_support - - -############################################# -# Link the static library esp-idf\bootloader_support\libbootloader_support.a - -build esp-idf/bootloader_support/libbootloader_support.a: C_STATIC_LIBRARY_LINKER____idf_bootloader_support_ esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32h2.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32h2.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_sha.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_init.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_loader.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console_loader.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32h2/bootloader_soc.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32h2/bootloader_esp32h2.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_panic.c.obj || esp-idf/efuse/libefuse.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei - OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb - TARGET_FILE = esp-idf\bootloader_support\libbootloader_support.a - TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/bootloader_support/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader\esp-idf\bootloader_support && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\esp\v5.5.1\esp-idf\components\bootloader\subproject -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/bootloader_support/edit_cache: phony esp-idf/bootloader_support/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/bootloader_support/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader\esp-idf\bootloader_support && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\esp\v5.5.1\esp-idf\components\bootloader\subproject -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/bootloader_support/rebuild_cache: phony esp-idf/bootloader_support/CMakeFiles/rebuild_cache.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_efuse - - -############################################# -# Order-only phony target for __idf_efuse - -build cmake_object_order_depends_target___idf_efuse: phony || cmake_object_order_depends_target___idf_esp_system - -build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32h2/esp_efuse_table.c.obj: C_COMPILER____idf_efuse_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/esp_efuse_table.c || cmake_object_order_depends_target___idf_efuse - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32h2\esp_efuse_table.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include - OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir - OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32h2 - TARGET_COMPILE_PDB = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\__idf_efuse.pdb - TARGET_PDB = esp-idf\efuse\libefuse.pdb - -build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32h2/esp_efuse_table_v0.0_v1.1.c.obj: C_COMPILER____idf_efuse_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/esp_efuse_table_v0.0_v1.1.c || cmake_object_order_depends_target___idf_efuse - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32h2\esp_efuse_table_v0.0_v1.1.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include - OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir - OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32h2 - TARGET_COMPILE_PDB = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\__idf_efuse.pdb - TARGET_PDB = esp-idf\efuse\libefuse.pdb - -build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32h2/esp_efuse_fields.c.obj: C_COMPILER____idf_efuse_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/esp_efuse_fields.c || cmake_object_order_depends_target___idf_efuse - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32h2\esp_efuse_fields.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include - OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir - OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32h2 - TARGET_COMPILE_PDB = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\__idf_efuse.pdb - TARGET_PDB = esp-idf\efuse\libefuse.pdb - -build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32h2/esp_efuse_rtc_calib.c.obj: C_COMPILER____idf_efuse_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/esp_efuse_rtc_calib.c || cmake_object_order_depends_target___idf_efuse - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32h2\esp_efuse_rtc_calib.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include - OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir - OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32h2 - TARGET_COMPILE_PDB = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\__idf_efuse.pdb - TARGET_PDB = esp-idf\efuse\libefuse.pdb - -build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32h2/esp_efuse_utility.c.obj: C_COMPILER____idf_efuse_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/esp_efuse_utility.c || cmake_object_order_depends_target___idf_efuse - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32h2\esp_efuse_utility.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include - OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir - OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32h2 - TARGET_COMPILE_PDB = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\__idf_efuse.pdb - TARGET_PDB = esp-idf\efuse\libefuse.pdb - -build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj: C_COMPILER____idf_efuse_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/src/esp_efuse_api.c || cmake_object_order_depends_target___idf_efuse - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src\esp_efuse_api.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include - OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir - OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src - TARGET_COMPILE_PDB = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\__idf_efuse.pdb - TARGET_PDB = esp-idf\efuse\libefuse.pdb - -build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj: C_COMPILER____idf_efuse_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/src/esp_efuse_fields.c || cmake_object_order_depends_target___idf_efuse - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src\esp_efuse_fields.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include - OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir - OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src - TARGET_COMPILE_PDB = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\__idf_efuse.pdb - TARGET_PDB = esp-idf\efuse\libefuse.pdb - -build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj: C_COMPILER____idf_efuse_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/src/esp_efuse_utility.c || cmake_object_order_depends_target___idf_efuse - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src\esp_efuse_utility.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include - OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir - OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src - TARGET_COMPILE_PDB = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\__idf_efuse.pdb - TARGET_PDB = esp-idf\efuse\libefuse.pdb - -build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c.obj: C_COMPILER____idf_efuse_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c || cmake_object_order_depends_target___idf_efuse - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src\efuse_controller\keys\with_key_purposes\esp_efuse_api_key.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include - OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir - OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src\efuse_controller\keys\with_key_purposes - TARGET_COMPILE_PDB = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\__idf_efuse.pdb - TARGET_PDB = esp-idf\efuse\libefuse.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_efuse - - -############################################# -# Link the static library esp-idf\efuse\libefuse.a - -build esp-idf/efuse/libefuse.a: C_STATIC_LIBRARY_LINKER____idf_efuse_ esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32h2/esp_efuse_table.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32h2/esp_efuse_table_v0.0_v1.1.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32h2/esp_efuse_fields.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32h2/esp_efuse_rtc_calib.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32h2/esp_efuse_utility.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c.obj || esp-idf/esp_system/libesp_system.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei - OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\__idf_efuse.pdb - TARGET_FILE = esp-idf\efuse\libefuse.a - TARGET_PDB = esp-idf\efuse\libefuse.pdb - - -############################################# -# Utility command for efuse-common-table - -build esp-idf/efuse/efuse-common-table: phony esp-idf/efuse/CMakeFiles/efuse-common-table - - -############################################# -# Utility command for efuse_common_table - -build esp-idf/efuse/efuse_common_table: phony esp-idf/efuse/CMakeFiles/efuse_common_table esp-idf/efuse/efuse-common-table - - -############################################# -# Utility command for efuse-custom-table - -build esp-idf/efuse/efuse-custom-table: phony - - -############################################# -# Utility command for efuse_custom_table - -build esp-idf/efuse/efuse_custom_table: phony esp-idf/efuse/CMakeFiles/efuse_custom_table esp-idf/efuse/efuse-custom-table - - -############################################# -# Utility command for show-efuse-table - -build esp-idf/efuse/show-efuse-table: phony esp-idf/efuse/CMakeFiles/show-efuse-table - - -############################################# -# Utility command for show_efuse_table - -build esp-idf/efuse/show_efuse_table: phony esp-idf/efuse/CMakeFiles/show_efuse_table esp-idf/efuse/show-efuse-table - - -############################################# -# Utility command for efuse_test_table - -build esp-idf/efuse/efuse_test_table: phony esp-idf/efuse/CMakeFiles/efuse_test_table - - -############################################# -# Utility command for edit_cache - -build esp-idf/efuse/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader\esp-idf\efuse && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\esp\v5.5.1\esp-idf\components\bootloader\subproject -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/efuse/edit_cache: phony esp-idf/efuse/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/efuse/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader\esp-idf\efuse && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\esp\v5.5.1\esp-idf\components\bootloader\subproject -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/efuse/rebuild_cache: phony esp-idf/efuse/CMakeFiles/rebuild_cache.util - - -############################################# -# Custom command for esp-idf\efuse\CMakeFiles\efuse-common-table - -build esp-idf/efuse/CMakeFiles/efuse-common-table | ${cmake_ninja_workdir}esp-idf/efuse/CMakeFiles/efuse-common-table: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader\esp-idf\efuse && C:\Users\Laurent\.espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe C:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/efuse_table_gen.py C:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/esp_efuse_table.csv -t esp32h2 --max_blk_len 256" - - -############################################# -# Custom command for esp-idf\efuse\CMakeFiles\efuse_common_table - -build esp-idf/efuse/CMakeFiles/efuse_common_table | ${cmake_ninja_workdir}esp-idf/efuse/CMakeFiles/efuse_common_table: CUSTOM_COMMAND || esp-idf/efuse/efuse-common-table - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader\esp-idf\efuse && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E echo " - DESC = Warning: command "efuse_common_table" is deprecated. Have you wanted to run "efuse-common-table" instead? - - -############################################# -# Custom command for esp-idf\efuse\CMakeFiles\efuse_custom_table - -build esp-idf/efuse/CMakeFiles/efuse_custom_table | ${cmake_ninja_workdir}esp-idf/efuse/CMakeFiles/efuse_custom_table: CUSTOM_COMMAND || esp-idf/efuse/efuse-custom-table - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader\esp-idf\efuse && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E echo " - DESC = Warning: command "efuse_custom_table" is deprecated. Have you wanted to run "efuse-custom-table" instead? - - -############################################# -# Custom command for esp-idf\efuse\CMakeFiles\show-efuse-table - -build esp-idf/efuse/CMakeFiles/show-efuse-table | ${cmake_ninja_workdir}esp-idf/efuse/CMakeFiles/show-efuse-table: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader\esp-idf\efuse && C:\Users\Laurent\.espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe C:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/efuse_table_gen.py C:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/esp_efuse_table.csv -t esp32h2 --max_blk_len 256 --info" - - -############################################# -# Custom command for esp-idf\efuse\CMakeFiles\show_efuse_table - -build esp-idf/efuse/CMakeFiles/show_efuse_table | ${cmake_ninja_workdir}esp-idf/efuse/CMakeFiles/show_efuse_table: CUSTOM_COMMAND || esp-idf/efuse/show-efuse-table - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader\esp-idf\efuse && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E echo " - DESC = Warning: command "show_efuse_table" is deprecated. Have you wanted to run "show-efuse-table" instead? - - -############################################# -# Custom command for esp-idf\efuse\CMakeFiles\efuse_test_table - -build esp-idf/efuse/CMakeFiles/efuse_test_table | ${cmake_ninja_workdir}esp-idf/efuse/CMakeFiles/efuse_test_table: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader\esp-idf\efuse && C:\Users\Laurent\.espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe C:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/efuse_table_gen.py C:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/test/esp_efuse_test_table.csv -t esp32h2 --max_blk_len 256" - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_security/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader\esp-idf\esp_security && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\esp\v5.5.1\esp-idf\components\bootloader\subproject -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_security/edit_cache: phony esp-idf/esp_security/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_security/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader\esp-idf\esp_security && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\esp\v5.5.1\esp-idf\components\bootloader\subproject -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_security/rebuild_cache: phony esp-idf/esp_security/CMakeFiles/rebuild_cache.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_system - - -############################################# -# Order-only phony target for __idf_esp_system - -build cmake_object_order_depends_target___idf_esp_system: phony || cmake_object_order_depends_target___idf_esp_hw_support - -build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/esp_err.c || cmake_object_order_depends_target___idf_esp_system - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\esp_err.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include - OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir - OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir - TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb - TARGET_PDB = esp-idf\esp_system\libesp_system.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_system - - -############################################# -# Link the static library esp-idf\esp_system\libesp_system.a - -build esp-idf/esp_system/libesp_system.a: C_STATIC_LIBRARY_LINKER____idf_esp_system_ esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj || esp-idf/esp_hw_support/libesp_hw_support.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei - OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb - TARGET_FILE = esp-idf\esp_system\libesp_system.a - TARGET_PDB = esp-idf\esp_system\libesp_system.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_system/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader\esp-idf\esp_system && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\esp\v5.5.1\esp-idf\components\bootloader\subproject -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_system/edit_cache: phony esp-idf/esp_system/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_system/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader\esp-idf\esp_system && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\esp\v5.5.1\esp-idf\components\bootloader\subproject -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_system/rebuild_cache: phony esp-idf/esp_system/CMakeFiles/rebuild_cache.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_hw_support - - -############################################# -# Order-only phony target for __idf_esp_hw_support - -build cmake_object_order_depends_target___idf_esp_hw_support: phony || cmake_object_order_depends_target___idf_esp_common - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/cpu.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\cpu.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include - OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/esp_cpu_intr.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/esp_cpu_intr.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32h2\esp_cpu_intr.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include - OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32h2 - TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/esp_memory_utils.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\esp_memory_utils.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include - OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/cpu_region_protect.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/cpu_region_protect.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32h2\cpu_region_protect.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include - OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32h2 - TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/rtc_clk_init.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/rtc_clk_init.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32h2\rtc_clk_init.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include - OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32h2 - TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/rtc_clk.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/rtc_clk.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32h2\rtc_clk.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include - OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32h2 - TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/pmu_param.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/pmu_param.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32h2\pmu_param.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include - OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32h2 - TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/pmu_init.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/pmu_init.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32h2\pmu_init.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include - OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32h2 - TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/pmu_sleep.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/pmu_sleep.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32h2\pmu_sleep.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include - OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32h2 - TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/rtc_time.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/rtc_time.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32h2\rtc_time.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include - OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32h2 - TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/chip_info.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/chip_info.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32h2\chip_info.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include - OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32h2 - TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_hw_support - - -############################################# -# Link the static library esp-idf\esp_hw_support\libesp_hw_support.a - -build esp-idf/esp_hw_support/libesp_hw_support.a: C_STATIC_LIBRARY_LINKER____idf_esp_hw_support_ esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/esp_cpu_intr.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/cpu_region_protect.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/rtc_clk_init.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/rtc_clk.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/pmu_param.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/pmu_init.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/pmu_sleep.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/rtc_time.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/chip_info.c.obj || esp-idf/esp_common/libesp_common.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei - OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb - TARGET_FILE = esp-idf\esp_hw_support\libesp_hw_support.a - TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_hw_support/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader\esp-idf\esp_hw_support && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\esp\v5.5.1\esp-idf\components\bootloader\subproject -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_hw_support/edit_cache: phony esp-idf/esp_hw_support/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_hw_support/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader\esp-idf\esp_hw_support && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\esp\v5.5.1\esp-idf\components\bootloader\subproject -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_hw_support/rebuild_cache: phony esp-idf/esp_hw_support/CMakeFiles/rebuild_cache.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/CMakeLists.txt -# ============================================================================= - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_hw_support/port/esp32h2/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader\esp-idf\esp_hw_support\port\esp32h2 && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\esp\v5.5.1\esp-idf\components\bootloader\subproject -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_hw_support/port/esp32h2/edit_cache: phony esp-idf/esp_hw_support/port/esp32h2/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_hw_support/port/esp32h2/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader\esp-idf\esp_hw_support\port\esp32h2 && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\esp\v5.5.1\esp-idf\components\bootloader\subproject -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_hw_support/port/esp32h2/rebuild_cache: phony esp-idf/esp_hw_support/port/esp32h2/CMakeFiles/rebuild_cache.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/CMakeLists.txt -# ============================================================================= - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_hw_support/lowpower/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader\esp-idf\esp_hw_support\lowpower && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\esp\v5.5.1\esp-idf\components\bootloader\subproject -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_hw_support/lowpower/edit_cache: phony esp-idf/esp_hw_support/lowpower/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_hw_support/lowpower/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader\esp-idf\esp_hw_support\lowpower && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\esp\v5.5.1\esp-idf\components\bootloader\subproject -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_hw_support/lowpower/rebuild_cache: phony esp-idf/esp_hw_support/lowpower/CMakeFiles/rebuild_cache.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_common - - -############################################# -# Order-only phony target for __idf_esp_common - -build cmake_object_order_depends_target___idf_esp_common: phony || cmake_object_order_depends_target___idf_esp_rom - -build esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj: C_COMPILER____idf_esp_common_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/src/esp_err_to_name.c || cmake_object_order_depends_target___idf_esp_common - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\esp_common\CMakeFiles\__idf_esp_common.dir\src\esp_err_to_name.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include - OBJECT_DIR = esp-idf\esp_common\CMakeFiles\__idf_esp_common.dir - OBJECT_FILE_DIR = esp-idf\esp_common\CMakeFiles\__idf_esp_common.dir\src - TARGET_COMPILE_PDB = esp-idf\esp_common\CMakeFiles\__idf_esp_common.dir\__idf_esp_common.pdb - TARGET_PDB = esp-idf\esp_common\libesp_common.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_common - - -############################################# -# Link the static library esp-idf\esp_common\libesp_common.a - -build esp-idf/esp_common/libesp_common.a: C_STATIC_LIBRARY_LINKER____idf_esp_common_ esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj || esp-idf/esp_rom/libesp_rom.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei - OBJECT_DIR = esp-idf\esp_common\CMakeFiles\__idf_esp_common.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = esp-idf\esp_common\CMakeFiles\__idf_esp_common.dir\__idf_esp_common.pdb - TARGET_FILE = esp-idf\esp_common\libesp_common.a - TARGET_PDB = esp-idf\esp_common\libesp_common.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_common/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader\esp-idf\esp_common && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\esp\v5.5.1\esp-idf\components\bootloader\subproject -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_common/edit_cache: phony esp-idf/esp_common/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_common/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader\esp-idf\esp_common && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\esp\v5.5.1\esp-idf\components\bootloader\subproject -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_common/rebuild_cache: phony esp-idf/esp_common/CMakeFiles/rebuild_cache.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_rom - - -############################################# -# Order-only phony target for __idf_esp_rom - -build cmake_object_order_depends_target___idf_esp_rom: phony || cmake_object_order_depends_target___idf_log - -build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj: C_COMPILER____idf_esp_rom_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_sys.c || cmake_object_order_depends_target___idf_esp_rom - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_sys.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include - OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir - OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches - TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb - TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb - -build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_print.c.obj: C_COMPILER____idf_esp_rom_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_print.c || cmake_object_order_depends_target___idf_esp_rom - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_print.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include - OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir - OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches - TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb - TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb - -build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj: C_COMPILER____idf_esp_rom_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_crc.c || cmake_object_order_depends_target___idf_esp_rom - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_crc.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include - OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir - OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches - TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb - TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb - -build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj: C_COMPILER____idf_esp_rom_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_uart.c || cmake_object_order_depends_target___idf_esp_rom - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_uart.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include - OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir - OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches - TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb - TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb - -build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj: C_COMPILER____idf_esp_rom_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_spiflash.c || cmake_object_order_depends_target___idf_esp_rom - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_spiflash.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include - OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir - OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches - TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb - TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb - -build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj: C_COMPILER____idf_esp_rom_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_efuse.c || cmake_object_order_depends_target___idf_esp_rom - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_efuse.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include - OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir - OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches - TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb - TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb - -build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_gpio.c.obj: C_COMPILER____idf_esp_rom_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_gpio.c || cmake_object_order_depends_target___idf_esp_rom - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_gpio.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include - OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir - OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches - TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb - TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb - -build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_regi2c_esp32h2.c.obj: C_COMPILER____idf_esp_rom_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_regi2c_esp32h2.c || cmake_object_order_depends_target___idf_esp_rom - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_regi2c_esp32h2.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include - OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir - OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches - TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb - TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb - -build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj: C_COMPILER____idf_esp_rom_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_systimer.c || cmake_object_order_depends_target___idf_esp_rom - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_systimer.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include - OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir - OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches - TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb - TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb - -build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_wdt.c.obj: C_COMPILER____idf_esp_rom_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_wdt.c || cmake_object_order_depends_target___idf_esp_rom - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_wdt.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include - OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir - OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches - TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb - TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb - -build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_usb_serial.c.obj: C_COMPILER____idf_esp_rom_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_usb_serial.c || cmake_object_order_depends_target___idf_esp_rom - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_usb_serial.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include - OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir - OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches - TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb - TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_rom - - -############################################# -# Link the static library esp-idf\esp_rom\libesp_rom.a - -build esp-idf/esp_rom/libesp_rom.a: C_STATIC_LIBRARY_LINKER____idf_esp_rom_ esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_print.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_gpio.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_regi2c_esp32h2.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_wdt.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_usb_serial.c.obj || esp-idf/log/liblog.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei - OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb - TARGET_FILE = esp-idf\esp_rom\libesp_rom.a - TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_rom/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader\esp-idf\esp_rom && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\esp\v5.5.1\esp-idf\components\bootloader\subproject -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_rom/edit_cache: phony esp-idf/esp_rom/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_rom/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader\esp-idf\esp_rom && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\esp\v5.5.1\esp-idf\components\bootloader\subproject -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_rom/rebuild_cache: phony esp-idf/esp_rom/CMakeFiles/rebuild_cache.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_log - - -############################################# -# Order-only phony target for __idf_log - -build cmake_object_order_depends_target___idf_log: phony || . - -build esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/log_timestamp.c.obj: C_COMPILER____idf_log_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/src/noos/log_timestamp.c || cmake_object_order_depends_target___idf_log - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\noos\log_timestamp.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include - OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir - OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir\src\noos - TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb - TARGET_PDB = esp-idf\log\liblog.pdb - -build esp-idf/log/CMakeFiles/__idf_log.dir/src/log_timestamp_common.c.obj: C_COMPILER____idf_log_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/src/log_timestamp_common.c || cmake_object_order_depends_target___idf_log - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\log_timestamp_common.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include - OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir - OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir\src - TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb - TARGET_PDB = esp-idf\log\liblog.pdb - -build esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/log_lock.c.obj: C_COMPILER____idf_log_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/src/noos/log_lock.c || cmake_object_order_depends_target___idf_log - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\noos\log_lock.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include - OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir - OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir\src\noos - TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb - TARGET_PDB = esp-idf\log\liblog.pdb - -build esp-idf/log/CMakeFiles/__idf_log.dir/src/buffer/log_buffers.c.obj: C_COMPILER____idf_log_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/src/buffer/log_buffers.c || cmake_object_order_depends_target___idf_log - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\buffer\log_buffers.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include - OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir - OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir\src\buffer - TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb - TARGET_PDB = esp-idf\log\liblog.pdb - -build esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/util.c.obj: C_COMPILER____idf_log_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/src/noos/util.c || cmake_object_order_depends_target___idf_log - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\noos\util.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include - OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir - OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir\src\noos - TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb - TARGET_PDB = esp-idf\log\liblog.pdb - -build esp-idf/log/CMakeFiles/__idf_log.dir/src/util.c.obj: C_COMPILER____idf_log_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/src/util.c || cmake_object_order_depends_target___idf_log - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\util.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include - OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir - OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir\src - TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb - TARGET_PDB = esp-idf\log\liblog.pdb - -build esp-idf/log/CMakeFiles/__idf_log.dir/src/log_format_text.c.obj: C_COMPILER____idf_log_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/src/log_format_text.c || cmake_object_order_depends_target___idf_log - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\log_format_text.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include - OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir - OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir\src - TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb - TARGET_PDB = esp-idf\log\liblog.pdb - -build esp-idf/log/CMakeFiles/__idf_log.dir/src/log_print.c.obj: C_COMPILER____idf_log_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/src/log_print.c || cmake_object_order_depends_target___idf_log - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\log_print.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include - OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir - OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir\src - TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb - TARGET_PDB = esp-idf\log\liblog.pdb - -build esp-idf/log/CMakeFiles/__idf_log.dir/src/log.c.obj: C_COMPILER____idf_log_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/src/log.c || cmake_object_order_depends_target___idf_log - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\log.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include - OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir - OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir\src - TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb - TARGET_PDB = esp-idf\log\liblog.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_log - - -############################################# -# Link the static library esp-idf\log\liblog.a - -build esp-idf/log/liblog.a: C_STATIC_LIBRARY_LINKER____idf_log_ esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/log_timestamp.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/log_timestamp_common.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/log_lock.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/buffer/log_buffers.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/util.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/util.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/log_format_text.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/log_print.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/log.c.obj - LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei - OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb - TARGET_FILE = esp-idf\log\liblog.a - TARGET_PDB = esp-idf\log\liblog.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/log/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader\esp-idf\log && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\esp\v5.5.1\esp-idf\components\bootloader\subproject -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/log/edit_cache: phony esp-idf/log/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/log/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader\esp-idf\log && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\esp\v5.5.1\esp-idf\components\bootloader\subproject -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/log/rebuild_cache: phony esp-idf/log/CMakeFiles/rebuild_cache.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - - -############################################# -# Utility command for bootloader_check_size - -build esp-idf/esptool_py/bootloader_check_size: phony esp-idf/esptool_py/CMakeFiles/bootloader_check_size gen_project_binary - - -############################################# -# Utility command for edit_cache - -build esp-idf/esptool_py/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader\esp-idf\esptool_py && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\esp\v5.5.1\esp-idf\components\bootloader\subproject -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esptool_py/edit_cache: phony esp-idf/esptool_py/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esptool_py/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader\esp-idf\esptool_py && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\esp\v5.5.1\esp-idf\components\bootloader\subproject -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esptool_py/rebuild_cache: phony esp-idf/esptool_py/CMakeFiles/rebuild_cache.util - - -############################################# -# Custom command for esp-idf\esptool_py\CMakeFiles\bootloader_check_size - -build esp-idf/esptool_py/CMakeFiles/bootloader_check_size | ${cmake_ninja_workdir}esp-idf/esptool_py/CMakeFiles/bootloader_check_size: CUSTOM_COMMAND || _project_elf_src bootloader.elf esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_system/libesp_system.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/main/libmain.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/riscv/libriscv.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a gen_project_binary - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader\esp-idf\esptool_py && C:\Users\Laurent\.espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe C:/Users/Laurent/esp/v5.5.1/esp-idf/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/bootloader.bin" - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - - -############################################# -# Utility command for edit_cache - -build esp-idf/partition_table/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader\esp-idf\partition_table && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\esp\v5.5.1\esp-idf\components\bootloader\subproject -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/partition_table/edit_cache: phony esp-idf/partition_table/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/partition_table/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader\esp-idf\partition_table && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\esp\v5.5.1\esp-idf\components\bootloader\subproject -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/partition_table/rebuild_cache: phony esp-idf/partition_table/CMakeFiles/rebuild_cache.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - - -############################################# -# Utility command for edit_cache - -build esp-idf/bootloader/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader\esp-idf\bootloader && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\esp\v5.5.1\esp-idf\components\bootloader\subproject -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/bootloader/edit_cache: phony esp-idf/bootloader/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/bootloader/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader\esp-idf\bootloader && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\esp\v5.5.1\esp-idf\components\bootloader\subproject -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/bootloader/rebuild_cache: phony esp-idf/bootloader/CMakeFiles/rebuild_cache.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_tee/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader\esp-idf\esp_tee && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\esp\v5.5.1\esp-idf\components\bootloader\subproject -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_tee/edit_cache: phony esp-idf/esp_tee/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_tee/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader\esp-idf\esp_tee && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\esp\v5.5.1\esp-idf\components\bootloader\subproject -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_tee/rebuild_cache: phony esp-idf/esp_tee/CMakeFiles/rebuild_cache.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - - -############################################# -# Utility command for edit_cache - -build esp-idf/freertos/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader\esp-idf\freertos && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\esp\v5.5.1\esp-idf\components\bootloader\subproject -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/freertos/edit_cache: phony esp-idf/freertos/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/freertos/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader\esp-idf\freertos && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\esp\v5.5.1\esp-idf\components\bootloader\subproject -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/freertos/rebuild_cache: phony esp-idf/freertos/CMakeFiles/rebuild_cache.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_main - - -############################################# -# Order-only phony target for __idf_main - -build cmake_object_order_depends_target___idf_main: phony || cmake_object_order_depends_target___idf_hal - -build esp-idf/main/CMakeFiles/__idf_main.dir/bootloader_start.c.obj: C_COMPILER____idf_main_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/main/bootloader_start.c || cmake_object_order_depends_target___idf_main - DEFINES = -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE - DEP_FILE = esp-idf\main\CMakeFiles\__idf_main.dir\bootloader_start.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include - OBJECT_DIR = esp-idf\main\CMakeFiles\__idf_main.dir - OBJECT_FILE_DIR = esp-idf\main\CMakeFiles\__idf_main.dir - TARGET_COMPILE_PDB = esp-idf\main\CMakeFiles\__idf_main.dir\__idf_main.pdb - TARGET_PDB = esp-idf\main\libmain.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_main - - -############################################# -# Link the static library esp-idf\main\libmain.a - -build esp-idf/main/libmain.a: C_STATIC_LIBRARY_LINKER____idf_main_ esp-idf/main/CMakeFiles/__idf_main.dir/bootloader_start.c.obj || esp-idf/hal/libhal.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei - OBJECT_DIR = esp-idf\main\CMakeFiles\__idf_main.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = esp-idf\main\CMakeFiles\__idf_main.dir\__idf_main.pdb - TARGET_FILE = esp-idf\main\libmain.a - TARGET_PDB = esp-idf\main\libmain.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/main/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader\esp-idf\main && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\esp\v5.5.1\esp-idf\components\bootloader\subproject -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/main/edit_cache: phony esp-idf/main/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/main/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader\esp-idf\main && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\esp\v5.5.1\esp-idf\components\bootloader\subproject -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/main/rebuild_cache: phony esp-idf/main/CMakeFiles/rebuild_cache.util - -# ============================================================================= -# Target aliases. - -build __idf_bootloader_support: phony esp-idf/bootloader_support/libbootloader_support.a - -build __idf_efuse: phony esp-idf/efuse/libefuse.a - -build __idf_esp_bootloader_format: phony esp-idf/esp_bootloader_format/libesp_bootloader_format.a - -build __idf_esp_common: phony esp-idf/esp_common/libesp_common.a - -build __idf_esp_hw_support: phony esp-idf/esp_hw_support/libesp_hw_support.a - -build __idf_esp_rom: phony esp-idf/esp_rom/libesp_rom.a - -build __idf_esp_system: phony esp-idf/esp_system/libesp_system.a - -build __idf_hal: phony esp-idf/hal/libhal.a - -build __idf_log: phony esp-idf/log/liblog.a - -build __idf_main: phony esp-idf/main/libmain.a - -build __idf_micro-ecc: phony esp-idf/micro-ecc/libmicro-ecc.a - -build __idf_riscv: phony esp-idf/riscv/libriscv.a - -build __idf_soc: phony esp-idf/soc/libsoc.a - -build __idf_spi_flash: phony esp-idf/spi_flash/libspi_flash.a - -build bootloader_check_size: phony esp-idf/esptool_py/bootloader_check_size - -build efuse-common-table: phony esp-idf/efuse/efuse-common-table - -build efuse-custom-table: phony esp-idf/efuse/efuse-custom-table - -build efuse_common_table: phony esp-idf/efuse/efuse_common_table - -build efuse_custom_table: phony esp-idf/efuse/efuse_custom_table - -build efuse_test_table: phony esp-idf/efuse/efuse_test_table - -build libbootloader_support.a: phony esp-idf/bootloader_support/libbootloader_support.a - -build libefuse.a: phony esp-idf/efuse/libefuse.a - -build libesp_bootloader_format.a: phony esp-idf/esp_bootloader_format/libesp_bootloader_format.a - -build libesp_common.a: phony esp-idf/esp_common/libesp_common.a - -build libesp_hw_support.a: phony esp-idf/esp_hw_support/libesp_hw_support.a - -build libesp_rom.a: phony esp-idf/esp_rom/libesp_rom.a - -build libesp_system.a: phony esp-idf/esp_system/libesp_system.a - -build libhal.a: phony esp-idf/hal/libhal.a - -build liblog.a: phony esp-idf/log/liblog.a - -build libmain.a: phony esp-idf/main/libmain.a - -build libmicro-ecc.a: phony esp-idf/micro-ecc/libmicro-ecc.a - -build libriscv.a: phony esp-idf/riscv/libriscv.a - -build libsoc.a: phony esp-idf/soc/libsoc.a - -build libspi_flash.a: phony esp-idf/spi_flash/libspi_flash.a - -build show-efuse-table: phony esp-idf/efuse/show-efuse-table - -build show_efuse_table: phony esp-idf/efuse/show_efuse_table - -# ============================================================================= -# Folder targets. - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader - -build all: phony app bootloader.elf esp-idf/all - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf - -build esp-idf/all: phony esp-idf/hal/all esp-idf/riscv/all esp-idf/newlib/all esp-idf/soc/all esp-idf/micro-ecc/all esp-idf/spi_flash/all esp-idf/esp_bootloader_format/all esp-idf/esp_app_format/all esp-idf/bootloader_support/all esp-idf/efuse/all esp-idf/esp_security/all esp-idf/esp_system/all esp-idf/esp_hw_support/all esp-idf/esp_common/all esp-idf/esp_rom/all esp-idf/log/all esp-idf/esptool_py/all esp-idf/partition_table/all esp-idf/bootloader/all esp-idf/esp_tee/all esp-idf/freertos/all esp-idf/main/all - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader - -build esp-idf/bootloader/all: phony - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support - -build esp-idf/bootloader_support/all: phony esp-idf/bootloader_support/libbootloader_support.a - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/efuse - -build esp-idf/efuse/all: phony esp-idf/efuse/libefuse.a - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_app_format - -build esp-idf/esp_app_format/all: phony - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_bootloader_format - -build esp-idf/esp_bootloader_format/all: phony esp-idf/esp_bootloader_format/libesp_bootloader_format.a - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_common - -build esp-idf/esp_common/all: phony esp-idf/esp_common/libesp_common.a - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_hw_support - -build esp-idf/esp_hw_support/all: phony esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_hw_support/port/esp32h2/all esp-idf/esp_hw_support/lowpower/all - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_hw_support/lowpower - -build esp-idf/esp_hw_support/lowpower/all: phony - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_hw_support/port/esp32h2 - -build esp-idf/esp_hw_support/port/esp32h2/all: phony - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_rom - -build esp-idf/esp_rom/all: phony esp-idf/esp_rom/libesp_rom.a - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_security - -build esp-idf/esp_security/all: phony - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_system - -build esp-idf/esp_system/all: phony esp-idf/esp_system/libesp_system.a - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_tee - -build esp-idf/esp_tee/all: phony - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esptool_py - -build esp-idf/esptool_py/all: phony - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/freertos - -build esp-idf/freertos/all: phony - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/hal - -build esp-idf/hal/all: phony esp-idf/hal/libhal.a - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/log - -build esp-idf/log/all: phony esp-idf/log/liblog.a - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/main - -build esp-idf/main/all: phony esp-idf/main/libmain.a - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/micro-ecc - -build esp-idf/micro-ecc/all: phony esp-idf/micro-ecc/libmicro-ecc.a - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/newlib - -build esp-idf/newlib/all: phony - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/partition_table - -build esp-idf/partition_table/all: phony - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/riscv - -build esp-idf/riscv/all: phony esp-idf/riscv/libriscv.a - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc - -build esp-idf/soc/all: phony esp-idf/soc/libsoc.a - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/spi_flash - -build esp-idf/spi_flash/all: phony esp-idf/spi_flash/libspi_flash.a - -# ============================================================================= -# Built-in targets - - -############################################# -# Re-run CMake if any of its inputs changed. - -build build.ninja: RERUN_CMAKE | C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeASMCompiler.cmake.in C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeASMInformation.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompiler.cmake.in C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCInformation.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompiler.cmake.in C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXInformation.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCommonLanguageInclude.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCompilerIdDetection.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineASMCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCXXCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerSupport.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineSystem.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeFindBinUtils.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeGenericSystem.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeInitializeConfigs.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeLanguageInformation.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeNinjaFindMake.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeParseImplicitIncludeInfo.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeParseImplicitLinkInfo.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeParseLibraryArchitecture.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeSystem.cmake.in C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeSystemSpecificInformation.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeSystemSpecificInitialize.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestASMCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCompilerCommon.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCCompilerFlag.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCSourceCompiles.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCXXCompilerFlag.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCXXSourceCompiles.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/ADSP-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/ARMCC-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/ARMClang-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/AppleClang-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Borland-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Bruce-C-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/CMakeCommonCompilerMacros.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Clang-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Clang-DetermineCompilerInternal.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Compaq-C-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Cray-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/CrayClang-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Embarcadero-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Fujitsu-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GHS-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-ASM.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-C-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-C.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-CXX.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-FindBinUtils.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/HP-C-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/HP-CXX-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IAR-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IBMClang-C-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Intel-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/LCC-C-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/MSVC-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/NVHPC-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/NVIDIA-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/OrangeC-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/PGI-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/PathScale-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/SCO-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/SDCC-C-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/SunPro-C-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/TI-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/TIClang-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Tasking-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Watcom-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/XL-C-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/XL-CXX-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/XLClang-C-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/zOS-C-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/shared_internal_commands.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindGit.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindPackageHandleStandardArgs.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindPackageMessage.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CMakeDetermineLinkerId.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckCompilerFlag.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckFlagCommonConfig.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckSourceCompiles.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/FeatureTesting.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Platform/Generic.cmake C$:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/sdkconfig C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/bootloader/subproject/components/micro-ecc/micro-ecc/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/bt/controller/lib_esp32/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/bt/controller/lib_esp32c3_family/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/bt/controller/lib_esp32c5/esp32c5-bt-lib/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/bt/controller/lib_esp32c6/esp32c6-bt-lib/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/bt/esp_ble_mesh/lib/lib/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/bt/host/nimble/nimble/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/cmock/CMock/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/esp_coex/lib/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/esp_phy/lib/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/esp_wifi/lib/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/heap/tlsf/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/json/cJSON/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/lwip/lwip/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/mbedtls/mbedtls/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/mqtt/esp-mqtt/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/openthread/lib/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/openthread/openthread/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/protobuf-c/protobuf-c/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/spiffs/spiffs/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/unity/unity/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/project_include.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/main/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bt/controller/lib_esp32/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bt/controller/lib_esp32c3_family/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bt/controller/lib_esp32c5/esp32c5-bt-lib/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bt/controller/lib_esp32c6/esp32c6-bt-lib/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bt/esp_ble_mesh/lib/lib/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bt/host/nimble/nimble/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/cmock/CMock/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/sources.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/lib/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/project_include.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/lowpower/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_tee/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_tee/project_include.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_wifi/lib/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esptool_py/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esptool_py/espefuse.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esptool_py/project_include.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/json/cJSON/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mqtt/esp-mqtt/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/project_include.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/lib/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/partition_table/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/partition_table/project_include.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/protobuf-c/protobuf-c/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/project_include.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/spiffs/spiffs/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/unity/unity/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/build.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/component.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/depgraph.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/dfu.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/gdbinit.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/git_submodules.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/idf.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/kconfig.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/ldgen.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/openocd.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/prefix_map.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/project.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/project_description.json.in C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/symbols.gdbinit.in C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/targets.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake.in C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/tool_version_check.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/toolchain-esp32h2.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/utilities.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/version.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/kconfig_new/confgen.py C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/kconfig_new/config.env.in CMakeCache.txt CMakeFiles/3.30.2/CMakeASMCompiler.cmake CMakeFiles/3.30.2/CMakeCCompiler.cmake CMakeFiles/3.30.2/CMakeCXXCompiler.cmake CMakeFiles/3.30.2/CMakeSystem.cmake CMakeFiles/git-data/grabRef.cmake config/sdkconfig.cmake config/sdkconfig.h - pool = console - - -############################################# -# A missing CMake input file is not an error. - -build C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeASMCompiler.cmake.in C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeASMInformation.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompiler.cmake.in C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCInformation.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompiler.cmake.in C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXInformation.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCommonLanguageInclude.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCompilerIdDetection.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineASMCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCXXCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerSupport.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineSystem.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeFindBinUtils.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeGenericSystem.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeInitializeConfigs.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeLanguageInformation.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeNinjaFindMake.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeParseImplicitIncludeInfo.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeParseImplicitLinkInfo.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeParseLibraryArchitecture.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeSystem.cmake.in C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeSystemSpecificInformation.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeSystemSpecificInitialize.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestASMCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCompilerCommon.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCCompilerFlag.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCSourceCompiles.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCXXCompilerFlag.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCXXSourceCompiles.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/ADSP-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/ARMCC-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/ARMClang-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/AppleClang-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Borland-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Bruce-C-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/CMakeCommonCompilerMacros.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Clang-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Clang-DetermineCompilerInternal.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Compaq-C-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Cray-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/CrayClang-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Embarcadero-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Fujitsu-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GHS-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-ASM.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-C-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-C.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-CXX.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-FindBinUtils.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/HP-C-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/HP-CXX-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IAR-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IBMClang-C-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Intel-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/LCC-C-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/MSVC-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/NVHPC-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/NVIDIA-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/OrangeC-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/PGI-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/PathScale-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/SCO-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/SDCC-C-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/SunPro-C-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/TI-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/TIClang-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Tasking-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Watcom-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/XL-C-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/XL-CXX-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/XLClang-C-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/zOS-C-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/shared_internal_commands.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindGit.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindPackageHandleStandardArgs.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindPackageMessage.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CMakeDetermineLinkerId.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckCompilerFlag.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckFlagCommonConfig.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckSourceCompiles.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/FeatureTesting.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Platform/Generic.cmake C$:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/sdkconfig C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/bootloader/subproject/components/micro-ecc/micro-ecc/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/bt/controller/lib_esp32/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/bt/controller/lib_esp32c3_family/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/bt/controller/lib_esp32c5/esp32c5-bt-lib/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/bt/controller/lib_esp32c6/esp32c6-bt-lib/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/bt/esp_ble_mesh/lib/lib/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/bt/host/nimble/nimble/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/cmock/CMock/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/esp_coex/lib/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/esp_phy/lib/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/esp_wifi/lib/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/heap/tlsf/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/json/cJSON/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/lwip/lwip/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/mbedtls/mbedtls/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/mqtt/esp-mqtt/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/openthread/lib/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/openthread/openthread/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/protobuf-c/protobuf-c/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/spiffs/spiffs/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/unity/unity/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/project_include.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/main/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bt/controller/lib_esp32/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bt/controller/lib_esp32c3_family/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bt/controller/lib_esp32c5/esp32c5-bt-lib/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bt/controller/lib_esp32c6/esp32c6-bt-lib/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bt/esp_ble_mesh/lib/lib/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bt/host/nimble/nimble/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/cmock/CMock/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/sources.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/lib/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/project_include.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/lowpower/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_tee/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_tee/project_include.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_wifi/lib/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esptool_py/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esptool_py/espefuse.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esptool_py/project_include.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/json/cJSON/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mqtt/esp-mqtt/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/project_include.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/lib/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/partition_table/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/partition_table/project_include.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/protobuf-c/protobuf-c/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/project_include.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/spiffs/spiffs/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/unity/unity/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/build.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/component.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/depgraph.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/dfu.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/gdbinit.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/git_submodules.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/idf.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/kconfig.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/ldgen.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/openocd.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/prefix_map.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/project.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/project_description.json.in C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/symbols.gdbinit.in C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/targets.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake.in C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/tool_version_check.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/toolchain-esp32h2.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/utilities.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/version.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/kconfig_new/confgen.py C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/kconfig_new/config.env.in CMakeCache.txt CMakeFiles/3.30.2/CMakeASMCompiler.cmake CMakeFiles/3.30.2/CMakeCCompiler.cmake CMakeFiles/3.30.2/CMakeCXXCompiler.cmake CMakeFiles/3.30.2/CMakeSystem.cmake CMakeFiles/git-data/grabRef.cmake config/sdkconfig.cmake config/sdkconfig.h: phony - - -############################################# -# Clean additional files. - -build CMakeFiles/clean.additional: CLEAN_ADDITIONAL - - -############################################# -# Clean all the built files. - -build clean: CLEAN CMakeFiles/clean.additional - - -############################################# -# Print all primary targets available. - -build help: HELP - - -############################################# -# Make the all target the default. - -default all diff --git a/esp32-thread/open-thread-rcp/build/bootloader/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/bootloader/cmake_install.cmake deleted file mode 100644 index c0192404..00000000 --- a/esp32-thread/open-thread-rcp/build/bootloader/cmake_install.cmake +++ /dev/null @@ -1,62 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/cmake_install.cmake") -endif() - -if(CMAKE_INSTALL_COMPONENT) - if(CMAKE_INSTALL_COMPONENT MATCHES "^[a-zA-Z0-9_.+-]+$") - set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") - else() - string(MD5 CMAKE_INST_COMP_HASH "${CMAKE_INSTALL_COMPONENT}") - set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INST_COMP_HASH}.txt") - unset(CMAKE_INST_COMP_HASH) - endif() -else() - set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT - "${CMAKE_INSTALL_MANIFEST_FILES}") - file(WRITE "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/${CMAKE_INSTALL_MANIFEST}" - "${CMAKE_INSTALL_MANIFEST_CONTENT}") -endif() diff --git a/esp32-thread/open-thread-rcp/build/bootloader/compile_commands.json b/esp32-thread/open-thread-rcp/build/bootloader/compile_commands.json deleted file mode 100644 index 2a484f5c..00000000 --- a/esp32-thread/open-thread-rcp/build/bootloader/compile_commands.json +++ /dev/null @@ -1,632 +0,0 @@ -[ -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -o CMakeFiles\\bootloader.elf.dir\\project_elf_src_esp32h2.c.obj -c C:\\Users\\Laurent\\Desktop\\board-mate\\esp32-thread\\open-thread-rcp\\build\\bootloader\\project_elf_src_esp32h2.c", - "file": "C:\\Users\\Laurent\\Desktop\\board-mate\\esp32-thread\\open-thread-rcp\\build\\bootloader\\project_elf_src_esp32h2.c", - "output": "CMakeFiles\\bootloader.elf.dir\\project_elf_src_esp32h2.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\hal\\CMakeFiles\\__idf_hal.dir\\hal_utils.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\hal_utils.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\hal_utils.c", - "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\hal_utils.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\hal\\CMakeFiles\\__idf_hal.dir\\efuse_hal.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\efuse_hal.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\efuse_hal.c", - "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\efuse_hal.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\hal\\CMakeFiles\\__idf_hal.dir\\esp32h2\\efuse_hal.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\esp32h2\\efuse_hal.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\esp32h2\\efuse_hal.c", - "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\esp32h2\\efuse_hal.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\hal\\CMakeFiles\\__idf_hal.dir\\lp_timer_hal.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\lp_timer_hal.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\lp_timer_hal.c", - "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\lp_timer_hal.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\hal\\CMakeFiles\\__idf_hal.dir\\mmu_hal.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\mmu_hal.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\mmu_hal.c", - "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\mmu_hal.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\hal\\CMakeFiles\\__idf_hal.dir\\cache_hal.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\cache_hal.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\cache_hal.c", - "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\cache_hal.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\riscv\\CMakeFiles\\__idf_riscv.dir\\rv_utils.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\riscv\\rv_utils.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\riscv\\rv_utils.c", - "output": "esp-idf\\riscv\\CMakeFiles\\__idf_riscv.dir\\rv_utils.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\lldesc.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\lldesc.c", - "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\lldesc.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\dport_access_common.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\dport_access_common.c", - "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\dport_access_common.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\esp32h2\\interrupts.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\interrupts.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\interrupts.c", - "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32h2\\interrupts.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\esp32h2\\gpio_periph.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\gpio_periph.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\gpio_periph.c", - "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32h2\\gpio_periph.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\esp32h2\\uart_periph.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\uart_periph.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\uart_periph.c", - "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32h2\\uart_periph.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\esp32h2\\adc_periph.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\adc_periph.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\adc_periph.c", - "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32h2\\adc_periph.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\esp32h2\\ana_cmpr_periph.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\ana_cmpr_periph.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\ana_cmpr_periph.c", - "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32h2\\ana_cmpr_periph.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\esp32h2\\dedic_gpio_periph.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\dedic_gpio_periph.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\dedic_gpio_periph.c", - "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32h2\\dedic_gpio_periph.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\esp32h2\\etm_periph.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\etm_periph.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\etm_periph.c", - "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32h2\\etm_periph.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\esp32h2\\gdma_periph.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\gdma_periph.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\gdma_periph.c", - "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32h2\\gdma_periph.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\esp32h2\\spi_periph.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\spi_periph.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\spi_periph.c", - "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32h2\\spi_periph.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\esp32h2\\ledc_periph.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\ledc_periph.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\ledc_periph.c", - "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32h2\\ledc_periph.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\esp32h2\\pcnt_periph.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\pcnt_periph.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\pcnt_periph.c", - "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32h2\\pcnt_periph.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\esp32h2\\rmt_periph.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\rmt_periph.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\rmt_periph.c", - "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32h2\\rmt_periph.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\esp32h2\\sdm_periph.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\sdm_periph.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\sdm_periph.c", - "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32h2\\sdm_periph.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\esp32h2\\i2s_periph.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\i2s_periph.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\i2s_periph.c", - "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32h2\\i2s_periph.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\esp32h2\\i2c_periph.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\i2c_periph.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\i2c_periph.c", - "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32h2\\i2c_periph.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\esp32h2\\temperature_sensor_periph.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\temperature_sensor_periph.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\temperature_sensor_periph.c", - "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32h2\\temperature_sensor_periph.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\esp32h2\\timer_periph.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\timer_periph.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\timer_periph.c", - "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32h2\\timer_periph.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\esp32h2\\parlio_periph.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\parlio_periph.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\parlio_periph.c", - "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32h2\\parlio_periph.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\esp32h2\\mcpwm_periph.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\mcpwm_periph.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\mcpwm_periph.c", - "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32h2\\mcpwm_periph.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\esp32h2\\mpi_periph.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\mpi_periph.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\mpi_periph.c", - "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32h2\\mpi_periph.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\esp32h2\\twai_periph.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\twai_periph.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\twai_periph.c", - "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32h2\\twai_periph.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\esp32h2\\wdt_periph.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\wdt_periph.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\wdt_periph.c", - "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32h2\\wdt_periph.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\esp32h2\\ieee802154_periph.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\ieee802154_periph.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\ieee802154_periph.c", - "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32h2\\ieee802154_periph.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\esp32h2\\rtc_io_periph.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\rtc_io_periph.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\rtc_io_periph.c", - "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32h2\\rtc_io_periph.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\esp32h2\\system_retention_periph.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\system_retention_periph.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\system_retention_periph.c", - "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32h2\\system_retention_periph.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\esp32h2\\power_supply_periph.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\power_supply_periph.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\power_supply_periph.c", - "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32h2\\power_supply_periph.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader\\subproject\\components\\micro-ecc\\uECC_verify_antifault.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader\\subproject\\components\\micro-ecc\\uECC_verify_antifault.c", - "output": "esp-idf\\micro-ecc\\CMakeFiles\\__idf_micro-ecc.dir\\uECC_verify_antifault.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\spi_flash\\spi_flash_wrap.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\spi_flash\\spi_flash_wrap.c", - "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_wrap.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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_bootloader_format\\CMakeFiles\\__idf_esp_bootloader_format.dir\\esp_bootloader_desc.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_bootloader_format\\esp_bootloader_desc.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_bootloader_format\\esp_bootloader_desc.c", - "output": "esp-idf\\esp_bootloader_format\\CMakeFiles\\__idf_esp_bootloader_format.dir\\esp_bootloader_desc.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_common.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_common.c", - "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_common.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_common_loader.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_common_loader.c", - "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_common_loader.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_clock_init.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_clock_init.c", - "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_clock_init.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_mem.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_mem.c", - "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_mem.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_random.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_random.c", - "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_random.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_efuse.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_efuse.c", - "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_efuse.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\flash_encrypt.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\flash_encrypt.c", - "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\flash_encrypt.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\secure_boot.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\secure_boot.c", - "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\secure_boot.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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_esp32h2.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_random_esp32h2.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_random_esp32h2.c", - "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_random_esp32h2.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\bootloader_flash.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\bootloader_flash.c", - "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\bootloader_flash\\src\\bootloader_flash.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\flash_qio_mode.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\flash_qio_mode.c", - "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\bootloader_flash\\src\\flash_qio_mode.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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_esp32h2.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\bootloader_flash_config_esp32h2.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\bootloader_flash_config_esp32h2.c", - "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\bootloader_flash\\src\\bootloader_flash_config_esp32h2.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_utility.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_utility.c", - "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_utility.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\flash_partitions.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\flash_partitions.c", - "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\flash_partitions.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\esp_image_format.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\esp_image_format.c", - "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\esp_image_format.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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_sha.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_sha.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_sha.c", - "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_sha.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_init.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_init.c", - "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_init.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_clock_loader.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_clock_loader.c", - "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_clock_loader.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_console.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_console.c", - "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_console.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_console_loader.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_console_loader.c", - "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_console_loader.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\esp32h2\\bootloader_soc.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\esp32h2\\bootloader_soc.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\esp32h2\\bootloader_soc.c", - "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\esp32h2\\bootloader_soc.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\esp32h2\\bootloader_esp32h2.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\esp32h2\\bootloader_esp32h2.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\esp32h2\\bootloader_esp32h2.c", - "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\esp32h2\\bootloader_esp32h2.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_panic.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_panic.c", - "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_panic.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\esp32h2\\esp_efuse_table.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\efuse\\esp32h2\\esp_efuse_table.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\efuse\\esp32h2\\esp_efuse_table.c", - "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32h2\\esp_efuse_table.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\esp32h2\\esp_efuse_table_v0.0_v1.1.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\efuse\\esp32h2\\esp_efuse_table_v0.0_v1.1.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\efuse\\esp32h2\\esp_efuse_table_v0.0_v1.1.c", - "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32h2\\esp_efuse_table_v0.0_v1.1.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\esp32h2\\esp_efuse_fields.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\efuse\\esp32h2\\esp_efuse_fields.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\efuse\\esp32h2\\esp_efuse_fields.c", - "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32h2\\esp_efuse_fields.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\esp32h2\\esp_efuse_rtc_calib.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\efuse\\esp32h2\\esp_efuse_rtc_calib.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\efuse\\esp32h2\\esp_efuse_rtc_calib.c", - "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32h2\\esp_efuse_rtc_calib.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\esp32h2\\esp_efuse_utility.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\efuse\\esp32h2\\esp_efuse_utility.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\efuse\\esp32h2\\esp_efuse_utility.c", - "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32h2\\esp_efuse_utility.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\efuse\\src\\esp_efuse_api.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\efuse\\src\\esp_efuse_api.c", - "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_api.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\efuse\\src\\esp_efuse_fields.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\efuse\\src\\esp_efuse_fields.c", - "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_fields.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\efuse\\src\\esp_efuse_utility.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\efuse\\src\\esp_efuse_utility.c", - "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_utility.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\with_key_purposes\\esp_efuse_api_key.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\efuse\\src\\efuse_controller\\keys\\with_key_purposes\\esp_efuse_api_key.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\efuse\\src\\efuse_controller\\keys\\with_key_purposes\\esp_efuse_api_key.c", - "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\efuse_controller\\keys\\with_key_purposes\\esp_efuse_api_key.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\esp_err.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\esp_err.c", - "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\esp_err.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\cpu.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\cpu.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\cpu.c", - "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\cpu.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32h2\\esp_cpu_intr.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32h2\\esp_cpu_intr.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32h2\\esp_cpu_intr.c", - "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32h2\\esp_cpu_intr.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\esp_memory_utils.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\esp_memory_utils.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\esp_memory_utils.c", - "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\esp_memory_utils.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32h2\\cpu_region_protect.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32h2\\cpu_region_protect.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32h2\\cpu_region_protect.c", - "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32h2\\cpu_region_protect.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32h2\\rtc_clk_init.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32h2\\rtc_clk_init.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32h2\\rtc_clk_init.c", - "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32h2\\rtc_clk_init.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32h2\\rtc_clk.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32h2\\rtc_clk.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32h2\\rtc_clk.c", - "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32h2\\rtc_clk.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32h2\\pmu_param.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32h2\\pmu_param.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32h2\\pmu_param.c", - "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32h2\\pmu_param.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32h2\\pmu_init.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32h2\\pmu_init.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32h2\\pmu_init.c", - "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32h2\\pmu_init.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32h2\\pmu_sleep.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32h2\\pmu_sleep.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32h2\\pmu_sleep.c", - "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32h2\\pmu_sleep.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32h2\\rtc_time.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32h2\\rtc_time.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32h2\\rtc_time.c", - "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32h2\\rtc_time.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32h2\\chip_info.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32h2\\chip_info.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32h2\\chip_info.c", - "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32h2\\chip_info.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_common\\src\\esp_err_to_name.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_common\\src\\esp_err_to_name.c", - "output": "esp-idf\\esp_common\\CMakeFiles\\__idf_esp_common.dir\\src\\esp_err_to_name.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_sys.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_sys.c", - "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_sys.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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_print.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_print.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_print.c", - "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_print.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_crc.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_crc.c", - "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_crc.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_uart.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_uart.c", - "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_uart.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_spiflash.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_spiflash.c", - "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_spiflash.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_efuse.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_efuse.c", - "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_efuse.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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_gpio.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_gpio.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_gpio.c", - "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_gpio.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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_regi2c_esp32h2.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_regi2c_esp32h2.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_regi2c_esp32h2.c", - "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_regi2c_esp32h2.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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_systimer.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_systimer.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_systimer.c", - "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_systimer.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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_wdt.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_wdt.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_wdt.c", - "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_wdt.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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_usb_serial.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_usb_serial.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_usb_serial.c", - "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_usb_serial.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\src\\noos\\log_timestamp.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\noos\\log_timestamp.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\noos\\log_timestamp.c", - "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\noos\\log_timestamp.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\src\\log_timestamp_common.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\log_timestamp_common.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\log_timestamp_common.c", - "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_timestamp_common.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\src\\noos\\log_lock.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\noos\\log_lock.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\noos\\log_lock.c", - "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\noos\\log_lock.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\src\\buffer\\log_buffers.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\buffer\\log_buffers.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\buffer\\log_buffers.c", - "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\buffer\\log_buffers.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\src\\noos\\util.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\noos\\util.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\noos\\util.c", - "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\noos\\util.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\src\\util.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\util.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\util.c", - "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\util.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\src\\log_format_text.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\log_format_text.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\log_format_text.c", - "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_format_text.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\src\\log_print.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\log_print.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\log_print.c", - "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_print.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\src\\log.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\log.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\log.c", - "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DNON_OS_BUILD=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/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\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader\\subproject\\main\\bootloader_start.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader\\subproject\\main\\bootloader_start.c", - "output": "esp-idf\\main\\CMakeFiles\\__idf_main.dir\\bootloader_start.c.obj" -} -] \ No newline at end of file diff --git a/esp32-thread/open-thread-rcp/build/bootloader/config.env b/esp32-thread/open-thread-rcp/build/bootloader/config.env deleted file mode 100644 index 5730f61d..00000000 --- a/esp32-thread/open-thread-rcp/build/bootloader/config.env +++ /dev/null @@ -1,12 +0,0 @@ -{ - "COMPONENT_KCONFIGS": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/Kconfig", - "COMPONENT_KCONFIGS_PROJBUILD": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/Kconfig.projbuild;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/Kconfig.projbuild;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/Kconfig.projbuild;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_tee/Kconfig.projbuild;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esptool_py/Kconfig.projbuild;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/partition_table/Kconfig.projbuild", - "COMPONENT_SDKCONFIG_RENAMES": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/sdkconfig.rename;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/sdkconfig.rename;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/sdkconfig.rename;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esptool_py/sdkconfig.rename;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/sdkconfig.rename;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/sdkconfig.rename;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/sdkconfig.rename;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/sdkconfig.rename", - "IDF_TARGET": "esp32h2", - "IDF_TOOLCHAIN": "gcc", - "IDF_VERSION": "5.5.1", - "IDF_ENV_FPGA": "", - "IDF_PATH": "C:/Users/Laurent/esp/v5.5.1/esp-idf", - "COMPONENT_KCONFIGS_SOURCE_FILE": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/kconfigs.in", - "COMPONENT_KCONFIGS_PROJBUILD_SOURCE_FILE": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/kconfigs_projbuild.in" -} diff --git a/esp32-thread/open-thread-rcp/build/bootloader/config/kconfig_menus.json b/esp32-thread/open-thread-rcp/build/bootloader/config/kconfig_menus.json deleted file mode 100644 index 3b15a90d..00000000 --- a/esp32-thread/open-thread-rcp/build/bootloader/config/kconfig_menus.json +++ /dev/null @@ -1,12376 +0,0 @@ -[ - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_CAPS_ECO_VER_MAX", - "name": "SOC_CAPS_ECO_VER_MAX", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_SUPPORTED", - "name": "SOC_ADC_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ANA_CMPR_SUPPORTED", - "name": "SOC_ANA_CMPR_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_DEDICATED_GPIO_SUPPORTED", - "name": "SOC_DEDICATED_GPIO_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_UART_SUPPORTED", - "name": "SOC_UART_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_UHCI_SUPPORTED", - "name": "SOC_UHCI_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GDMA_SUPPORTED", - "name": "SOC_GDMA_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_AHB_GDMA_SUPPORTED", - "name": "SOC_AHB_GDMA_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ASYNC_MEMCPY_SUPPORTED", - "name": "SOC_ASYNC_MEMCPY_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PCNT_SUPPORTED", - "name": "SOC_PCNT_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MCPWM_SUPPORTED", - "name": "SOC_MCPWM_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_TWAI_SUPPORTED", - "name": "SOC_TWAI_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PHY_SUPPORTED", - "name": "SOC_PHY_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_BT_SUPPORTED", - "name": "SOC_BT_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GPTIMER_SUPPORTED", - "name": "SOC_GPTIMER_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_IEEE802154_SUPPORTED", - "name": "SOC_IEEE802154_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_IEEE802154_BLE_ONLY", - "name": "SOC_IEEE802154_BLE_ONLY", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_USB_SERIAL_JTAG_SUPPORTED", - "name": "SOC_USB_SERIAL_JTAG_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_TEMP_SENSOR_SUPPORTED", - "name": "SOC_TEMP_SENSOR_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SUPPORTS_SECURE_DL_MODE", - "name": "SOC_SUPPORTS_SECURE_DL_MODE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_EFUSE_KEY_PURPOSE_FIELD", - "name": "SOC_EFUSE_KEY_PURPOSE_FIELD", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_EFUSE_SUPPORTED", - "name": "SOC_EFUSE_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RTC_FAST_MEM_SUPPORTED", - "name": "SOC_RTC_FAST_MEM_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RTC_MEM_SUPPORTED", - "name": "SOC_RTC_MEM_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2S_SUPPORTED", - "name": "SOC_I2S_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SDM_SUPPORTED", - "name": "SOC_SDM_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ETM_SUPPORTED", - "name": "SOC_ETM_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RMT_SUPPORTED", - "name": "SOC_RMT_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PARLIO_SUPPORTED", - "name": "SOC_PARLIO_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GPSPI_SUPPORTED", - "name": "SOC_GPSPI_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_LEDC_SUPPORTED", - "name": "SOC_LEDC_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2C_SUPPORTED", - "name": "SOC_I2C_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SYSTIMER_SUPPORTED", - "name": "SOC_SYSTIMER_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SUPPORT_COEXISTENCE", - "name": "SOC_SUPPORT_COEXISTENCE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_AES_SUPPORTED", - "name": "SOC_AES_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MPI_SUPPORTED", - "name": "SOC_MPI_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SHA_SUPPORTED", - "name": "SOC_SHA_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_HMAC_SUPPORTED", - "name": "SOC_HMAC_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_DIG_SIGN_SUPPORTED", - "name": "SOC_DIG_SIGN_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ECC_SUPPORTED", - "name": "SOC_ECC_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ECC_EXTENDED_MODES_SUPPORTED", - "name": "SOC_ECC_EXTENDED_MODES_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ECDSA_SUPPORTED", - "name": "SOC_ECDSA_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_FLASH_ENC_SUPPORTED", - "name": "SOC_FLASH_ENC_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SECURE_BOOT_SUPPORTED", - "name": "SOC_SECURE_BOOT_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_BOD_SUPPORTED", - "name": "SOC_BOD_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_VBAT_SUPPORTED", - "name": "SOC_VBAT_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_APM_SUPPORTED", - "name": "SOC_APM_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PMU_SUPPORTED", - "name": "SOC_PMU_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_LP_TIMER_SUPPORTED", - "name": "SOC_LP_TIMER_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_LP_AON_SUPPORTED", - "name": "SOC_LP_AON_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PAU_SUPPORTED", - "name": "SOC_PAU_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_CLK_TREE_SUPPORTED", - "name": "SOC_CLK_TREE_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ASSIST_DEBUG_SUPPORTED", - "name": "SOC_ASSIST_DEBUG_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_WDT_SUPPORTED", - "name": "SOC_WDT_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_FLASH_SUPPORTED", - "name": "SOC_SPI_FLASH_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RNG_SUPPORTED", - "name": "SOC_RNG_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_LIGHT_SLEEP_SUPPORTED", - "name": "SOC_LIGHT_SLEEP_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_DEEP_SLEEP_SUPPORTED", - "name": "SOC_DEEP_SLEEP_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MODEM_CLOCK_SUPPORTED", - "name": "SOC_MODEM_CLOCK_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PM_SUPPORTED", - "name": "SOC_PM_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_XTAL_SUPPORT_32M", - "name": "SOC_XTAL_SUPPORT_32M", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_XTAL_CLOCK_PATH_DEPENDS_ON_TOP_DOMAIN", - "name": "SOC_XTAL_CLOCK_PATH_DEPENDS_ON_TOP_DOMAIN", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_AES_SUPPORT_DMA", - "name": "SOC_AES_SUPPORT_DMA", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_AES_GDMA", - "name": "SOC_AES_GDMA", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_AES_SUPPORT_AES_128", - "name": "SOC_AES_SUPPORT_AES_128", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_AES_SUPPORT_AES_256", - "name": "SOC_AES_SUPPORT_AES_256", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_AES_SUPPORT_PSEUDO_ROUND_FUNCTION", - "name": "SOC_AES_SUPPORT_PSEUDO_ROUND_FUNCTION", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_DIG_CTRL_SUPPORTED", - "name": "SOC_ADC_DIG_CTRL_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_DIG_IIR_FILTER_SUPPORTED", - "name": "SOC_ADC_DIG_IIR_FILTER_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_MONITOR_SUPPORTED", - "name": "SOC_ADC_MONITOR_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_DMA_SUPPORTED", - "name": "SOC_ADC_DMA_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_PERIPH_NUM", - "name": "SOC_ADC_PERIPH_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_MAX_CHANNEL_NUM", - "name": "SOC_ADC_MAX_CHANNEL_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_ATTEN_NUM", - "name": "SOC_ADC_ATTEN_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_DIGI_CONTROLLER_NUM", - "name": "SOC_ADC_DIGI_CONTROLLER_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_PATT_LEN_MAX", - "name": "SOC_ADC_PATT_LEN_MAX", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_DIGI_MAX_BITWIDTH", - "name": "SOC_ADC_DIGI_MAX_BITWIDTH", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_DIGI_MIN_BITWIDTH", - "name": "SOC_ADC_DIGI_MIN_BITWIDTH", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_DIGI_IIR_FILTER_NUM", - "name": "SOC_ADC_DIGI_IIR_FILTER_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_DIGI_MONITOR_NUM", - "name": "SOC_ADC_DIGI_MONITOR_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_DIGI_RESULT_BYTES", - "name": "SOC_ADC_DIGI_RESULT_BYTES", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_DIGI_DATA_BYTES_PER_CONV", - "name": "SOC_ADC_DIGI_DATA_BYTES_PER_CONV", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_SAMPLE_FREQ_THRES_HIGH", - "name": "SOC_ADC_SAMPLE_FREQ_THRES_HIGH", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_SAMPLE_FREQ_THRES_LOW", - "name": "SOC_ADC_SAMPLE_FREQ_THRES_LOW", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_RTC_MIN_BITWIDTH", - "name": "SOC_ADC_RTC_MIN_BITWIDTH", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_RTC_MAX_BITWIDTH", - "name": "SOC_ADC_RTC_MAX_BITWIDTH", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_CALIBRATION_V1_SUPPORTED", - "name": "SOC_ADC_CALIBRATION_V1_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_SELF_HW_CALI_SUPPORTED", - "name": "SOC_ADC_SELF_HW_CALI_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_CALIB_CHAN_COMPENS_SUPPORTED", - "name": "SOC_ADC_CALIB_CHAN_COMPENS_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_TEMPERATURE_SHARE_INTR", - "name": "SOC_ADC_TEMPERATURE_SHARE_INTR", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_SHARED_POWER", - "name": "SOC_ADC_SHARED_POWER", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_APB_BACKUP_DMA", - "name": "SOC_APB_BACKUP_DMA", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_BROWNOUT_RESET_SUPPORTED", - "name": "SOC_BROWNOUT_RESET_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SHARED_IDCACHE_SUPPORTED", - "name": "SOC_SHARED_IDCACHE_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_CACHE_FREEZE_SUPPORTED", - "name": "SOC_CACHE_FREEZE_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_CPU_CORES_NUM", - "name": "SOC_CPU_CORES_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_CPU_INTR_NUM", - "name": "SOC_CPU_INTR_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_CPU_HAS_FLEXIBLE_INTC", - "name": "SOC_CPU_HAS_FLEXIBLE_INTC", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_INT_PLIC_SUPPORTED", - "name": "SOC_INT_PLIC_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_CPU_HAS_CSR_PC", - "name": "SOC_CPU_HAS_CSR_PC", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_CPU_BREAKPOINTS_NUM", - "name": "SOC_CPU_BREAKPOINTS_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_CPU_WATCHPOINTS_NUM", - "name": "SOC_CPU_WATCHPOINTS_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_CPU_WATCHPOINT_MAX_REGION_SIZE", - "name": "SOC_CPU_WATCHPOINT_MAX_REGION_SIZE", - "range": null, - "title": null, - "type": "hex" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_CPU_HAS_PMA", - "name": "SOC_CPU_HAS_PMA", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_CPU_IDRAM_SPLIT_USING_PMP", - "name": "SOC_CPU_IDRAM_SPLIT_USING_PMP", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_CPU_PMP_REGION_GRANULARITY", - "name": "SOC_CPU_PMP_REGION_GRANULARITY", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MMU_PAGE_SIZE_CONFIGURABLE", - "name": "SOC_MMU_PAGE_SIZE_CONFIGURABLE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MMU_PAGE_SIZE_8KB_SUPPORTED", - "name": "SOC_MMU_PAGE_SIZE_8KB_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MMU_PERIPH_NUM", - "name": "SOC_MMU_PERIPH_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MMU_LINEAR_ADDRESS_REGION_NUM", - "name": "SOC_MMU_LINEAR_ADDRESS_REGION_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MMU_DI_VADDR_SHARED", - "name": "SOC_MMU_DI_VADDR_SHARED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_DS_SIGNATURE_MAX_BIT_LEN", - "name": "SOC_DS_SIGNATURE_MAX_BIT_LEN", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_DS_KEY_PARAM_MD_IV_LENGTH", - "name": "SOC_DS_KEY_PARAM_MD_IV_LENGTH", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_DS_KEY_CHECK_MAX_WAIT_US", - "name": "SOC_DS_KEY_CHECK_MAX_WAIT_US", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_AHB_GDMA_VERSION", - "name": "SOC_AHB_GDMA_VERSION", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GDMA_NUM_GROUPS_MAX", - "name": "SOC_GDMA_NUM_GROUPS_MAX", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GDMA_PAIRS_PER_GROUP_MAX", - "name": "SOC_GDMA_PAIRS_PER_GROUP_MAX", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GDMA_SUPPORT_ETM", - "name": "SOC_GDMA_SUPPORT_ETM", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GDMA_SUPPORT_SLEEP_RETENTION", - "name": "SOC_GDMA_SUPPORT_SLEEP_RETENTION", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ETM_GROUPS", - "name": "SOC_ETM_GROUPS", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ETM_CHANNELS_PER_GROUP", - "name": "SOC_ETM_CHANNELS_PER_GROUP", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ETM_SUPPORT_SLEEP_RETENTION", - "name": "SOC_ETM_SUPPORT_SLEEP_RETENTION", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GPIO_PORT", - "name": "SOC_GPIO_PORT", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GPIO_PIN_COUNT", - "name": "SOC_GPIO_PIN_COUNT", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER", - "name": "SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GPIO_FLEX_GLITCH_FILTER_NUM", - "name": "SOC_GPIO_FLEX_GLITCH_FILTER_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GPIO_SUPPORT_PIN_HYS_FILTER", - "name": "SOC_GPIO_SUPPORT_PIN_HYS_FILTER", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GPIO_SUPPORT_PIN_HYS_CTRL_BY_EFUSE", - "name": "SOC_GPIO_SUPPORT_PIN_HYS_CTRL_BY_EFUSE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GPIO_SUPPORT_ETM", - "name": "SOC_GPIO_SUPPORT_ETM", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GPIO_SUPPORT_RTC_INDEPENDENT", - "name": "SOC_GPIO_SUPPORT_RTC_INDEPENDENT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_LP_IO_CLOCK_IS_INDEPENDENT", - "name": "SOC_LP_IO_CLOCK_IS_INDEPENDENT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GPIO_IN_RANGE_MAX", - "name": "SOC_GPIO_IN_RANGE_MAX", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GPIO_OUT_RANGE_MAX", - "name": "SOC_GPIO_OUT_RANGE_MAX", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK", - "name": "SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK", - "range": null, - "title": null, - "type": "hex" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GPIO_SUPPORT_FORCE_HOLD", - "name": "SOC_GPIO_SUPPORT_FORCE_HOLD", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GPIO_SUPPORT_HOLD_IO_IN_DSLP", - "name": "SOC_GPIO_SUPPORT_HOLD_IO_IN_DSLP", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GPIO_SUPPORT_HOLD_SINGLE_IO_IN_DSLP", - "name": "SOC_GPIO_SUPPORT_HOLD_SINGLE_IO_IN_DSLP", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GPIO_CLOCKOUT_BY_GPIO_MATRIX", - "name": "SOC_GPIO_CLOCKOUT_BY_GPIO_MATRIX", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_CLOCKOUT_HAS_SOURCE_GATE", - "name": "SOC_CLOCKOUT_HAS_SOURCE_GATE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GPIO_CLOCKOUT_CHANNEL_NUM", - "name": "SOC_GPIO_CLOCKOUT_CHANNEL_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RTCIO_PIN_COUNT", - "name": "SOC_RTCIO_PIN_COUNT", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RTCIO_HOLD_SUPPORTED", - "name": "SOC_RTCIO_HOLD_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_DEDIC_GPIO_OUT_CHANNELS_NUM", - "name": "SOC_DEDIC_GPIO_OUT_CHANNELS_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_DEDIC_GPIO_IN_CHANNELS_NUM", - "name": "SOC_DEDIC_GPIO_IN_CHANNELS_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_DEDIC_PERIPH_ALWAYS_ENABLE", - "name": "SOC_DEDIC_PERIPH_ALWAYS_ENABLE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ANA_CMPR_NUM", - "name": "SOC_ANA_CMPR_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ANA_CMPR_INTR_SHARE_WITH_GPIO", - "name": "SOC_ANA_CMPR_INTR_SHARE_WITH_GPIO", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2C_NUM", - "name": "SOC_I2C_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_HP_I2C_NUM", - "name": "SOC_HP_I2C_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2C_FIFO_LEN", - "name": "SOC_I2C_FIFO_LEN", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2C_CMD_REG_NUM", - "name": "SOC_I2C_CMD_REG_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2C_SUPPORT_SLAVE", - "name": "SOC_I2C_SUPPORT_SLAVE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2C_SUPPORT_HW_FSM_RST", - "name": "SOC_I2C_SUPPORT_HW_FSM_RST", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2C_SUPPORT_HW_CLR_BUS", - "name": "SOC_I2C_SUPPORT_HW_CLR_BUS", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2C_SUPPORT_XTAL", - "name": "SOC_I2C_SUPPORT_XTAL", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2C_SUPPORT_RTC", - "name": "SOC_I2C_SUPPORT_RTC", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2C_SUPPORT_10BIT_ADDR", - "name": "SOC_I2C_SUPPORT_10BIT_ADDR", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2C_SLAVE_SUPPORT_BROADCAST", - "name": "SOC_I2C_SLAVE_SUPPORT_BROADCAST", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2C_SLAVE_CAN_GET_STRETCH_CAUSE", - "name": "SOC_I2C_SLAVE_CAN_GET_STRETCH_CAUSE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2C_SLAVE_SUPPORT_I2CRAM_ACCESS", - "name": "SOC_I2C_SLAVE_SUPPORT_I2CRAM_ACCESS", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2C_SLAVE_SUPPORT_SLAVE_UNMATCH", - "name": "SOC_I2C_SLAVE_SUPPORT_SLAVE_UNMATCH", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2C_SUPPORT_SLEEP_RETENTION", - "name": "SOC_I2C_SUPPORT_SLEEP_RETENTION", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2S_NUM", - "name": "SOC_I2S_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2S_HW_VERSION_2", - "name": "SOC_I2S_HW_VERSION_2", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2S_SUPPORTS_ETM", - "name": "SOC_I2S_SUPPORTS_ETM", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2S_SUPPORTS_XTAL", - "name": "SOC_I2S_SUPPORTS_XTAL", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2S_SUPPORTS_PLL_F96M", - "name": "SOC_I2S_SUPPORTS_PLL_F96M", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2S_SUPPORTS_PLL_F64M", - "name": "SOC_I2S_SUPPORTS_PLL_F64M", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2S_SUPPORTS_PCM", - "name": "SOC_I2S_SUPPORTS_PCM", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2S_SUPPORTS_PDM", - "name": "SOC_I2S_SUPPORTS_PDM", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2S_SUPPORTS_PDM_TX", - "name": "SOC_I2S_SUPPORTS_PDM_TX", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2S_SUPPORTS_PCM2PDM", - "name": "SOC_I2S_SUPPORTS_PCM2PDM", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2S_SUPPORTS_PDM_RX", - "name": "SOC_I2S_SUPPORTS_PDM_RX", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2S_PDM_MAX_TX_LINES", - "name": "SOC_I2S_PDM_MAX_TX_LINES", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2S_PDM_MAX_RX_LINES", - "name": "SOC_I2S_PDM_MAX_RX_LINES", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2S_SUPPORTS_TDM", - "name": "SOC_I2S_SUPPORTS_TDM", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2S_TDM_FULL_DATA_WIDTH", - "name": "SOC_I2S_TDM_FULL_DATA_WIDTH", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2S_SUPPORT_SLEEP_RETENTION", - "name": "SOC_I2S_SUPPORT_SLEEP_RETENTION", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_LEDC_SUPPORT_PLL_DIV_CLOCK", - "name": "SOC_LEDC_SUPPORT_PLL_DIV_CLOCK", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_LEDC_SUPPORT_XTAL_CLOCK", - "name": "SOC_LEDC_SUPPORT_XTAL_CLOCK", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_LEDC_TIMER_NUM", - "name": "SOC_LEDC_TIMER_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_LEDC_CHANNEL_NUM", - "name": "SOC_LEDC_CHANNEL_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_LEDC_TIMER_BIT_WIDTH", - "name": "SOC_LEDC_TIMER_BIT_WIDTH", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_LEDC_SUPPORT_FADE_STOP", - "name": "SOC_LEDC_SUPPORT_FADE_STOP", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_LEDC_GAMMA_CURVE_FADE_SUPPORTED", - "name": "SOC_LEDC_GAMMA_CURVE_FADE_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_LEDC_GAMMA_CURVE_FADE_RANGE_MAX", - "name": "SOC_LEDC_GAMMA_CURVE_FADE_RANGE_MAX", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_LEDC_FADE_PARAMS_BIT_WIDTH", - "name": "SOC_LEDC_FADE_PARAMS_BIT_WIDTH", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_LEDC_SUPPORT_SLEEP_RETENTION", - "name": "SOC_LEDC_SUPPORT_SLEEP_RETENTION", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MPU_CONFIGURABLE_REGIONS_SUPPORTED", - "name": "SOC_MPU_CONFIGURABLE_REGIONS_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MPU_MIN_REGION_SIZE", - "name": "SOC_MPU_MIN_REGION_SIZE", - "range": null, - "title": null, - "type": "hex" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MPU_REGIONS_MAX_NUM", - "name": "SOC_MPU_REGIONS_MAX_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MPU_REGION_RO_SUPPORTED", - "name": "SOC_MPU_REGION_RO_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MPU_REGION_WO_SUPPORTED", - "name": "SOC_MPU_REGION_WO_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PCNT_GROUPS", - "name": "SOC_PCNT_GROUPS", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PCNT_UNITS_PER_GROUP", - "name": "SOC_PCNT_UNITS_PER_GROUP", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PCNT_CHANNELS_PER_UNIT", - "name": "SOC_PCNT_CHANNELS_PER_UNIT", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PCNT_THRES_POINT_PER_UNIT", - "name": "SOC_PCNT_THRES_POINT_PER_UNIT", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PCNT_SUPPORT_RUNTIME_THRES_UPDATE", - "name": "SOC_PCNT_SUPPORT_RUNTIME_THRES_UPDATE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PCNT_SUPPORT_STEP_NOTIFY", - "name": "SOC_PCNT_SUPPORT_STEP_NOTIFY", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PCNT_SUPPORT_SLEEP_RETENTION", - "name": "SOC_PCNT_SUPPORT_SLEEP_RETENTION", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RMT_GROUPS", - "name": "SOC_RMT_GROUPS", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RMT_TX_CANDIDATES_PER_GROUP", - "name": "SOC_RMT_TX_CANDIDATES_PER_GROUP", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RMT_RX_CANDIDATES_PER_GROUP", - "name": "SOC_RMT_RX_CANDIDATES_PER_GROUP", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RMT_CHANNELS_PER_GROUP", - "name": "SOC_RMT_CHANNELS_PER_GROUP", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RMT_MEM_WORDS_PER_CHANNEL", - "name": "SOC_RMT_MEM_WORDS_PER_CHANNEL", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RMT_SUPPORT_RX_PINGPONG", - "name": "SOC_RMT_SUPPORT_RX_PINGPONG", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RMT_SUPPORT_RX_DEMODULATION", - "name": "SOC_RMT_SUPPORT_RX_DEMODULATION", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RMT_SUPPORT_TX_ASYNC_STOP", - "name": "SOC_RMT_SUPPORT_TX_ASYNC_STOP", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RMT_SUPPORT_TX_LOOP_COUNT", - "name": "SOC_RMT_SUPPORT_TX_LOOP_COUNT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RMT_SUPPORT_TX_LOOP_AUTO_STOP", - "name": "SOC_RMT_SUPPORT_TX_LOOP_AUTO_STOP", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RMT_SUPPORT_TX_SYNCHRO", - "name": "SOC_RMT_SUPPORT_TX_SYNCHRO", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY", - "name": "SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RMT_SUPPORT_XTAL", - "name": "SOC_RMT_SUPPORT_XTAL", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RMT_SUPPORT_RC_FAST", - "name": "SOC_RMT_SUPPORT_RC_FAST", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RMT_SUPPORT_SLEEP_RETENTION", - "name": "SOC_RMT_SUPPORT_SLEEP_RETENTION", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MCPWM_GROUPS", - "name": "SOC_MCPWM_GROUPS", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MCPWM_TIMERS_PER_GROUP", - "name": "SOC_MCPWM_TIMERS_PER_GROUP", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MCPWM_OPERATORS_PER_GROUP", - "name": "SOC_MCPWM_OPERATORS_PER_GROUP", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MCPWM_COMPARATORS_PER_OPERATOR", - "name": "SOC_MCPWM_COMPARATORS_PER_OPERATOR", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MCPWM_GENERATORS_PER_OPERATOR", - "name": "SOC_MCPWM_GENERATORS_PER_OPERATOR", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MCPWM_TRIGGERS_PER_OPERATOR", - "name": "SOC_MCPWM_TRIGGERS_PER_OPERATOR", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MCPWM_GPIO_FAULTS_PER_GROUP", - "name": "SOC_MCPWM_GPIO_FAULTS_PER_GROUP", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MCPWM_CAPTURE_TIMERS_PER_GROUP", - "name": "SOC_MCPWM_CAPTURE_TIMERS_PER_GROUP", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MCPWM_CAPTURE_CHANNELS_PER_TIMER", - "name": "SOC_MCPWM_CAPTURE_CHANNELS_PER_TIMER", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MCPWM_GPIO_SYNCHROS_PER_GROUP", - "name": "SOC_MCPWM_GPIO_SYNCHROS_PER_GROUP", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MCPWM_SWSYNC_CAN_PROPAGATE", - "name": "SOC_MCPWM_SWSYNC_CAN_PROPAGATE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MCPWM_SUPPORT_ETM", - "name": "SOC_MCPWM_SUPPORT_ETM", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MCPWM_CAPTURE_CLK_FROM_GROUP", - "name": "SOC_MCPWM_CAPTURE_CLK_FROM_GROUP", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MCPWM_SUPPORT_SLEEP_RETENTION", - "name": "SOC_MCPWM_SUPPORT_SLEEP_RETENTION", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PARLIO_GROUPS", - "name": "SOC_PARLIO_GROUPS", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PARLIO_TX_UNITS_PER_GROUP", - "name": "SOC_PARLIO_TX_UNITS_PER_GROUP", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PARLIO_RX_UNITS_PER_GROUP", - "name": "SOC_PARLIO_RX_UNITS_PER_GROUP", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PARLIO_TX_UNIT_MAX_DATA_WIDTH", - "name": "SOC_PARLIO_TX_UNIT_MAX_DATA_WIDTH", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PARLIO_RX_UNIT_MAX_DATA_WIDTH", - "name": "SOC_PARLIO_RX_UNIT_MAX_DATA_WIDTH", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PARLIO_TX_CLK_SUPPORT_GATING", - "name": "SOC_PARLIO_TX_CLK_SUPPORT_GATING", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PARLIO_RX_CLK_SUPPORT_GATING", - "name": "SOC_PARLIO_RX_CLK_SUPPORT_GATING", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PARLIO_RX_CLK_SUPPORT_OUTPUT", - "name": "SOC_PARLIO_RX_CLK_SUPPORT_OUTPUT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PARLIO_TRANS_BIT_ALIGN", - "name": "SOC_PARLIO_TRANS_BIT_ALIGN", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PARLIO_TX_SUPPORT_LOOP_TRANSMISSION", - "name": "SOC_PARLIO_TX_SUPPORT_LOOP_TRANSMISSION", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PARLIO_SUPPORT_SLEEP_RETENTION", - "name": "SOC_PARLIO_SUPPORT_SLEEP_RETENTION", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PARLIO_SUPPORT_SPI_LCD", - "name": "SOC_PARLIO_SUPPORT_SPI_LCD", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MPI_MEM_BLOCKS_NUM", - "name": "SOC_MPI_MEM_BLOCKS_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MPI_OPERATIONS_NUM", - "name": "SOC_MPI_OPERATIONS_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RSA_MAX_BIT_LEN", - "name": "SOC_RSA_MAX_BIT_LEN", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SHA_DMA_MAX_BUFFER_SIZE", - "name": "SOC_SHA_DMA_MAX_BUFFER_SIZE", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SHA_SUPPORT_DMA", - "name": "SOC_SHA_SUPPORT_DMA", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SHA_SUPPORT_RESUME", - "name": "SOC_SHA_SUPPORT_RESUME", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SHA_GDMA", - "name": "SOC_SHA_GDMA", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SHA_SUPPORT_SHA1", - "name": "SOC_SHA_SUPPORT_SHA1", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SHA_SUPPORT_SHA224", - "name": "SOC_SHA_SUPPORT_SHA224", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SHA_SUPPORT_SHA256", - "name": "SOC_SHA_SUPPORT_SHA256", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SDM_GROUPS", - "name": "SOC_SDM_GROUPS", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SDM_CHANNELS_PER_GROUP", - "name": "SOC_SDM_CHANNELS_PER_GROUP", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SDM_CLK_SUPPORT_PLL_F48M", - "name": "SOC_SDM_CLK_SUPPORT_PLL_F48M", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SDM_CLK_SUPPORT_XTAL", - "name": "SOC_SDM_CLK_SUPPORT_XTAL", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_PERIPH_NUM", - "name": "SOC_SPI_PERIPH_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_MAX_CS_NUM", - "name": "SOC_SPI_MAX_CS_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_MAXIMUM_BUFFER_SIZE", - "name": "SOC_SPI_MAXIMUM_BUFFER_SIZE", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_SUPPORT_DDRCLK", - "name": "SOC_SPI_SUPPORT_DDRCLK", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_SLAVE_SUPPORT_SEG_TRANS", - "name": "SOC_SPI_SLAVE_SUPPORT_SEG_TRANS", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_SUPPORT_CD_SIG", - "name": "SOC_SPI_SUPPORT_CD_SIG", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_SUPPORT_CONTINUOUS_TRANS", - "name": "SOC_SPI_SUPPORT_CONTINUOUS_TRANS", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_SUPPORT_SLAVE_HD_VER2", - "name": "SOC_SPI_SUPPORT_SLAVE_HD_VER2", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_SUPPORT_SLEEP_RETENTION", - "name": "SOC_SPI_SUPPORT_SLEEP_RETENTION", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_SUPPORT_CLK_XTAL", - "name": "SOC_SPI_SUPPORT_CLK_XTAL", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_SUPPORT_CLK_PLL_F48M", - "name": "SOC_SPI_SUPPORT_CLK_PLL_F48M", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_SUPPORT_CLK_RC_FAST", - "name": "SOC_SPI_SUPPORT_CLK_RC_FAST", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_SCT_SUPPORTED", - "name": "SOC_SPI_SCT_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_SCT_REG_NUM", - "name": "SOC_SPI_SCT_REG_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_SCT_BUFFER_NUM_MAX", - "name": "SOC_SPI_SCT_BUFFER_NUM_MAX", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_SCT_CONF_BITLEN_MAX", - "name": "SOC_SPI_SCT_CONF_BITLEN_MAX", - "range": null, - "title": null, - "type": "hex" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MEMSPI_IS_INDEPENDENT", - "name": "SOC_MEMSPI_IS_INDEPENDENT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_MAX_PRE_DIVIDER", - "name": "SOC_SPI_MAX_PRE_DIVIDER", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE", - "name": "SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND", - "name": "SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_MEM_SUPPORT_AUTO_RESUME", - "name": "SOC_SPI_MEM_SUPPORT_AUTO_RESUME", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_MEM_SUPPORT_IDLE_INTR", - "name": "SOC_SPI_MEM_SUPPORT_IDLE_INTR", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_MEM_SUPPORT_SW_SUSPEND", - "name": "SOC_SPI_MEM_SUPPORT_SW_SUSPEND", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_MEM_SUPPORT_CHECK_SUS", - "name": "SOC_SPI_MEM_SUPPORT_CHECK_SUS", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_MEM_SUPPORT_WRAP", - "name": "SOC_SPI_MEM_SUPPORT_WRAP", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MEMSPI_SRC_FREQ_64M_SUPPORTED", - "name": "SOC_MEMSPI_SRC_FREQ_64M_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MEMSPI_SRC_FREQ_32M_SUPPORTED", - "name": "SOC_MEMSPI_SRC_FREQ_32M_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MEMSPI_SRC_FREQ_16M_SUPPORTED", - "name": "SOC_MEMSPI_SRC_FREQ_16M_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SYSTIMER_COUNTER_NUM", - "name": "SOC_SYSTIMER_COUNTER_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SYSTIMER_ALARM_NUM", - "name": "SOC_SYSTIMER_ALARM_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SYSTIMER_BIT_WIDTH_LO", - "name": "SOC_SYSTIMER_BIT_WIDTH_LO", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SYSTIMER_BIT_WIDTH_HI", - "name": "SOC_SYSTIMER_BIT_WIDTH_HI", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SYSTIMER_FIXED_DIVIDER", - "name": "SOC_SYSTIMER_FIXED_DIVIDER", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SYSTIMER_SUPPORT_RC_FAST", - "name": "SOC_SYSTIMER_SUPPORT_RC_FAST", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SYSTIMER_INT_LEVEL", - "name": "SOC_SYSTIMER_INT_LEVEL", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SYSTIMER_ALARM_MISS_COMPENSATE", - "name": "SOC_SYSTIMER_ALARM_MISS_COMPENSATE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SYSTIMER_SUPPORT_ETM", - "name": "SOC_SYSTIMER_SUPPORT_ETM", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_LP_TIMER_BIT_WIDTH_LO", - "name": "SOC_LP_TIMER_BIT_WIDTH_LO", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_LP_TIMER_BIT_WIDTH_HI", - "name": "SOC_LP_TIMER_BIT_WIDTH_HI", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_TIMER_GROUPS", - "name": "SOC_TIMER_GROUPS", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_TIMER_GROUP_TIMERS_PER_GROUP", - "name": "SOC_TIMER_GROUP_TIMERS_PER_GROUP", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_TIMER_GROUP_COUNTER_BIT_WIDTH", - "name": "SOC_TIMER_GROUP_COUNTER_BIT_WIDTH", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_TIMER_GROUP_SUPPORT_XTAL", - "name": "SOC_TIMER_GROUP_SUPPORT_XTAL", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_TIMER_GROUP_SUPPORT_RC_FAST", - "name": "SOC_TIMER_GROUP_SUPPORT_RC_FAST", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_TIMER_GROUP_TOTAL_TIMERS", - "name": "SOC_TIMER_GROUP_TOTAL_TIMERS", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_TIMER_SUPPORT_ETM", - "name": "SOC_TIMER_SUPPORT_ETM", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_TIMER_SUPPORT_SLEEP_RETENTION", - "name": "SOC_TIMER_SUPPORT_SLEEP_RETENTION", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MWDT_SUPPORT_XTAL", - "name": "SOC_MWDT_SUPPORT_XTAL", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MWDT_SUPPORT_SLEEP_RETENTION", - "name": "SOC_MWDT_SUPPORT_SLEEP_RETENTION", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_TWAI_CONTROLLER_NUM", - "name": "SOC_TWAI_CONTROLLER_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_TWAI_MASK_FILTER_NUM", - "name": "SOC_TWAI_MASK_FILTER_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_TWAI_CLK_SUPPORT_XTAL", - "name": "SOC_TWAI_CLK_SUPPORT_XTAL", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_TWAI_BRP_MIN", - "name": "SOC_TWAI_BRP_MIN", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_TWAI_BRP_MAX", - "name": "SOC_TWAI_BRP_MAX", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_TWAI_SUPPORTS_RX_STATUS", - "name": "SOC_TWAI_SUPPORTS_RX_STATUS", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_TWAI_SUPPORT_SLEEP_RETENTION", - "name": "SOC_TWAI_SUPPORT_SLEEP_RETENTION", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_EFUSE_DIS_PAD_JTAG", - "name": "SOC_EFUSE_DIS_PAD_JTAG", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_EFUSE_DIS_USB_JTAG", - "name": "SOC_EFUSE_DIS_USB_JTAG", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_EFUSE_DIS_DIRECT_BOOT", - "name": "SOC_EFUSE_DIS_DIRECT_BOOT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_EFUSE_SOFT_DIS_JTAG", - "name": "SOC_EFUSE_SOFT_DIS_JTAG", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_EFUSE_DIS_ICACHE", - "name": "SOC_EFUSE_DIS_ICACHE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK", - "name": "SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_EFUSE_ECDSA_USE_HARDWARE_K", - "name": "SOC_EFUSE_ECDSA_USE_HARDWARE_K", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_EFUSE_ECDSA_KEY", - "name": "SOC_EFUSE_ECDSA_KEY", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SECURE_BOOT_V2_RSA", - "name": "SOC_SECURE_BOOT_V2_RSA", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SECURE_BOOT_V2_ECC", - "name": "SOC_SECURE_BOOT_V2_ECC", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS", - "name": "SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS", - "name": "SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY", - "name": "SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX", - "name": "SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_FLASH_ENCRYPTION_XTS_AES", - "name": "SOC_FLASH_ENCRYPTION_XTS_AES", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_FLASH_ENCRYPTION_XTS_AES_128", - "name": "SOC_FLASH_ENCRYPTION_XTS_AES_128", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_FLASH_ENCRYPTION_XTS_AES_SUPPORT_PSEUDO_ROUND", - "name": "SOC_FLASH_ENCRYPTION_XTS_AES_SUPPORT_PSEUDO_ROUND", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_APM_CTRL_FILTER_SUPPORTED", - "name": "SOC_APM_CTRL_FILTER_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_CRYPTO_DPA_PROTECTION_SUPPORTED", - "name": "SOC_CRYPTO_DPA_PROTECTION_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ECC_CONSTANT_TIME_POINT_MUL", - "name": "SOC_ECC_CONSTANT_TIME_POINT_MUL", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ECDSA_USES_MPI", - "name": "SOC_ECDSA_USES_MPI", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ECDSA_SUPPORT_DETERMINISTIC_MODE", - "name": "SOC_ECDSA_SUPPORT_DETERMINISTIC_MODE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ECDSA_SUPPORT_HW_DETERMINISTIC_LOOP", - "name": "SOC_ECDSA_SUPPORT_HW_DETERMINISTIC_LOOP", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ECDSA_P192_CURVE_DEFAULT_DISABLED", - "name": "SOC_ECDSA_P192_CURVE_DEFAULT_DISABLED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_UART_NUM", - "name": "SOC_UART_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_UART_HP_NUM", - "name": "SOC_UART_HP_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_UART_FIFO_LEN", - "name": "SOC_UART_FIFO_LEN", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_UART_BITRATE_MAX", - "name": "SOC_UART_BITRATE_MAX", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_UART_SUPPORT_RTC_CLK", - "name": "SOC_UART_SUPPORT_RTC_CLK", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_UART_SUPPORT_XTAL_CLK", - "name": "SOC_UART_SUPPORT_XTAL_CLK", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_UART_SUPPORT_WAKEUP_INT", - "name": "SOC_UART_SUPPORT_WAKEUP_INT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_UART_SUPPORT_FSM_TX_WAIT_SEND", - "name": "SOC_UART_SUPPORT_FSM_TX_WAIT_SEND", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_UART_SUPPORT_SLEEP_RETENTION", - "name": "SOC_UART_SUPPORT_SLEEP_RETENTION", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_UART_WAKEUP_CHARS_SEQ_MAX_LEN", - "name": "SOC_UART_WAKEUP_CHARS_SEQ_MAX_LEN", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_UART_WAKEUP_SUPPORT_ACTIVE_THRESH_MODE", - "name": "SOC_UART_WAKEUP_SUPPORT_ACTIVE_THRESH_MODE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_UART_WAKEUP_SUPPORT_FIFO_THRESH_MODE", - "name": "SOC_UART_WAKEUP_SUPPORT_FIFO_THRESH_MODE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_UART_WAKEUP_SUPPORT_START_BIT_MODE", - "name": "SOC_UART_WAKEUP_SUPPORT_START_BIT_MODE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_UART_WAKEUP_SUPPORT_CHAR_SEQ_MODE", - "name": "SOC_UART_WAKEUP_SUPPORT_CHAR_SEQ_MODE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_UHCI_NUM", - "name": "SOC_UHCI_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_COEX_HW_PTI", - "name": "SOC_COEX_HW_PTI", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_EXTERNAL_COEX_ADVANCE", - "name": "SOC_EXTERNAL_COEX_ADVANCE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_EXTERNAL_COEX_LEADER_TX_LINE", - "name": "SOC_EXTERNAL_COEX_LEADER_TX_LINE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PHY_DIG_REGS_MEM_SIZE", - "name": "SOC_PHY_DIG_REGS_MEM_SIZE", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PM_SUPPORT_BT_WAKEUP", - "name": "SOC_PM_SUPPORT_BT_WAKEUP", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PM_SUPPORT_EXT1_WAKEUP", - "name": "SOC_PM_SUPPORT_EXT1_WAKEUP", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PM_SUPPORT_EXT1_WAKEUP_MODE_PER_PIN", - "name": "SOC_PM_SUPPORT_EXT1_WAKEUP_MODE_PER_PIN", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PM_SUPPORT_CPU_PD", - "name": "SOC_PM_SUPPORT_CPU_PD", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PM_SUPPORT_MODEM_PD", - "name": "SOC_PM_SUPPORT_MODEM_PD", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PM_SUPPORT_XTAL32K_PD", - "name": "SOC_PM_SUPPORT_XTAL32K_PD", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PM_SUPPORT_RC32K_PD", - "name": "SOC_PM_SUPPORT_RC32K_PD", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PM_SUPPORT_RC_FAST_PD", - "name": "SOC_PM_SUPPORT_RC_FAST_PD", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PM_SUPPORT_VDDSDIO_PD", - "name": "SOC_PM_SUPPORT_VDDSDIO_PD", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PM_SUPPORT_TOP_PD", - "name": "SOC_PM_SUPPORT_TOP_PD", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PM_PAU_LINK_NUM", - "name": "SOC_PM_PAU_LINK_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PM_PAU_REGDMA_LINK_MULTI_ADDR", - "name": "SOC_PM_PAU_REGDMA_LINK_MULTI_ADDR", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PM_PAU_REGDMA_LINK_WIFIMAC", - "name": "SOC_PM_PAU_REGDMA_LINK_WIFIMAC", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PM_PAU_REGDMA_UPDATE_CACHE_BEFORE_WAIT_COMPARE", - "name": "SOC_PM_PAU_REGDMA_UPDATE_CACHE_BEFORE_WAIT_COMPARE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PM_RETENTION_MODULE_NUM", - "name": "SOC_PM_RETENTION_MODULE_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_EXT_MEM_CACHE_TAG_IN_CPU_DOMAIN", - "name": "SOC_EXT_MEM_CACHE_TAG_IN_CPU_DOMAIN", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PM_CPU_RETENTION_BY_SW", - "name": "SOC_PM_CPU_RETENTION_BY_SW", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PM_MODEM_RETENTION_BY_REGDMA", - "name": "SOC_PM_MODEM_RETENTION_BY_REGDMA", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY", - "name": "SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PM_RETENTION_SW_TRIGGER_REGDMA", - "name": "SOC_PM_RETENTION_SW_TRIGGER_REGDMA", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PM_SUPPORT_PMU_CLK_ICG", - "name": "SOC_PM_SUPPORT_PMU_CLK_ICG", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_CLK_RC_FAST_SUPPORT_CALIBRATION", - "name": "SOC_CLK_RC_FAST_SUPPORT_CALIBRATION", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_CLK_XTAL32K_SUPPORTED", - "name": "SOC_CLK_XTAL32K_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_CLK_OSC_SLOW_SUPPORTED", - "name": "SOC_CLK_OSC_SLOW_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_CLK_RC32K_SUPPORTED", - "name": "SOC_CLK_RC32K_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_CLK_LP_FAST_SUPPORT_LP_PLL", - "name": "SOC_CLK_LP_FAST_SUPPORT_LP_PLL", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_CLK_LP_FAST_SUPPORT_XTAL_D2", - "name": "SOC_CLK_LP_FAST_SUPPORT_XTAL_D2", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MODEM_CLOCK_IS_INDEPENDENT", - "name": "SOC_MODEM_CLOCK_IS_INDEPENDENT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RCC_IS_INDEPENDENT", - "name": "SOC_RCC_IS_INDEPENDENT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_CLK_ANA_I2C_MST_HAS_ROOT_GATE", - "name": "SOC_CLK_ANA_I2C_MST_HAS_ROOT_GATE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC", - "name": "SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_TEMPERATURE_SENSOR_SUPPORT_XTAL", - "name": "SOC_TEMPERATURE_SENSOR_SUPPORT_XTAL", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_TEMPERATURE_SENSOR_INTR_SUPPORT", - "name": "SOC_TEMPERATURE_SENSOR_INTR_SUPPORT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_TEMPERATURE_SENSOR_SUPPORT_ETM", - "name": "SOC_TEMPERATURE_SENSOR_SUPPORT_ETM", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_TEMPERATURE_SENSOR_SUPPORT_SLEEP_RETENTION", - "name": "SOC_TEMPERATURE_SENSOR_SUPPORT_SLEEP_RETENTION", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_TEMPERATURE_SENSOR_UNDER_PD_TOP_DOMAIN", - "name": "SOC_TEMPERATURE_SENSOR_UNDER_PD_TOP_DOMAIN", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RNG_CLOCK_IS_INDEPENDENT", - "name": "SOC_RNG_CLOCK_IS_INDEPENDENT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_BLE_SUPPORTED", - "name": "SOC_BLE_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_BLE_MESH_SUPPORTED", - "name": "SOC_BLE_MESH_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ESP_NIMBLE_CONTROLLER", - "name": "SOC_ESP_NIMBLE_CONTROLLER", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_BLE_50_SUPPORTED", - "name": "SOC_BLE_50_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_BLE_DEVICE_PRIVACY_SUPPORTED", - "name": "SOC_BLE_DEVICE_PRIVACY_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_BLE_POWER_CONTROL_SUPPORTED", - "name": "SOC_BLE_POWER_CONTROL_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_BLE_MULTI_CONN_OPTIMIZATION", - "name": "SOC_BLE_MULTI_CONN_OPTIMIZATION", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_BLE_PERIODIC_ADV_ENH_SUPPORTED", - "name": "SOC_BLE_PERIODIC_ADV_ENH_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_BLE_CTE_SUPPORTED", - "name": "SOC_BLE_CTE_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_DEBUG_HAVE_OCD_STUB_BINS", - "name": "SOC_DEBUG_HAVE_OCD_STUB_BINS", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_CMAKE", - "name": "IDF_CMAKE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "- This option is for internal use only.\n- Enabling this option will help enable all FPGA support so as to\n run ESP-IDF on an FPGA. This can help reproduce some issues that\n only happens on FPGA condition, or when you have to burn some\n efuses multiple times.", - "id": "IDF_ENV_FPGA", - "name": "IDF_ENV_FPGA", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "- This option is ONLY used when doing new chip bringup.\n- This option will only enable necessary hw / sw settings for running\n a hello_world application.", - "id": "IDF_ENV_BRINGUP", - "name": "IDF_ENV_BRINGUP", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_CI_BUILD", - "name": "IDF_CI_BUILD", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_DOC_BUILD", - "name": "IDF_DOC_BUILD", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_TOOLCHAIN", - "name": "IDF_TOOLCHAIN", - "range": null, - "title": null, - "type": "string" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_TOOLCHAIN_CLANG", - "name": "IDF_TOOLCHAIN_CLANG", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_TOOLCHAIN_GCC", - "name": "IDF_TOOLCHAIN_GCC", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_TARGET_ARCH_RISCV", - "name": "IDF_TARGET_ARCH_RISCV", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_TARGET_ARCH_XTENSA", - "name": "IDF_TARGET_ARCH_XTENSA", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_TARGET_ARCH", - "name": "IDF_TARGET_ARCH", - "range": null, - "title": null, - "type": "string" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_TARGET", - "name": "IDF_TARGET", - "range": null, - "title": null, - "type": "string" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_INIT_VERSION", - "name": "IDF_INIT_VERSION", - "range": null, - "title": null, - "type": "string" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_TARGET_ESP32", - "name": "IDF_TARGET_ESP32", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_TARGET_ESP32S2", - "name": "IDF_TARGET_ESP32S2", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_TARGET_ESP32S3", - "name": "IDF_TARGET_ESP32S3", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_TARGET_ESP32C3", - "name": "IDF_TARGET_ESP32C3", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_TARGET_ESP32C2", - "name": "IDF_TARGET_ESP32C2", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_TARGET_ESP32C6", - "name": "IDF_TARGET_ESP32C6", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_TARGET_ESP32C5", - "name": "IDF_TARGET_ESP32C5", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_TARGET_ESP32P4", - "name": "IDF_TARGET_ESP32P4", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_TARGET_ESP32H2", - "name": "IDF_TARGET_ESP32H2", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_TARGET_ESP32C61", - "name": "IDF_TARGET_ESP32C61", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_TARGET_ESP32H21", - "name": "IDF_TARGET_ESP32H21", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_TARGET_ESP32H4", - "name": "IDF_TARGET_ESP32H4", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_TARGET_LINUX", - "name": "IDF_TARGET_LINUX", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_FIRMWARE_CHIP_ID", - "name": "IDF_FIRMWARE_CHIP_ID", - "range": null, - "title": null, - "type": "hex" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "!IDF_TARGET_LINUX && ", - "help": null, - "id": "APP_BUILD_TYPE_APP_2NDBOOT", - "name": "APP_BUILD_TYPE_APP_2NDBOOT", - "range": null, - "title": "Default (binary application + 2nd stage bootloader)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "APP_BUILD_TYPE_RAM", - "name": "APP_BUILD_TYPE_RAM", - "range": null, - "title": "Build app runs entirely in RAM (EXPERIMENTAL)", - "type": "bool" - } - ], - "depends_on": null, - "help": "Select the way the application is built.\n\nBy default, the application is built as a binary file in a format compatible with\nthe ESP-IDF bootloader. In addition to this application, 2nd stage bootloader is\nalso built. Application and bootloader binaries can be written into flash and\nloaded/executed from there.\n\nAnother option, useful for only very small and limited applications, is to only link\nthe .elf file of the application, such that it can be loaded directly into RAM over\nJTAG or UART. Note that since IRAM and DRAM sizes are very limited, it is not possible\nto build any complex application this way. However for some kinds of testing and debugging,\nthis option may provide faster iterations, since the application does not need to be\nwritten into flash.\n\nNote: when APP_BUILD_TYPE_RAM is selected and loaded with JTAG, ESP-IDF does not contain\nall the startup code required to initialize the CPUs and ROM memory (data/bss).\nTherefore it is necessary to execute a bit of ROM code prior to executing the application.\nA gdbinit file may look as follows (for ESP32):\n\n # Connect to a running instance of OpenOCD\n target remote :3333\n # Reset and halt the target\n mon reset halt\n # Run to a specific point in ROM code,\n # where most of initialization is complete.\n thb *0x40007d54\n c\n # Load the application into RAM\n load\n # Run till app_main\n tb app_main\n c\n\nExecute this gdbinit file as follows:\n\n xtensa-esp32-elf-gdb build/app-name.elf -x gdbinit\n\nExample gdbinit files for other targets can be found in tools/test_apps/system/gdb_loadable_elf/\n\nWhen loading the BIN with UART, the ROM will jump to ram and run the app after finishing the ROM\nstartup code, so there's no additional startup initialization required. You can use the\n`load_ram` in esptool.py to load the generated .bin file into ram and execute.\n\nExample:\n esptool.py --chip {chip} -p {port} -b {baud} --no-stub load_ram {app.bin}\n\nRecommended sdkconfig.defaults for building loadable ELF files is as follows.\nCONFIG_APP_BUILD_TYPE_RAM is required, other options help reduce application\nmemory footprint.\n\n CONFIG_APP_BUILD_TYPE_RAM=y\n CONFIG_VFS_SUPPORT_TERMIOS=\n CONFIG_NEWLIB_NANO_FORMAT=y\n CONFIG_ESP_SYSTEM_PANIC_PRINT_HALT=y\n CONFIG_ESP_DEBUG_STUBS_ENABLE=\n CONFIG_ESP_ERR_TO_NAME_LOOKUP=", - "id": "build-type-application-build-type", - "name": "APP_BUILD_TYPE", - "title": "Application build type", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "APP_BUILD_GENERATE_BINARIES", - "name": "APP_BUILD_GENERATE_BINARIES", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "APP_BUILD_BOOTLOADER", - "name": "APP_BUILD_BOOTLOADER", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "APP_BUILD_TYPE_RAM", - "help": "If this option is enabled, external memory and related peripherals, such as Cache, MMU,\nFlash and PSRAM, won't be initialized. Corresponding drivers won't be introduced either.\nComponents that depend on the spi_flash component will also be unavailable, such as\napp_update, etc. When this option is enabled, about 26KB of RAM space can be saved.", - "id": "APP_BUILD_TYPE_PURE_RAM_APP", - "name": "APP_BUILD_TYPE_PURE_RAM_APP", - "range": null, - "title": "Build app without SPI_FLASH/PSRAM support (saves ram)", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "APP_BUILD_USE_FLASH_SECTIONS", - "name": "APP_BUILD_USE_FLASH_SECTIONS", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "If enabled, all date, time, and path information would be eliminated. A .gdbinit file would be create\nautomatically. (or will be append if you have one already)", - "id": "APP_REPRODUCIBLE_BUILD", - "name": "APP_REPRODUCIBLE_BUILD", - "range": null, - "title": "Enable reproducible build", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "If enabled, this disables the linking of binary libraries in the application build. Note\nthat after enabling this Wi-Fi/Bluetooth will not work.", - "id": "APP_NO_BLOBS", - "name": "APP_NO_BLOBS", - "range": null, - "title": "No Binary Blobs", - "type": "bool" - }, - { - "children": [], - "depends_on": "IDF_TARGET_ESP32", - "help": "Bootloaders before ESP-IDF v2.1 did less initialisation of the\nsystem clock. This setting needs to be enabled to build an app\nwhich can be booted by these older bootloaders.\n\nIf this setting is enabled, the app can be booted by any bootloader\nfrom IDF v1.0 up to the current version.\n\nIf this setting is disabled, the app can only be booted by bootloaders\nfrom IDF v2.1 or newer.\n\nEnabling this setting adds approximately 1KB to the app's IRAM usage.", - "id": "APP_COMPATIBLE_PRE_V2_1_BOOTLOADERS", - "name": "APP_COMPATIBLE_PRE_V2_1_BOOTLOADERS", - "range": null, - "title": "App compatible with bootloaders before ESP-IDF v2.1", - "type": "bool" - }, - { - "children": [], - "depends_on": "IDF_TARGET_ESP32", - "help": "Partition tables before ESP-IDF V3.1 do not contain an MD5 checksum\nfield, and the bootloader before ESP-IDF v3.1 cannot read a partition\ntable that contains an MD5 checksum field.\n\nEnable this option only if your app needs to boot on a bootloader and/or\npartition table that was generated from a version *before* ESP-IDF v3.1.\n\nIf this option and Flash Encryption are enabled at the same time, and any\ndata partitions in the partition table are marked Encrypted, then the\npartition encrypted flag should be manually verified in the app before accessing\nthe partition (see CVE-2021-27926).", - "id": "APP_COMPATIBLE_PRE_V3_1_BOOTLOADERS", - "name": "APP_COMPATIBLE_PRE_V3_1_BOOTLOADERS", - "range": null, - "title": "App compatible with bootloader and partition table before ESP-IDF v3.1", - "type": "bool" - }, - { - "children": [], - "depends_on": "IDF_TARGET_ESP32", - "help": null, - "id": "APP_INIT_CLK", - "name": "APP_INIT_CLK", - "range": null, - "title": null, - "type": "bool" - } - ], - "depends_on": null, - "id": "build-type", - "title": "Build type", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "!APP_REPRODUCIBLE_BUILD", - "help": "If set, then the bootloader will be built with the current time/date stamp.\nIt is stored in the bootloader description\nstructure. If not set, time/date stamp will be excluded from bootloader image.\nThis can be useful for getting the\nsame binary image files made from the same source, but at different times.", - "id": "BOOTLOADER_COMPILE_TIME_DATE", - "name": "BOOTLOADER_COMPILE_TIME_DATE", - "range": null, - "title": "Use time/date stamp for bootloader", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Project version. It is placed in \"version\" field of the esp_bootloader_desc structure.\nThe type of this field is \"uint32_t\".", - "id": "BOOTLOADER_PROJECT_VER", - "name": "BOOTLOADER_PROJECT_VER", - "range": [ - 0, - 4294967295 - ], - "title": "Project version", - "type": "int" - } - ], - "depends_on": null, - "id": "bootloader-config-bootloader-manager", - "title": "Bootloader manager", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "BOOTLOADER_APP_ANTI_ROLLBACK", - "help": "The secure version is the sequence number stored in the header of each firmware.\nThe security version is set in the bootloader, version is recorded in the eFuse field\nas the number of set ones. The allocated number of bits in the efuse field\nfor storing the security version is limited (see BOOTLOADER_APP_SEC_VER_SIZE_EFUSE_FIELD option).\n\nBootloader: When bootloader selects an app to boot, an app is selected that has\na security version greater or equal that recorded in eFuse field.\nThe app is booted with a higher (or equal) secure version.\n\nThe security version is worth increasing if in previous versions there is\na significant vulnerability and their use is not acceptable.\n\nYour partition table should has a scheme with ota_0 + ota_1 (without factory).", - "id": "BOOTLOADER_APP_SECURE_VERSION", - "name": "BOOTLOADER_APP_SECURE_VERSION", - "range": null, - "title": "eFuse secure version of app", - "type": "int" - }, - { - "children": [], - "depends_on": "BOOTLOADER_APP_ANTI_ROLLBACK", - "help": "The size of the efuse secure version field.\nIts length is limited to 32 bits for ESP32 and 16 bits for ESP32-S2.\nThis determines how many times the security version can be increased.", - "id": "BOOTLOADER_APP_SEC_VER_SIZE_EFUSE_FIELD", - "name": "BOOTLOADER_APP_SEC_VER_SIZE_EFUSE_FIELD", - "range": null, - "title": "Size of the efuse secure version field", - "type": "int" - }, - { - "children": [], - "depends_on": "BOOTLOADER_APP_ANTI_ROLLBACK", - "help": "This option allows to emulate read/write operations with all eFuses and efuse secure version.\nIt allows to test anti-rollback implementation without permanent write eFuse bits.\nThere should be an entry in partition table with following details: `emul_efuse, data, efuse, , 0x2000`.\n\nThis option enables: EFUSE_VIRTUAL and EFUSE_VIRTUAL_KEEP_IN_FLASH.", - "id": "BOOTLOADER_EFUSE_SECURE_VERSION_EMULATE", - "name": "BOOTLOADER_EFUSE_SECURE_VERSION_EMULATE", - "range": null, - "title": "Emulate operations with efuse secure version(only test)", - "type": "bool" - } - ], - "depends_on": "BOOTLOADER_APP_ROLLBACK_ENABLE", - "help": "This option prevents rollback to previous firmware/application image with lower security version.", - "id": "BOOTLOADER_APP_ANTI_ROLLBACK", - "name": "BOOTLOADER_APP_ANTI_ROLLBACK", - "range": null, - "title": "Enable app anti-rollback support", - "type": "bool" - } - ], - "depends_on": null, - "help": "After updating the app, the bootloader runs a new app with the \"ESP_OTA_IMG_PENDING_VERIFY\" state set.\nThis state prevents the re-run of this app. After the first boot of the new app in the user code, the\nfunction should be called to confirm the operability of the app or vice versa about its non-operability.\nIf the app is working, then it is marked as valid. Otherwise, it is marked as not valid and rolls back to\nthe previous working app. A reboot is performed, and the app is booted before the software update.\nNote: If during the first boot a new app the power goes out or the WDT works, then roll back will happen.\nRollback is possible only between the apps with the same security versions.", - "id": "BOOTLOADER_APP_ROLLBACK_ENABLE", - "name": "BOOTLOADER_APP_ROLLBACK_ENABLE", - "range": null, - "title": "Enable app rollback support", - "type": "bool" - } - ], - "depends_on": null, - "id": "bootloader-config-application-rollback", - "title": "Application Rollback", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "BOOTLOADER_RECOVERY_ENABLE", - "help": "Flash address where the recovery bootloader is stored.\nThis value must be written to the eFuse field (ESP_EFUSE_RECOVERY_BOOTLOADER_FLASH_SECTOR)\nto activate the recovery bootloader in the ROM bootloader. The eFuse can be programmed\nusing espefuse.py or in the user application with the API esp_efuse_set_recovery_bootloader_offset().\nSetting this value in the config allows parttool.py to verify that it does not overlap with existing\npartitions in the partition table.\n\nThe address must be a multiple of the flash sector size (0x1000 bytes).\nThe eFuse field stores the offset in sectors.\nIf the feature is no longer needed or unused, you can burn the 0xFFF value to disable this feature in\nthe ROM bootloader.", - "id": "BOOTLOADER_RECOVERY_OFFSET", - "name": "BOOTLOADER_RECOVERY_OFFSET", - "range": null, - "title": "Recovery Bootloader Flash Offset", - "type": "hex" - }, - { - "children": [ - { - "children": [], - "depends_on": "BOOTLOADER_ANTI_ROLLBACK_ENABLE", - "help": "The secure version is the sequence number stored in the header of each bootloader.\n\nThe ROM Bootloader which runs the 2nd stage bootloader (PRIMARY or RECOVERY) checks that\nthe security version is greater or equal that recorded in the eFuse field.\nBootloaders that have a secure version in the image < secure version in efuse will not boot.\n\nThe security version is worth increasing if in previous versions there is\na significant vulnerability and their use is not acceptable.", - "id": "BOOTLOADER_SECURE_VERSION", - "name": "BOOTLOADER_SECURE_VERSION", - "range": null, - "title": "Secure version of bootloader", - "type": "int" - } - ], - "depends_on": "BOOTLOADER_RECOVERY_ENABLE", - "help": "This option prevents rollback to previous bootloader image with lower security version.", - "id": "BOOTLOADER_ANTI_ROLLBACK_ENABLE", - "name": "BOOTLOADER_ANTI_ROLLBACK_ENABLE", - "range": null, - "title": "Enable bootloader rollback support", - "type": "bool" - } - ], - "depends_on": "SOC_RECOVERY_BOOTLOADER_SUPPORTED", - "help": "The recovery bootloader feature is implemented in the ROM bootloader. It is required for safe OTA\nupdates of the bootloader. The feature is activated when the eFuse field\n(ESP_EFUSE_RECOVERY_BOOTLOADER_FLASH_SECTOR) is set, which defines the flash address of the\nrecovery bootloader. If activated and the primary bootloader fails to load, the ROM bootloader\nwill attempt to load the recovery bootloader from the address specified in eFuse.", - "id": "BOOTLOADER_RECOVERY_ENABLE", - "name": "BOOTLOADER_RECOVERY_ENABLE", - "range": null, - "title": "Enable Recovery Bootloader", - "type": "bool" - } - ], - "depends_on": null, - "id": "bootloader-config-recovery-bootloader-and-rollback", - "title": "Recovery Bootloader and Rollback", - "type": "menu" - }, - { - "children": [], - "depends_on": null, - "help": "Offset address that 2nd bootloader will be flashed to.\nThe value is determined by the ROM bootloader.\nIt's not configurable in ESP-IDF.", - "id": "BOOTLOADER_OFFSET_IN_FLASH", - "name": "BOOTLOADER_OFFSET_IN_FLASH", - "range": null, - "title": null, - "type": "hex" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "BOOTLOADER_COMPILER_OPTIMIZATION_SIZE", - "name": "BOOTLOADER_COMPILER_OPTIMIZATION_SIZE", - "range": null, - "title": "Size (-Os with GCC, -Oz with Clang)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG", - "name": "BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG", - "range": null, - "title": "Debug (-Og)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BOOTLOADER_COMPILER_OPTIMIZATION_PERF", - "name": "BOOTLOADER_COMPILER_OPTIMIZATION_PERF", - "range": null, - "title": "Optimize for performance (-O2)", - "type": "bool" - }, - { - "children": [], - "depends_on": "(IDF_TARGET_ARCH_XTENSA || IDF_TARGET_ESP32C3 || IDF_TARGET_ESP32C2) && ", - "help": null, - "id": "BOOTLOADER_COMPILER_OPTIMIZATION_NONE", - "name": "BOOTLOADER_COMPILER_OPTIMIZATION_NONE", - "range": null, - "title": "Debug without optimization (-O0) (Deprecated, will be removed in IDF v6.0)", - "type": "bool" - } - ], - "depends_on": null, - "help": "This option sets compiler optimization level (gcc -O argument)\nfor the bootloader.\n\n- The default \"Size\" setting will add the -Os (-Oz with clang) flag to CFLAGS.\n- The \"Debug\" setting will add the -Og flag to CFLAGS.\n- The \"Performance\" setting will add the -O2 flag to CFLAGS.\n\nNote that custom optimization levels may be unsupported.", - "id": "bootloader-config-bootloader-optimization-level", - "name": "BOOTLOADER_COMPILER_OPTIMIZATION", - "title": "Bootloader optimization Level", - "type": "choice" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "BOOTLOADER_LOG_VERSION_1", - "name": "BOOTLOADER_LOG_VERSION_1", - "range": null, - "title": "V1", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BOOTLOADER_LOG_VERSION_2", - "name": "BOOTLOADER_LOG_VERSION_2", - "range": null, - "title": "V2", - "type": "bool" - } - ], - "depends_on": null, - "help": "Select the log version to be used by the ESP log component.\nThe app log version (CONFIG_LOG_VERSION) controls the version used in the bootloader,\npreventing the selection of different versions.\nFor description of V1 and V2 see CONFIG_LOG_VERSION.", - "id": "bootloader-config-log-log-version", - "name": "BOOTLOADER_LOG_VERSION", - "title": "Log version", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": "This configuration sets the log version number based on the chosen log version.", - "id": "BOOTLOADER_LOG_VERSION", - "name": "BOOTLOADER_LOG_VERSION", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "BOOTLOADER_LOG_LEVEL_NONE", - "name": "BOOTLOADER_LOG_LEVEL_NONE", - "range": null, - "title": "No output", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BOOTLOADER_LOG_LEVEL_ERROR", - "name": "BOOTLOADER_LOG_LEVEL_ERROR", - "range": null, - "title": "Error", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BOOTLOADER_LOG_LEVEL_WARN", - "name": "BOOTLOADER_LOG_LEVEL_WARN", - "range": null, - "title": "Warning", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BOOTLOADER_LOG_LEVEL_INFO", - "name": "BOOTLOADER_LOG_LEVEL_INFO", - "range": null, - "title": "Info", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BOOTLOADER_LOG_LEVEL_DEBUG", - "name": "BOOTLOADER_LOG_LEVEL_DEBUG", - "range": null, - "title": "Debug", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BOOTLOADER_LOG_LEVEL_VERBOSE", - "name": "BOOTLOADER_LOG_LEVEL_VERBOSE", - "range": null, - "title": "Verbose", - "type": "bool" - } - ], - "depends_on": null, - "help": "Specify how much output to see in bootloader logs.", - "id": "bootloader-config-log-bootloader-log-verbosity", - "name": "BOOTLOADER_LOG_LEVEL", - "title": "Bootloader log verbosity", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "BOOTLOADER_LOG_LEVEL", - "name": "BOOTLOADER_LOG_LEVEL", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": "Enable ANSI terminal color codes. Logs (info, errors, warnings) will contain color codes.\nIn order to view these, your terminal program must support ANSI color codes.", - "id": "BOOTLOADER_LOG_COLORS", - "name": "BOOTLOADER_LOG_COLORS", - "range": null, - "title": "Color", - "type": "bool" - }, - { - "children": [], - "depends_on": "BOOTLOADER_LOG_VERSION_2", - "help": "Enables support for color codes in the esp_log() function. If CONFIG_LOG_COLORS is enabled, this option\nis always active. If CONFIG_LOG_COLORS is disabled, this option allows you to still handle color codes\nin specific files by defining ESP_LOG_COLOR_DISABLED as 0 before including esp_log.h.\n\nNote that enabling this option may slightly increase RAM/FLASH usage due to additional color handling\nfunctionality. It provides flexibility to manage color output even when CONFIG_LOG_COLORS is turned off.", - "id": "BOOTLOADER_LOG_COLORS_SUPPORT", - "name": "BOOTLOADER_LOG_COLORS_SUPPORT", - "range": null, - "title": "Allow enabling color output at run time", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "BOOTLOADER_LOG_VERSION_2 && ", - "help": null, - "id": "BOOTLOADER_LOG_TIMESTAMP_SOURCE_NONE", - "name": "BOOTLOADER_LOG_TIMESTAMP_SOURCE_NONE", - "range": null, - "title": "None", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS", - "name": "BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS", - "range": null, - "title": "Milliseconds Since Boot", - "type": "bool" - } - ], - "depends_on": null, - "help": "Choose what sort of timestamp is displayed in the log output:\n\n- \"None\" - The log will only contain the actual log messages themselves\n without any time-related information. Avoiding timestamps can help conserve\n processing power and memory. It might useful when you\n perform log analysis or debugging, sometimes it's more straightforward\n to work with logs that lack timestamps, especially if the time of occurrence\n is not critical for understanding the issues.\n \"I log_test: info message\"\n\n- \"Milliseconds since boot\" is calculated from the RTOS tick count multiplied\n by the tick period. This time will reset after a software reboot.\n \"I (112500) log_test: info message\"", - "id": "bootloader-config-log-format-timestamp", - "name": "BOOTLOADER_LOG_TIMESTAMP_SOURCE", - "title": "Timestamp", - "type": "choice" - }, - { - "children": [], - "depends_on": "BOOTLOADER_LOG_VERSION_2", - "help": "Enables support for timestamp in the esp_log() function.\nIf CONFIG_LOG_TIMESTAMP_SOURCE_NONE, this option allows you to still handle timestamp\nin specific files by defining ESP_LOG_TIMESTAMP_DISABLED as 0 before including esp_log.h.\n\nNote that enabling this option may slightly increase RAM/FLASH usage due to additional timestamp handling\nfunctionality. It provides flexibility to manage timestamp output even when\nCONFIG_LOG_TIMESTAMP_SOURCE_NONE.", - "id": "BOOTLOADER_LOG_TIMESTAMP_SUPPORT", - "name": "BOOTLOADER_LOG_TIMESTAMP_SUPPORT", - "range": null, - "title": "Allow enabling timestamp output at run time", - "type": "bool" - } - ], - "depends_on": null, - "id": "bootloader-config-log-format", - "title": "Format", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": null, - "id": "BOOTLOADER_LOG_MODE_TEXT_EN", - "name": "BOOTLOADER_LOG_MODE_TEXT_EN", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "BOOTLOADER_LOG_MODE_BINARY_EN", - "name": "BOOTLOADER_LOG_MODE_BINARY_EN", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": "Enables text-based logging, where log messages are stored in a human-readable format.\nThis mode is useful for development and debugging, as it allows logs to be easily\nread and interpreted without additional processing.", - "id": "BOOTLOADER_LOG_MODE_TEXT", - "name": "BOOTLOADER_LOG_MODE_TEXT", - "range": null, - "title": "Text Log Mode", - "type": "bool" - }, - { - "children": [], - "depends_on": "BOOTLOADER_LOG_VERSION_2 && ", - "help": "Enables binary logging with host-side format string expansion. In this mode, the\nformat argument of ESP_LOGx, ESP_EARLY_LOG, and ESP_DRAM_LOG macros is stored in a\nNOLOAD section, not included in the final binary file. This reduces flash usage by\napproximately 10% - 35%. The esp_log() function uses the binary log handler to output\nmessages. Instead of sending the full log string, the chip transmits only the\naddresses of these strings (if present in the ELF file). If the format string\ncannot be found in the ELF file, the chip sends the entire string. The host-side\nmonitor tool, which has access to the ELF file, reconstructs the log message using\nthe format string.\nThis reduces firmware size by eliminating format strings from\nflash memory and removing the usage of printf-like functions, potentially freeing up\na few kilobytes of space. To further reduce firmware size, wrap string data with ESP_LOG_ATTR_STR.", - "id": "BOOTLOADER_LOG_MODE_BINARY", - "name": "BOOTLOADER_LOG_MODE_BINARY", - "range": null, - "title": "Binary Log Mode", - "type": "bool" - } - ], - "depends_on": null, - "help": null, - "id": "bootloader-config-log-settings-log-mode", - "name": "BOOTLOADER_LOG_MODE", - "title": "Log Mode", - "type": "choice" - } - ], - "depends_on": null, - "id": "bootloader-config-log-settings", - "title": "Settings", - "type": "menu" - } - ], - "depends_on": null, - "id": "bootloader-config-log", - "title": "Log", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "IDF_TARGET_ESP32 && (ESPTOOLPY_FLASHMODE_QIO || ESPTOOLPY_FLASHMODE_QOUT)", - "help": "This setting is only used if the SPI flash pins have been overridden by setting the eFuses\nSPI_PAD_CONFIG_xxx, and the SPI flash mode is QIO or QOUT.\n\nWhen this is the case, the eFuse config only defines 3 of the 4 Quad I/O data pins. The WP pin (aka\nESP32 pin \"SD_DATA_3\" or SPI flash pin \"IO2\") is not specified in eFuse. The same pin is also used\nfor external SPIRAM if it is enabled.\n\nIf this config item is set to N (default), the correct WP pin will be automatically used for any\nEspressif chip or module with integrated flash. If a custom setting is needed, set this config item to\nY and specify the GPIO number connected to the WP.", - "id": "BOOTLOADER_SPI_CUSTOM_WP_PIN", - "name": "BOOTLOADER_SPI_CUSTOM_WP_PIN", - "range": null, - "title": "Use custom SPI Flash WP Pin when flash pins set in eFuse (read help)", - "type": "bool" - }, - { - "children": [], - "depends_on": "IDF_TARGET_ESP32 && (ESPTOOLPY_FLASHMODE_QIO || ESPTOOLPY_FLASHMODE_QOUT)", - "help": "The option \"Use custom SPI Flash WP Pin\" must be set or this value is ignored\n\nIf burning a customized set of SPI flash pins in eFuse and using QIO or QOUT mode for flash, set this\nvalue to the GPIO number of the SPI flash WP pin.", - "id": "BOOTLOADER_SPI_WP_PIN", - "name": "BOOTLOADER_SPI_WP_PIN", - "range": null, - "title": "Custom SPI Flash WP Pin", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "This will force 2nd bootloader to be loaded by DOUT mode, and will restore Dummy Cycle setting by\nresetting the Flash", - "id": "BOOTLOADER_FLASH_DC_AWARE", - "name": "BOOTLOADER_FLASH_DC_AWARE", - "range": null, - "title": "Allow app adjust Dummy Cycle bits in SPI Flash for higher frequency (READ HELP FIRST)", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Perform the startup flow recommended by XMC. Please consult XMC for the details of this flow.\nXMC chips will be forbidden to be used, when this option is disabled.\n\nDON'T DISABLE THIS UNLESS YOU KNOW WHAT YOU ARE DOING.\n\ncomment \"Features below require specific hardware (READ DOCS FIRST!)\"", - "id": "BOOTLOADER_FLASH_XMC_SUPPORT", - "name": "BOOTLOADER_FLASH_XMC_SUPPORT", - "range": null, - "title": "Enable the support for flash chips of XMC (READ DOCS FIRST)", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "This is a helper config for 32bits address flash. Invisible for users.", - "id": "BOOTLOADER_FLASH_32BIT_ADDR", - "name": "BOOTLOADER_FLASH_32BIT_ADDR", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "This is a helper config for 32bits address flash. Invisible for users.", - "id": "BOOTLOADER_FLASH_NEEDS_32BIT_FEAT", - "name": "BOOTLOADER_FLASH_NEEDS_32BIT_FEAT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "This is a helper config for 32bits address quad flash. Invisible for users.", - "id": "BOOTLOADER_FLASH_NEEDS_32BIT_ADDR_QUAD_FLASH", - "name": "BOOTLOADER_FLASH_NEEDS_32BIT_ADDR_QUAD_FLASH", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "BOOTLOADER_FLASH_NEEDS_32BIT_ADDR_QUAD_FLASH && IDF_EXPERIMENTAL_FEATURES", - "help": "Enabling this option allows the CPU to access 32-bit-address flash beyond 16M range.\n1. This option only valid for 4-line flash. Octal flash doesn't need this.\n2. This option is experimental, which means it can\u2019t use on all flash chips stable, for more\ninformation, please contact Espressif Business support.", - "id": "BOOTLOADER_CACHE_32BIT_ADDR_QUAD_FLASH", - "name": "BOOTLOADER_CACHE_32BIT_ADDR_QUAD_FLASH", - "range": null, - "title": "Enable cache access to 32-bit-address (over 16MB) range of SPI Flash (READ DOCS FIRST)", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "BOOTLOADER_CACHE_32BIT_ADDR_OCTAL_FLASH", - "name": "BOOTLOADER_CACHE_32BIT_ADDR_OCTAL_FLASH", - "range": null, - "title": null, - "type": "bool" - } - ], - "depends_on": null, - "id": "bootloader-config-serial-flash-configurations", - "title": "Serial Flash Configurations", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "!ESPTOOLPY_FLASHFREQ_80M && ", - "help": null, - "id": "BOOTLOADER_VDDSDIO_BOOST_1_8V", - "name": "BOOTLOADER_VDDSDIO_BOOST_1_8V", - "range": null, - "title": "1.8V", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BOOTLOADER_VDDSDIO_BOOST_1_9V", - "name": "BOOTLOADER_VDDSDIO_BOOST_1_9V", - "range": null, - "title": "1.9V", - "type": "bool" - } - ], - "depends_on": "SOC_CONFIGURABLE_VDDSDIO_SUPPORTED", - "help": "If this option is enabled, and VDDSDIO LDO is set to 1.8V (using eFuse\nor MTDI bootstrapping pin), bootloader will change LDO settings to\noutput 1.9V instead. This helps prevent flash chip from browning out\nduring flash programming operations.\n\nThis option has no effect if VDDSDIO is set to 3.3V, or if the internal\nVDDSDIO regulator is disabled via eFuse.", - "id": "bootloader-config-vddsdio-ldo-voltage", - "name": "BOOTLOADER_VDDSDIO_BOOST", - "title": "VDDSDIO LDO voltage", - "type": "choice" - }, - { - "children": [ - { - "children": [], - "depends_on": "BOOTLOADER_FACTORY_RESET", - "help": "The selected GPIO will be configured as an input with internal pull-up enabled. To trigger a factory\nreset, this GPIO must be held high or low (as configured) on startup.\n\nNote that on some SoCs not all pins have an internal pull-up and certain pins are already\nused by ROM bootloader as bootstrapping. Refer to the technical reference manual for further\ndetails on the selected SoC.", - "id": "BOOTLOADER_NUM_PIN_FACTORY_RESET", - "name": "BOOTLOADER_NUM_PIN_FACTORY_RESET", - "range": null, - "title": "Number of the GPIO input for factory reset", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "BOOTLOADER_FACTORY_RESET_PIN_LOW", - "name": "BOOTLOADER_FACTORY_RESET_PIN_LOW", - "range": null, - "title": "Reset on GPIO low", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BOOTLOADER_FACTORY_RESET_PIN_HIGH", - "name": "BOOTLOADER_FACTORY_RESET_PIN_HIGH", - "range": null, - "title": "Reset on GPIO high", - "type": "bool" - } - ], - "depends_on": "BOOTLOADER_FACTORY_RESET", - "help": "Pin level for factory reset, can be triggered on low or high.", - "id": "bootloader-config-gpio-triggers-factory-reset-factory-reset-gpio-level", - "name": "BOOTLOADER_FACTORY_RESET_PIN_LEVEL", - "title": "Factory reset GPIO level", - "type": "choice" - }, - { - "children": [], - "depends_on": "BOOTLOADER_FACTORY_RESET", - "help": "The device will boot from \"factory\" partition (or OTA slot 0 if no factory partition is present) after a\nfactory reset.", - "id": "BOOTLOADER_OTA_DATA_ERASE", - "name": "BOOTLOADER_OTA_DATA_ERASE", - "range": null, - "title": "Clear OTA data on factory reset (select factory partition)", - "type": "bool" - }, - { - "children": [], - "depends_on": "BOOTLOADER_FACTORY_RESET", - "help": "Allows customers to select which data partitions will be erased while factory reset.\n\nSpecify the names of partitions as a comma-delimited with optional spaces for readability. (Like this:\n\"nvs, phy_init, ...\")\nMake sure that the name specified in the partition table and here are the same.\nPartitions of type \"app\" cannot be specified here.", - "id": "BOOTLOADER_DATA_FACTORY_RESET", - "name": "BOOTLOADER_DATA_FACTORY_RESET", - "range": null, - "title": "Comma-separated names of partitions to clear on factory reset", - "type": "string" - } - ], - "depends_on": null, - "help": "Allows to reset the device to factory settings:\n- clear one or more data partitions;\n- boot from \"factory\" partition.\nThe factory reset will occur if there is a GPIO input held at the configured level while\ndevice starts up. See settings below.", - "id": "BOOTLOADER_FACTORY_RESET", - "name": "BOOTLOADER_FACTORY_RESET", - "range": null, - "title": "GPIO triggers factory reset", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "BOOTLOADER_APP_TEST", - "help": "The selected GPIO will be configured as an input with internal pull-up enabled.\nTo trigger a test app, this GPIO must be pulled low on reset.\nAfter the GPIO input is deactivated and the device reboots, the old application will boot.\n(factory or OTA[x]).\n\nNote that on some SoCs not all pins have an internal pull-up and certain pins are already\nused by ROM bootloader as bootstrapping. Refer to the technical reference manual for further\ndetails on the selected SoC.", - "id": "BOOTLOADER_NUM_PIN_APP_TEST", - "name": "BOOTLOADER_NUM_PIN_APP_TEST", - "range": null, - "title": "Number of the GPIO input to boot TEST partition", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "BOOTLOADER_APP_TEST_PIN_LOW", - "name": "BOOTLOADER_APP_TEST_PIN_LOW", - "range": null, - "title": "Enter test app on GPIO low", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BOOTLOADER_APP_TEST_PIN_HIGH", - "name": "BOOTLOADER_APP_TEST_PIN_HIGH", - "range": null, - "title": "Enter test app on GPIO high", - "type": "bool" - } - ], - "depends_on": "BOOTLOADER_APP_TEST", - "help": "Pin level for app test, can be triggered on low or high.", - "id": "bootloader-config-gpio-triggers-boot-from-test-app-partition-app-test-gpio-level", - "name": "BOOTLOADER_APP_TEST_PIN_LEVEL", - "title": "App test GPIO level", - "type": "choice" - } - ], - "depends_on": "!BOOTLOADER_APP_ANTI_ROLLBACK", - "help": "Allows to run the test app from \"TEST\" partition.\nA boot from \"test\" partition will occur if there is a GPIO input pulled low while device starts up.\nSee settings below.", - "id": "BOOTLOADER_APP_TEST", - "name": "BOOTLOADER_APP_TEST", - "range": null, - "title": "GPIO triggers boot from test app partition", - "type": "bool" - }, - { - "children": [], - "depends_on": "BOOTLOADER_FACTORY_RESET || BOOTLOADER_APP_TEST", - "help": "The GPIO must be held low continuously for this period of time after reset\nbefore a factory reset or test partition boot (as applicable) is performed.", - "id": "BOOTLOADER_HOLD_TIME_GPIO", - "name": "BOOTLOADER_HOLD_TIME_GPIO", - "range": null, - "title": "Hold time of GPIO for reset/test mode (seconds)", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Protects the unmapped memory regions of the entire address space from unintended accesses.\nThis will ensure that an exception will be triggered whenever the CPU performs a memory\noperation on unmapped regions of the address space.\nNOTE: Disabling this config on some targets (ESP32-C6, ESP32-H2, ESP32-C5) would not generate\nan exception when reading from or writing to 0x0.", - "id": "BOOTLOADER_REGION_PROTECTION_ENABLE", - "name": "BOOTLOADER_REGION_PROTECTION_ENABLE", - "range": null, - "title": "Enable protection for unmapped memory regions", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "BOOTLOADER_WDT_ENABLE", - "help": "If this option is set, the ESP-IDF app must explicitly reset, feed, or disable the rtc_wdt in\nthe app's own code.\nIf this option is not set (default), then rtc_wdt will be disabled by ESP-IDF before calling\nthe app_main() function.\n\nUse function wdt_hal_feed() for resetting counter of RTC_WDT.\nFor esp32/s2 you can also use rtc_wdt_feed().\n\nUse function wdt_hal_disable() for disabling RTC_WDT.\nFor esp32/s2 you can also use rtc_wdt_disable().", - "id": "BOOTLOADER_WDT_DISABLE_IN_USER_CODE", - "name": "BOOTLOADER_WDT_DISABLE_IN_USER_CODE", - "range": null, - "title": "Allows RTC watchdog disable in user code", - "type": "bool" - }, - { - "children": [], - "depends_on": "BOOTLOADER_WDT_ENABLE", - "help": "Verify that this parameter is correct and more then the execution time.\nPay attention to options such as reset to factory, trigger test partition and encryption on boot\n- these options can increase the execution time.\nNote: RTC_WDT will reset while encryption operations will be performed.", - "id": "BOOTLOADER_WDT_TIME_MS", - "name": "BOOTLOADER_WDT_TIME_MS", - "range": [ - 0, - 120000 - ], - "title": "Timeout for RTC watchdog (ms)", - "type": "int" - } - ], - "depends_on": null, - "help": "Tracks the execution time of startup code.\nIf the execution time is exceeded, the RTC_WDT will restart system.\nIt is also useful to prevent a lock up in start code caused by an unstable power source.\nNOTE: Tracks the execution time starts from the bootloader code - re-set timeout, while selecting the\nsource for slow_clk - and ends calling app_main.\nRe-set timeout is needed due to WDT uses a SLOW_CLK clock source. After changing a frequency slow_clk a\ntime of WDT needs to re-set for new frequency.\nslow_clk depends on RTC_CLK_SRC (INTERNAL_RC or EXTERNAL_CRYSTAL).", - "id": "BOOTLOADER_WDT_ENABLE", - "name": "BOOTLOADER_WDT_ENABLE", - "range": null, - "title": "Use RTC watchdog in start code", - "type": "bool" - }, - { - "children": [], - "depends_on": "(SECURE_BOOT && SECURE_BOOT_INSECURE) || !SECURE_BOOT", - "help": "This option disables the normal validation of an image coming out of\ndeep sleep (checksums, SHA256, and signature). This is a trade-off\nbetween wakeup performance from deep sleep, and image integrity checks.\n\nOnly enable this if you know what you are doing. It should not be used\nin conjunction with using deep_sleep() entry and changing the active OTA\npartition as this would skip the validation upon first load of the new\nOTA partition.\n\nIt is possible to enable this option with Secure Boot if \"allow insecure\noptions\" is enabled, however it's strongly recommended to NOT enable it as\nit may allow a Secure Boot bypass.", - "id": "BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP", - "name": "BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP", - "range": null, - "title": "Skip image validation when exiting deep sleep", - "type": "bool" - }, - { - "children": [], - "depends_on": "!SECURE_SIGNED_ON_BOOT", - "help": "Some applications need to boot very quickly from power on. By default, the entire app binary\nis read from flash and verified which takes up a significant portion of the boot time.\n\nEnabling this option will skip validation of the app when the SoC boots from power on.\nNote that in this case it's not possible for the bootloader to detect if an app image is\ncorrupted in the flash, therefore it's not possible to safely fall back to a different app\npartition. Flash corruption of this kind is unlikely but can happen if there is a serious\nfirmware bug or physical damage.\n\nFollowing other reset types, the bootloader will still validate the app image. This increases\nthe chances that flash corruption resulting in a crash can be detected following soft reset, and\nthe bootloader will fall back to a valid app image. To increase the chances of successfully recovering\nfrom a flash corruption event, keep the option BOOTLOADER_WDT_ENABLE enabled and consider also enabling\nBOOTLOADER_WDT_DISABLE_IN_USER_CODE - then manually disable the RTC Watchdog once the app is running.\nIn addition, enable both the Task and Interrupt watchdog timers with reset options set.", - "id": "BOOTLOADER_SKIP_VALIDATE_ON_POWER_ON", - "name": "BOOTLOADER_SKIP_VALIDATE_ON_POWER_ON", - "range": null, - "title": "Skip image validation from power on reset (READ HELP FIRST)", - "type": "bool" - }, - { - "children": [], - "depends_on": "!SECURE_SIGNED_ON_BOOT", - "help": "Selecting this option prevents the bootloader from ever validating the app image before\nbooting it. Any flash corruption of the selected app partition will make the entire SoC\nunbootable.\n\nAlthough flash corruption is a very rare case, it is not recommended to select this option.\nConsider selecting \"Skip image validation from power on reset\" instead. However, if boot time\nis the only important factor then it can be enabled.", - "id": "BOOTLOADER_SKIP_VALIDATE_ALWAYS", - "name": "BOOTLOADER_SKIP_VALIDATE_ALWAYS", - "range": null, - "title": "Skip image validation always (READ HELP FIRST)", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_RTC_FAST_MEM_SUPPORTED", - "help": "Reserve RTC FAST memory for Skip image validation. This option in bytes.\nThis option reserves an area in the RTC FAST memory (access only PRO_CPU).\nUsed to save the addresses of the selected application.\nWhen a wakeup occurs (from Deep sleep), the bootloader retrieves it and\nloads the application without validation.", - "id": "BOOTLOADER_RESERVE_RTC_SIZE", - "name": "BOOTLOADER_RESERVE_RTC_SIZE", - "range": null, - "title": null, - "type": "hex" - }, - { - "children": [ - { - "children": [], - "depends_on": "BOOTLOADER_CUSTOM_RESERVE_RTC", - "help": "This option allows the customer to use the legacy bootloader behavior when the\nRTC FAST memory CRC calculation takes place. When this option is enabled, the\nallocated user custom data will be taken into account in the CRC calculation.\nThis means that any change to the custom data would need a CRC update to prevent\nthe bootloader from marking this data as corrupted.\nIf this option is disabled, the custom data will not be taken into account when\ncalculating the RTC FAST memory CRC. The user custom data can be changed freely,\nwithout the need to update the CRC.\nTHIS OPTION MUST BE THE SAME FOR BOTH THE BOOTLOADER AND THE APPLICATION BUILDS.", - "id": "BOOTLOADER_CUSTOM_RESERVE_RTC_IN_CRC", - "name": "BOOTLOADER_CUSTOM_RESERVE_RTC_IN_CRC", - "range": null, - "title": "Include custom memory in the CRC calculation", - "type": "bool" - }, - { - "children": [], - "depends_on": "BOOTLOADER_CUSTOM_RESERVE_RTC", - "help": "This option reserves in RTC FAST memory the area for custom purposes.\nIf you want to create your own bootloader and save more information\nin this area of memory, you can increase it. It must be a multiple of 4 bytes.\nThis area (rtc_retain_mem_t) is reserved and has access from the bootloader and an application.", - "id": "BOOTLOADER_CUSTOM_RESERVE_RTC_SIZE", - "name": "BOOTLOADER_CUSTOM_RESERVE_RTC_SIZE", - "range": null, - "title": "Size in bytes for custom purposes", - "type": "hex" - } - ], - "depends_on": "SOC_RTC_FAST_MEM_SUPPORTED", - "help": "This option allows the customer to place data in the RTC FAST memory,\nthis area remains valid when rebooted, except for power loss.\nThis memory is located at a fixed address and is available\nfor both the bootloader and the application.\n(The application and bootloader must be compiled with the same option).\nThe RTC FAST memory has access only through PRO_CPU.", - "id": "BOOTLOADER_CUSTOM_RESERVE_RTC", - "name": "BOOTLOADER_CUSTOM_RESERVE_RTC", - "range": null, - "title": "Reserve RTC FAST memory for custom purposes", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_RTC_FAST_MEM_SUPPORTED", - "help": "This option reserves an area in RTC FAST memory for the following features:\n- \"Skip image validation when exiting deep sleep\"\n- \"Reserve RTC FAST memory for custom purposes\"\n- \"GPIO triggers factory reset\"", - "id": "BOOTLOADER_RESERVE_RTC_MEM", - "name": "BOOTLOADER_RESERVE_RTC_MEM", - "range": null, - "title": null, - "type": "bool" - } - ], - "depends_on": null, - "id": "bootloader-config", - "title": "Bootloader config", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "SECURE_BOOT || SECURE_SIGNED_ON_BOOT_NO_SECURE_BOOT", - "help": null, - "id": "SECURE_SIGNED_ON_BOOT", - "name": "SECURE_SIGNED_ON_BOOT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_BOOT || SECURE_SIGNED_ON_UPDATE_NO_SECURE_BOOT", - "help": null, - "id": "SECURE_SIGNED_ON_UPDATE", - "name": "SECURE_SIGNED_ON_UPDATE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_SIGNED_ON_BOOT || SECURE_SIGNED_ON_UPDATE", - "help": null, - "id": "SECURE_SIGNED_APPS", - "name": "SECURE_SIGNED_APPS", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "(IDF_TARGET_ESP32 && ESP32_REV_MIN_FULL >= 300) || SOC_SECURE_BOOT_V2_RSA", - "help": null, - "id": "SECURE_BOOT_V2_RSA_SUPPORTED", - "name": "SECURE_BOOT_V2_RSA_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_SECURE_BOOT_V2_ECC", - "help": null, - "id": "SECURE_BOOT_V2_ECC_SUPPORTED", - "name": "SECURE_BOOT_V2_ECC_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_SECURE_BOOT_V1", - "help": null, - "id": "SECURE_BOOT_V1_SUPPORTED", - "name": "SECURE_BOOT_V1_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP32_REV_MIN_FULL >= 300", - "help": null, - "id": "SECURE_BOOT_V2_PREFERRED", - "name": "SECURE_BOOT_V2_PREFERRED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SECURE_BOOT_V2_ECDSA_ENABLED", - "name": "SECURE_BOOT_V2_ECDSA_ENABLED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SECURE_BOOT_V2_RSA_ENABLED", - "name": "SECURE_BOOT_V2_RSA_ENABLED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SECURE_BOOT_FLASH_ENC_KEYS_BURN_TOGETHER", - "name": "SECURE_BOOT_FLASH_ENC_KEYS_BURN_TOGETHER", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "!SECURE_BOOT", - "help": "Require apps to be signed to verify their integrity.\n\nThis option uses the same app signature scheme as hardware secure boot, but unlike hardware secure boot it\ndoes not prevent the bootloader from being physically updated. This means that the device can be secured\nagainst remote network access, but not physical access. Compared to using hardware Secure Boot this option\nis much simpler to implement.", - "id": "SECURE_SIGNED_APPS_NO_SECURE_BOOT", - "name": "SECURE_SIGNED_APPS_NO_SECURE_BOOT", - "range": null, - "title": "Require signed app images", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "SECURE_BOOT_V1_SUPPORTED && (SECURE_SIGNED_APPS_NO_SECURE_BOOT || SECURE_BOOT_V1_ENABLED) && ", - "help": "Embeds the ECDSA public key in the bootloader and signs the application with an ECDSA key.\nRefer to the documentation before enabling.", - "id": "SECURE_SIGNED_APPS_ECDSA_SCHEME", - "name": "SECURE_SIGNED_APPS_ECDSA_SCHEME", - "range": null, - "title": "ECDSA", - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_BOOT_V2_RSA_SUPPORTED && (SECURE_SIGNED_APPS_NO_SECURE_BOOT || SECURE_BOOT_V2_ENABLED) && !(IDF_TARGET_ESP32C5 && ESP32C5_REV_MIN_FULL < 1) && ", - "help": "Appends the RSA-3072 based Signature block to the application.\nRefer to before enabling.", - "id": "SECURE_SIGNED_APPS_RSA_SCHEME", - "name": "SECURE_SIGNED_APPS_RSA_SCHEME", - "range": null, - "title": "RSA", - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_BOOT_V2_ECC_SUPPORTED && (SECURE_SIGNED_APPS_NO_SECURE_BOOT || SECURE_BOOT_V2_ENABLED) && ", - "help": "For Secure boot V2 (e.g., ESP32-C2 SoC), appends ECDSA based signature block to the application.\nRefer to documentation before enabling.", - "id": "SECURE_SIGNED_APPS_ECDSA_V2_SCHEME", - "name": "SECURE_SIGNED_APPS_ECDSA_V2_SCHEME", - "range": null, - "title": "ECDSA (V2)", - "type": "bool" - } - ], - "depends_on": "SECURE_BOOT || SECURE_SIGNED_APPS_NO_SECURE_BOOT", - "help": "Select the Secure App signing scheme. Depends on the Chip Revision.\nThere are two secure boot versions:\n\n1. Secure boot V1\n - Legacy custom secure boot scheme. Supported in ESP32 SoC.\n\n2. Secure boot V2\n - RSA based secure boot scheme.\n Supported in ESP32-ECO3 (ESP32 Chip Revision 3 onwards), ESP32-S2, ESP32-C3, ESP32-S3 SoCs.\n\n - ECDSA based secure boot scheme. Supported in ESP32-C2 SoC.", - "id": "security-features-app-signing-scheme", - "name": "SECURE_SIGNED_APPS_SCHEME", - "title": "App Signing Scheme", - "type": "choice" - }, - { - "children": [ - { - "children": [], - "depends_on": "SECURE_SIGNED_APPS_ECDSA_V2_SCHEME && ", - "help": null, - "id": "SECURE_BOOT_ECDSA_KEY_LEN_192_BITS", - "name": "SECURE_BOOT_ECDSA_KEY_LEN_192_BITS", - "range": null, - "title": "Using ECC curve NISTP192", - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_SIGNED_APPS_ECDSA_V2_SCHEME && ", - "help": null, - "id": "SECURE_BOOT_ECDSA_KEY_LEN_256_BITS", - "name": "SECURE_BOOT_ECDSA_KEY_LEN_256_BITS", - "range": null, - "title": "Using ECC curve NISTP256 (Recommended)", - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_SIGNED_APPS_ECDSA_V2_SCHEME && SOC_ECDSA_SUPPORT_CURVE_P384 && ", - "help": null, - "id": "SECURE_BOOT_ECDSA_KEY_LEN_384_BITS", - "name": "SECURE_BOOT_ECDSA_KEY_LEN_384_BITS", - "range": null, - "title": "Using ECC curve NISTP384 (Recommended)", - "type": "bool" - } - ], - "depends_on": "SECURE_SIGNED_APPS_ECDSA_V2_SCHEME", - "help": "Select the ECDSA key size. Three key sizes are supported depending upon on the target:\n\n- 192 bit key using NISTP192 curve\n- 256 bit key using NISTP256 curve (Recommended)\n- 384 bit key using NISTP384 curve (Recommended)\n\nThe advantage of using 384 and 256 bit keys is the extra randomness which makes it difficult to be\nbruteforced compared to 192 bit key.\nAt present, both key sizes are practically implausible to bruteforce.", - "id": "security-features-ecdsa-key-size", - "name": "SECURE_BOOT_ECDSA_KEY_LEN_SIZE", - "title": "ECDSA key size", - "type": "choice" - }, - { - "children": [], - "depends_on": "SECURE_SIGNED_APPS_NO_SECURE_BOOT && SECURE_SIGNED_APPS_ECDSA_SCHEME", - "help": "If this option is set, the bootloader will be compiled with code to verify that an app is signed before\nbooting it.\n\nIf hardware secure boot is enabled, this option is always enabled and cannot be disabled.\nIf hardware secure boot is not enabled, this option doesn't add significant security by itself so most\nusers will want to leave it disabled.", - "id": "SECURE_SIGNED_ON_BOOT_NO_SECURE_BOOT", - "name": "SECURE_SIGNED_ON_BOOT_NO_SECURE_BOOT", - "range": null, - "title": "Bootloader verifies app signatures", - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_SIGNED_APPS_NO_SECURE_BOOT", - "help": "If this option is set, any OTA updated apps will have the signature verified before being considered valid.\n\nWhen enabled, the signature is automatically checked whenever the esp_ota_ops.h APIs are used for OTA\nupdates, or esp_image_format.h APIs are used to verify apps.\n\nIf hardware secure boot is enabled, this option is always enabled and cannot be disabled.\nIf hardware secure boot is not enabled, this option still adds significant security against network-based\nattackers by preventing spoofing of OTA updates.", - "id": "SECURE_SIGNED_ON_UPDATE_NO_SECURE_BOOT", - "name": "SECURE_SIGNED_ON_UPDATE_NO_SECURE_BOOT", - "range": null, - "title": "Verify app signature on update", - "type": "bool" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "SECURE_BOOT_V1_SUPPORTED && ", - "help": "Build a bootloader which enables secure boot version 1 on first boot.\nRefer to the Secure Boot section of the ESP-IDF Programmer's Guide for this version before enabling.", - "id": "SECURE_BOOT_V1_ENABLED", - "name": "SECURE_BOOT_V1_ENABLED", - "range": null, - "title": "Enable Secure Boot version 1", - "type": "bool" - }, - { - "children": [], - "depends_on": "(SECURE_BOOT_V2_RSA_SUPPORTED || SECURE_BOOT_V2_ECC_SUPPORTED) && ", - "help": "Build a bootloader which enables Secure Boot version 2 on first boot.\nRefer to Secure Boot V2 section of the ESP-IDF Programmer's Guide for this version before enabling.", - "id": "SECURE_BOOT_V2_ENABLED", - "name": "SECURE_BOOT_V2_ENABLED", - "range": null, - "title": "Enable Secure Boot version 2", - "type": "bool" - } - ], - "depends_on": "SECURE_BOOT", - "help": "Select the Secure Boot Version. Depends on the Chip Revision.\nSecure Boot V2 is the new RSA / ECDSA based secure boot scheme.\n\n - RSA based scheme is supported in ESP32 (Revision 3 onwards), ESP32-S2, ESP32-C3 (ECO3), ESP32-S3.\n - ECDSA based scheme is supported in ESP32-C2 SoC.\n\nPlease note that, RSA or ECDSA secure boot is property of specific SoC based on its HW design, supported\ncrypto accelerators, die-size, cost and similar parameters. Please note that RSA scheme has requirement\nfor bigger key sizes but at the same time it is comparatively faster than ECDSA verification.\n\nSecure Boot V1 is the AES based (custom) secure boot scheme supported in ESP32 SoC.", - "id": "security-features-enable-hardware-secure-boot-in-bootloader-read-docs-first--select-secure-boot-version", - "name": "SECURE_BOOT_VERSION", - "title": "Select secure boot version", - "type": "choice" - } - ], - "depends_on": "SOC_SECURE_BOOT_SUPPORTED && !(IDF_TARGET_ESP32C3 && ESP32C3_REV_MIN_FULL < 3)", - "help": "Build a bootloader which enables Secure Boot on first boot.\n\nOnce enabled, Secure Boot will not boot a modified bootloader. The bootloader will only load a partition\ntable or boot an app if the data has a verified digital signature. There are implications for reflashing\nupdated apps once secure boot is enabled.\n\nWhen enabling secure boot, JTAG and ROM BASIC Interpreter are permanently disabled by default.", - "id": "SECURE_BOOT", - "name": "SECURE_BOOT", - "range": null, - "title": "Enable hardware Secure Boot in bootloader (READ DOCS FIRST)", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": "On first boot, the bootloader will generate a key which is not readable externally or by software. A\ndigest is generated from the bootloader image itself. This digest will be verified on each subsequent\nboot.\n\nEnabling this option means that the bootloader cannot be changed after the first time it is booted.", - "id": "SECURE_BOOTLOADER_ONE_TIME_FLASH", - "name": "SECURE_BOOTLOADER_ONE_TIME_FLASH", - "range": null, - "title": "One-time flash", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "Generate a reusable secure bootloader key, derived (via SHA-256) from the secure boot signing key.\n\nThis allows the secure bootloader to be re-flashed by anyone with access to the secure boot signing\nkey.\n\nThis option is less secure than one-time flash, because a leak of the digest key from one device\nallows reflashing of any device that uses it.", - "id": "SECURE_BOOTLOADER_REFLASHABLE", - "name": "SECURE_BOOTLOADER_REFLASHABLE", - "range": null, - "title": "Reflashable", - "type": "bool" - } - ], - "depends_on": "SECURE_BOOT_V1_ENABLED", - "help": null, - "id": "security-features-secure-bootloader-mode", - "name": "SECURE_BOOTLOADER_MODE", - "title": "Secure bootloader mode", - "type": "choice" - }, - { - "children": [ - { - "children": [], - "depends_on": "SECURE_BOOT_BUILD_SIGNED_BINARIES", - "help": "Path to the key file used to sign app images.\n\nKey file is an ECDSA private key (NIST256p curve) in PEM format for Secure Boot V1.\nKey file is an RSA private key in PEM format for Secure Boot V2.\n\nPath is evaluated relative to the project directory.\n\nYou can generate a new signing key by running the following command:\nespsecure.py generate_signing_key secure_boot_signing_key.pem\n\nSee the Secure Boot section of the ESP-IDF Programmer's Guide for this version for details.", - "id": "SECURE_BOOT_SIGNING_KEY", - "name": "SECURE_BOOT_SIGNING_KEY", - "range": null, - "title": "Secure boot private signing key", - "type": "string" - } - ], - "depends_on": "SECURE_SIGNED_APPS", - "help": "Once secure boot or signed app requirement is enabled, app images are required to be signed.\n\nIf enabled (default), these binary files are signed as part of the build process. The file named in\n\"Secure boot private signing key\" will be used to sign the image.\n\nIf disabled, unsigned app/partition data will be built. They must be signed manually using espsecure.py.\nVersion 1 to enable ECDSA Based Secure Boot and Version 2 to enable RSA based Secure Boot.\n(for example, on a remote signing server.)", - "id": "SECURE_BOOT_BUILD_SIGNED_BINARIES", - "name": "SECURE_BOOT_BUILD_SIGNED_BINARIES", - "range": null, - "title": "Sign binaries during build", - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_SIGNED_APPS && SECURE_SIGNED_APPS_ECDSA_SCHEME && !SECURE_BOOT_BUILD_SIGNED_BINARIES", - "help": "Path to a public key file used to verify signed images.\nSecure Boot V1: This ECDSA public key is compiled into the bootloader and/or\napp, to verify app images.\n\nKey file is in raw binary format, and can be extracted from a\nPEM formatted private key using the espsecure.py\nextract_public_key command.\n\nRefer to the Secure Boot section of the ESP-IDF Programmer's Guide for this version before enabling.", - "id": "SECURE_BOOT_VERIFICATION_KEY", - "name": "SECURE_BOOT_VERIFICATION_KEY", - "range": null, - "title": "Secure boot public signature verification key", - "type": "string" - }, - { - "children": [], - "depends_on": "SECURE_BOOT && SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY", - "help": "If this option is set, ROM bootloader will revoke the public key digest burned in efuse block\nif it fails to verify the signature of software bootloader with it.\nRevocation of keys does not happen when enabling secure boot. Once secure boot is enabled,\nkey revocation checks will be done on subsequent boot-up, while verifying the software bootloader\n\nThis feature provides a strong resistance against physical attacks on the device.\n\nNOTE: Once a digest slot is revoked, it can never be used again to verify an image\nThis can lead to permanent bricking of the device, in case all keys are revoked\nbecause of signature verification failure.", - "id": "SECURE_BOOT_ENABLE_AGGRESSIVE_KEY_REVOKE", - "name": "SECURE_BOOT_ENABLE_AGGRESSIVE_KEY_REVOKE", - "range": null, - "title": "Enable Aggressive key revoke strategy", - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_BOOT_V2_ENABLED", - "help": "If not set (default, recommended), on first boot the bootloader will burn the WR_DIS_RD_DIS\nefuse when Secure Boot is enabled. This prevents any more efuses from being read protected.\n\nIf this option is set, it will remain possible to write the EFUSE_RD_DIS efuse field after Secure\nBoot is enabled. This may allow an attacker to read-protect the BLK2 efuse (for ESP32) and\nBLOCK4-BLOCK10 (i.e. BLOCK_KEY0-BLOCK_KEY5)(for other chips) holding the secure boot public key digest,\ncausing an immediate denial of service and possibly allowing an additional fault injection attack to\nbypass the signature protection.\n\nThe option must be set when you need to program any read-protected key type into the efuses,\ne.g., HMAC, ECDSA etc. after secure boot has already been enabled on the device.\nPlease refer to secure boot V2 documentation guide for more details.\n\nNOTE: Once a BLOCK is read-protected, the application will read all zeros from that block\n\nNOTE: If \"UART ROM download mode (Permanently disabled (recommended))\" or\n\"UART ROM download mode (Permanently switch to Secure mode (recommended))\" is set,\nthen it is __NOT__ possible to read/write efuses using espefuse.py utility.\nHowever, efuse can be read/written from the application\n\nPlease refer to the Secure Boot V2 documentation guide for more information.", - "id": "SECURE_BOOT_V2_ALLOW_EFUSE_RD_DIS", - "name": "SECURE_BOOT_V2_ALLOW_EFUSE_RD_DIS", - "range": null, - "title": "Do not disable the ability to further read protect eFuses", - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_BOOT_V2_ENABLED", - "help": "When Secure Boot V2 is enabled, by default the bootloader is not flashed along with other artifacts\nlike the application and the partition table images, i.e. bootloader has to be separately flashed\nusing the command `idf.py bootloader flash`, whereas, the application and partition table can be flashed\nusing the command `idf.py flash` itself.\nEnabling this option allows flashing the bootloader along with the other artifacts\nby invocation of the command `idf.py flash`.\n\nIf this option is enabled make sure that even the bootloader is signed using the correct secure boot key,\notherwise the bootloader signature verification would fail, as hash of the public key which is present in\nthe bootloader signature would not match with the digest stored into the efuses\nand thus the device will not be able to boot up.", - "id": "SECURE_BOOT_FLASH_BOOTLOADER_DEFAULT", - "name": "SECURE_BOOT_FLASH_BOOTLOADER_DEFAULT", - "range": null, - "title": "Flash bootloader along with other artifacts when using the default flash command", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "SECURE_BOOTLOADER_KEY_ENCODING_256BIT", - "name": "SECURE_BOOTLOADER_KEY_ENCODING_256BIT", - "range": null, - "title": "No encoding (256 bit key)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "SECURE_BOOTLOADER_KEY_ENCODING_192BIT", - "name": "SECURE_BOOTLOADER_KEY_ENCODING_192BIT", - "range": null, - "title": "3/4 encoding (192 bit key)", - "type": "bool" - } - ], - "depends_on": "SECURE_BOOTLOADER_REFLASHABLE", - "help": "In reflashable secure bootloader mode, a hardware key is derived from the signing key (with SHA-256) and\ncan be written to eFuse with espefuse.py.\n\nNormally this is a 256-bit key, but if 3/4 Coding Scheme is used on the device then the eFuse key is\ntruncated to 192 bits.\n\nThis configuration item doesn't change any firmware code, it only changes the size of key binary which is\ngenerated at build time.", - "id": "security-features-hardware-key-encoding", - "name": "SECURE_BOOTLOADER_KEY_ENCODING", - "title": "Hardware Key Encoding", - "type": "choice" - }, - { - "children": [], - "depends_on": "SECURE_BOOT", - "help": "You can disable some of the default protections offered by secure boot, in order to enable testing or a\ncustom combination of security features.\n\nOnly enable these options if you are very sure.\n\nRefer to the Secure Boot section of the ESP-IDF Programmer's Guide for this version before enabling.", - "id": "SECURE_BOOT_INSECURE", - "name": "SECURE_BOOT_INSECURE", - "range": null, - "title": "Allow potentially insecure options", - "type": "bool" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "SOC_FLASH_ENCRYPTION_XTS_AES_128_DERIVED && ", - "help": null, - "id": "SECURE_FLASH_ENCRYPTION_AES128_DERIVED", - "name": "SECURE_FLASH_ENCRYPTION_AES128_DERIVED", - "range": null, - "title": "AES-128 key derived from 128 bits (SHA256(128 bits))", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_FLASH_ENCRYPTION_XTS_AES_128 && !(IDF_TARGET_ESP32C2 && SECURE_BOOT) && ", - "help": null, - "id": "SECURE_FLASH_ENCRYPTION_AES128", - "name": "SECURE_FLASH_ENCRYPTION_AES128", - "range": null, - "title": "AES-128 (256-bit key)", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_FLASH_ENCRYPTION_XTS_AES_256 && ", - "help": null, - "id": "SECURE_FLASH_ENCRYPTION_AES256", - "name": "SECURE_FLASH_ENCRYPTION_AES256", - "range": null, - "title": "AES-256 (512-bit key)", - "type": "bool" - } - ], - "depends_on": "SOC_FLASH_ENCRYPTION_XTS_AES_OPTIONS && SECURE_FLASH_ENC_ENABLED", - "help": "Size of generated XTS-AES key.\n\n- AES-128 uses a 256-bit key (32 bytes) derived from 128 bits (16 bytes) burned in half Efuse key block.\n Internally, it calculates SHA256(128 bits)\n- AES-128 uses a 256-bit key (32 bytes) which occupies one Efuse key block.\n- AES-256 uses a 512-bit key (64 bytes) which occupies two Efuse key blocks.\n\nThis setting is ignored if either type of key is already burned to Efuse before the first boot.\nIn this case, the pre-burned key is used and no new key is generated.", - "id": "security-features-enable-flash-encryption-on-boot-read-docs-first--size-of-generated-xts-aes-key", - "name": "SECURE_FLASH_ENCRYPTION_KEYSIZE", - "title": "Size of generated XTS-AES key", - "type": "choice" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT", - "name": "SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT", - "range": null, - "title": "Development (NOT SECURE)", - "type": "bool" - }, - { - "children": [], - "depends_on": "(!EFUSE_VIRTUAL || IDF_CI_BUILD) && ", - "help": null, - "id": "SECURE_FLASH_ENCRYPTION_MODE_RELEASE", - "name": "SECURE_FLASH_ENCRYPTION_MODE_RELEASE", - "range": null, - "title": "Release", - "type": "bool" - } - ], - "depends_on": "SECURE_FLASH_ENC_ENABLED", - "help": "By default Development mode is enabled which allows ROM download mode to perform flash encryption\noperations (plaintext is sent to the device, and it encrypts it internally and writes ciphertext\nto flash.) This mode is not secure, it's possible for an attacker to write their own chosen plaintext\nto flash.\n\nRelease mode should always be selected for production or manufacturing. Once enabled it's no longer\npossible for the device in ROM Download Mode to use the flash encryption hardware.\n\nWhen EFUSE_VIRTUAL is enabled, SECURE_FLASH_ENCRYPTION_MODE_RELEASE is not available.\nFor CI tests we use IDF_CI_BUILD to bypass it (\"export IDF_CI_BUILD=1\").\nWe do not recommend bypassing it for other purposes.\n\nRefer to the Flash Encryption section of the ESP-IDF Programmer's Guide for details.", - "id": "security-features-enable-flash-encryption-on-boot-read-docs-first--enable-usage-mode", - "name": "SECURE_FLASH_ENCRYPTION_MODE", - "title": "Enable usage mode", - "type": "choice" - } - ], - "depends_on": null, - "help": "If this option is set, flash contents will be encrypted by the bootloader on first boot.\n\nNote: After first boot, the system will be permanently encrypted. Re-flashing an encrypted\nsystem is complicated and not always possible.\n\nRead https://docs.espressif.com/projects/esp-idf/en/latest/security/flash-encryption.html\nbefore enabling.", - "id": "SECURE_FLASH_ENC_ENABLED", - "name": "SECURE_FLASH_ENC_ENABLED", - "range": null, - "title": "Enable flash encryption on boot (READ DOCS FIRST)", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SECURE_FLASH_HAS_WRITE_PROTECTION_CACHE", - "name": "SECURE_FLASH_HAS_WRITE_PROTECTION_CACHE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "(SECURE_BOOT_INSECURE || SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT) && IDF_TARGET_ESP32", - "help": "By default, the BASIC ROM Console starts on reset if no valid bootloader is\nread from the flash.\n\nWhen either flash encryption or secure boot are enabled, the default is to\ndisable this BASIC fallback mode permanently via eFuse.\n\nIf this option is set, this eFuse is not burned and the BASIC ROM Console may\nremain accessible. Only set this option in testing environments.", - "id": "SECURE_BOOT_ALLOW_ROM_BASIC", - "name": "SECURE_BOOT_ALLOW_ROM_BASIC", - "range": null, - "title": "Leave ROM BASIC Interpreter available on reset", - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_BOOT_INSECURE || SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT", - "help": "If not set (default), the bootloader will permanently disable JTAG (across entire chip) on first boot\nwhen either secure boot or flash encryption is enabled.\n\nSetting this option leaves JTAG on for debugging, which negates all protections of flash encryption\nand some of the protections of secure boot.\n\nOnly set this option in testing environments.", - "id": "SECURE_BOOT_ALLOW_JTAG", - "name": "SECURE_BOOT_ALLOW_JTAG", - "range": null, - "title": "Allow JTAG Debugging", - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_BOOT_INSECURE || SECURE_SIGNED_ON_UPDATE_NO_SECURE_BOOT", - "help": "If not set (default), app partition size must be a multiple of 64KB. App images are padded to 64KB\nlength, and the bootloader checks any trailing bytes after the signature (before the next 64KB\nboundary) have not been written. This is because flash cache maps entire 64KB pages into the address\nspace. This prevents an attacker from appending unverified data after the app image in the flash,\ncausing it to be mapped into the address space.\n\nSetting this option allows the app partition length to be unaligned, and disables padding of the app\nimage to this length. It is generally not recommended to set this option, unless you have a legacy\npartitioning scheme which doesn't support 64KB aligned partition lengths.", - "id": "SECURE_BOOT_ALLOW_SHORT_APP_PARTITION", - "name": "SECURE_BOOT_ALLOW_SHORT_APP_PARTITION", - "range": null, - "title": "Allow app partition length not 64KB aligned", - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_BOOT_INSECURE && SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS", - "help": "If not set (default), during startup in the app all unused digest slots will be revoked.\nTo revoke unused slot will be called esp_efuse_set_digest_revoke(num_digest) for each digest.\nRevoking unused digest slots makes ensures that no trusted keys can be added later by an attacker.\nIf set, it means that you have a plan to use unused digests slots later.\n\nNote that if you plan to enable secure boot during the first boot up, the bootloader will intentionally\nrevoke the unused digest slots while enabling secure boot, even if the above config is enabled because\nkeeping the unused key slots un-revoked would a security hazard.\nIn case for any development workflow if you need to avoid this revocation, you should enable\nsecure boot externally (host based mechanism) rather than enabling it during the boot up,\nso that the bootloader would not need to enable secure boot and thus you could avoid its revocation\nstrategy.", - "id": "SECURE_BOOT_ALLOW_UNUSED_DIGEST_SLOTS", - "name": "SECURE_BOOT_ALLOW_UNUSED_DIGEST_SLOTS", - "range": null, - "title": "Leave unused digest slots available (not revoke)", - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT", - "help": "If not set (default), the bootloader will permanently disable UART bootloader encryption access on\nfirst boot. If set, the UART bootloader will still be able to access hardware encryption.\n\nIt is recommended to only set this option in testing environments.", - "id": "SECURE_FLASH_UART_BOOTLOADER_ALLOW_ENC", - "name": "SECURE_FLASH_UART_BOOTLOADER_ALLOW_ENC", - "range": null, - "title": "Leave UART bootloader encryption enabled", - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT && IDF_TARGET_ESP32", - "help": "If not set (default), the bootloader will permanently disable UART bootloader decryption access on\nfirst boot. If set, the UART bootloader will still be able to access hardware decryption.\n\nOnly set this option in testing environments. Setting this option allows complete bypass of flash\nencryption.", - "id": "SECURE_FLASH_UART_BOOTLOADER_ALLOW_DEC", - "name": "SECURE_FLASH_UART_BOOTLOADER_ALLOW_DEC", - "range": null, - "title": "Leave UART bootloader decryption enabled", - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT && (IDF_TARGET_ESP32 || SOC_EFUSE_DIS_DOWNLOAD_ICACHE || SOC_EFUSE_DIS_DOWNLOAD_DCACHE)", - "help": "If not set (default), the bootloader will permanently disable UART bootloader flash cache access on\nfirst boot. If set, the UART bootloader will still be able to access the flash cache.\n\nOnly set this option in testing environments.", - "id": "SECURE_FLASH_UART_BOOTLOADER_ALLOW_CACHE", - "name": "SECURE_FLASH_UART_BOOTLOADER_ALLOW_CACHE", - "range": null, - "title": "Leave UART bootloader flash cache enabled", - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT", - "help": "If not set (default), and flash encryption is not yet enabled in eFuses, the 2nd stage bootloader\nwill enable flash encryption: generate the flash encryption key and program eFuses.\nIf this option is set, and flash encryption is not yet enabled, the bootloader will error out and\nreboot.\nIf flash encryption is enabled in eFuses, this option does not change the bootloader behavior.\n\nOnly use this option in testing environments, to avoid accidentally enabling flash encryption on\nthe wrong device. The device needs to have flash encryption already enabled using espefuse.py.", - "id": "SECURE_FLASH_REQUIRE_ALREADY_ENABLED", - "name": "SECURE_FLASH_REQUIRE_ALREADY_ENABLED", - "range": null, - "title": "Require flash encryption to be already enabled", - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_FLASH_HAS_WRITE_PROTECTION_CACHE", - "help": "If not set (default, recommended), on the first boot the bootloader will burn the write-protection of\nDIS_CACHE(for ESP32) or DIS_ICACHE/DIS_DCACHE(for other chips) eFuse when Flash Encryption is enabled.\nWrite protection for cache disable efuse prevents the chip from being blocked if it is set by accident.\nApp and bootloader use cache so disabling it makes the chip useless for IDF.\nDue to other eFuses are linked with the same write protection bit (see the list below) then\nwrite-protection will not be done if these SECURE_FLASH_UART_BOOTLOADER_ALLOW_ENC,\nSECURE_BOOT_ALLOW_JTAG or SECURE_FLASH_UART_BOOTLOADER_ALLOW_CACHE options are selected\nto give a chance to turn on the chip into the release mode later.\n\nList of eFuses with the same write protection bit:\nESP32: MAC, MAC_CRC, DISABLE_APP_CPU, DISABLE_BT, DIS_CACHE, VOL_LEVEL_HP_INV.\n\nESP32-C3: DIS_ICACHE, DIS_USB_JTAG, DIS_DOWNLOAD_ICACHE, DIS_USB_SERIAL_JTAG,\nDIS_FORCE_DOWNLOAD, DIS_TWAI, JTAG_SEL_ENABLE, DIS_PAD_JTAG, DIS_DOWNLOAD_MANUAL_ENCRYPT.\n\nESP32-C6: SWAP_UART_SDIO_EN, DIS_ICACHE, DIS_USB_JTAG, DIS_DOWNLOAD_ICACHE,\nDIS_USB_SERIAL_JTAG, DIS_FORCE_DOWNLOAD, DIS_TWAI, JTAG_SEL_ENABLE,\nDIS_PAD_JTAG, DIS_DOWNLOAD_MANUAL_ENCRYPT.\n\nESP32-H2 & ESP32H21: DIS_ICACHE, DIS_ICACHE, DIS_USB_JTAG, POWERGLITCH_EN, DIS_FORCE_DOWNLOAD,\nSPI_DOWNLOAD_MSPI_DIS, DIS_TWAI, JTAG_SEL_ENABLE, DIS_PAD_JTAG, DIS_DOWNLOAD_MANUAL_ENCRYPT,\nDIS_USB_SERIAL_JTAG\n\nESP32-S2: DIS_ICACHE, DIS_DCACHE, DIS_DOWNLOAD_ICACHE, DIS_DOWNLOAD_DCACHE,\nDIS_FORCE_DOWNLOAD, DIS_USB, DIS_TWAI, DIS_BOOT_REMAP, SOFT_DIS_JTAG,\nHARD_DIS_JTAG, DIS_DOWNLOAD_MANUAL_ENCRYPT.\n\nESP32-S3: DIS_ICACHE, DIS_DCACHE, DIS_DOWNLOAD_ICACHE, DIS_DOWNLOAD_DCACHE,\nDIS_FORCE_DOWNLOAD, DIS_USB_OTG, DIS_TWAI, DIS_APP_CPU, DIS_PAD_JTAG,\nDIS_DOWNLOAD_MANUAL_ENCRYPT, DIS_USB_JTAG, DIS_USB_SERIAL_JTAG, STRAP_JTAG_SEL, USB_PHY_SEL.", - "id": "SECURE_FLASH_SKIP_WRITE_PROTECTION_CACHE", - "name": "SECURE_FLASH_SKIP_WRITE_PROTECTION_CACHE", - "range": null, - "title": "Skip write-protection of DIS_CACHE (DIS_ICACHE, DIS_DCACHE)", - "type": "bool" - } - ], - "depends_on": null, - "id": "security-features-potentially-insecure-options", - "title": "Potentially insecure options", - "type": "menu" - }, - { - "children": [], - "depends_on": "SECURE_FLASH_ENC_ENABLED && !SECURE_FLASH_REQUIRE_ALREADY_ENABLED", - "help": "If set (default), optimise encryption time for the partition of type APP,\nby only encrypting the app image that is present in the partition,\ninstead of the whole partition.\nThe image length used for encryption is derived from the image metadata, which\nincludes the size of the app image, checksum, hash and also the signature sector\nwhen secure boot is enabled.\n\nIf not set, the whole partition of type APP would be encrypted,\nwhich increases the encryption time but might be useful if there\nis any custom data appended to the firmware image.", - "id": "SECURE_FLASH_ENCRYPT_ONLY_IMAGE_LEN_IN_APP_PART", - "name": "SECURE_FLASH_ENCRYPT_ONLY_IMAGE_LEN_IN_APP_PART", - "range": null, - "title": "Encrypt only the app image that is present in the partition of type app", - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_FLASH_ENC_ENABLED", - "help": "If set (default), in an app during startup code,\nthere is a check of the flash encryption eFuse bit is on\n(as the bootloader should already have set it).\nThe app requires this bit is on to continue work otherwise abort.\n\nIf not set, the app does not care if the flash encryption eFuse bit is set or not.", - "id": "SECURE_FLASH_CHECK_ENC_EN_IN_APP", - "name": "SECURE_FLASH_CHECK_ENC_EN_IN_APP", - "range": null, - "title": "Check Flash Encryption enabled on app startup", - "type": "bool" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH_LOW", - "name": "SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH_LOW", - "range": null, - "title": "Low", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH_MEDIUM", - "name": "SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH_MEDIUM", - "range": null, - "title": "Medium", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH_HIGH", - "name": "SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH_HIGH", - "range": null, - "title": "High", - "type": "bool" - } - ], - "depends_on": "SECURE_FLASH_PSEUDO_ROUND_FUNC", - "help": "The strength of the pseudo rounds functions can be configured to low, medium and high,\neach denoting the values that would be stored in the efuses field.\nBy default the value to set to low.\nYou can configure the strength of the pseudo rounds functions according to your use cases,\nfor example, increasing the strength would provide higher security but would slow down the\nflash encryption/decryption operations.\nFor more info regarding the performance impact, please checkout the pseudo round function section of the\nsecurity guide documentation.", - "id": "security-features-permanently-enable-xts-aes-s-pseudo-rounds-function-strength-of-the-pseudo-rounds-function", - "name": "SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH", - "title": "Strength of the pseudo rounds function", - "type": "choice" - } - ], - "depends_on": "SECURE_FLASH_ENCRYPTION_MODE_RELEASE && SOC_FLASH_ENCRYPTION_XTS_AES_SUPPORT_PSEUDO_ROUND", - "help": "If set (default), the bootloader will permanently enable the XTS-AES peripheral's pseudo rounds function.\nNote: Enabling this config would burn an efuse.", - "id": "SECURE_FLASH_PSEUDO_ROUND_FUNC", - "name": "SECURE_FLASH_PSEUDO_ROUND_FUNC", - "range": null, - "title": "Permanently enable XTS-AES's pseudo rounds function", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH", - "name": "SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SECURE_ROM_DL_MODE_ENABLED", - "name": "SECURE_ROM_DL_MODE_ENABLED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": "If set, during startup the app will burn an eFuse bit to permanently disable the UART ROM\nDownload Mode. This prevents any future use of esptool.py, espefuse.py and similar tools.\n\nOnce disabled, if the SoC is booted with strapping pins set for ROM Download Mode\nthen an error is printed instead.\n\nIt is recommended to enable this option in any production application where Flash\nEncryption and/or Secure Boot is enabled and access to Download Mode is not required.\n\nIt is also possible to permanently disable Download Mode by calling\nesp_efuse_disable_rom_download_mode() at runtime.", - "id": "SECURE_DISABLE_ROM_DL_MODE", - "name": "SECURE_DISABLE_ROM_DL_MODE", - "range": null, - "title": "UART ROM download mode (Permanently disabled (recommended))", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_SUPPORTS_SECURE_DL_MODE && ", - "help": "If set, during startup the app will burn an eFuse bit to permanently switch the UART ROM\nDownload Mode into a separate Secure Download mode. This option can only work if\nDownload Mode is not already disabled by eFuse.\n\nSecure Download mode limits the use of Download Mode functions to update SPI config,\nchanging baud rate, basic flash write and a command to return a summary of currently\nenabled security features (`get_security_info`).\n\nSecure Download mode is not compatible with the esptool.py flasher stub feature,\nespefuse.py, read/writing memory or registers, encrypted download, or any other\nfeatures that interact with unsupported Download Mode commands.\n\nSecure Download mode should be enabled in any application where Flash Encryption\nand/or Secure Boot is enabled. Disabling this option does not immediately cancel\nthe benefits of the security features, but it increases the potential \"attack\nsurface\" for an attacker to try and bypass them with a successful physical attack.\n\nIt is also possible to enable secure download mode at runtime by calling\nesp_efuse_enable_rom_secure_download_mode()\n\nNote: Secure Download mode is not available for ESP32.", - "id": "SECURE_ENABLE_SECURE_ROM_DL_MODE", - "name": "SECURE_ENABLE_SECURE_ROM_DL_MODE", - "range": null, - "title": "UART ROM download mode (Permanently switch to Secure mode (recommended))", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "This is a potentially insecure option.\nEnabling this option will allow the full UART download mode to stay enabled.\nThis option SHOULD NOT BE ENABLED for production use cases.", - "id": "SECURE_INSECURE_ALLOW_DL_MODE", - "name": "SECURE_INSECURE_ALLOW_DL_MODE", - "range": null, - "title": "UART ROM download mode (Enabled (not recommended))", - "type": "bool" - } - ], - "depends_on": "(SECURE_BOOT_V2_ENABLED || SECURE_FLASH_ENC_ENABLED) && !(IDF_TARGET_ESP32 && ESP32_REV_MIN_FULL < 300)", - "help": null, - "id": "security-features-uart-rom-download-mode", - "name": "SECURE_UART_ROM_DL_MODE", - "title": "UART ROM download mode", - "type": "choice" - } - ], - "depends_on": null, - "id": "security-features", - "title": "Security features", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "!APP_REPRODUCIBLE_BUILD", - "help": "If set, then the app will be built with the current time/date stamp. It is stored in the app description\nstructure. If not set, time/date stamp will be excluded from app image. This can be useful for getting the\nsame binary image files made from the same source, but at different times.", - "id": "APP_COMPILE_TIME_DATE", - "name": "APP_COMPILE_TIME_DATE", - "range": null, - "title": "Use time/date stamp for app", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "The PROJECT_VER variable from the build system will not affect the firmware image.\nThis value will not be contained in the esp_app_desc structure.", - "id": "APP_EXCLUDE_PROJECT_VER_VAR", - "name": "APP_EXCLUDE_PROJECT_VER_VAR", - "range": null, - "title": "Exclude PROJECT_VER from firmware image", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "The PROJECT_NAME variable from the build system will not affect the firmware image.\nThis value will not be contained in the esp_app_desc structure.", - "id": "APP_EXCLUDE_PROJECT_NAME_VAR", - "name": "APP_EXCLUDE_PROJECT_NAME_VAR", - "range": null, - "title": "Exclude PROJECT_NAME from firmware image", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "APP_PROJECT_VER_FROM_CONFIG", - "help": "Project version", - "id": "APP_PROJECT_VER", - "name": "APP_PROJECT_VER", - "range": null, - "title": "Project version", - "type": "string" - } - ], - "depends_on": null, - "help": "If this is enabled, then config item APP_PROJECT_VER will be used for the variable PROJECT_VER.\nOther ways to set PROJECT_VER will be ignored.", - "id": "APP_PROJECT_VER_FROM_CONFIG", - "name": "APP_PROJECT_VER_FROM_CONFIG", - "range": null, - "title": "Get the project version from Kconfig", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "At startup, the app will read the embedded APP ELF SHA-256 hash value from flash\nand convert it into a string and store it in a RAM buffer.\nThis ensures the panic handler and core dump will be able to print this string\neven when cache is disabled.\nThe size of the buffer is APP_RETRIEVE_LEN_ELF_SHA plus the null terminator.\nChanging this value will change the size of this buffer, in bytes.", - "id": "APP_RETRIEVE_LEN_ELF_SHA", - "name": "APP_RETRIEVE_LEN_ELF_SHA", - "range": [ - 8, - 64 - ], - "title": "The length of APP ELF SHA is stored in RAM(chars)", - "type": "int" - } - ], - "depends_on": null, - "id": "application-manager", - "title": "Application manager", - "type": "menu" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_HAS_CRC_LE", - "name": "ESP_ROM_HAS_CRC_LE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_HAS_CRC_BE", - "name": "ESP_ROM_HAS_CRC_BE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_UART_CLK_IS_XTAL", - "name": "ESP_ROM_UART_CLK_IS_XTAL", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_USB_SERIAL_DEVICE_NUM", - "name": "ESP_ROM_USB_SERIAL_DEVICE_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_HAS_RETARGETABLE_LOCKING", - "name": "ESP_ROM_HAS_RETARGETABLE_LOCKING", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_GET_CLK_FREQ", - "name": "ESP_ROM_GET_CLK_FREQ", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_HAS_HAL_WDT", - "name": "ESP_ROM_HAS_HAL_WDT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_HAS_HAL_SYSTIMER", - "name": "ESP_ROM_HAS_HAL_SYSTIMER", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_SYSTIMER_INIT_PATCH", - "name": "ESP_ROM_SYSTIMER_INIT_PATCH", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_HAS_HEAP_TLSF", - "name": "ESP_ROM_HAS_HEAP_TLSF", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_TLSF_CHECK_PATCH", - "name": "ESP_ROM_TLSF_CHECK_PATCH", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_MULTI_HEAP_WALK_PATCH", - "name": "ESP_ROM_MULTI_HEAP_WALK_PATCH", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_HAS_LAYOUT_TABLE", - "name": "ESP_ROM_HAS_LAYOUT_TABLE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_HAS_SPI_FLASH", - "name": "ESP_ROM_HAS_SPI_FLASH", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_HAS_SPI_FLASH_MMAP", - "name": "ESP_ROM_HAS_SPI_FLASH_MMAP", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_WITHOUT_REGI2C", - "name": "ESP_ROM_WITHOUT_REGI2C", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_HAS_NEWLIB", - "name": "ESP_ROM_HAS_NEWLIB", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_HAS_NEWLIB_NANO_FORMAT", - "name": "ESP_ROM_HAS_NEWLIB_NANO_FORMAT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_HAS_NEWLIB_NANO_PRINTF_FLOAT_BUG", - "name": "ESP_ROM_HAS_NEWLIB_NANO_PRINTF_FLOAT_BUG", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_WDT_INIT_PATCH", - "name": "ESP_ROM_WDT_INIT_PATCH", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE", - "name": "ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_RAM_APP_NEEDS_MMU_INIT", - "name": "ESP_ROM_RAM_APP_NEEDS_MMU_INIT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_HAS_SW_FLOAT", - "name": "ESP_ROM_HAS_SW_FLOAT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_USB_OTG_NUM", - "name": "ESP_ROM_USB_OTG_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_HAS_VERSION", - "name": "ESP_ROM_HAS_VERSION", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB", - "name": "ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_HAS_OUTPUT_PUTC_FUNC", - "name": "ESP_ROM_HAS_OUTPUT_PUTC_FUNC", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_NO_USB_SERIAL_OUTPUT_API", - "name": "ESP_ROM_NO_USB_SERIAL_OUTPUT_API", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_HAS_SUBOPTIMAL_NEWLIB_ON_MISALIGNED_MEMORY", - "name": "ESP_ROM_HAS_SUBOPTIMAL_NEWLIB_ON_MISALIGNED_MEMORY", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": "Always print ROM logs, this is the default behavior.", - "id": "BOOT_ROM_LOG_ALWAYS_ON", - "name": "BOOT_ROM_LOG_ALWAYS_ON", - "range": null, - "title": "Always Log", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "Don't print ROM logs.", - "id": "BOOT_ROM_LOG_ALWAYS_OFF", - "name": "BOOT_ROM_LOG_ALWAYS_OFF", - "range": null, - "title": "Permanently disable logging", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "Print ROM logs when GPIO level is high during start up.\nThe GPIO number is chip dependent,\ne.g. on ESP32-S2, the control GPIO is GPIO46.", - "id": "BOOT_ROM_LOG_ON_GPIO_HIGH", - "name": "BOOT_ROM_LOG_ON_GPIO_HIGH", - "range": null, - "title": "Log on GPIO High", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "Print ROM logs when GPIO level is low during start up.\nThe GPIO number is chip dependent,\ne.g. on ESP32-S2, the control GPIO is GPIO46.", - "id": "BOOT_ROM_LOG_ON_GPIO_LOW", - "name": "BOOT_ROM_LOG_ON_GPIO_LOW", - "range": null, - "title": "Log on GPIO Low", - "type": "bool" - } - ], - "depends_on": "!IDF_TARGET_ESP32", - "help": "Controls the Boot ROM log behavior.\nThe rom log behavior can only be changed for once,\nspecific eFuse bit(s) will be burned at app boot stage.", - "id": "boot-rom-behavior-permanently-change-boot-rom-output", - "name": "BOOT_ROM_LOG_SCHEME", - "title": "Permanently change Boot ROM output", - "type": "choice" - } - ], - "depends_on": null, - "id": "boot-rom-behavior", - "title": "Boot ROM Behavior", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "SECURE_ENABLE_TEE && (IDF_TARGET_ESP32C6 || IDF_TARGET_ESP32H2)", - "help": "This configuration sets the IRAM size for the TEE module.\nThis should be 256-byte (0x100) aligned.", - "id": "SECURE_TEE_IRAM_SIZE", - "name": "SECURE_TEE_IRAM_SIZE", - "range": null, - "title": "IRAM region size", - "type": "hex" - }, - { - "children": [], - "depends_on": "SECURE_ENABLE_TEE && (IDF_TARGET_ESP32C6 || IDF_TARGET_ESP32H2)", - "help": "This configuration sets the DRAM size for the TEE module.\nThis should be 256-byte (0x100) aligned.", - "id": "SECURE_TEE_DRAM_SIZE", - "name": "SECURE_TEE_DRAM_SIZE", - "range": null, - "title": "DRAM region size", - "type": "hex" - }, - { - "children": [], - "depends_on": "SECURE_ENABLE_TEE && (IDF_TARGET_ESP32C6 || IDF_TARGET_ESP32H2)", - "help": "This configuration sets the stack size for the TEE module.\nThe TEE stack will be allocated from the TEE DRAM region.\nThis should be 16-byte (0x10) aligned.", - "id": "SECURE_TEE_STACK_SIZE", - "name": "SECURE_TEE_STACK_SIZE", - "range": null, - "title": "Stack size", - "type": "hex" - }, - { - "children": [], - "depends_on": "SECURE_ENABLE_TEE && (IDF_TARGET_ESP32C6 || IDF_TARGET_ESP32H2)", - "help": "This configuration sets the interrupt stack size for the TEE module.\nThe TEE interrupt stack will be allocated from the TEE DRAM region.\nThis should be 16-byte (0x10) aligned.", - "id": "SECURE_TEE_INTR_STACK_SIZE", - "name": "SECURE_TEE_INTR_STACK_SIZE", - "range": null, - "title": "Interrupt Stack size", - "type": "hex" - }, - { - "children": [], - "depends_on": "SECURE_ENABLE_TEE && (IDF_TARGET_ESP32C6 || IDF_TARGET_ESP32H2)", - "help": "This should be a multiple of MMU_PAGE_SIZE.", - "id": "SECURE_TEE_IROM_SIZE", - "name": "SECURE_TEE_IROM_SIZE", - "range": null, - "title": null, - "type": "hex" - }, - { - "children": [], - "depends_on": "SECURE_ENABLE_TEE && (IDF_TARGET_ESP32C6 || IDF_TARGET_ESP32H2)", - "help": "This should be a multiple of MMU_PAGE_SIZE.", - "id": "SECURE_TEE_DROM_SIZE", - "name": "SECURE_TEE_DROM_SIZE", - "range": null, - "title": null, - "type": "hex" - } - ], - "depends_on": "SECURE_ENABLE_TEE && (IDF_TARGET_ESP32C6 || IDF_TARGET_ESP32H2)", - "id": "esp-tee-trusted-execution-environment--enable-the-esp-tee-framework-memory-configuration", - "title": "Memory Configuration", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": "Secure storage will be encrypted by a constant key embedded in the TEE firmware", - "id": "SECURE_TEE_SEC_STG_MODE_DEVELOPMENT", - "name": "SECURE_TEE_SEC_STG_MODE_DEVELOPMENT", - "range": null, - "title": "Development", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "Secure storage will be encrypted by the data stored in eFuse block\nconfigured through the SECURE_TEE_SEC_STG_EFUSE_HMAC_KEY_ID option", - "id": "SECURE_TEE_SEC_STG_MODE_RELEASE", - "name": "SECURE_TEE_SEC_STG_MODE_RELEASE", - "range": null, - "title": "Release", - "type": "bool" - } - ], - "depends_on": "SECURE_ENABLE_TEE && SECURE_ENABLE_TEE && (IDF_TARGET_ESP32C6 || IDF_TARGET_ESP32H2)", - "help": "Select the TEE secure storage mode", - "id": "esp-tee-trusted-execution-environment--enable-the-esp-tee-framework-secure-services-secure-storage-mode", - "name": "SECURE_TEE_SEC_STG_MODE", - "title": "Secure Storage: Mode", - "type": "choice" - }, - { - "children": [], - "depends_on": "SECURE_TEE_SEC_STG_MODE_RELEASE && SECURE_ENABLE_TEE && (IDF_TARGET_ESP32C6 || IDF_TARGET_ESP32H2)", - "help": "eFuse block key ID storing the HMAC key for deriving the TEE secure storage encryption keys", - "id": "SECURE_TEE_SEC_STG_EFUSE_HMAC_KEY_ID", - "name": "SECURE_TEE_SEC_STG_EFUSE_HMAC_KEY_ID", - "range": null, - "title": "Secure Storage: eFuse HMAC key ID", - "type": "int" - }, - { - "children": [], - "depends_on": "SECURE_ENABLE_TEE && (IDF_TARGET_ESP32C6 || IDF_TARGET_ESP32H2)", - "help": "Enable ECDSA signing with the SECP192R1 curve using the TEE secure storage.", - "id": "SECURE_TEE_SEC_STG_SUPPORT_SECP192R1_SIGN", - "name": "SECURE_TEE_SEC_STG_SUPPORT_SECP192R1_SIGN", - "range": null, - "title": "Secure Storage: Support signing with the ECDSA SECP192R1 curve", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "SECURE_TEE_ATTESTATION && SECURE_ENABLE_TEE && (IDF_TARGET_ESP32C6 || IDF_TARGET_ESP32H2)", - "help": "This configuration sets the key ID from the TEE secure storage\nstoring the ECDSA keypair for executing sign/verify operations\nfrom the TEE side for attestation.", - "id": "SECURE_TEE_ATT_KEY_STR_ID", - "name": "SECURE_TEE_ATT_KEY_STR_ID", - "range": null, - "title": "Attestation: Secure Storage key ID for EAT signing", - "type": "string" - } - ], - "depends_on": "SECURE_ENABLE_TEE && (IDF_TARGET_ESP32C6 || IDF_TARGET_ESP32H2)", - "help": "This configuration enables the support for the Attestation service.", - "id": "SECURE_TEE_ATTESTATION", - "name": "SECURE_TEE_ATTESTATION", - "range": null, - "title": "Enable Attestation", - "type": "bool" - } - ], - "depends_on": "SECURE_ENABLE_TEE && (IDF_TARGET_ESP32C6 || IDF_TARGET_ESP32H2)", - "id": "esp-tee-trusted-execution-environment--enable-the-esp-tee-framework-secure-services", - "title": "Secure Services", - "type": "menu" - }, - { - "children": [], - "depends_on": "SECURE_ENABLE_TEE && (IDF_TARGET_ESP32C6 || IDF_TARGET_ESP32H2)", - "help": "This configuration restricts access to TEE-reserved regions in external flash\nby making them inaccessible to the REE via the SPI1 interface (physical addresses).\n\nWith this enabled, all SPI flash read, write, or erase operations over SPI1 will\nbe routed through service calls to the TEE, introducing additional performance\noverhead.\n\nWhen Flash Encryption (SECURE_FLASH_ENC_ENABLED) is enabled, the REE can still\naccess TEE-related flash partitions over SPI1, but read operations will return\nencrypted data contents. This prevents attackers from inferring the TEE contents\nwith direct reads.\n\nAdditionally, with Secure Boot enabled (SECURE_BOOT_V2_ENABLED), any unauthorized\nmodifications to the TEE firmware will be detected during boot, causing signature\nverification to fail. Thus, these options provide a level of protection suitable for\nmost applications. However, while the TEE firmware integrity is protected, other TEE\npartitions (Secure Storage, TEE OTA data) can be manipulated through direct writes.\n\nEnable this option only when complete isolation of all TEE flash regions is required,\neven with the associated performance tradeoffs.\n\nNote: All accesses to the TEE partitions over SPI0 (i.e. the MMU) are blocked\nunconditionally.", - "id": "SECURE_TEE_EXT_FLASH_MEMPROT_SPI1", - "name": "SECURE_TEE_EXT_FLASH_MEMPROT_SPI1", - "range": null, - "title": "Memprot: Isolate TEE flash regions over SPI1", - "type": "bool" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "SECURE_TEE_LOG_LEVEL_NONE", - "name": "SECURE_TEE_LOG_LEVEL_NONE", - "range": null, - "title": "No output", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "SECURE_TEE_LOG_LEVEL_ERROR", - "name": "SECURE_TEE_LOG_LEVEL_ERROR", - "range": null, - "title": "Error", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "SECURE_TEE_LOG_LEVEL_WARN", - "name": "SECURE_TEE_LOG_LEVEL_WARN", - "range": null, - "title": "Warning", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "SECURE_TEE_LOG_LEVEL_INFO", - "name": "SECURE_TEE_LOG_LEVEL_INFO", - "range": null, - "title": "Info", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "SECURE_TEE_LOG_LEVEL_DEBUG", - "name": "SECURE_TEE_LOG_LEVEL_DEBUG", - "range": null, - "title": "Debug", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "SECURE_TEE_LOG_LEVEL_VERBOSE", - "name": "SECURE_TEE_LOG_LEVEL_VERBOSE", - "range": null, - "title": "Verbose", - "type": "bool" - } - ], - "depends_on": "SECURE_TEE_DEBUG_MODE && (IDF_TARGET_ESP32C6 || IDF_TARGET_ESP32H2)", - "help": "Specify how much output to see in TEE logs.", - "id": "esp-tee-trusted-execution-environment--enable-the-esp-tee-framework-enable-debug-mode-log-verbosity", - "name": "SECURE_TEE_LOG_LEVEL", - "title": "Log verbosity", - "type": "choice" - } - ], - "depends_on": "SECURE_ENABLE_TEE && (IDF_TARGET_ESP32C6 || IDF_TARGET_ESP32H2)", - "help": "This configuration enables the logging from the TEE module.", - "id": "SECURE_TEE_DEBUG_MODE", - "name": "SECURE_TEE_DEBUG_MODE", - "range": null, - "title": "Enable Debug Mode", - "type": "bool" - } - ], - "depends_on": "IDF_TARGET_ESP32C6 || IDF_TARGET_ESP32H2", - "help": "This configuration enables the Trusted Execution Environment (TEE) feature.", - "id": "SECURE_ENABLE_TEE", - "name": "SECURE_ENABLE_TEE", - "range": null, - "title": "Enable the ESP-TEE framework", - "type": "bool" - }, - { - "children": [], - "depends_on": "IDF_TARGET_ESP32C6 || IDF_TARGET_ESP32H2", - "help": null, - "id": "SECURE_TEE_LOG_LEVEL", - "name": "SECURE_TEE_LOG_LEVEL", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": "SECURE_ENABLE_TEE && (IDF_TARGET_ESP32C6 || IDF_TARGET_ESP32H2)", - "help": "This configuration sets up the TEE framework as required for executing the test suite.", - "id": "SECURE_TEE_TEST_MODE", - "name": "SECURE_TEE_TEST_MODE", - "range": null, - "title": "Enable Test Mode", - "type": "bool" - } - ], - "depends_on": "IDF_TARGET_ESP32C6 || IDF_TARGET_ESP32H2", - "id": "esp-tee-trusted-execution-environment-", - "title": "ESP-TEE (Trusted Execution Environment)", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "The flasher tool sends a precompiled download stub first by default. That stub allows things\nlike compressed downloads and more. Usually you should not need to disable that feature", - "id": "ESPTOOLPY_NO_STUB", - "name": "ESPTOOLPY_NO_STUB", - "range": null, - "title": "Disable download stub", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_SPI_MEM_SUPPORT_FLASH_OPI_MODE && !APP_BUILD_TYPE_PURE_RAM_APP", - "help": null, - "id": "ESPTOOLPY_OCT_FLASH", - "name": "ESPTOOLPY_OCT_FLASH", - "range": null, - "title": "Enable Octal Flash", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_SPI_MEM_SUPPORT_FLASH_OPI_MODE && !APP_BUILD_TYPE_PURE_RAM_APP", - "help": "This config option helps decide whether flash is Quad or Octal, but please note some limitations:\n\n1. If the flash chip is an Octal one, even if one of \"QIO\", \"QOUT\", \"DIO\", \"DOUT\" options is\n selected in `ESPTOOLPY_FLASHMODE`, our code will automatically change the\n mode to \"OPI\" and the sample mode will be STR.\n2. If the flash chip is a Quad one, even if \"OPI\" is selected in `ESPTOOLPY_FLASHMODE`, our code will\n automatically change the mode to \"DIO\".\n3. This option is mainly to improve the out-of-box experience of developers. It doesn't guarantee\n the feature-complete. Some code still rely on `ESPTOOLPY_OCT_FLASH`. Please do not rely on this option\n when you are pretty sure that you are using Octal flash.\n In this case, please enable `ESPTOOLPY_OCT_FLASH` option, then you can choose `DTR` sample mode\n in `ESPTOOLPY_FLASH_SAMPLE_MODE`. Otherwise, only `STR` mode is available.\n4. Enabling this feature reduces available internal RAM size (around 900 bytes).\n If your IRAM space is insufficient and you're aware of your flash type,\n disable this option and select corresponding flash type options.", - "id": "ESPTOOLPY_FLASH_MODE_AUTO_DETECT", - "name": "ESPTOOLPY_FLASH_MODE_AUTO_DETECT", - "range": null, - "title": "Choose flash mode automatically (please read help)", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "!ESPTOOLPY_OCT_FLASH && ", - "help": null, - "id": "ESPTOOLPY_FLASHMODE_QIO", - "name": "ESPTOOLPY_FLASHMODE_QIO", - "range": null, - "title": "QIO", - "type": "bool" - }, - { - "children": [], - "depends_on": "!ESPTOOLPY_OCT_FLASH && ", - "help": null, - "id": "ESPTOOLPY_FLASHMODE_QOUT", - "name": "ESPTOOLPY_FLASHMODE_QOUT", - "range": null, - "title": "QOUT", - "type": "bool" - }, - { - "children": [], - "depends_on": "!ESPTOOLPY_OCT_FLASH && ", - "help": null, - "id": "ESPTOOLPY_FLASHMODE_DIO", - "name": "ESPTOOLPY_FLASHMODE_DIO", - "range": null, - "title": "DIO", - "type": "bool" - }, - { - "children": [], - "depends_on": "!ESPTOOLPY_OCT_FLASH && ", - "help": null, - "id": "ESPTOOLPY_FLASHMODE_DOUT", - "name": "ESPTOOLPY_FLASHMODE_DOUT", - "range": null, - "title": "DOUT", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESPTOOLPY_OCT_FLASH && ", - "help": null, - "id": "ESPTOOLPY_FLASHMODE_OPI", - "name": "ESPTOOLPY_FLASHMODE_OPI", - "range": null, - "title": "OPI", - "type": "bool" - } - ], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Mode the flash chip is flashed in, as well as the default mode for the\nbinary to run in.", - "id": "serial-flasher-config-flash-spi-mode", - "name": "ESPTOOLPY_FLASHMODE", - "title": "Flash SPI mode", - "type": "choice" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESPTOOLPY_FLASH_SAMPLE_MODE_STR", - "name": "ESPTOOLPY_FLASH_SAMPLE_MODE_STR", - "range": null, - "title": "STR Mode", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESPTOOLPY_OCT_FLASH && ", - "help": null, - "id": "ESPTOOLPY_FLASH_SAMPLE_MODE_DTR", - "name": "ESPTOOLPY_FLASH_SAMPLE_MODE_DTR", - "range": null, - "title": "DTR Mode", - "type": "bool" - } - ], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": null, - "id": "serial-flasher-config-flash-sampling-mode", - "name": "ESPTOOLPY_FLASH_SAMPLE_MODE", - "title": "Flash Sampling Mode", - "type": "choice" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": null, - "id": "ESPTOOLPY_FLASHMODE", - "name": "ESPTOOLPY_FLASHMODE", - "range": null, - "title": null, - "type": "string" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESPTOOLPY_FLASHFREQ_64M", - "name": "ESPTOOLPY_FLASHFREQ_64M", - "range": null, - "title": "64 MHz", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESPTOOLPY_FLASHFREQ_32M", - "name": "ESPTOOLPY_FLASHFREQ_32M", - "range": null, - "title": "32 MHz", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESPTOOLPY_FLASHFREQ_16M", - "name": "ESPTOOLPY_FLASHFREQ_16M", - "range": null, - "title": "16 MHz", - "type": "bool" - } - ], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": null, - "id": "serial-flasher-config-flash-spi-speed", - "name": "ESPTOOLPY_FLASHFREQ", - "title": "Flash SPI speed", - "type": "choice" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": null, - "id": "ESPTOOLPY_FLASHFREQ", - "name": "ESPTOOLPY_FLASHFREQ", - "range": null, - "title": null, - "type": "string" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESPTOOLPY_FLASHSIZE_1MB", - "name": "ESPTOOLPY_FLASHSIZE_1MB", - "range": null, - "title": "1 MB", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESPTOOLPY_FLASHSIZE_2MB", - "name": "ESPTOOLPY_FLASHSIZE_2MB", - "range": null, - "title": "2 MB", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESPTOOLPY_FLASHSIZE_4MB", - "name": "ESPTOOLPY_FLASHSIZE_4MB", - "range": null, - "title": "4 MB", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESPTOOLPY_FLASHSIZE_8MB", - "name": "ESPTOOLPY_FLASHSIZE_8MB", - "range": null, - "title": "8 MB", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESPTOOLPY_FLASHSIZE_16MB", - "name": "ESPTOOLPY_FLASHSIZE_16MB", - "range": null, - "title": "16 MB", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESPTOOLPY_FLASHSIZE_32MB", - "name": "ESPTOOLPY_FLASHSIZE_32MB", - "range": null, - "title": "32 MB", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESPTOOLPY_FLASHSIZE_64MB", - "name": "ESPTOOLPY_FLASHSIZE_64MB", - "range": null, - "title": "64 MB", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESPTOOLPY_FLASHSIZE_128MB", - "name": "ESPTOOLPY_FLASHSIZE_128MB", - "range": null, - "title": "128 MB", - "type": "bool" - } - ], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "SPI flash size, in megabytes", - "id": "serial-flasher-config-flash-size", - "name": "ESPTOOLPY_FLASHSIZE", - "title": "Flash size", - "type": "choice" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": null, - "id": "ESPTOOLPY_FLASHSIZE", - "name": "ESPTOOLPY_FLASHSIZE", - "range": null, - "title": null, - "type": "string" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "If this option is set, flashing the project will automatically detect\nthe flash size of the target chip and update the bootloader image\nbefore it is flashed.\n\nEnabling this option turns off the image protection against corruption\nby a SHA256 digest. Updating the bootloader image before flashing would\ninvalidate the digest.", - "id": "ESPTOOLPY_HEADER_FLASHSIZE_UPDATE", - "name": "ESPTOOLPY_HEADER_FLASHSIZE_UPDATE", - "range": null, - "title": "Detect flash size when flashing bootloader", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESPTOOLPY_BEFORE_RESET", - "name": "ESPTOOLPY_BEFORE_RESET", - "range": null, - "title": "Reset to bootloader", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESPTOOLPY_BEFORE_NORESET", - "name": "ESPTOOLPY_BEFORE_NORESET", - "range": null, - "title": "No reset", - "type": "bool" - } - ], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Configure whether esptool.py should reset the ESP32 before flashing.\n\nAutomatic resetting depends on the RTS & DTR signals being\nwired from the serial port to the ESP32. Most USB development\nboards do this internally.", - "id": "serial-flasher-config-before-flashing", - "name": "ESPTOOLPY_BEFORE", - "title": "Before flashing", - "type": "choice" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": null, - "id": "ESPTOOLPY_BEFORE", - "name": "ESPTOOLPY_BEFORE", - "range": null, - "title": null, - "type": "string" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESPTOOLPY_AFTER_RESET", - "name": "ESPTOOLPY_AFTER_RESET", - "range": null, - "title": "Reset after flashing", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESPTOOLPY_AFTER_NORESET", - "name": "ESPTOOLPY_AFTER_NORESET", - "range": null, - "title": "Stay in bootloader", - "type": "bool" - } - ], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Configure whether esptool.py should reset the ESP32 after flashing.\n\nAutomatic resetting depends on the RTS & DTR signals being\nwired from the serial port to the ESP32. Most USB development\nboards do this internally.", - "id": "serial-flasher-config-after-flashing", - "name": "ESPTOOLPY_AFTER", - "title": "After flashing", - "type": "choice" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": null, - "id": "ESPTOOLPY_AFTER", - "name": "ESPTOOLPY_AFTER", - "range": null, - "title": null, - "type": "string" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": null, - "id": "ESPTOOLPY_MONITOR_BAUD", - "name": "ESPTOOLPY_MONITOR_BAUD", - "range": null, - "title": null, - "type": "int" - } - ], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "id": "serial-flasher-config", - "title": "Serial flasher config", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": "This is the default partition table, designed to fit into a 2MB or\nlarger flash with a single 1MB app partition.\n\nThe corresponding CSV file in the IDF directory is\ncomponents/partition_table/partitions_singleapp.csv\n\nThis partition table is not suitable for an app that needs OTA\n(over the air update) capability.", - "id": "PARTITION_TABLE_SINGLE_APP", - "name": "PARTITION_TABLE_SINGLE_APP", - "range": null, - "title": "Single factory app, no OTA", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "This is a variation of the default partition table, that expands\nthe 1MB app partition size to 1.5MB to fit more code.\n\nThe corresponding CSV file in the IDF directory is\ncomponents/partition_table/partitions_singleapp_large.csv\n\nThis partition table is not suitable for an app that needs OTA\n(over the air update) capability.", - "id": "PARTITION_TABLE_SINGLE_APP_LARGE", - "name": "PARTITION_TABLE_SINGLE_APP_LARGE", - "range": null, - "title": "Single factory app (large), no OTA", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "This is a basic OTA-enabled partition table with a factory app\npartition plus two OTA app partitions. All are 1MB, so this\npartition table requires 4MB or larger flash size.\n\nThe corresponding CSV file in the IDF directory is\ncomponents/partition_table/partitions_two_ota.csv", - "id": "PARTITION_TABLE_TWO_OTA", - "name": "PARTITION_TABLE_TWO_OTA", - "range": null, - "title": "Factory app, two OTA definitions", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "This is a basic OTA-enabled partition table with\ntwo OTA app partitions. Both app partition sizes are 1700K,\nso this partition table requires 4MB or larger flash size.\n\nThe corresponding CSV file in the IDF directory is\ncomponents/partition_table/partitions_two_ota_large.csv", - "id": "PARTITION_TABLE_TWO_OTA_LARGE", - "name": "PARTITION_TABLE_TWO_OTA_LARGE", - "range": null, - "title": "Two large size OTA partitions", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "Specify the path to the partition table CSV to use for your project.\n\nConsult the Partition Table section in the ESP-IDF Programmers Guide\nfor more information.", - "id": "PARTITION_TABLE_CUSTOM", - "name": "PARTITION_TABLE_CUSTOM", - "range": null, - "title": "Custom partition table CSV", - "type": "bool" - }, - { - "children": [], - "depends_on": "!ESP32_COREDUMP_ENABLE_TO_FLASH && NVS_SEC_KEY_PROTECT_USING_FLASH_ENC && ", - "help": "This is a variation of the default \"Single factory app, no OTA\" partition table\nthat supports encrypted NVS when using flash encryption. See the Flash Encryption section\nin the ESP-IDF Programmers Guide for more information.\n\nThe corresponding CSV file in the IDF directory is\ncomponents/partition_table/partitions_singleapp_encr_nvs.csv", - "id": "PARTITION_TABLE_SINGLE_APP_ENCRYPTED_NVS", - "name": "PARTITION_TABLE_SINGLE_APP_ENCRYPTED_NVS", - "range": null, - "title": "Single factory app, no OTA, encrypted NVS", - "type": "bool" - }, - { - "children": [], - "depends_on": "!ESP32_COREDUMP_ENABLE_TO_FLASH && NVS_SEC_KEY_PROTECT_USING_FLASH_ENC && ", - "help": "This is a variation of the \"Single factory app (large), no OTA\" partition table\nthat supports encrypted NVS when using flash encryption. See the Flash Encryption section\nin the ESP-IDF Programmers Guide for more information.\n\nThe corresponding CSV file in the IDF directory is\ncomponents/partition_table/partitions_singleapp_large_encr_nvs.csv", - "id": "PARTITION_TABLE_SINGLE_APP_LARGE_ENC_NVS", - "name": "PARTITION_TABLE_SINGLE_APP_LARGE_ENC_NVS", - "range": null, - "title": "Single factory app (large), no OTA, encrypted NVS", - "type": "bool" - }, - { - "children": [], - "depends_on": "!ESP_COREDUMP_ENABLE_TO_FLASH && NVS_SEC_KEY_PROTECT_USING_FLASH_ENC && ", - "help": "This is a variation of the \"Factory app, two OTA definitions\" partition table\nthat supports encrypted NVS when using flash encryption. See the Flash Encryption section\nin the ESP-IDF Programmers Guide for more information.\n\nThe corresponding CSV file in the IDF directory is\ncomponents/partition_table/partitions_two_ota_encr_nvs.csv", - "id": "PARTITION_TABLE_TWO_OTA_ENCRYPTED_NVS", - "name": "PARTITION_TABLE_TWO_OTA_ENCRYPTED_NVS", - "range": null, - "title": "Factory app, two OTA definitions, encrypted NVS", - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_ENABLE_TEE && ", - "help": "This is a variation of the default \"Single factory app, no OTA\" partition table\nthat supports the ESP-TEE framework. See the Trusted Execution Environment (TEE) section\nin the ESP-IDF Programmers Guide for more information.\n\nThe corresponding CSV file in the IDF directory is\ncomponents/partition_table/partitions_singleapp_tee.csv", - "id": "PARTITION_TABLE_SINGLE_APP_TEE", - "name": "PARTITION_TABLE_SINGLE_APP_TEE", - "range": null, - "title": "Single factory app, no OTA, TEE", - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_ENABLE_TEE && ", - "help": "This is a basic OTA-enabled partition table with two OTA app partitions each\nfor the TEE and the user (REE) application. The user app partition sizes are 1536K,\nso this partition table requires 4MB or larger flash size. See the\nTrusted Execution Environment (TEE) section in the ESP-IDF Programmers Guide\nfor more information.\n\nThe corresponding CSV file in the IDF directory is\ncomponents/partition_table/partitions_two_ota_tee.csv", - "id": "PARTITION_TABLE_TWO_OTA_TEE", - "name": "PARTITION_TABLE_TWO_OTA_TEE", - "range": null, - "title": "Two OTA definitions, TEE", - "type": "bool" - } - ], - "depends_on": null, - "help": "The partition table to flash to the ESP32. The partition table\ndetermines where apps, data and other resources are expected to\nbe found.\n\nThe predefined partition table CSV descriptions can be found\nin the components/partition_table directory. These are mostly intended\nfor example and development use, it's expect that for production use you\nwill copy one of these CSV files and create a custom partition CSV for\nyour application.", - "id": "partition-table-partition-table", - "name": "PARTITION_TABLE_TYPE", - "title": "Partition Table", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": "Name of the custom partition CSV filename.\nThis path is evaluated relative to the project root directory by default.\nHowever, if the absolute path for the CSV file is provided, then the absolute path is configured.", - "id": "PARTITION_TABLE_CUSTOM_FILENAME", - "name": "PARTITION_TABLE_CUSTOM_FILENAME", - "range": null, - "title": "Custom partition CSV file", - "type": "string" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "PARTITION_TABLE_FILENAME", - "name": "PARTITION_TABLE_FILENAME", - "range": null, - "title": null, - "type": "string" - }, - { - "children": [], - "depends_on": null, - "help": "The address of partition table (by default 0x8000).\nAllows you to move the partition table, it gives more space for the bootloader.\nNote that the bootloader and app will both need to be compiled with the same PARTITION_TABLE_OFFSET value.\n\nThis number should be a multiple of 0x1000.\n\nNote that partition offsets in the partition table CSV file may need to be changed if this value is set to\na higher value. To have each partition offset adapt to the configured partition table offset, leave all\npartition offsets blank in the CSV file.", - "id": "PARTITION_TABLE_OFFSET", - "name": "PARTITION_TABLE_OFFSET", - "range": null, - "title": "Offset of partition table", - "type": "hex" - }, - { - "children": [], - "depends_on": "!APP_COMPATIBLE_PRE_V3_1_BOOTLOADERS && !IDF_TARGET_LINUX", - "help": "Generate an MD5 checksum for the partition table for protecting the\nintegrity of the table. The generation should be turned off for legacy\nbootloaders which cannot recognize the MD5 checksum in the partition\ntable.", - "id": "PARTITION_TABLE_MD5", - "name": "PARTITION_TABLE_MD5", - "range": null, - "title": "Generate an MD5 checksum for the partition table", - "type": "bool" - } - ], - "depends_on": null, - "id": "partition-table", - "title": "Partition Table", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "COMPILER_OPTIMIZATION_DEBUG", - "name": "COMPILER_OPTIMIZATION_DEBUG", - "range": null, - "title": "Debug (-Og)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "COMPILER_OPTIMIZATION_SIZE", - "name": "COMPILER_OPTIMIZATION_SIZE", - "range": null, - "title": "Optimize for size (-Os with GCC, -Oz with Clang)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "COMPILER_OPTIMIZATION_PERF", - "name": "COMPILER_OPTIMIZATION_PERF", - "range": null, - "title": "Optimize for performance (-O2)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "COMPILER_OPTIMIZATION_NONE", - "name": "COMPILER_OPTIMIZATION_NONE", - "range": null, - "title": "Debug without optimization (-O0)", - "type": "bool" - } - ], - "depends_on": null, - "help": "This option sets compiler optimization level (gcc -O argument) for the app.\n\n- The \"Debug\" setting will add the -Og flag to CFLAGS.\n- The \"Size\" setting will add the -Os flag to CFLAGS (-Oz with Clang).\n- The \"Performance\" setting will add the -O2 flag to CFLAGS.\n- The \"None\" setting will add the -O0 flag to CFLAGS.\n\nThe \"Size\" setting cause the compiled code to be smaller and faster, but\nmay lead to difficulties of correlating code addresses to source file\nlines when debugging.\n\nThe \"Performance\" setting causes the compiled code to be larger and faster,\nbut will be easier to correlated code addresses to source file lines.\n\n\"None\" with -O0 produces compiled code without optimization.\n\nNote that custom optimization levels may be unsupported.\n\nCompiler optimization for the IDF bootloader is set separately,\nsee the BOOTLOADER_COMPILER_OPTIMIZATION setting.", - "id": "compiler-options-optimization-level", - "name": "COMPILER_OPTIMIZATION", - "title": "Optimization Level", - "type": "choice" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": "Enable assertions. Assertion content and line number will be printed on failure.", - "id": "COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE", - "name": "COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE", - "range": null, - "title": "Enabled", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "Enable silent assertions. Failed assertions will abort(), user needs to\nuse the aborting address to find the line number with the failed assertion.", - "id": "COMPILER_OPTIMIZATION_ASSERTIONS_SILENT", - "name": "COMPILER_OPTIMIZATION_ASSERTIONS_SILENT", - "range": null, - "title": "Silent (saves code size)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "If assertions are disabled, -DNDEBUG is added to CPPFLAGS.", - "id": "COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE", - "name": "COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE", - "range": null, - "title": "Disabled (sets -DNDEBUG)", - "type": "bool" - } - ], - "depends_on": null, - "help": "Assertions can be:\n\n- Enabled. Failure will print verbose assertion details. This is the default.\n\n- Set to \"silent\" to save code size (failed assertions will abort() but user\n needs to use the aborting address to find the line number with the failed assertion.)\n\n- Disabled entirely (not recommended for most configurations.) -DNDEBUG is added\n to CPPFLAGS in this case.", - "id": "compiler-options-assertion-level", - "name": "COMPILER_OPTIMIZATION_ASSERTION_LEVEL", - "title": "Assertion level", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": "When NDEBUG is set, assert(X) will not cause code to trigger an assertion.\nWith this option set, assert(X) will still evaluate the expression X, though\nthe result will never cause an assertion. This means that if X is a function\nthen the function will be called.\n\nThis is not according to the standard, which states that the assert(X) should\nbe replaced with ((void)0) if NDEBUG is defined.\n\nIn ESP-IDF v6.0 the default behavior will change to \"no\" to be in line with the\nstandard.", - "id": "COMPILER_ASSERT_NDEBUG_EVALUATE", - "name": "COMPILER_ASSERT_NDEBUG_EVALUATE", - "range": null, - "title": "Enable the evaluation of the expression inside assert(X) when NDEBUG is set", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "COMPILER_FLOAT_LIB_FROM_GCCLIB", - "name": "COMPILER_FLOAT_LIB_FROM_GCCLIB", - "range": null, - "title": "libgcc", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_ROM_HAS_RVFPLIB && ", - "help": null, - "id": "COMPILER_FLOAT_LIB_FROM_RVFPLIB", - "name": "COMPILER_FLOAT_LIB_FROM_RVFPLIB", - "range": null, - "title": "librvfp", - "type": "bool" - } - ], - "depends_on": null, - "help": "In the soft-fp part of libgcc, riscv version is written in C,\nand handles all edge cases in IEEE754, which makes it larger\nand performance is slow.\n\nRVfplib is an optimized RISC-V library for FP arithmetic on 32-bit\ninteger processors, for single and double-precision FP.\nRVfplib is \"fast\", but it has a few exceptions from IEEE 754 compliance.", - "id": "compiler-options-compiler-float-lib-source", - "name": "COMPILER_FLOAT_LIB_FROM", - "title": "Compiler float lib source", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "COMPILER_OPTIMIZATION_ASSERTION_LEVEL", - "name": "COMPILER_OPTIMIZATION_ASSERTION_LEVEL", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "If enabled, the error messages will be discarded in following check macros:\n- ESP_RETURN_ON_ERROR\n- ESP_EXIT_ON_ERROR\n- ESP_RETURN_ON_FALSE\n- ESP_EXIT_ON_FALSE", - "id": "COMPILER_OPTIMIZATION_CHECKS_SILENT", - "name": "COMPILER_OPTIMIZATION_CHECKS_SILENT", - "range": null, - "title": "Disable messages in ESP_RETURN_ON_* and ESP_EXIT_ON_* macros", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "When expanding the __FILE__ and __BASE_FILE__ macros, replace paths inside ESP-IDF\nwith paths relative to the placeholder string \"IDF\", and convert paths inside the\nproject directory to relative paths.\n\nThis allows building the project with assertions or other code that embeds file paths,\nwithout the binary containing the exact path to the IDF or project directories.\n\nThis option passes -fmacro-prefix-map options to the GCC command line. To replace additional\npaths in your binaries, modify the project CMakeLists.txt file to pass custom -fmacro-prefix-map or\n-ffile-prefix-map arguments.", - "id": "COMPILER_HIDE_PATHS_MACROS", - "is_menuconfig": true, - "name": "COMPILER_HIDE_PATHS_MACROS", - "range": null, - "title": "Replace ESP-IDF and project paths in binaries", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "COMPILER_CXX_EXCEPTIONS", - "help": "Size (in bytes) of the emergency memory pool for C++ exceptions. This pool will be used to allocate\nmemory for thrown exceptions when there is not enough memory on the heap.", - "id": "COMPILER_CXX_EXCEPTIONS_EMG_POOL_SIZE", - "name": "COMPILER_CXX_EXCEPTIONS_EMG_POOL_SIZE", - "range": null, - "title": "Emergency Pool Size", - "type": "int" - } - ], - "depends_on": null, - "help": "Enabling this option compiles all IDF C++ files with exception support enabled.\n\nDisabling this option disables C++ exception support in all compiled files, and any libstdc++ code\nwhich throws an exception will abort instead.\n\nEnabling this option currently adds an additional ~500 bytes of heap overhead\nwhen an exception is thrown in user code for the first time.", - "id": "COMPILER_CXX_EXCEPTIONS", - "is_menuconfig": true, - "name": "COMPILER_CXX_EXCEPTIONS", - "range": null, - "title": "Enable C++ exceptions", - "type": "menu" - }, - { - "children": [], - "depends_on": null, - "help": "Enabling this option compiles all C++ files with RTTI support enabled.\nThis increases binary size (typically by tens of kB) but allows using\ndynamic_cast conversion and typeid operator.", - "id": "COMPILER_CXX_RTTI", - "name": "COMPILER_CXX_RTTI", - "range": null, - "title": "Enable C++ run-time type info (RTTI)", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "COMPILER_STACK_CHECK_MODE_NONE", - "name": "COMPILER_STACK_CHECK_MODE_NONE", - "range": null, - "title": "None", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "COMPILER_STACK_CHECK_MODE_NORM", - "name": "COMPILER_STACK_CHECK_MODE_NORM", - "range": null, - "title": "Normal", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "COMPILER_STACK_CHECK_MODE_STRONG", - "name": "COMPILER_STACK_CHECK_MODE_STRONG", - "range": null, - "title": "Strong", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "COMPILER_STACK_CHECK_MODE_ALL", - "name": "COMPILER_STACK_CHECK_MODE_ALL", - "range": null, - "title": "Overall", - "type": "bool" - } - ], - "depends_on": null, - "help": "Stack smashing protection mode. Emit extra code to check for buffer overflows, such as stack\nsmashing attacks. This is done by adding a guard variable to functions with vulnerable objects.\nThe guards are initialized when a function is entered and then checked when the function exits.\nIf a guard check fails, program is halted. Protection has the following modes:\n\n- In NORMAL mode (GCC flag: -fstack-protector) only functions that call alloca, and functions with\n buffers larger than 8 bytes are protected.\n\n- STRONG mode (GCC flag: -fstack-protector-strong) is like NORMAL, but includes additional functions\n to be protected -- those that have local array definitions, or have references to local frame\n addresses.\n\n- In OVERALL mode (GCC flag: -fstack-protector-all) all functions are protected.\n\nModes have the following impact on code performance and coverage:\n\n- performance: NORMAL > STRONG > OVERALL\n\n- coverage: NORMAL < STRONG < OVERALL\n\nThe performance impact includes increasing the amount of stack memory required for each task.", - "id": "compiler-options-stack-smashing-protection-mode", - "name": "COMPILER_STACK_CHECK_MODE", - "title": "Stack smashing protection mode", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": "Stack smashing protection.", - "id": "COMPILER_STACK_CHECK", - "name": "COMPILER_STACK_CHECK", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "IDF_TOOLCHAIN_GCC", - "help": "Disable merging identical constants (string/floating-point) across compilation units.\nThis helps in better size analysis of the application binary as the rodata section\ndistribution is more uniform across libraries. On downside, it may increase\nthe binary size and hence should be used during development phase only.", - "id": "COMPILER_NO_MERGE_CONSTANTS", - "name": "COMPILER_NO_MERGE_CONSTANTS", - "range": null, - "title": "Disable merging const sections", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Adds -Wwrite-strings flag for the C/C++ compilers.\n\nFor C, this gives string constants the type ``const char[]`` so that\ncopying the address of one into a non-const ``char *`` pointer\nproduces a warning. This warning helps to find at compile time code\nthat tries to write into a string constant.\n\nFor C++, this warns about the deprecated conversion from string\nliterals to ``char *``.", - "id": "COMPILER_WARN_WRITE_STRINGS", - "name": "COMPILER_WARN_WRITE_STRINGS", - "range": null, - "title": "Enable -Wwrite-strings warning flag", - "type": "bool" - }, - { - "children": [], - "depends_on": "IDF_TARGET_ARCH_RISCV", - "help": "Adds -msave-restore to C/C++ compilation flags.\n\nWhen this flag is enabled, compiler will call library functions to\nsave/restore registers in function prologues/epilogues. This results\nin lower overall code size, at the expense of slightly reduced performance.\n\nThis option can be enabled for RISC-V targets only.", - "id": "COMPILER_SAVE_RESTORE_LIBCALLS", - "name": "COMPILER_SAVE_RESTORE_LIBCALLS", - "range": null, - "title": "Enable -msave-restore flag to reduce code size", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enable this option if you do not want default warnings to be considered as errors,\nespecially when updating IDF.\n\nThis is a temporary flag that could help to allow upgrade while having\nsome time to address the warnings raised by those default warnings.\nAlternatives are:\n1) fix code (preferred),\n2) remove specific warnings,\n3) do not consider specific warnings as error.", - "id": "COMPILER_DISABLE_DEFAULT_ERRORS", - "name": "COMPILER_DISABLE_DEFAULT_ERRORS", - "range": null, - "title": "Disable errors for default warnings", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enable this option if use GCC 12 or newer, and want to disable warnings which don't appear with\nGCC 11.", - "id": "COMPILER_DISABLE_GCC12_WARNINGS", - "name": "COMPILER_DISABLE_GCC12_WARNINGS", - "range": null, - "title": "Disable new warnings introduced in GCC 12", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enable this option if use GCC 13 or newer, and want to disable warnings which don't appear with\nGCC 12.", - "id": "COMPILER_DISABLE_GCC13_WARNINGS", - "name": "COMPILER_DISABLE_GCC13_WARNINGS", - "range": null, - "title": "Disable new warnings introduced in GCC 13", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enable this option if use GCC 14 or newer, and want to disable warnings which don't appear with\nGCC 13.", - "id": "COMPILER_DISABLE_GCC14_WARNINGS", - "name": "COMPILER_DISABLE_GCC14_WARNINGS", - "range": null, - "title": "Disable new warnings introduced in GCC 14", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "If enabled, RTL files will be produced during compilation. These files\ncan be used by other tools, for example to calculate call graphs.", - "id": "COMPILER_DUMP_RTL_FILES", - "name": "COMPILER_DUMP_RTL_FILES", - "range": null, - "title": "Dump RTL files during compilation", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "!IDF_TARGET_LINUX && ", - "help": null, - "id": "COMPILER_RT_LIB_GCCLIB", - "name": "COMPILER_RT_LIB_GCCLIB", - "range": null, - "title": "libgcc", - "type": "bool" - }, - { - "children": [], - "depends_on": "IDF_TOOLCHAIN_CLANG && !IDF_TARGET_LINUX && ", - "help": null, - "id": "COMPILER_RT_LIB_CLANGRT", - "name": "COMPILER_RT_LIB_CLANGRT", - "range": null, - "title": "libclang_rt", - "type": "bool" - }, - { - "children": [], - "depends_on": "IDF_TARGET_LINUX && ", - "help": null, - "id": "COMPILER_RT_LIB_HOST", - "name": "COMPILER_RT_LIB_HOST", - "range": null, - "title": "Host", - "type": "bool" - } - ], - "depends_on": null, - "help": "Select runtime library to be used by compiler.\n- GCC toolchain supports libgcc only.\n- Clang allows to choose between libgcc or libclang_rt.\n- For host builds (\"linux\" target), uses the default library.", - "id": "compiler-options-compiler-runtime-library", - "name": "COMPILER_RT_LIB", - "title": "Compiler runtime library", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "COMPILER_RT_LIB_NAME", - "name": "COMPILER_RT_LIB_NAME", - "range": null, - "title": null, - "type": "string" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": "Places orphan sections with a warning message.", - "id": "COMPILER_ORPHAN_SECTIONS_WARNING", - "name": "COMPILER_ORPHAN_SECTIONS_WARNING", - "range": null, - "title": "Place with warning", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "Places orphan sections without a warning/error message.", - "id": "COMPILER_ORPHAN_SECTIONS_PLACE", - "name": "COMPILER_ORPHAN_SECTIONS_PLACE", - "range": null, - "title": "Place silently", - "type": "bool" - } - ], - "depends_on": "!IDF_TARGET_LINUX", - "help": "If the linker finds orphan sections, it attempts to place orphan sections after sections of the same\nattribute such as code vs data, loadable vs non-loadable, etc.\nThat means that orphan sections could placed between sections defined in IDF linker scripts.\nThis could lead to corruption of the binary image. Configure the linker action here.", - "id": "compiler-options-orphan-sections-handling", - "name": "COMPILER_ORPHAN_SECTIONS", - "title": "Orphan sections handling", - "type": "choice" - }, - { - "children": [], - "depends_on": "IDF_TOOLCHAIN_GCC", - "help": "Enable compiler static analyzer. This may produce false-positive results and increases compile time.", - "id": "COMPILER_STATIC_ANALYZER", - "name": "COMPILER_STATIC_ANALYZER", - "range": null, - "title": "Enable compiler static analyzer", - "type": "bool" - } - ], - "depends_on": null, - "id": "compiler-options", - "title": "Compiler options", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "EFUSE_CUSTOM_TABLE", - "help": "Name of the custom eFuse CSV filename. This path is evaluated\nrelative to the project root directory.", - "id": "EFUSE_CUSTOM_TABLE_FILENAME", - "name": "EFUSE_CUSTOM_TABLE_FILENAME", - "range": null, - "title": "Custom eFuse CSV file", - "type": "string" - } - ], - "depends_on": null, - "help": "Allows to generate a structure for eFuse from the CSV file.", - "id": "EFUSE_CUSTOM_TABLE", - "name": "EFUSE_CUSTOM_TABLE", - "range": null, - "title": "Use custom eFuse table", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "EFUSE_VIRTUAL && !IDF_TARGET_LINUX", - "help": "In addition to the \"Simulate eFuse operations in RAM\" option, this option just adds\na feature to keep eFuses after reboots in flash memory. To use this mode the partition_table\nshould have the `efuse` partition. partition.csv: \"efuse_em, data, efuse, , 0x2000,\"\n\nDuring startup, the eFuses are copied from flash or,\nin case if flash is empty, from real eFuse to RAM and then update flash.\nThis mode is useful when need to keep changes after reboot\n(testing secure_boot and flash_encryption).", - "id": "EFUSE_VIRTUAL_KEEP_IN_FLASH", - "name": "EFUSE_VIRTUAL_KEEP_IN_FLASH", - "range": null, - "title": "Keep eFuses in flash", - "type": "bool" - }, - { - "children": [], - "depends_on": "EFUSE_VIRTUAL", - "help": "If enabled, log efuse burns. This shows changes that would be made.", - "id": "EFUSE_VIRTUAL_LOG_ALL_WRITES", - "name": "EFUSE_VIRTUAL_LOG_ALL_WRITES", - "range": null, - "title": "Log all virtual writes", - "type": "bool" - } - ], - "depends_on": null, - "help": "If \"n\" - No virtual mode. All eFuse operations are real and use eFuse registers.\nIf \"y\" - The virtual mode is enabled and all eFuse operations (read and write) are redirected\nto RAM instead of eFuse registers, all permanent changes (via eFuse) are disabled.\nLog output will state changes that would be applied, but they will not be.\n\nIf it is \"y\", then SECURE_FLASH_ENCRYPTION_MODE_RELEASE cannot be used.\nBecause the EFUSE VIRT mode is for testing only.\n\nDuring startup, the eFuses are copied into RAM. This mode is useful for fast tests.", - "id": "EFUSE_VIRTUAL", - "name": "EFUSE_VIRTUAL", - "range": null, - "title": "Simulate eFuse operations in RAM", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "EFUSE_CODE_SCHEME_COMPAT_NONE", - "name": "EFUSE_CODE_SCHEME_COMPAT_NONE", - "range": null, - "title": "None Only", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "EFUSE_CODE_SCHEME_COMPAT_3_4", - "name": "EFUSE_CODE_SCHEME_COMPAT_3_4", - "range": null, - "title": "3/4 and None", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "EFUSE_CODE_SCHEME_COMPAT_REPEAT", - "name": "EFUSE_CODE_SCHEME_COMPAT_REPEAT", - "range": null, - "title": "Repeat, 3/4 and None (common table does not support it)", - "type": "bool" - } - ], - "depends_on": "IDF_TARGET_ESP32", - "help": "Selector eFuse code scheme.", - "id": "component-config-efuse-bit-manager-coding-scheme-compatibility", - "name": "EFUSE_CODE_SCHEME_SELECTOR", - "title": "Coding Scheme Compatibility", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "EFUSE_MAX_BLK_LEN", - "name": "EFUSE_MAX_BLK_LEN", - "range": null, - "title": null, - "type": "int" - } - ], - "depends_on": null, - "id": "component-config-efuse-bit-manager", - "title": "eFuse Bit Manager", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": "Functions esp_err_to_name() and esp_err_to_name_r() return string representations of error codes from a\npre-generated lookup table. This option can be used to turn off the use of the look-up table in order to\nsave memory but this comes at the price of sacrificing distinguishable (meaningful) output string\nrepresentations.", - "id": "ESP_ERR_TO_NAME_LOOKUP", - "name": "ESP_ERR_TO_NAME_LOOKUP", - "range": null, - "title": "Enable lookup of error code strings", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ALLOW_BSS_SEG_EXTERNAL_MEMORY", - "name": "ESP_ALLOW_BSS_SEG_EXTERNAL_MEMORY", - "range": null, - "title": null, - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-common-esp-related", - "title": "Common ESP-related", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP32H2_REV_MIN_0", - "name": "ESP32H2_REV_MIN_0", - "range": null, - "title": "Rev v0.0", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP32H2_REV_MIN_1", - "name": "ESP32H2_REV_MIN_1", - "range": null, - "title": "Rev v0.1 (ECO1)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP32H2_REV_MIN_2", - "name": "ESP32H2_REV_MIN_2", - "range": null, - "title": "Rev v0.2 (ECO2)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP32H2_REV_MIN_102", - "name": "ESP32H2_REV_MIN_102", - "range": null, - "title": "Rev v1.2", - "type": "bool" - } - ], - "depends_on": null, - "help": "Required minimum chip revision. ESP-IDF will check for it and\nreject to boot if the chip revision fails the check.\nThis ensures the chip used will have some modifications (features, or bugfixes).\n\nThe complied binary will only support chips above this revision,\nthis will also help to reduce binary size.", - "id": "component-config-hardware-settings-chip-revision-minimum-supported-esp32-h2-revision", - "name": "ESP32H2_REV_MIN", - "title": "Minimum Supported ESP32-H2 Revision", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP32H2_REV_MIN_FULL", - "name": "ESP32H2_REV_MIN_FULL", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_REV_MIN_FULL", - "name": "ESP_REV_MIN_FULL", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP32H2_REV_MAX_FULL", - "name": "ESP32H2_REV_MAX_FULL", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_REV_MAX_FULL", - "name": "ESP_REV_MAX_FULL", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Required minimum eFuse Block revision. ESP-IDF will check it at the 2nd bootloader stage\nwhether the current image can work correctly for this eFuse Block revision.\nSo that to avoid running an incompatible image on a SoC that contains breaking change in the eFuse Block.\nIf you want to update this value to run the image that not compatible with the current eFuse Block revision,\nplease contact to Espressif's business team for details:\nhttps://www.espressif.com.cn/en/contact-us/sales-questions", - "id": "ESP_EFUSE_BLOCK_REV_MIN_FULL", - "name": "ESP_EFUSE_BLOCK_REV_MIN_FULL", - "range": null, - "title": "Minimum Supported ESP32-H2 eFuse Block Revision", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_EFUSE_BLOCK_REV_MAX_FULL", - "name": "ESP_EFUSE_BLOCK_REV_MAX_FULL", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": "IDF_CI_BUILD", - "help": "For internal chip testing, a small number of new versions chips didn't\nupdate the version field in eFuse, you can enable this option to force the\nsoftware recognize the chip version based on the rev selected in menuconfig.", - "id": "ESP_REV_NEW_CHIP_TEST", - "name": "ESP_REV_NEW_CHIP_TEST", - "range": null, - "title": "Internal test mode", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-hardware-settings-chip-revision", - "title": "Chip revision", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_MAC_ADDR_UNIVERSE_WIFI_STA", - "name": "ESP_MAC_ADDR_UNIVERSE_WIFI_STA", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_MAC_ADDR_UNIVERSE_WIFI_AP", - "name": "ESP_MAC_ADDR_UNIVERSE_WIFI_AP", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_MAC_ADDR_UNIVERSE_BT", - "name": "ESP_MAC_ADDR_UNIVERSE_BT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_MAC_ADDR_UNIVERSE_ETH", - "name": "ESP_MAC_ADDR_UNIVERSE_ETH", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_MAC_ADDR_UNIVERSE_IEEE802154", - "name": "ESP_MAC_ADDR_UNIVERSE_IEEE802154", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_ONE", - "name": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_ONE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_TWO", - "name": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_TWO", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR", - "name": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES", - "name": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP32H2_UNIVERSAL_MAC_ADDRESSES_TWO", - "name": "ESP32H2_UNIVERSAL_MAC_ADDRESSES_TWO", - "range": null, - "title": "Two", - "type": "bool" - } - ], - "depends_on": null, - "help": "Configure the number of universally administered (by IEEE) MAC addresses.\nDuring initialization, MAC addresses for each network interface are generated or derived from a\nsingle base MAC address.", - "id": "component-config-hardware-settings-mac-config-number-of-universally-administered-by-ieee-mac-address", - "name": "ESP32H2_UNIVERSAL_MAC_ADDRESSES", - "title": "Number of universally administered (by IEEE) MAC address", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP32H2_UNIVERSAL_MAC_ADDRESSES", - "name": "ESP32H2_UNIVERSAL_MAC_ADDRESSES", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": "IDF_TARGET_ESP32", - "help": "If you have an invalid MAC CRC (ESP_ERR_INVALID_CRC) problem\nand you still want to use this chip, you can enable this option to bypass such an error.\nThis applies to both MAC_FACTORY and CUSTOM_MAC efuses.", - "id": "ESP_MAC_IGNORE_MAC_CRC_ERROR", - "name": "ESP_MAC_IGNORE_MAC_CRC_ERROR", - "range": null, - "title": "Ignore MAC CRC error (not recommended)", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "When this configuration is enabled, the user can invoke `esp_read_mac` to obtain the desired type of\nMAC using a custom MAC as the base MAC.", - "id": "ESP_MAC_USE_CUSTOM_MAC_AS_BASE_MAC", - "name": "ESP_MAC_USE_CUSTOM_MAC_AS_BASE_MAC", - "range": null, - "title": "Enable using custom mac as base mac", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-hardware-settings-mac-config", - "title": "MAC Config", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "(!SPIRAM || ESP_LDO_RESERVE_PSRAM) && !(IDF_TARGET_ESP32P4 && ESP32P4_REV_MIN_FULL < 100)", - "help": "If enabled, chip will try to power down flash as part of esp_light_sleep_start(), which costs\nmore time when chip wakes up. Can only be enabled if there is no SPIRAM configured.\n\nThis option will power down flash under a strict but relatively safe condition. Also, it is possible to\npower down flash under a relaxed condition by using esp_sleep_pd_config() to set ESP_PD_DOMAIN_VDDSDIO\nto ESP_PD_OPTION_OFF. It should be noted that there is a risk in powering down flash, you can refer\n`ESP-IDF Programming Guide/API Reference/System API/Sleep Modes/Power-down of Flash` for more details.", - "id": "ESP_SLEEP_POWER_DOWN_FLASH", - "name": "ESP_SLEEP_POWER_DOWN_FLASH", - "range": null, - "title": "Power down flash in light sleep when there is no SPIRAM or SPIRAM has independent power supply", - "type": "bool" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "All IOs will be set to isolate(floating) state by default during sleep.\nSince the power supply of SPI Flash is not lost during lightsleep, if its CS pin is recognized as\nlow level(selected state) in the floating state, there will be a large current leakage, and the\ndata in Flash may be corrupted by random signals on other SPI pins.\nSelect this option will set the CS pin of Flash to PULL-UP state during sleep, but this will\nincrease the sleep current about 10 uA.\nIf you are developing with esp32xx modules, you must select this option, but if you are developing\nwith chips, you can also pull up the CS pin of SPI Flash in the external circuit to save power\nconsumption caused by internal pull-up during sleep.\n(!!! Don't deselect this option if you don't have external SPI Flash CS pin pullups.)", - "id": "ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND", - "name": "ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND", - "range": null, - "title": "Pull-up Flash CS pin in light sleep", - "type": "bool" - }, - { - "children": [], - "depends_on": "SPIRAM", - "help": "All IOs will be set to isolate(floating) state by default during sleep.\nSince the power supply of PSRAM is not lost during lightsleep, if its CS pin is recognized as\nlow level(selected state) in the floating state, there will be a large current leakage, and the\ndata in PSRAM may be corrupted by random signals on other SPI pins.\nSelect this option will set the CS pin of PSRAM to PULL-UP state during sleep, but this will\nincrease the sleep current about 10 uA.\nIf you are developing with esp32xx modules, you must select this option, but if you are developing\nwith chips, you can also pull up the CS pin of PSRAM in the external circuit to save power\nconsumption caused by internal pull-up during sleep.\n(!!! Don't deselect this option if you don't have external PSRAM CS pin pullups.)", - "id": "ESP_SLEEP_PSRAM_LEAKAGE_WORKAROUND", - "name": "ESP_SLEEP_PSRAM_LEAKAGE_WORKAROUND", - "range": null, - "title": "Pull-up PSRAM CS pin in light sleep", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_SLEEP_PSRAM_LEAKAGE_WORKAROUND || ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND", - "help": "To reduce leakage current, some types of SPI Flash/RAM only need to pull up the CS pin\nduring light sleep. But there are also some kinds of SPI Flash/RAM that need to pull up\nall pins. It depends on the SPI Flash/RAM chip used.", - "id": "ESP_SLEEP_MSPI_NEED_ALL_IO_PU", - "name": "ESP_SLEEP_MSPI_NEED_ALL_IO_PU", - "range": null, - "title": "Pull-up all SPI pins in light sleep", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_SLEEP_RTC_BUS_ISO_WORKAROUND", - "name": "ESP_SLEEP_RTC_BUS_ISO_WORKAROUND", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "esp32c2, esp32c3, esp32s3, esp32c5, esp32c6 and esp32h2 will reset at wake-up if GPIO is received\na small electrostatic pulse during light sleep, with specific condition\n\n- GPIO needs to be configured as input-mode only\n- The pin receives a small electrostatic pulse, and reset occurs when the pulse\n voltage is higher than 6 V\n\nFor GPIO set to input mode only, it is not a good practice to leave it open/floating,\nThe hardware design needs to controlled it with determined supply or ground voltage\nis necessary.\n\nThis option provides a software workaround for this issue. Configure to isolate all\nGPIO pins in sleep state.", - "id": "ESP_SLEEP_GPIO_RESET_WORKAROUND", - "name": "ESP_SLEEP_GPIO_RESET_WORKAROUND", - "range": null, - "title": "light sleep GPIO reset workaround", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "When the chip exits sleep, the CPU and the flash chip are powered on at the same time.\nCPU will run rom code (deepsleep) or ram code (lightsleep) first, and then load or execute\ncode from flash.\n\nSome flash chips need sufficient time to pass between power on and first read operation.\nBy default, without any extra delay, this time is approximately 900us, although\nsome flash chip types need more than that.\n\n(!!! Please adjust this value according to the Data Sheet of SPI Flash used in your project.)\nIn Flash Data Sheet, the parameters that define the Flash ready timing after power-up (minimum\ntime from Vcc(min) to CS active) are usually named tVSL in ELECTRICAL CHARACTERISTICS chapter,\nand the configuration value here should be:\nESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY = tVSL - 900\n\nFor esp32 and esp32s3, the default extra delay is set to 2000us. When optimizing startup time\nfor applications which require it, this value may be reduced.\n\nIf you are seeing \"flash read err, 1000\" message printed to the console after deep sleep reset\non esp32, or triggered RTC_WDT/LP_WDT after lightsleep wakeup, try increasing this value.\n(For esp32, the delay will be executed in both deep sleep and light sleep wake up flow.\nFor chips after esp32, the delay will be executed only in light sleep flow, the delay\ncontrolled by the EFUSE_FLASH_TPUW in ROM will be executed in deepsleep wake up flow.)", - "id": "ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY", - "name": "ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY", - "range": [ - 0, - 5000 - ], - "title": "Extra delay (in us) after flash powerdown sleep wakeup to wait flash ready", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Enabling it will check the cache safety of the code before the flash power is ready after\nlight sleep wakeup, and check PM_SLP_IRAM_OPT related code cache safety. This option is\nonly for code quality inspection. Enabling it will increase the time overhead of entering\nand exiting sleep. It is not recommended to enable it in the release version.", - "id": "ESP_SLEEP_CACHE_SAFE_ASSERTION", - "name": "ESP_SLEEP_CACHE_SAFE_ASSERTION", - "range": null, - "title": "Check the cache safety of the sleep wakeup code in sleep process", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enable esp sleep debug.", - "id": "ESP_SLEEP_DEBUG", - "name": "ESP_SLEEP_DEBUG", - "range": null, - "title": "esp sleep debug", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "When using rtc gpio wakeup source during deepsleep without external pull-up/downs, you may want to\nmake use of the internal ones.", - "id": "ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS", - "name": "ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS", - "range": null, - "title": "Allow to enable internal pull-up/downs for the Deep-Sleep wakeup IOs", - "type": "bool" - }, - { - "children": [], - "depends_on": "FREERTOS_USE_TICKLESS_IDLE", - "help": "If enabled, it allows user to register sleep event callbacks. It is primarily designed for internal\ndevelopers and customers can use PM_LIGHT_SLEEP_CALLBACKS as an alternative.\n\nNOTE: These callbacks are executed from the IDLE task context hence you cannot have any blocking calls\nin your callbacks.\n\nNOTE: Enabling these callbacks may change sleep duration calculations based on time spent in\ncallback and hence it is highly recommended to keep them as short as possible.", - "id": "ESP_SLEEP_EVENT_CALLBACKS", - "name": "ESP_SLEEP_EVENT_CALLBACKS", - "range": null, - "title": "Enable registration of sleep event callbacks", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-hardware-settings-sleep-config", - "title": "Sleep Config", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "RTC_CLK_SRC_INT_RC", - "name": "RTC_CLK_SRC_INT_RC", - "range": null, - "title": "Internal 136 kHz RC oscillator", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "RTC_CLK_SRC_EXT_CRYS", - "name": "RTC_CLK_SRC_EXT_CRYS", - "range": null, - "title": "External 32 kHz crystal", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "RTC_CLK_SRC_EXT_OSC", - "name": "RTC_CLK_SRC_EXT_OSC", - "range": null, - "title": "External 32 kHz oscillator at 32K_XP pin", - "type": "bool" - } - ], - "depends_on": null, - "help": "Choose which clock is used as RTC clock source.", - "id": "component-config-hardware-settings-rtc-clock-config-rtc-clock-source", - "name": "RTC_CLK_SRC", - "title": "RTC clock source", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": "When the startup code initializes RTC_SLOW_CLK, it can perform\ncalibration by comparing the RTC_SLOW_CLK frequency with main XTAL\nfrequency. This option sets the number of RTC_SLOW_CLK cycles measured\nby the calibration routine. Higher numbers increase calibration\nprecision, which may be important for applications which spend a lot of\ntime in deep sleep. Lower numbers reduce startup time.\n\nWhen this option is set to 0, clock calibration will not be performed at\nstartup, and approximate clock frequencies will be assumed:\n\n- 136000 Hz if internal RC oscillator is used as clock source. For this use value 1024.\n- 32768 Hz if the 32k crystal oscillator is used. For this use value 3000 or more.\n In case more value will help improve the definition of the launch of the crystal.\n If the crystal could not start, it will be switched to internal RC.", - "id": "RTC_CLK_CAL_CYCLES", - "name": "RTC_CLK_CAL_CYCLES", - "range": [ - 0, - 32766 - ], - "title": "Number of cycles for RTC_SLOW_CLK calibration", - "type": "int" - } - ], - "depends_on": null, - "id": "component-config-hardware-settings-rtc-clock-config", - "title": "RTC Clock Config", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": "Place peripheral control functions (e.g. periph_module_reset) into IRAM,\nso that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.", - "id": "ESP_PERIPH_CTRL_FUNC_IN_IRAM", - "name": "ESP_PERIPH_CTRL_FUNC_IN_IRAM", - "range": null, - "title": "Place peripheral control functions into IRAM", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Place analog i2c master control functions (e.g. regi2c_ctrl_read_reg, regi2c_ctrl_write_reg) into IRAM,\nso that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.", - "id": "ESP_REGI2C_CTRL_FUNC_IN_IRAM", - "name": "ESP_REGI2C_CTRL_FUNC_IN_IRAM", - "range": null, - "title": "Place regi2c control functions into IRAM", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-hardware-settings-peripheral-control", - "title": "Peripheral Control", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "SOC_ETM_SUPPORTED", - "help": "whether to enable the debug log message for ETM core driver.\nNote that, this option only controls the ETM related driver log, won't affect other drivers.", - "id": "ETM_ENABLE_DEBUG_LOG", - "name": "ETM_ENABLE_DEBUG_LOG", - "range": null, - "title": "Enable debug log", - "type": "bool" - } - ], - "depends_on": "SOC_ETM_SUPPORTED", - "id": "component-config-hardware-settings-etm-configuration", - "title": "ETM Configuration", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "SOC_GDMA_SUPPORTED", - "help": "Place GDMA control functions (like start/stop/append/reset) into IRAM,\nso that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.", - "id": "GDMA_CTRL_FUNC_IN_IRAM", - "name": "GDMA_CTRL_FUNC_IN_IRAM", - "range": null, - "title": "Place GDMA control functions in IRAM", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_GDMA_SUPPORTED", - "help": "Place GDMA ISR handler functions in IRAM to reduce latency caused by cache miss.", - "id": "GDMA_ISR_HANDLER_IN_IRAM", - "name": "GDMA_ISR_HANDLER_IN_IRAM", - "range": null, - "title": "Place GDMA ISR handler in IRAM to reduce latency", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_GDMA_SUPPORTED", - "help": "This will ensure the GDMA object is DRAM-Safe, allow to avoid external memory\ncache misses, and also be accessible whilst the cache is disabled.", - "id": "GDMA_OBJ_DRAM_SAFE", - "name": "GDMA_OBJ_DRAM_SAFE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_GDMA_SUPPORTED", - "help": "If enabled, GDMA driver component will:\n1. ignore the global logging settings\n2. compile all log messages into the binary\n3. set the runtime log level to VERBOSE\nPlease enable this option by caution, as it will increase the binary size.", - "id": "GDMA_ENABLE_DEBUG_LOG", - "name": "GDMA_ENABLE_DEBUG_LOG", - "range": null, - "title": "Force enable debug log", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_GDMA_SUPPORTED", - "help": "This will ensure the GDMA interrupt handler is IRAM-Safe, allow to avoid flash\ncache misses, and also be able to run whilst the cache is disabled.\n(e.g. SPI Flash write).\nIf this option is enabled, ALL GDMA channel's ISR handlers should be placed in IRAM, which is a overkill.\nIt's recommend to set the \"isr_cache_safe\" in the \"gdma_channel_alloc_config_t\".\nThen other GDMA channels won't be influenced.", - "id": "GDMA_ISR_IRAM_SAFE", - "name": "GDMA_ISR_IRAM_SAFE", - "range": null, - "title": "GDMA ISR IRAM-Safe (Deprecated. Read Help!)", - "type": "bool" - } - ], - "depends_on": "SOC_GDMA_SUPPORTED", - "id": "component-config-hardware-settings-gdma-configurations", - "title": "GDMA Configurations", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "SOC_DW_GDMA_SUPPORTED", - "help": "Place DW_GDMA control functions (e.g. dw_gdma_channel_continue) into IRAM,\nso that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.", - "id": "DW_GDMA_CTRL_FUNC_IN_IRAM", - "name": "DW_GDMA_CTRL_FUNC_IN_IRAM", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_DW_GDMA_SUPPORTED", - "help": "Place DW_GDMA setter functions (e.g. dw_gdma_channel_set_block_markers) into IRAM,\nso that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.", - "id": "DW_GDMA_SETTER_FUNC_IN_IRAM", - "name": "DW_GDMA_SETTER_FUNC_IN_IRAM", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_DW_GDMA_SUPPORTED", - "help": "Place DW_GDMA getter functions (e.g. dw_gdma_link_list_get_item) into IRAM,\nso that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.", - "id": "DW_GDMA_GETTER_FUNC_IN_IRAM", - "name": "DW_GDMA_GETTER_FUNC_IN_IRAM", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_DW_GDMA_SUPPORTED", - "help": "This will ensure the DW_GDMA interrupt handler is IRAM-Safe, allow to avoid flash\ncache misses, and also be able to run whilst the cache is disabled.\n(e.g. SPI Flash write).", - "id": "DW_GDMA_ISR_IRAM_SAFE", - "name": "DW_GDMA_ISR_IRAM_SAFE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_DW_GDMA_SUPPORTED", - "help": "This will ensure the DW_GDMA object is DRAM-Safe, allow to avoid external memory\ncache misses, and also be accessible whilst the cache is disabled.", - "id": "DW_GDMA_OBJ_DRAM_SAFE", - "name": "DW_GDMA_OBJ_DRAM_SAFE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_DW_GDMA_SUPPORTED", - "help": "Whether to enable the debug log message for DW_GDMA driver.\nNote that, this option only controls the DW_GDMA driver log, won't affect other drivers.", - "id": "DW_GDMA_ENABLE_DEBUG_LOG", - "name": "DW_GDMA_ENABLE_DEBUG_LOG", - "range": null, - "title": "Enable debug log", - "type": "bool" - } - ], - "depends_on": "SOC_DW_GDMA_SUPPORTED", - "id": "component-config-hardware-settings-dw_gdma-configurations", - "title": "DW_GDMA Configurations", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "SOC_DMA2D_SUPPORTED", - "help": "Place 2D-DMA all operation functions, including control functions (e.g. start/stop/append/reset) and setter\nfunctions (e.g. connect/strategy/callback registration) into IRAM, so that these functions can be IRAM-safe\nand able to be called in the other IRAM interrupt context. It also helps optimizing the performance.", - "id": "DMA2D_OPERATION_FUNC_IN_IRAM", - "name": "DMA2D_OPERATION_FUNC_IN_IRAM", - "range": null, - "title": "Place 2D-DMA operation functions into IRAM", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_DMA2D_SUPPORTED", - "help": "This will ensure the 2D-DMA interrupt handler is IRAM-Safe, allow to avoid flash\ncache misses, and also be able to run whilst the cache is disabled.\n(e.g. SPI Flash write).", - "id": "DMA2D_ISR_IRAM_SAFE", - "name": "DMA2D_ISR_IRAM_SAFE", - "range": null, - "title": "2D-DMA ISR IRAM-Safe", - "type": "bool" - } - ], - "depends_on": "SOC_DMA2D_SUPPORTED", - "id": "component-config-hardware-settings-2d-dma-configurations", - "title": "2D-DMA Configurations", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "XTAL_FREQ_32", - "name": "XTAL_FREQ_32", - "range": null, - "title": "32 MHz", - "type": "bool" - } - ], - "depends_on": null, - "help": "This option selects the operating frequency of the XTAL (crystal) clock used to drive the ESP target.\nThe selected value MUST reflect the frequency of the given hardware.", - "id": "component-config-hardware-settings-main-xtal-config-main-xtal-frequency", - "name": "XTAL_FREQ", - "title": "Main XTAL frequency", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "XTAL_FREQ", - "name": "XTAL_FREQ", - "range": null, - "title": null, - "type": "int" - } - ], - "depends_on": null, - "id": "component-config-hardware-settings-main-xtal-config", - "title": "Main XTAL Config", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_BROWNOUT_DET_LVL_SEL_7", - "name": "ESP_BROWNOUT_DET_LVL_SEL_7", - "range": null, - "title": "2.94V", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_BROWNOUT_DET_LVL_SEL_6", - "name": "ESP_BROWNOUT_DET_LVL_SEL_6", - "range": null, - "title": "2.88V", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_BROWNOUT_DET_LVL_SEL_5", - "name": "ESP_BROWNOUT_DET_LVL_SEL_5", - "range": null, - "title": "2.83V", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_BROWNOUT_DET_LVL_SEL_4", - "name": "ESP_BROWNOUT_DET_LVL_SEL_4", - "range": null, - "title": "2.78V", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_BROWNOUT_DET_LVL_SEL_3", - "name": "ESP_BROWNOUT_DET_LVL_SEL_3", - "range": null, - "title": "2.73V", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_BROWNOUT_DET_LVL_SEL_2", - "name": "ESP_BROWNOUT_DET_LVL_SEL_2", - "range": null, - "title": "2.67V", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_BROWNOUT_DET_LVL_SEL_1", - "name": "ESP_BROWNOUT_DET_LVL_SEL_1", - "range": null, - "title": "2.62V", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_BROWNOUT_DET_LVL_SEL_0", - "name": "ESP_BROWNOUT_DET_LVL_SEL_0", - "range": null, - "title": "2.57V", - "type": "bool" - } - ], - "depends_on": "ESP_BROWNOUT_DET", - "help": "The brownout detector will reset the chip when the supply voltage is approximately\nbelow this level. Note that there may be some variation of brownout voltage level\nbetween each chip.\n\n#The voltage levels here are estimates, more work needs to be done to figure out the exact voltages\n#of the brownout threshold levels.", - "id": "component-config-hardware-settings-power-supplier-brownout-detector-hardware-brownout-detect-reset-brownout-voltage-level", - "name": "ESP_BROWNOUT_DET_LVL_SEL", - "title": "Brownout voltage level", - "type": "choice" - } - ], - "depends_on": "!IDF_ENV_FPGA", - "help": "The ESP32-H2 has a built-in brownout detector which can detect if the voltage is lower than\na specific value. If this happens, it will reset the chip in order to prevent unintended\nbehaviour.", - "id": "ESP_BROWNOUT_DET", - "name": "ESP_BROWNOUT_DET", - "range": null, - "title": "Hardware brownout detect & reset", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_BROWNOUT_DET_LVL", - "name": "ESP_BROWNOUT_DET_LVL", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "This config allows to trigger an interrupt when brownout detected. Software restart will be done\nat the end of the default callback.\nThis is because for some special workflow, the chip needs do more things when brownout happens\nbefore restart instead of restarting directly. This part needs to be done in callback function\nof interrupt.", - "id": "ESP_BROWNOUT_USE_INTR", - "name": "ESP_BROWNOUT_USE_INTR", - "range": null, - "title": null, - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-hardware-settings-power-supplier-brownout-detector", - "title": "Brownout Detector", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "SOC_VBAT_SUPPORTED && ESP_VBAT_INIT_AUTO", - "help": "Ensure the VBAT interrupt is IRAM-Safe by allowing the interrupt handler to be\nexecutable when the cache is disabled (e.g. SPI Flash write).", - "id": "ESP_VBAT_ISR_CACHE_SAFE", - "name": "ESP_VBAT_ISR_CACHE_SAFE", - "range": null, - "title": "VBAT ISR IRAM-Safe", - "type": "bool" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_VBAT_DET_LVL_LOW_SEL_7", - "name": "ESP_VBAT_DET_LVL_LOW_SEL_7", - "range": null, - "title": "2.94V", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_VBAT_DET_LVL_LOW_SEL_6", - "name": "ESP_VBAT_DET_LVL_LOW_SEL_6", - "range": null, - "title": "2.88V", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_VBAT_DET_LVL_LOW_SEL_5", - "name": "ESP_VBAT_DET_LVL_LOW_SEL_5", - "range": null, - "title": "2.83V", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_VBAT_DET_LVL_LOW_SEL_4", - "name": "ESP_VBAT_DET_LVL_LOW_SEL_4", - "range": null, - "title": "2.78V", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_VBAT_DET_LVL_LOW_SEL_3", - "name": "ESP_VBAT_DET_LVL_LOW_SEL_3", - "range": null, - "title": "2.73V", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_VBAT_DET_LVL_LOW_SEL_2", - "name": "ESP_VBAT_DET_LVL_LOW_SEL_2", - "range": null, - "title": "2.67V", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_VBAT_DET_LVL_LOW_SEL_1", - "name": "ESP_VBAT_DET_LVL_LOW_SEL_1", - "range": null, - "title": "2.62V", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_VBAT_DET_LVL_LOW_SEL_0", - "name": "ESP_VBAT_DET_LVL_LOW_SEL_0", - "range": null, - "title": "2.57V", - "type": "bool" - } - ], - "depends_on": "ESP_VBAT_USE_RECHARGEABLE_BATTERY", - "help": "The brownout detector will start charging when the supply voltage drops below the selected threshold.\nThis ensures that the power supply is maintained at a stable level.", - "id": "component-config-hardware-settings-power-supplier-rtc-backup-battery-enable-vbat-power-supply-for-rtc-battery-the-battery-for-rtc-battery-is-a-rechargeable-battery-vbat-start-charging-voltage-level", - "name": "ESP_VBAT_DET_LVL_LOW_SEL", - "title": "VBAT start charging voltage level", - "type": "choice" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_VBAT_DET_LVL_HIGH_SEL_7", - "name": "ESP_VBAT_DET_LVL_HIGH_SEL_7", - "range": null, - "title": "2.94V", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_VBAT_DET_LVL_HIGH_SEL_6", - "name": "ESP_VBAT_DET_LVL_HIGH_SEL_6", - "range": null, - "title": "2.88V", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_VBAT_DET_LVL_HIGH_SEL_5", - "name": "ESP_VBAT_DET_LVL_HIGH_SEL_5", - "range": null, - "title": "2.83V", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_VBAT_DET_LVL_HIGH_SEL_4", - "name": "ESP_VBAT_DET_LVL_HIGH_SEL_4", - "range": null, - "title": "2.78V", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_VBAT_DET_LVL_HIGH_SEL_3", - "name": "ESP_VBAT_DET_LVL_HIGH_SEL_3", - "range": null, - "title": "2.73V", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_VBAT_DET_LVL_HIGH_SEL_2", - "name": "ESP_VBAT_DET_LVL_HIGH_SEL_2", - "range": null, - "title": "2.67V", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_VBAT_DET_LVL_HIGH_SEL_1", - "name": "ESP_VBAT_DET_LVL_HIGH_SEL_1", - "range": null, - "title": "2.62V", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_VBAT_DET_LVL_HIGH_SEL_0", - "name": "ESP_VBAT_DET_LVL_HIGH_SEL_0", - "range": null, - "title": "2.57V", - "type": "bool" - } - ], - "depends_on": "ESP_VBAT_USE_RECHARGEABLE_BATTERY", - "help": "The brownout detector will stop charging when the supply voltage arrives the selected threshold.", - "id": "component-config-hardware-settings-power-supplier-rtc-backup-battery-enable-vbat-power-supply-for-rtc-battery-the-battery-for-rtc-battery-is-a-rechargeable-battery-vbat-stop-charging-voltage-level", - "name": "ESP_VBAT_DET_LVL_HIGH_SEL", - "title": "VBAT stop charging voltage level", - "type": "choice" - } - ], - "depends_on": "ESP_VBAT_INIT_AUTO", - "help": "Select this option if the RTC backup battery used in your design is a rechargeable battery.\n\nWhen enabled, the system will configure the RTC battery management circuitry to operate\nin a mode suitable for charging a rechargeable battery. This includes enabling\ncharging current regulation via resistor and voltage monitoring to ensure safe and efficient charging.\n\nUse this option carefully to avoid damage to non-rechargeable batteries.", - "id": "ESP_VBAT_USE_RECHARGEABLE_BATTERY", - "name": "ESP_VBAT_USE_RECHARGEABLE_BATTERY", - "range": null, - "title": "The battery for RTC battery is a rechargeable battery", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_VBAT_BROWNOUT_DET_LVL_SEL_7", - "name": "ESP_VBAT_BROWNOUT_DET_LVL_SEL_7", - "range": null, - "title": "2.94V", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_VBAT_BROWNOUT_DET_LVL_SEL_6", - "name": "ESP_VBAT_BROWNOUT_DET_LVL_SEL_6", - "range": null, - "title": "2.88V", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_VBAT_BROWNOUT_DET_LVL_SEL_5", - "name": "ESP_VBAT_BROWNOUT_DET_LVL_SEL_5", - "range": null, - "title": "2.83V", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_VBAT_BROWNOUT_DET_LVL_SEL_4", - "name": "ESP_VBAT_BROWNOUT_DET_LVL_SEL_4", - "range": null, - "title": "2.78V", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_VBAT_BROWNOUT_DET_LVL_SEL_3", - "name": "ESP_VBAT_BROWNOUT_DET_LVL_SEL_3", - "range": null, - "title": "2.73V", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_VBAT_BROWNOUT_DET_LVL_SEL_2", - "name": "ESP_VBAT_BROWNOUT_DET_LVL_SEL_2", - "range": null, - "title": "2.67V", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_VBAT_BROWNOUT_DET_LVL_SEL_1", - "name": "ESP_VBAT_BROWNOUT_DET_LVL_SEL_1", - "range": null, - "title": "2.62V", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_VBAT_BROWNOUT_DET_LVL_SEL_0", - "name": "ESP_VBAT_BROWNOUT_DET_LVL_SEL_0", - "range": null, - "title": "2.57V", - "type": "bool" - } - ], - "depends_on": "ESP_VBAT_INIT_AUTO", - "help": "The brownout detector will git a brownout signal when vbat brownout detected.", - "id": "component-config-hardware-settings-power-supplier-rtc-backup-battery-enable-vbat-power-supply-for-rtc-battery-vbat-brownout-voltage-level", - "name": "ESP_VBAT_BROWNOUT_DET_LVL_SEL", - "title": "VBAT brownout voltage level", - "type": "choice" - } - ], - "depends_on": "SOC_VBAT_SUPPORTED", - "help": "Enable this option to allow the use of a button cell battery to power the RTC (Real-Time Clock) domain.\nWhen this option is enabled, the hardware will configure VBAT as the power supply source for the RTC.\n\n- Ensure a compatible battery (2.5V ~ 3.6V) is connected to the VBAT pin.\n- The VBAT battery provides power to retain RTC state and keep low-power peripherals active\n during deep sleep.\n- When this option is disabled, the RTC battery input (VBAT) must not be left floating.", - "id": "ESP_VBAT_INIT_AUTO", - "name": "ESP_VBAT_INIT_AUTO", - "range": null, - "title": "Enable VBAT power supply for RTC battery", - "type": "bool" - }, - { - "children": [], - "depends_on": "!ESP_VBAT_USE_RECHARGEABLE_BATTERY", - "help": "Wake up the chip if the vbat voltage drops below the brownout voltage during deepsleep.", - "id": "ESP_VBAT_WAKEUP_CHIP_ON_VBAT_BROWNOUT", - "name": "ESP_VBAT_WAKEUP_CHIP_ON_VBAT_BROWNOUT", - "range": null, - "title": "Wake up chip in deepsleep if VBAT brownout", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_VBAT_USE_RECHARGEABLE_BATTERY", - "help": null, - "id": "ESP_VBAT_DET_LVL_LOW", - "name": "ESP_VBAT_DET_LVL_LOW", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_VBAT_USE_RECHARGEABLE_BATTERY", - "help": null, - "id": "ESP_VBAT_DET_LVL_HIGH", - "name": "ESP_VBAT_DET_LVL_HIGH", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_VBAT_BROWNOUT_DET_LVL", - "name": "ESP_VBAT_BROWNOUT_DET_LVL", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_VBAT_USE_RECHARGEABLE_BATTERY", - "help": "The resistor value of charger circuit.", - "id": "ESP_VBAT_CHARGER_CIRCUIT_RESISTOR_VAL", - "name": "ESP_VBAT_CHARGER_CIRCUIT_RESISTOR_VAL", - "range": null, - "title": "vbat charger circuit resistor value (ohms), should be multiple of 500", - "type": "int" - } - ], - "depends_on": null, - "id": "component-config-hardware-settings-power-supplier-rtc-backup-battery", - "title": "RTC Backup Battery", - "type": "menu" - } - ], - "depends_on": null, - "id": "component-config-hardware-settings-power-supplier", - "title": "Power Supplier", - "type": "menu" - }, - { - "children": [], - "depends_on": null, - "help": "This option is only used for new chip bringup, when\nclock support isn't done yet. So with this option,\nwe use xtal on FPGA as the clock source.", - "id": "ESP_BRINGUP_BYPASS_CPU_CLK_SETTING", - "name": "ESP_BRINGUP_BYPASS_CPU_CLK_SETTING", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "This option is only used for new chip bringup, when\nRNG isn't done yet. So with this option, we use 0x5A\nto fill the random buffers", - "id": "ESP_BRINGUP_BYPASS_RANDOM_SETTING", - "name": "ESP_BRINGUP_BYPASS_RANDOM_SETTING", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_SPI_BUS_LOCK_ISR_FUNCS_IN_IRAM", - "name": "ESP_SPI_BUS_LOCK_ISR_FUNCS_IN_IRAM", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_SPI_BUS_LOCK_FUNCS_IN_IRAM", - "name": "ESP_SPI_BUS_LOCK_FUNCS_IN_IRAM", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Due to the poor low-temperature characteristics of\nRC32K (it cannot operate below -40 degrees Celsius),\nplease avoid using it whenever possible", - "id": "ESP_CLK_RC32K_NOT_TO_USE", - "name": "ESP_CLK_RC32K_NOT_TO_USE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_PMU_PVT_SUPPORTED", - "help": "If enabled, hp & lp voltage can be auto adjust by PVT characteristic.\nOtherwise, internal voltage will be set to fix dbias.\nThis is a must for stable mass production. Disable for debugging only.", - "id": "ESP_ENABLE_PVT", - "name": "ESP_ENABLE_PVT", - "range": null, - "title": "Auto adjust hp & lp voltage using pvt function (MUST ENABLE FOR MP)", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_INTR_IN_IRAM", - "name": "ESP_INTR_IN_IRAM", - "range": null, - "title": "Place esp_intr_alloc functions in IRAM", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-hardware-settings", - "title": "Hardware Settings", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_PRINT_IN_IRAM", - "name": "ESP_ROM_PRINT_IN_IRAM", - "range": null, - "title": "Place print functions in IRAM", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-esp-rom", - "title": "ESP-ROM", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_CRYPTO_DPA_PROTECTION_LEVEL_LOW", - "name": "ESP_CRYPTO_DPA_PROTECTION_LEVEL_LOW", - "range": null, - "title": "Security level low", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_CRYPTO_DPA_PROTECTION_LEVEL_MEDIUM", - "name": "ESP_CRYPTO_DPA_PROTECTION_LEVEL_MEDIUM", - "range": null, - "title": "Security level medium", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_CRYPTO_DPA_PROTECTION_LEVEL_HIGH", - "name": "ESP_CRYPTO_DPA_PROTECTION_LEVEL_HIGH", - "range": null, - "title": "Security level high", - "type": "bool" - } - ], - "depends_on": "ESP_CRYPTO_DPA_PROTECTION_AT_STARTUP && SOC_CRYPTO_DPA_PROTECTION_SUPPORTED", - "help": "Configure the DPA protection security level", - "id": "component-config-esp-security-specific-crypto-dpa-protection-enable-crypto-dpa-protection-at-startup-dpa-protection-level", - "name": "ESP_CRYPTO_DPA_PROTECTION_LEVEL", - "title": "DPA protection level", - "type": "choice" - } - ], - "depends_on": "SOC_CRYPTO_DPA_PROTECTION_SUPPORTED", - "help": "This config controls the DPA (Differential Power Analysis) protection\nknob for the crypto peripherals. DPA protection dynamically adjusts\nclock frequency of the crypto peripheral. DPA protection helps to make it\ndifficult to perform SCA attacks on the crypto peripherals. However,\nthere is also associated performance impact based on the security level\nset. Please refer to the TRM for more details.", - "id": "ESP_CRYPTO_DPA_PROTECTION_AT_STARTUP", - "name": "ESP_CRYPTO_DPA_PROTECTION_AT_STARTUP", - "range": null, - "title": "Enable crypto DPA protection at startup", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_CRYPTO_DPA_PROTECTION_SUPPORTED", - "help": null, - "id": "ESP_CRYPTO_DPA_PROTECTION_LEVEL", - "name": "ESP_CRYPTO_DPA_PROTECTION_LEVEL", - "range": null, - "title": null, - "type": "int" - } - ], - "depends_on": "SOC_CRYPTO_DPA_PROTECTION_SUPPORTED", - "id": "component-config-esp-security-specific-crypto-dpa-protection", - "title": "Crypto DPA Protection", - "type": "menu" - }, - { - "children": [], - "depends_on": "SOC_ECC_CONSTANT_TIME_POINT_MUL", - "help": "If enabled, the app startup code will burn the ECC_FORCE_CONST_TIME efuse bit to force the\nECC peripheral to always perform constant time point multiplication operations,\nirrespective of the ECC_MULT_SECURITY_MODE status bit that is present in the ECC_MULT_CONF_REG\nregister. By default, ESP-IDF configures the ECC peripheral to perform constant time point\nmultiplication operations, so enabling this config would provide security enhancement only in\nthe cases when trusted boot is not enabled and the attacker tries carrying out non-constant\ntime point multiplication operations by changing the default ESP-IDF configurations.\nPerforming constant time operations protect the ECC multiplication operations from timing attacks.", - "id": "ESP_CRYPTO_FORCE_ECC_CONSTANT_TIME_POINT_MUL", - "name": "ESP_CRYPTO_FORCE_ECC_CONSTANT_TIME_POINT_MUL", - "range": null, - "title": "Forcefully enable ECC constant time point multiplication operations", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_ECDSA_P192_CURVE_DEFAULT_DISABLED", - "help": "By default, only the 256-bit curve operations are allowed. If this configuration is enabled,\nit will set the eFuse to allow ECDSA operations using both the 192-bit and 256-bit curves.", - "id": "ESP_ECDSA_ENABLE_P192_CURVE", - "name": "ESP_ECDSA_ENABLE_P192_CURVE", - "range": null, - "title": "Enable ECDSA 192-curve operations", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-esp-security-specific", - "title": "ESP Security Specific", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "IDF_ENV_FPGA && ", - "help": null, - "id": "ESP_DEFAULT_CPU_FREQ_MHZ_16", - "name": "ESP_DEFAULT_CPU_FREQ_MHZ_16", - "range": null, - "title": "16 MHz", - "type": "bool" - }, - { - "children": [], - "depends_on": "IDF_ENV_FPGA && ", - "help": null, - "id": "ESP_DEFAULT_CPU_FREQ_MHZ_32", - "name": "ESP_DEFAULT_CPU_FREQ_MHZ_32", - "range": null, - "title": "32 MHz", - "type": "bool" - }, - { - "children": [], - "depends_on": "!IDF_ENV_FPGA && ", - "help": null, - "id": "ESP_DEFAULT_CPU_FREQ_MHZ_48", - "name": "ESP_DEFAULT_CPU_FREQ_MHZ_48", - "range": null, - "title": "48 MHz", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_DEFAULT_CPU_FREQ_MHZ_64", - "name": "ESP_DEFAULT_CPU_FREQ_MHZ_64", - "range": null, - "title": "64 MHz", - "type": "bool" - }, - { - "children": [], - "depends_on": "!IDF_ENV_FPGA && ", - "help": null, - "id": "ESP_DEFAULT_CPU_FREQ_MHZ_96", - "name": "ESP_DEFAULT_CPU_FREQ_MHZ_96", - "range": null, - "title": "96 MHz", - "type": "bool" - } - ], - "depends_on": null, - "help": "CPU frequency to be set on application startup.", - "id": "component-config-esp-system-settings-cpu-frequency", - "name": "ESP_DEFAULT_CPU_FREQ_MHZ", - "title": "CPU frequency", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_DEFAULT_CPU_FREQ_MHZ", - "name": "ESP_DEFAULT_CPU_FREQ_MHZ", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "The following system functions will be placed in IRAM if this option is enabled:\n- system startup\n- system time\n- system error\n- system restart\n- system crosscore\n- system debug\n- system APB backup DMA lock\n- system application tick hook\n- Unified Behavior Sanitizer (UBSAN) hook\n- Interrupt watchdog handler\n- XTAL32K watchdog timer\n- USB CDC functions for the esp_rom_printf (if ESP_CONSOLE_USB_CDC_SUPPORT_ETS_PRINTF=y)\n- IPC and IPC ISR", - "id": "ESP_SYSTEM_IN_IRAM", - "name": "ESP_SYSTEM_IN_IRAM", - "range": null, - "title": "Place system functions in IRAM", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "!ESP_SYSTEM_GDBSTUB_RUNTIME && ", - "help": "Outputs the relevant registers over the serial port and halt the\nprocessor. Needs a manual reset to restart.", - "id": "ESP_SYSTEM_PANIC_PRINT_HALT", - "name": "ESP_SYSTEM_PANIC_PRINT_HALT", - "range": null, - "title": "Print registers and halt", - "type": "bool" - }, - { - "children": [], - "depends_on": "!ESP_SYSTEM_GDBSTUB_RUNTIME && ", - "help": "Outputs the relevant registers over the serial port and immediately\nreset the processor.", - "id": "ESP_SYSTEM_PANIC_PRINT_REBOOT", - "name": "ESP_SYSTEM_PANIC_PRINT_REBOOT", - "range": null, - "title": "Print registers and reboot", - "type": "bool" - }, - { - "children": [], - "depends_on": "!ESP_SYSTEM_GDBSTUB_RUNTIME && ", - "help": "Just resets the processor without outputting anything", - "id": "ESP_SYSTEM_PANIC_SILENT_REBOOT", - "name": "ESP_SYSTEM_PANIC_SILENT_REBOOT", - "range": null, - "title": "Silent reboot", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_GDBSTUB_ENABLED && ", - "help": "Invoke gdbstub on the serial port, allowing for gdb to attach to it to do a postmortem\nof the crash.", - "id": "ESP_SYSTEM_PANIC_GDBSTUB", - "name": "ESP_SYSTEM_PANIC_GDBSTUB", - "range": null, - "title": "GDBStub on panic", - "type": "bool" - } - ], - "depends_on": null, - "help": "If FreeRTOS detects unexpected behaviour or an unhandled exception, the panic handler is\ninvoked. Configure the panic handler's action here.", - "id": "component-config-esp-system-settings-panic-handler-behaviour", - "name": "ESP_SYSTEM_PANIC", - "title": "Panic handler behaviour", - "type": "choice" - }, - { - "children": [], - "depends_on": "ESP_SYSTEM_PANIC_PRINT_REBOOT", - "help": "After the panic handler executes, you can specify a number of seconds to\nwait before the device reboots.", - "id": "ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS", - "name": "ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS", - "range": null, - "title": "Panic reboot delay (Seconds)", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Only initialize and use the main core.", - "id": "ESP_SYSTEM_SINGLE_CORE_MODE", - "name": "ESP_SYSTEM_SINGLE_CORE_MODE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_SYSTEM_RTC_EXT_XTAL", - "name": "ESP_SYSTEM_RTC_EXT_XTAL", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_SYSTEM_RTC_EXT_OSC", - "name": "ESP_SYSTEM_RTC_EXT_OSC", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_SYSTEM_RTC_EXT_XTAL", - "help": "To reduce the startup time of an external RTC crystal,\nwe bootstrap it with a 32kHz square wave for a fixed number of cycles.\nSetting 0 will disable bootstrapping (if disabled, the crystal may take\nlonger to start up or fail to oscillate under some conditions).\n\nIf this value is too high, a faulty crystal may initially start and then fail.\nIf this value is too low, an otherwise good crystal may not start.\n\nTo accurately determine if the crystal has started,\nset a larger \"Number of cycles for RTC_SLOW_CLK calibration\" (about 3000).", - "id": "ESP_SYSTEM_RTC_EXT_XTAL_BOOTSTRAP_CYCLES", - "name": "ESP_SYSTEM_RTC_EXT_XTAL_BOOTSTRAP_CYCLES", - "range": null, - "title": "Bootstrap cycles for external 32kHz crystal", - "type": "int" - }, - { - "children": [], - "depends_on": "SOC_RTC_FAST_MEM_SUPPORTED", - "help": null, - "id": "ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK", - "name": "ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK", - "help": "This config option allows to add RTC fast memory region to system heap with capability\nsimilar to that of DRAM region but without DMA. Speed wise RTC fast memory operates on\nAPB clock and hence does not have much performance impact.", - "id": "ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP", - "name": "ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP", - "range": null, - "title": "Enable RTC fast memory for dynamic allocations", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": "When selected, no backtracing will be performed at runtime. By using idf.py monitor, it\nis still possible to get a backtrace when a panic occurs.", - "id": "ESP_SYSTEM_NO_BACKTRACE", - "name": "ESP_SYSTEM_NO_BACKTRACE", - "range": null, - "title": "No backtracing", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "Generate DWARF information for each function of the project. These information will parsed and used to\nperform backtracing when panics occur. Activating this option will activate asynchronous frame\nunwinding and generation of both .eh_frame and .eh_frame_hdr sections, resulting in a bigger binary\nsize (20% to 100% larger). The main purpose of this option is to be able to have a backtrace parsed\nand printed by the program itself, regardless of the serial monitor used.\nThis option is not recommended to be used for production.", - "id": "ESP_SYSTEM_USE_EH_FRAME", - "name": "ESP_SYSTEM_USE_EH_FRAME", - "range": null, - "title": "Generate and use eh_frame for backtracing", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "This configuration allows the compiler to allocate CPU register s0 as the frame pointer. The main usage\nof the frame pointer is to be able to generate a backtrace from the panic handler on exception.\nEnabling this option results in bigger and slightly slower code since all functions will have\nto populate this register and won't be able to use it as a general-purpose register anymore.", - "id": "ESP_SYSTEM_USE_FRAME_POINTER", - "name": "ESP_SYSTEM_USE_FRAME_POINTER", - "range": null, - "title": "Use CPU Frame Pointer register", - "type": "bool" - } - ], - "depends_on": "IDF_TARGET_ARCH_RISCV", - "help": "Configure how backtracing will be performed at runtime when a panic occurs.", - "id": "component-config-esp-system-settings-backtracing-method", - "name": "ESP_BACKTRACING_METHOD", - "title": "Backtracing method", - "type": "choice" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "IDF_TARGET_ARCH_RISCV && SOC_LP_CORE_SUPPORTED && ESP_SYSTEM_PMP_IDRAM_SPLIT", - "help": "If enabled, user can run code available in LP Core image.\n\nWarning: on ESP32-P4 this will also mark the memory area used for BOOTLOADER_RESERVE_RTC_MEM\nas executable. If you consider this a security risk then do not activate this option.", - "id": "ESP_SYSTEM_PMP_LP_CORE_RESERVE_MEM_EXECUTABLE", - "name": "ESP_SYSTEM_PMP_LP_CORE_RESERVE_MEM_EXECUTABLE", - "range": null, - "title": "Make LP core reserved memory executable from HP core", - "type": "bool" - } - ], - "depends_on": "SOC_CPU_IDRAM_SPLIT_USING_PMP && !SECURE_ENABLE_TEE", - "help": "If enabled, the CPU watches all the memory access and raises an exception in case\nof any memory violation. This feature automatically splits\nthe SRAM memory, using PMP, into data and instruction segments and sets Read/Execute permissions\nfor the instruction part (below given splitting address) and Read/Write permissions\nfor the data part (above the splitting address). The memory protection is effective\non all access through the IRAM0 and DRAM0 buses.", - "id": "ESP_SYSTEM_PMP_IDRAM_SPLIT", - "name": "ESP_SYSTEM_PMP_IDRAM_SPLIT", - "range": null, - "title": "Enable IRAM/DRAM split protection", - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_ENABLE_TEE", - "help": "This option enables the default memory protection provided by TEE.", - "id": "ESP_SYSTEM_MEMPROT_FEATURE_VIA_TEE", - "name": "ESP_SYSTEM_MEMPROT_FEATURE_VIA_TEE", - "range": null, - "title": "Enable memory protection (via TEE)", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "ESP_SYSTEM_MEMPROT_FEATURE", - "help": "Once locked, memory protection settings cannot be changed anymore.\nThe lock is reset only on the chip startup.", - "id": "ESP_SYSTEM_MEMPROT_FEATURE_LOCK", - "name": "ESP_SYSTEM_MEMPROT_FEATURE_LOCK", - "range": null, - "title": "Lock memory protection settings", - "type": "bool" - } - ], - "depends_on": "SOC_MEMPROT_SUPPORTED", - "help": "If enabled, the permission control module watches all the memory access and fires the panic handler\nif a permission violation is detected. This feature automatically splits\nthe SRAM memory into data and instruction segments and sets Read/Execute permissions\nfor the instruction part (below given splitting address) and Read/Write permissions\nfor the data part (above the splitting address). The memory protection is effective\non all access through the IRAM0 and DRAM0 buses.", - "id": "ESP_SYSTEM_MEMPROT_FEATURE", - "name": "ESP_SYSTEM_MEMPROT_FEATURE", - "range": null, - "title": "Enable memory protection", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-esp-system-settings-memory-protection", - "title": "Memory protection", - "type": "menu" - }, - { - "children": [], - "depends_on": null, - "help": "Config system event queue size in different application.", - "id": "ESP_SYSTEM_EVENT_QUEUE_SIZE", - "name": "ESP_SYSTEM_EVENT_QUEUE_SIZE", - "range": null, - "title": "System event queue size", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Config system event task stack size in different application.", - "id": "ESP_SYSTEM_EVENT_TASK_STACK_SIZE", - "name": "ESP_SYSTEM_EVENT_TASK_STACK_SIZE", - "range": null, - "title": "Event loop task stack size", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Configure the \"main task\" stack size. This is the stack of the task\nwhich calls app_main(). If app_main() returns then this task is deleted\nand its stack memory is freed.", - "id": "ESP_MAIN_TASK_STACK_SIZE", - "name": "ESP_MAIN_TASK_STACK_SIZE", - "range": null, - "title": "Main task stack size", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_MAIN_TASK_AFFINITY_CPU0", - "name": "ESP_MAIN_TASK_AFFINITY_CPU0", - "range": null, - "title": "CPU0", - "type": "bool" - }, - { - "children": [], - "depends_on": "!FREERTOS_UNICORE && ", - "help": null, - "id": "ESP_MAIN_TASK_AFFINITY_CPU1", - "name": "ESP_MAIN_TASK_AFFINITY_CPU1", - "range": null, - "title": "CPU1", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_MAIN_TASK_AFFINITY_NO_AFFINITY", - "name": "ESP_MAIN_TASK_AFFINITY_NO_AFFINITY", - "range": null, - "title": "No affinity", - "type": "bool" - } - ], - "depends_on": null, - "help": "Configure the \"main task\" core affinity. This is the used core of the task\nwhich calls app_main(). If app_main() returns then this task is deleted.", - "id": "component-config-esp-system-settings-main-task-core-affinity", - "name": "ESP_MAIN_TASK_AFFINITY", - "title": "Main task core affinity", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_MAIN_TASK_AFFINITY", - "name": "ESP_MAIN_TASK_AFFINITY", - "range": null, - "title": null, - "type": "hex" - }, - { - "children": [], - "depends_on": null, - "help": "Minimal value of size, in bytes, accepted to execute a expression\nwith shared stack.", - "id": "ESP_MINIMAL_SHARED_STACK_SIZE", - "name": "ESP_MINIMAL_SHARED_STACK_SIZE", - "range": null, - "title": "Minimal allowed size for shared stack", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_CONSOLE_UART_DEFAULT", - "name": "ESP_CONSOLE_UART_DEFAULT", - "range": null, - "title": "Default: UART0", - "type": "bool" - }, - { - "children": [], - "depends_on": "(IDF_TARGET_ESP32S2 || IDF_TARGET_ESP32S3) && !TINY_USB && ", - "help": null, - "id": "ESP_CONSOLE_USB_CDC", - "name": "ESP_CONSOLE_USB_CDC", - "range": null, - "title": "USB CDC", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_USB_SERIAL_JTAG_SUPPORTED && ", - "help": null, - "id": "ESP_CONSOLE_USB_SERIAL_JTAG", - "name": "ESP_CONSOLE_USB_SERIAL_JTAG", - "range": null, - "title": "USB Serial/JTAG Controller", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_CONSOLE_UART_CUSTOM", - "name": "ESP_CONSOLE_UART_CUSTOM", - "range": null, - "title": "Custom UART", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_CONSOLE_NONE", - "name": "ESP_CONSOLE_NONE", - "range": null, - "title": "None", - "type": "bool" - } - ], - "depends_on": null, - "help": "Select where to send console output (through stdout and stderr).\n\n- Default is to use UART0 on pre-defined GPIOs.\n- If \"Custom\" is selected, UART0 or UART1 can be chosen,\n and any pins can be selected.\n- If \"None\" is selected, there will be no console output on any UART, except\n for initial output from ROM bootloader. This ROM output can be suppressed by\n GPIO strapping or EFUSE, refer to chip datasheet for details.\n- On chips with USB OTG peripheral, \"USB CDC\" option redirects output to the\n CDC port. This option uses the CDC driver in the chip ROM.\n This option is incompatible with TinyUSB stack.\n- On chips with an USB serial/JTAG debug controller, selecting the option\n for that redirects output to the CDC/ACM (serial port emulation) component\n of that device.", - "id": "component-config-esp-system-settings-channel-for-console-output", - "name": "ESP_CONSOLE_UART", - "title": "Channel for console output", - "type": "choice" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_CONSOLE_SECONDARY_NONE", - "name": "ESP_CONSOLE_SECONDARY_NONE", - "range": null, - "title": "No secondary console", - "type": "bool" - }, - { - "children": [], - "depends_on": "!ESP_CONSOLE_USB_SERIAL_JTAG && ", - "help": "This option supports output through USB_SERIAL_JTAG port when the UART0 port is not connected.\nThe output currently only supports non-blocking mode without using the console.\nIf you want to output in blocking mode with REPL or input through USB_SERIAL_JTAG port,\nplease change the primary config to ESP_CONSOLE_USB_SERIAL_JTAG above.", - "id": "ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG", - "name": "ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG", - "range": null, - "title": "USB_SERIAL_JTAG PORT", - "type": "bool" - } - ], - "depends_on": "SOC_USB_SERIAL_JTAG_SUPPORTED", - "help": "This secondary option supports output through other specific port like USB_SERIAL_JTAG\nwhen UART0 port as a primary is selected but not connected. This secondary output currently only supports\nnon-blocking mode without using REPL. If you want to output in blocking mode with REPL or\ninput through this secondary port, please change the primary config to this port\nin `Channel for console output` menu.", - "id": "component-config-esp-system-settings-channel-for-console-secondary-output", - "name": "ESP_CONSOLE_SECONDARY", - "title": "Channel for console secondary output", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED", - "name": "ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_CONSOLE_UART", - "name": "ESP_CONSOLE_UART", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_CONSOLE_UART_CUSTOM_NUM_0", - "name": "ESP_CONSOLE_UART_CUSTOM_NUM_0", - "range": null, - "title": "UART0", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_CONSOLE_UART_CUSTOM_NUM_1", - "name": "ESP_CONSOLE_UART_CUSTOM_NUM_1", - "range": null, - "title": "UART1", - "type": "bool" - } - ], - "depends_on": "ESP_CONSOLE_UART_CUSTOM", - "help": "This UART peripheral is used for console output from the ESP-IDF Bootloader and the app.\n\nIf the configuration is different in the Bootloader binary compared to the app binary, UART\nis reconfigured after the bootloader exits and the app starts.\n\nDue to an ESP32 ROM bug, UART2 is not supported for console output\nvia esp_rom_printf.", - "id": "component-config-esp-system-settings-uart-peripheral-to-use-for-console-output-0-1-", - "name": "ESP_CONSOLE_UART_NUM", - "title": "UART peripheral to use for console output (0-1)", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_CONSOLE_UART_NUM", - "name": "ESP_CONSOLE_UART_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_CONSOLE_ROM_SERIAL_PORT_NUM", - "name": "ESP_CONSOLE_ROM_SERIAL_PORT_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_CONSOLE_UART_CUSTOM", - "help": "This GPIO is used for console UART TX output in the ESP-IDF Bootloader and the app (including\nboot log output and default standard output and standard error of the app). Value -1 means to\ncontinue using the default console UART TX pin.\n\nIf the configuration is different in the Bootloader binary compared to the app binary, UART\nis reconfigured after the bootloader exits and the app starts.", - "id": "ESP_CONSOLE_UART_TX_GPIO", - "name": "ESP_CONSOLE_UART_TX_GPIO", - "range": null, - "title": "UART TX on GPIO", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_CONSOLE_UART_CUSTOM", - "help": "This GPIO is used for console UART RX input in the ESP-IDF Bootloader and the app (including\ndefault standard input of the app). Value -1 means to continue using the default console UART\nRX pin.\n\nNote: The default ESP-IDF Bootloader configures this pin but doesn't read anything from the UART.\n\nIf the configuration is different in the Bootloader binary compared to the app binary, UART\nis reconfigured after the bootloader exits and the app starts.", - "id": "ESP_CONSOLE_UART_RX_GPIO", - "name": "ESP_CONSOLE_UART_RX_GPIO", - "range": null, - "title": "UART RX on GPIO", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_CONSOLE_UART", - "help": "This baud rate is used by both the ESP-IDF Bootloader and the app (including\nboot log output and default standard input/output/error of the app).\n\nThe app's maximum baud rate depends on the UART clock source. If Power Management is disabled,\nthe UART clock source is the APB clock and all baud rates in the available range will be sufficiently\naccurate. If Power Management is enabled, REF_TICK clock source is used so the baud rate is divided\nfrom 1MHz. Baud rates above 1Mbps are not possible and values between 500Kbps and 1Mbps may not be\naccurate.\n\nIf the configuration is different in the Bootloader binary compared to the app binary, UART\nis reconfigured after the bootloader exits and the app starts.", - "id": "ESP_CONSOLE_UART_BAUDRATE", - "name": "ESP_CONSOLE_UART_BAUDRATE", - "range": [ - 1200, - 4000000 - ], - "title": "UART console baud rate", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_CONSOLE_USB_CDC", - "help": "Set the size of USB CDC RX buffer. Increase the buffer size if your application\nis often receiving data over USB CDC.", - "id": "ESP_CONSOLE_USB_CDC_RX_BUF_SIZE", - "name": "ESP_CONSOLE_USB_CDC_RX_BUF_SIZE", - "range": null, - "title": "Size of USB CDC RX buffer", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_CONSOLE_USB_CDC", - "help": "If enabled, esp_rom_printf and ESP_EARLY_LOG output will also be sent over USB CDC.\nDisabling this option saves about 1kB or RAM.", - "id": "ESP_CONSOLE_USB_CDC_SUPPORT_ETS_PRINTF", - "name": "ESP_CONSOLE_USB_CDC_SUPPORT_ETS_PRINTF", - "range": null, - "title": "Enable esp_rom_printf / ESP_EARLY_LOG via USB CDC", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "ESP_INT_WDT", - "help": "The timeout of the watchdog, in milliseconds. Make this higher than the FreeRTOS tick rate.", - "id": "ESP_INT_WDT_TIMEOUT_MS", - "name": "ESP_INT_WDT_TIMEOUT_MS", - "range": [ - 10, - 10000 - ], - "title": "Interrupt watchdog timeout (ms)", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_INT_WDT && !FREERTOS_UNICORE", - "help": "Also detect if interrupts on CPU 1 are disabled for too long.", - "id": "ESP_INT_WDT_CHECK_CPU1", - "name": "ESP_INT_WDT_CHECK_CPU1", - "range": null, - "title": "Also watch CPU1 tick interrupt", - "type": "bool" - } - ], - "depends_on": null, - "help": "This watchdog timer can detect if the FreeRTOS tick interrupt has not been called for a certain time,\neither because a task turned off interrupts and did not turn them on for a long time, or because an\ninterrupt handler did not return. It will try to invoke the panic handler first and failing that\nreset the SoC.", - "id": "ESP_INT_WDT", - "name": "ESP_INT_WDT", - "range": null, - "title": "Interrupt watchdog", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "ESP_TASK_WDT_EN", - "help": null, - "id": "ESP_TASK_WDT_USE_ESP_TIMER", - "name": "ESP_TASK_WDT_USE_ESP_TIMER", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "ESP_TASK_WDT_INIT", - "help": "If this option is enabled, the Task Watchdog Timer will be configured to\ntrigger the panic handler when it times out. This can also be configured\nat run time (see Task Watchdog Timer API Reference)", - "id": "ESP_TASK_WDT_PANIC", - "name": "ESP_TASK_WDT_PANIC", - "range": null, - "title": "Invoke panic handler on Task Watchdog timeout", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_TASK_WDT_INIT", - "help": "Timeout period configuration for the Task Watchdog Timer in seconds.\nThis is also configurable at run time (see Task Watchdog Timer API Reference)", - "id": "ESP_TASK_WDT_TIMEOUT_S", - "name": "ESP_TASK_WDT_TIMEOUT_S", - "range": [ - 1, - 60 - ], - "title": "Task Watchdog timeout period (seconds)", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_TASK_WDT_INIT", - "help": "If this option is enabled, the Task Watchdog Timer will watch the CPU0\nIdle Task. Having the Task Watchdog watch the Idle Task allows for detection\nof CPU starvation as the Idle Task not being called is usually a symptom of\nCPU starvation. Starvation of the Idle Task is detrimental as FreeRTOS household\ntasks depend on the Idle Task getting some runtime every now and then.", - "id": "ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0", - "name": "ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0", - "range": null, - "title": "Watch CPU0 Idle Task", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_TASK_WDT_INIT && !FREERTOS_UNICORE", - "help": "If this option is enabled, the Task Watchdog Timer will wach the CPU1\nIdle Task.", - "id": "ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1", - "name": "ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1", - "range": null, - "title": "Watch CPU1 Idle Task", - "type": "bool" - } - ], - "depends_on": "ESP_TASK_WDT_EN", - "help": "Enabling this option will cause the Task Watchdog Timer to be initialized\nautomatically at startup.", - "id": "ESP_TASK_WDT_INIT", - "name": "ESP_TASK_WDT_INIT", - "range": null, - "title": "Initialize Task Watchdog Timer on startup", - "type": "bool" - } - ], - "depends_on": null, - "help": "The Task Watchdog Timer can be used to make sure individual tasks are still\nrunning. Enabling this option will enable the Task Watchdog Timer. It can be\neither initialized automatically at startup or initialized after startup\n(see Task Watchdog Timer API Reference)", - "id": "ESP_TASK_WDT_EN", - "name": "ESP_TASK_WDT_EN", - "range": null, - "title": "Enable Task Watchdog Timer", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "ESP_XT_WDT", - "help": "Timeout period configuration for the XTAL32K watchdog timer based on RTC_CLK.", - "id": "ESP_XT_WDT_TIMEOUT", - "name": "ESP_XT_WDT_TIMEOUT", - "range": null, - "title": "XTAL32K watchdog timeout period", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_XT_WDT", - "help": "Enable this to automatically switch to BACKUP32K_CLK as the source of RTC_SLOW_CLK when\nthe watchdog timer expires.", - "id": "ESP_XT_WDT_BACKUP_CLK_ENABLE", - "name": "ESP_XT_WDT_BACKUP_CLK_ENABLE", - "range": null, - "title": "Automatically switch to BACKUP32K_CLK when timer expires", - "type": "bool" - } - ], - "depends_on": "SOC_XT_WDT_SUPPORTED && (ESP_SYSTEM_RTC_EXT_OSC || ESP_SYSTEM_RTC_EXT_XTAL)", - "help": "This watchdog timer can detect oscillation failure of the XTAL32K_CLK. When such a failure\nis detected the hardware can be set up to automatically switch to BACKUP32K_CLK and generate\nan interrupt.", - "id": "ESP_XT_WDT", - "name": "ESP_XT_WDT", - "range": null, - "title": "Initialize XTAL32K watchdog timer on startup", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "If this option is disabled (default), the panic handler code is placed in flash not IRAM.\nThis means that if ESP-IDF crashes while flash cache is disabled, the panic handler will\nautomatically re-enable flash cache before running GDB Stub or Core Dump. This adds some minor\nrisk, if the flash cache status is also corrupted during the crash.\n\nIf this option is enabled, the panic handler code (including required UART functions) is placed\nin IRAM. This may be necessary to debug some complex issues with crashes while flash cache is\ndisabled (for example, when writing to SPI flash) or when flash cache is corrupted when an exception\nis triggered.", - "id": "ESP_PANIC_HANDLER_IRAM", - "name": "ESP_PANIC_HANDLER_IRAM", - "range": null, - "title": "Place panic handler code in IRAM", - "type": "bool" - }, - { - "children": [], - "depends_on": "!ESP32_TRAX && !ESP32S2_TRAX && !ESP32S3_TRAX", - "help": "Debug stubs are used by OpenOCD to execute pre-compiled onboard code\nwhich does some useful debugging stuff, e.g. GCOV data dump.", - "id": "ESP_DEBUG_STUBS_ENABLE", - "name": "ESP_DEBUG_STUBS_ENABLE", - "range": null, - "title": "OpenOCD debug stubs", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_DEBUG_HAVE_OCD_STUB_BINS", - "help": "OpenOCD uses stub code to access flash during programming or when inserting and removing\nSW flash breakpoints.\nTo execute stub code, OpenOCD allocates memory on the target device, backs up the existing memory,\nloads the stub binary, runs the binary, and then restores the original memory.\nThis process can be time-consuming, especially when using USB serial JTAG.\nBy enabling this option, 8K of memory in RAM will be preallocated with the stub code,\neliminating the need to back up and restore the memory region.", - "id": "ESP_DEBUG_INCLUDE_OCD_STUB_BINS", - "name": "ESP_DEBUG_INCLUDE_OCD_STUB_BINS", - "range": null, - "title": "Preload OpenOCD stub binaries to speed up debugging. 8K memory will be reserved", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "The FreeRTOS panic and unhandled exception handlers can detect a JTAG OCD debugger and\ninstead of panicking, have the debugger stop on the offending instruction.", - "id": "ESP_DEBUG_OCDAWARE", - "name": "ESP_DEBUG_OCDAWARE", - "range": null, - "title": "Make exception and panic handlers JTAG/OCD aware", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "IDF_TARGET_ESP32 && ", - "help": "Using level 5 interrupt for Interrupt Watchdog, IPC_ISR and other system checks.", - "id": "ESP_SYSTEM_CHECK_INT_LEVEL_5", - "name": "ESP_SYSTEM_CHECK_INT_LEVEL_5", - "range": null, - "title": "Level 5 interrupt", - "type": "bool" - }, - { - "children": [], - "depends_on": "!BTDM_CTRL_HLI && ", - "help": "Using level 4 interrupt for Interrupt Watchdog, IPC_ISR and other system checks.", - "id": "ESP_SYSTEM_CHECK_INT_LEVEL_4", - "name": "ESP_SYSTEM_CHECK_INT_LEVEL_4", - "range": null, - "title": "Level 4 interrupt", - "type": "bool" - } - ], - "depends_on": null, - "help": "Interrupt level to use for Interrupt Watchdog, IPC_ISR and other system checks.", - "id": "component-config-esp-system-settings-interrupt-level-to-use-for-interrupt-watchdog-and-other-system-checks", - "name": "ESP_SYSTEM_CHECK_INT_LEVEL", - "title": "Interrupt level to use for Interrupt Watchdog and other system checks", - "type": "choice" - }, - { - "children": [], - "depends_on": "SOC_ASSIST_DEBUG_SUPPORTED && !SECURE_ENABLE_TEE", - "help": "This config allows to trigger a panic interrupt when Stack Pointer register goes out of allocated stack\nmemory bounds.", - "id": "ESP_SYSTEM_HW_STACK_GUARD", - "name": "ESP_SYSTEM_HW_STACK_GUARD", - "range": null, - "title": "Hardware stack guard", - "type": "bool" - }, - { - "children": [], - "depends_on": "IDF_TARGET_ESP32C2 || IDF_TARGET_ESP32S3 || IDF_TARGET_ESP32C6 || IDF_TARGET_ESP32H2", - "help": "This configuration helps to address an BBPLL inaccurate issue when boot from certain bootloader version,\nwhich may increase about the boot-up time by about 200 us. Disable this when your bootloader is built with\nESP-IDF version v5.2 and above.", - "id": "ESP_SYSTEM_BBPLL_RECALIB", - "name": "ESP_SYSTEM_BBPLL_RECALIB", - "range": null, - "title": "Re-calibration BBPLL at startup", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_ASSIST_DEBUG_SUPPORTED", - "help": "This option will enable the PC recording function of assist_debug module. The PC value of the CPU will be\nrecorded to PC record register in assist_debug module in real time. When an exception occurs and the CPU\nis reset, this register will be kept, then we can use the recorded PC to debug the causes of the reset.", - "id": "ESP_SYSTEM_HW_PC_RECORD", - "name": "ESP_SYSTEM_HW_PC_RECORD", - "range": null, - "title": "Hardware PC recording", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-esp-system-settings", - "title": "ESP System Settings", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "!ESP_SYSTEM_SINGLE_CORE_MODE || APPTRACE_GCOV_ENABLE", - "help": null, - "id": "ESP_IPC_ENABLE", - "name": "ESP_IPC_ENABLE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Configure the IPC tasks stack size. An IPC task runs on each core (in dual core mode), and allows for\ncross-core function calls. See IPC documentation for more details. The default IPC stack size should be\nenough for most common simple use cases. However, users can increase/decrease the stack size to their\nneeds.", - "id": "ESP_IPC_TASK_STACK_SIZE", - "name": "ESP_IPC_TASK_STACK_SIZE", - "range": [ - 512, - 65536 - ], - "title": "Inter-Processor Call (IPC) task stack size", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_IPC_ENABLE", - "help": "If this option is not enabled then the IPC task will keep behavior same as prior to that of ESP-IDF v4.0,\nhence IPC task will run at (configMAX_PRIORITIES - 1) priority.", - "id": "ESP_IPC_USES_CALLERS_PRIORITY", - "name": "ESP_IPC_USES_CALLERS_PRIORITY", - "range": null, - "title": "IPC runs at caller's priority", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "The IPC ISR feature is similar to the IPC feature except that the callback function is executed in the\ncontext of a High Priority Interrupt. The IPC ISR feature is intended for low latency execution of simple\ncallbacks written in assembly on another CPU. Due to being run in a High Priority Interrupt, the assembly\ncallbacks must be written with particular restrictions (see \"IPC\" and \"High-Level Interrupt\" docs for more\ndetails).", - "id": "ESP_IPC_ISR_ENABLE", - "name": "ESP_IPC_ISR_ENABLE", - "range": null, - "title": null, - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-ipc-inter-processor-call-", - "title": "IPC (Inter-Processor Call)", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "!IDF_TARGET_ESP32P4", - "help": "Amazon has released an SMP version of the FreeRTOS Kernel which can be found via the following link:\nhttps://github.com/FreeRTOS/FreeRTOS-Kernel/tree/smp\n\nIDF has added an experimental port of this SMP kernel located in\ncomponents/freertos/FreeRTOS-Kernel-SMP. Enabling this option will cause IDF to use the Amazon SMP\nkernel. Note that THIS FEATURE IS UNDER ACTIVE DEVELOPMENT, users use this at their own risk.\n\nLeaving this option disabled will mean the IDF FreeRTOS kernel is used instead, which is located in:\ncomponents/freertos/FreeRTOS-Kernel. Both kernel versions are SMP capable, but differ in\ntheir implementation and features.", - "id": "FREERTOS_SMP", - "name": "FREERTOS_SMP", - "range": null, - "title": "Run the Amazon SMP FreeRTOS kernel instead (FEATURE UNDER DEVELOPMENT)", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "This version of FreeRTOS normally takes control of all cores of the CPU. Select this if you only want\nto start it on the first core. This is needed when e.g. another process needs complete control over the\nsecond core.", - "id": "FREERTOS_UNICORE", - "name": "FREERTOS_UNICORE", - "range": null, - "title": "Run FreeRTOS only on first core", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Sets the FreeRTOS tick interrupt frequency in Hz (see configTICK_RATE_HZ documentation for more\ndetails).", - "id": "FREERTOS_HZ", - "name": "FREERTOS_HZ", - "range": [ - 1, - 1000 - ], - "title": "configTICK_RATE_HZ", - "type": "int" - }, - { - "children": [], - "depends_on": "FREERTOS_UNICORE && !FREERTOS_SMP", - "help": "Enables port specific task selection method. This option can speed up the search of ready tasks\nwhen scheduling (see configUSE_PORT_OPTIMISED_TASK_SELECTION documentation for more details).", - "id": "FREERTOS_OPTIMIZED_SCHEDULER", - "name": "FREERTOS_OPTIMIZED_SCHEDULER", - "range": null, - "title": "configUSE_PORT_OPTIMISED_TASK_SELECTION", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": "Do not check for stack overflows (configCHECK_FOR_STACK_OVERFLOW = 0)", - "id": "FREERTOS_CHECK_STACKOVERFLOW_NONE", - "name": "FREERTOS_CHECK_STACKOVERFLOW_NONE", - "range": null, - "title": "No checking", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "Check for stack overflows on each context switch by checking if the stack pointer is in a valid\nrange. Quick but does not detect stack overflows that happened between context switches\n(configCHECK_FOR_STACK_OVERFLOW = 1)", - "id": "FREERTOS_CHECK_STACKOVERFLOW_PTRVAL", - "name": "FREERTOS_CHECK_STACKOVERFLOW_PTRVAL", - "range": null, - "title": "Check by stack pointer value (Method 1)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "Places some magic bytes at the end of the stack area and on each context switch, check if these\nbytes are still intact. More thorough than just checking the pointer, but also slightly slower.\n(configCHECK_FOR_STACK_OVERFLOW = 2)", - "id": "FREERTOS_CHECK_STACKOVERFLOW_CANARY", - "name": "FREERTOS_CHECK_STACKOVERFLOW_CANARY", - "range": null, - "title": "Check using canary bytes (Method 2)", - "type": "bool" - } - ], - "depends_on": null, - "help": "Enables FreeRTOS to check for stack overflows (see configCHECK_FOR_STACK_OVERFLOW documentation for\nmore details).\n\nNote: If users do not provide their own ``vApplicationStackOverflowHook()`` function, a default\nfunction will be provided by ESP-IDF.", - "id": "component-config-freertos-kernel-configcheck_for_stack_overflow", - "name": "FREERTOS_CHECK_STACKOVERFLOW", - "title": "configCHECK_FOR_STACK_OVERFLOW", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": "Set the number of thread local storage pointers in each task (see\nconfigNUM_THREAD_LOCAL_STORAGE_POINTERS documentation for more details).\n\nNote: In ESP-IDF, this value must be at least 1. Index 0 is reserved for use by the pthreads API\nthread-local-storage. Other indexes can be used for any desired purpose.", - "id": "FREERTOS_THREAD_LOCAL_STORAGE_POINTERS", - "name": "FREERTOS_THREAD_LOCAL_STORAGE_POINTERS", - "range": [ - 1, - 256 - ], - "title": "configNUM_THREAD_LOCAL_STORAGE_POINTERS", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Sets the idle task stack size in bytes (see configMINIMAL_STACK_SIZE documentation for more details).\n\nNote:\n\n- ESP-IDF specifies stack sizes in bytes instead of words.\n- The default size is enough for most use cases.\n- The stack size may need to be increased above the default if the app installs idle or thread local\n storage cleanup hooks that use a lot of stack memory.\n- Conversely, the stack size can be reduced to the minimum if non of the idle features are used.", - "id": "FREERTOS_IDLE_TASK_STACKSIZE", - "name": "FREERTOS_IDLE_TASK_STACKSIZE", - "range": [ - 768, - 32768 - ], - "title": "configMINIMAL_STACK_SIZE (Idle task stack size)", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Enables the idle task application hook (see configUSE_IDLE_HOOK documentation for more details).\n\nNote:\n\n- The application must provide the hook function ``void vApplicationIdleHook( void );``\n- ``vApplicationIdleHook()`` is called from FreeRTOS idle task(s)\n- The FreeRTOS idle hook is NOT the same as the ESP-IDF Idle Hook, but both can be enabled\n simultaneously.", - "id": "FREERTOS_USE_IDLE_HOOK", - "name": "FREERTOS_USE_IDLE_HOOK", - "range": null, - "title": "configUSE_IDLE_HOOK", - "type": "bool" - }, - { - "children": [], - "depends_on": "FREERTOS_SMP", - "help": "Enables the minimal idle task application hook (see configUSE_IDLE_HOOK documentation for more\ndetails).\n\nNote:\n\n- The application must provide the hook function ``void vApplicationPassiveIdleHook( void );``\n- ``vApplicationPassiveIdleHook()`` is called from FreeRTOS minimal idle task(s)", - "id": "FREERTOS_USE_PASSIVE_IDLE_HOOK", - "name": "FREERTOS_USE_PASSIVE_IDLE_HOOK", - "range": null, - "title": "Use FreeRTOS minimal idle hook", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enables the tick hook (see configUSE_TICK_HOOK documentation for more details).\n\nNote:\n\n- The application must provide the hook function ``void vApplicationTickHook( void );``\n- ``vApplicationTickHook()`` is called from FreeRTOS's tick handling function ``xTaskIncrementTick()``\n- The FreeRTOS tick hook is NOT the same as the ESP-IDF Tick Interrupt Hook, but both can be enabled\n simultaneously.", - "id": "FREERTOS_USE_TICK_HOOK", - "name": "FREERTOS_USE_TICK_HOOK", - "range": null, - "title": "configUSE_TICK_HOOK", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Sets the maximum number of characters for task names (see configMAX_TASK_NAME_LEN documentation for\nmore details).\n\nNote: For most uses, the default of 16 characters is sufficient.", - "id": "FREERTOS_MAX_TASK_NAME_LEN", - "name": "FREERTOS_MAX_TASK_NAME_LEN", - "range": [ - 1, - 256 - ], - "title": "configMAX_TASK_NAME_LEN", - "type": "int" - }, - { - "children": [], - "depends_on": "!IDF_TARGET_LINUX", - "help": "Enable backward compatibility with APIs prior to FreeRTOS v8.0.0. (see\nconfigENABLE_BACKWARD_COMPATIBILITY documentation for more details).", - "id": "FREERTOS_ENABLE_BACKWARD_COMPATIBILITY", - "name": "FREERTOS_ENABLE_BACKWARD_COMPATIBILITY", - "range": null, - "title": "configENABLE_BACKWARD_COMPATIBILITY", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "FREERTOS_USE_TIMERS", - "help": "Sets the timer task's name (see configTIMER_SERVICE_TASK_NAME documentation for more details).", - "id": "FREERTOS_TIMER_SERVICE_TASK_NAME", - "name": "FREERTOS_TIMER_SERVICE_TASK_NAME", - "range": null, - "title": "configTIMER_SERVICE_TASK_NAME", - "type": "string" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "FREERTOS_TIMER_TASK_AFFINITY_CPU0", - "name": "FREERTOS_TIMER_TASK_AFFINITY_CPU0", - "range": null, - "title": "CPU0", - "type": "bool" - }, - { - "children": [], - "depends_on": "!FREERTOS_UNICORE && ", - "help": null, - "id": "FREERTOS_TIMER_TASK_AFFINITY_CPU1", - "name": "FREERTOS_TIMER_TASK_AFFINITY_CPU1", - "range": null, - "title": "CPU1", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "FREERTOS_TIMER_TASK_NO_AFFINITY", - "name": "FREERTOS_TIMER_TASK_NO_AFFINITY", - "range": null, - "title": "No affinity", - "type": "bool" - } - ], - "depends_on": "FREERTOS_USE_TIMERS", - "help": "Sets the timer task's core affinity\n(see configTIMER_SERVICE_TASK_CORE_AFFINITY documentation for more details).", - "id": "component-config-freertos-kernel-configuse_timers-configtimer_service_task_core_affinity", - "name": "FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY", - "title": "configTIMER_SERVICE_TASK_CORE_AFFINITY", - "type": "choice" - }, - { - "children": [], - "depends_on": "FREERTOS_USE_TIMERS", - "help": null, - "id": "FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY", - "name": "FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY", - "range": null, - "title": null, - "type": "hex" - }, - { - "children": [], - "depends_on": "FREERTOS_USE_TIMERS", - "help": "Sets the timer task's priority (see configTIMER_TASK_PRIORITY documentation for more details).", - "id": "FREERTOS_TIMER_TASK_PRIORITY", - "name": "FREERTOS_TIMER_TASK_PRIORITY", - "range": [ - 1, - 25 - ], - "title": "configTIMER_TASK_PRIORITY", - "type": "int" - }, - { - "children": [], - "depends_on": "FREERTOS_USE_TIMERS", - "help": "Set the timer task's stack size (see configTIMER_TASK_STACK_DEPTH documentation for more details).", - "id": "FREERTOS_TIMER_TASK_STACK_DEPTH", - "name": "FREERTOS_TIMER_TASK_STACK_DEPTH", - "range": [ - 1536, - 32768 - ], - "title": "configTIMER_TASK_STACK_DEPTH", - "type": "int" - }, - { - "children": [], - "depends_on": "FREERTOS_USE_TIMERS", - "help": "Set the timer task's command queue length (see configTIMER_QUEUE_LENGTH documentation for more\ndetails).", - "id": "FREERTOS_TIMER_QUEUE_LENGTH", - "name": "FREERTOS_TIMER_QUEUE_LENGTH", - "range": [ - 5, - 20 - ], - "title": "configTIMER_QUEUE_LENGTH", - "type": "int" - } - ], - "depends_on": null, - "help": "Enable FreeRTOS Software Timers. Normally the timer task will only get pulled into the build\nand created if any software timer related functions are used. This is achieved through IDF\ndefining a weak empty function for xTimerCreateTimerTask, which should take effect if timers.c\nis not pulled into the build.\n\nIn certain special cases (if you use configUSE_TRACE_FACILITY=y and event groups) the linker will\nstill pull in the xTimerCreateTimerTask from timers.c even if the function that utilized it gets\ndiscarded due to not being used.\n\nIn these cases you can use this option to force the timer task to be disabled.", - "id": "FREERTOS_USE_TIMERS", - "name": "FREERTOS_USE_TIMERS", - "range": null, - "title": "configUSE_TIMERS", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Set the size of the queue registry (see configQUEUE_REGISTRY_SIZE documentation for more details).\n\nNote: A value of 0 will disable queue registry functionality", - "id": "FREERTOS_QUEUE_REGISTRY_SIZE", - "name": "FREERTOS_QUEUE_REGISTRY_SIZE", - "range": [ - 0, - 20 - ], - "title": "configQUEUE_REGISTRY_SIZE", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Set the size of the task notification array of each task. When increasing this value, keep in\nmind that this means additional memory for each and every task on the system.\nHowever, task notifications in general are more light weight compared to alternatives\nsuch as semaphores.", - "id": "FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES", - "name": "FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES", - "range": [ - 1, - 32 - ], - "title": "configTASK_NOTIFICATION_ARRAY_ENTRIES", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "FREERTOS_USE_TRACE_FACILITY", - "help": "Set configUSE_TRACE_FACILITY and configUSE_STATS_FORMATTING_FUNCTIONS to 1 to include the\n``vTaskList()`` and ``vTaskGetRunTimeStats()`` functions in the build (see\nconfigUSE_STATS_FORMATTING_FUNCTIONS documentation for more details).", - "id": "FREERTOS_USE_STATS_FORMATTING_FUNCTIONS", - "name": "FREERTOS_USE_STATS_FORMATTING_FUNCTIONS", - "range": null, - "title": "configUSE_STATS_FORMATTING_FUNCTIONS", - "type": "bool" - } - ], - "depends_on": null, - "help": "Enables additional structure members and functions to assist with execution visualization and tracing\n(see configUSE_TRACE_FACILITY documentation for more details).", - "id": "FREERTOS_USE_TRACE_FACILITY", - "name": "FREERTOS_USE_TRACE_FACILITY", - "range": null, - "title": "configUSE_TRACE_FACILITY", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enable list integrity checker\n(see configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES documentation for more details).", - "id": "FREERTOS_USE_LIST_DATA_INTEGRITY_CHECK_BYTES", - "name": "FREERTOS_USE_LIST_DATA_INTEGRITY_CHECK_BYTES", - "range": null, - "title": "configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES", - "type": "bool" - }, - { - "children": [], - "depends_on": "!FREERTOS_SMP && FREERTOS_USE_STATS_FORMATTING_FUNCTIONS", - "help": "If enabled, this will include an extra column when vTaskList is called to display the CoreID the task\nis pinned to (0,1) or -1 if not pinned.", - "id": "FREERTOS_VTASKLIST_INCLUDE_COREID", - "name": "FREERTOS_VTASKLIST_INCLUDE_COREID", - "range": null, - "title": "Enable display of xCoreID in vTaskList", - "type": "bool" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": "configRUN_TIME_COUNTER_TYPE is set to uint32_t", - "id": "FREERTOS_RUN_TIME_COUNTER_TYPE_U32", - "name": "FREERTOS_RUN_TIME_COUNTER_TYPE_U32", - "range": null, - "title": "uint32_t", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "configRUN_TIME_COUNTER_TYPE is set to uint64_t", - "id": "FREERTOS_RUN_TIME_COUNTER_TYPE_U64", - "name": "FREERTOS_RUN_TIME_COUNTER_TYPE_U64", - "range": null, - "title": "uint64_t", - "type": "bool" - } - ], - "depends_on": "FREERTOS_GENERATE_RUN_TIME_STATS && !FREERTOS_SMP", - "help": "Sets the data type used for the FreeRTOS run time stats. A larger data type can be used to reduce the\nfrequency of the counter overflowing.", - "id": "component-config-freertos-kernel-configgenerate_run_time_stats-configrun_time_counter_type", - "name": "FREERTOS_RUN_TIME_COUNTER_TYPE", - "title": "configRUN_TIME_COUNTER_TYPE", - "type": "choice" - } - ], - "depends_on": null, - "help": "Enables collection of run time statistics for each task (see configGENERATE_RUN_TIME_STATS\ndocumentation for more details).\n\nNote: The clock used for run time statistics can be configured in FREERTOS_RUN_TIME_STATS_CLK.", - "id": "FREERTOS_GENERATE_RUN_TIME_STATS", - "name": "FREERTOS_GENERATE_RUN_TIME_STATS", - "range": null, - "title": "configGENERATE_RUN_TIME_STATS", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "FREERTOS_USE_TICKLESS_IDLE", - "help": "FreeRTOS will enter light sleep mode if no tasks need to run for this number of ticks.\nYou can enable PM_PROFILING feature in esp_pm components and dump the sleep status with\nesp_pm_dump_locks, if the proportion of rejected sleeps is too high, please increase\nthis value to improve scheduling efficiency", - "id": "FREERTOS_IDLE_TIME_BEFORE_SLEEP", - "name": "FREERTOS_IDLE_TIME_BEFORE_SLEEP", - "range": null, - "title": "configEXPECTED_IDLE_TIME_BEFORE_SLEEP", - "type": "int" - } - ], - "depends_on": "PM_ENABLE", - "help": "If power management support is enabled, FreeRTOS will be able to put the system into light sleep mode\nwhen no tasks need to run for a number of ticks. This number can be set using\nFREERTOS_IDLE_TIME_BEFORE_SLEEP option. This feature is also known as \"automatic light sleep\".\n\nNote that timers created using esp_timer APIs may prevent the system from entering sleep mode, even\nwhen no tasks need to run. To skip unnecessary wake-up initialize a timer with the\n\"skip_unhandled_events\" option as true.\n\nIf disabled, automatic light sleep support will be disabled.", - "id": "FREERTOS_USE_TICKLESS_IDLE", - "name": "FREERTOS_USE_TICKLESS_IDLE", - "range": null, - "title": "configUSE_TICKLESS_IDLE", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enables task tagging functionality and its associated API (see configUSE_APPLICATION_TASK_TAG\ndocumentation for more details).", - "id": "FREERTOS_USE_APPLICATION_TASK_TAG", - "name": "FREERTOS_USE_APPLICATION_TASK_TAG", - "range": null, - "title": "configUSE_APPLICATION_TASK_TAG", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-freertos-kernel", - "title": "Kernel", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "COMPILER_OPTIMIZATION_DEBUG || ESP_COREDUMP_ENABLE || ESP_SYSTEM_PANIC_GDBSTUB || ESP_SYSTEM_GDBSTUB_RUNTIME", - "help": "If enabled, all FreeRTOS task functions will be enclosed in a wrapper function. If a task function\nmistakenly returns (i.e. does not delete), the call flow will return to the wrapper function. The\nwrapper function will then log an error and abort the application. This option is also required for GDB\nbacktraces and C++ exceptions to work correctly inside top-level task functions.", - "id": "FREERTOS_TASK_FUNCTION_WRAPPER", - "name": "FREERTOS_TASK_FUNCTION_WRAPPER", - "range": null, - "title": "Wrap task functions", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "FreeRTOS can check if a stack has overflown its bounds by checking either the value of the stack\npointer or by checking the integrity of canary bytes. (See FREERTOS_CHECK_STACKOVERFLOW for more\ninformation.) These checks only happen on a context switch, and the situation that caused the stack\noverflow may already be long gone by then. This option will use the last debug memory watchpoint to\nallow breaking into the debugger (or panic'ing) as soon as any of the last 32 bytes on the stack of a\ntask are overwritten. The side effect is that using gdb, you effectively have one hardware watchpoint\nless because the last one is overwritten as soon as a task switch happens.\n\nAnother consequence is that due to alignment requirements of the watchpoint, the usable stack size\ndecreases by up to 60 bytes. This is because the watchpoint region has to be aligned to its size and\nthe size for the stack watchpoint in IDF is 32 bytes.\n\nThis check only triggers if the stack overflow writes within 32 bytes near the end of the stack, rather\nthan overshooting further, so it is worth combining this approach with one of the other stack overflow\ncheck methods.\n\nWhen this watchpoint is hit, gdb will stop with a SIGTRAP message. When no JTAG OCD is attached,\nesp-idf will panic on an unhandled debug exception.", - "id": "FREERTOS_WATCHPOINT_END_OF_STACK", - "name": "FREERTOS_WATCHPOINT_END_OF_STACK", - "range": null, - "title": "Enable stack overflow debug watchpoint", - "type": "bool" - }, - { - "children": [], - "depends_on": "FREERTOS_THREAD_LOCAL_STORAGE_POINTERS > 0", - "help": "ESP-IDF provides users with the ability to free TLSP memory by registering TLSP deletion callbacks.\nThese callbacks are automatically called by FreeRTOS when a task is deleted. When this option is turned\non, the memory reserved for TLSPs in the TCB is doubled to make space for storing the deletion\ncallbacks. If the user does not wish to use TLSP deletion callbacks then this option could be turned\noff to save space in the TCB memory.", - "id": "FREERTOS_TLSP_DELETION_CALLBACKS", - "name": "FREERTOS_TLSP_DELETION_CALLBACKS", - "range": null, - "title": "Enable thread local storage pointers deletion callbacks", - "type": "bool" - }, - { - "children": [], - "depends_on": "!FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP", - "help": "Enable this option to make FreeRTOS call a user provided hook function right before it deletes a task\n(i.e., frees/releases a dynamically/statically allocated task's memory). This is useful if users want\nto know when a task is actually deleted (in case the task's deletion is delegated to the IDLE task).\n\nIf this config option is enabled, users must define a ``void vTaskPreDeletionHook( void * pxTCB )``\nhook function in their application.", - "id": "FREERTOS_TASK_PRE_DELETION_HOOK", - "name": "FREERTOS_TASK_PRE_DELETION_HOOK", - "range": null, - "title": "Enable task pre-deletion hook", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "THIS OPTION IS DEPRECATED. Use FREERTOS_TASK_PRE_DELETION_HOOK instead.\n\nEnable this option to make FreeRTOS call the static task clean up hook when a task is deleted.\n\nNote: Users will need to provide a ``void vPortCleanUpTCB ( void *pxTCB )`` callback", - "id": "FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP", - "name": "FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP", - "range": null, - "title": "Enable static task clean up hook (DEPRECATED)", - "type": "bool" - }, - { - "children": [], - "depends_on": "!FREERTOS_SMP", - "help": "If enabled, assert that when a mutex semaphore is given, the task giving the semaphore is the task\nwhich is currently holding the mutex.", - "id": "FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER", - "name": "FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER", - "range": null, - "title": "Check that mutex semaphore is given by owner task", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "The interrupt handlers have their own stack. The size of the stack can be defined here. Each processor\nhas its own stack, so the total size occupied will be twice this.", - "id": "FREERTOS_ISR_STACKSIZE", - "name": "FREERTOS_ISR_STACKSIZE", - "range": [ - 1536, - 32768 - ], - "title": "ISR stack size", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "If this option is enabled, interrupt stack frame will be modified to point to the code of the\ninterrupted task as its return address. This helps the debugger (or the panic handler) show a backtrace\nfrom the interrupt to the task which was interrupted. This also works for nested interrupts: higher\nlevel interrupt stack can be traced back to the lower level interrupt. This option adds 4 instructions\nto the interrupt dispatching code.", - "id": "FREERTOS_INTERRUPT_BACKTRACE", - "name": "FREERTOS_INTERRUPT_BACKTRACE", - "range": null, - "title": "Enable backtrace from interrupt to task context", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_CPU_HAS_FPU && (IDF_TARGET_ESP32 || IDF_TARGET_ESP32S3)", - "help": "When enabled, the usage of float type is allowed inside Level 1 ISRs. Note that usage of float types in\nhigher level interrupts is still not permitted.", - "id": "FREERTOS_FPU_IN_ISR", - "name": "FREERTOS_FPU_IN_ISR", - "range": null, - "title": "Use float in Level 1 ISR", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "FREERTOS_TICK_SUPPORT_CORETIMER", - "name": "FREERTOS_TICK_SUPPORT_CORETIMER", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "FREERTOS_TICK_SUPPORT_SYSTIMER", - "name": "FREERTOS_TICK_SUPPORT_SYSTIMER", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "FREERTOS_TICK_SUPPORT_CORETIMER && ", - "help": "Select this to use timer 0", - "id": "FREERTOS_CORETIMER_0", - "name": "FREERTOS_CORETIMER_0", - "range": null, - "title": "Timer 0 (int 6, level 1)", - "type": "bool" - }, - { - "children": [], - "depends_on": "FREERTOS_TICK_SUPPORT_CORETIMER && ", - "help": "Select this to use timer 1", - "id": "FREERTOS_CORETIMER_1", - "name": "FREERTOS_CORETIMER_1", - "range": null, - "title": "Timer 1 (int 15, level 3)", - "type": "bool" - }, - { - "children": [], - "depends_on": "FREERTOS_TICK_SUPPORT_SYSTIMER && ", - "help": "Select this to use systimer with the 1 interrupt priority.", - "id": "FREERTOS_CORETIMER_SYSTIMER_LVL1", - "name": "FREERTOS_CORETIMER_SYSTIMER_LVL1", - "range": null, - "title": "SYSTIMER 0 (level 1)", - "type": "bool" - }, - { - "children": [], - "depends_on": "FREERTOS_TICK_SUPPORT_SYSTIMER && ", - "help": "Select this to use systimer with the 3 interrupt priority.", - "id": "FREERTOS_CORETIMER_SYSTIMER_LVL3", - "name": "FREERTOS_CORETIMER_SYSTIMER_LVL3", - "range": null, - "title": "SYSTIMER 0 (level 3)", - "type": "bool" - } - ], - "depends_on": null, - "help": "FreeRTOS needs a timer with an associated interrupt to use as the main tick source to increase\ncounters, run timers and do pre-emptive multitasking with. There are multiple timers available to do\nthis, with different interrupt priorities.", - "id": "component-config-freertos-port-tick-timer-source-xtensa-only-", - "name": "FREERTOS_CORETIMER", - "title": "Tick timer source (Xtensa Only)", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "FREERTOS_SYSTICK_USES_SYSTIMER", - "name": "FREERTOS_SYSTICK_USES_SYSTIMER", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "FREERTOS_SYSTICK_USES_CCOUNT", - "name": "FREERTOS_SYSTICK_USES_CCOUNT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": "ESP Timer will be used as the clock source for FreeRTOS run time stats. The ESP Timer runs at a\nfrequency of 1MHz regardless of Dynamic Frequency Scaling. Therefore the ESP Timer will overflow in\napproximately 4290 seconds.", - "id": "FREERTOS_RUN_TIME_STATS_USING_ESP_TIMER", - "name": "FREERTOS_RUN_TIME_STATS_USING_ESP_TIMER", - "range": null, - "title": "Use ESP TIMER for run time stats", - "type": "bool" - }, - { - "children": [], - "depends_on": "FREERTOS_SYSTICK_USES_CCOUNT && ", - "help": "CPU Clock will be used as the clock source for the generation of run time stats. The CPU Clock has\na frequency dependent on ESP_DEFAULT_CPU_FREQ_MHZ and Dynamic Frequency Scaling (DFS). Therefore\nthe CPU Clock frequency can fluctuate between 80 to 240MHz. Run time stats generated using the CPU\nClock represents the number of CPU cycles each task is allocated and DOES NOT reflect the amount of\ntime each task runs for (as CPU clock frequency can change). If the CPU clock consistently runs at\nthe maximum frequency of 240MHz, it will overflow in approximately 17 seconds.", - "id": "FREERTOS_RUN_TIME_STATS_USING_CPU_CLK", - "name": "FREERTOS_RUN_TIME_STATS_USING_CPU_CLK", - "range": null, - "title": "Use CPU Clock for run time stats", - "type": "bool" - } - ], - "depends_on": "FREERTOS_GENERATE_RUN_TIME_STATS", - "help": "Choose the clock source for FreeRTOS run time stats. Options are CPU0's CPU Clock or the ESP Timer.\nBoth clock sources are 32 bits. The CPU Clock can run at a higher frequency hence provide a finer\nresolution but will overflow much quicker. Note that run time stats are only valid until the clock\nsource overflows.", - "id": "component-config-freertos-port-choose-the-clock-source-for-run-time-stats", - "name": "FREERTOS_RUN_TIME_STATS_CLK", - "title": "Choose the clock source for run time stats", - "type": "choice" - }, - { - "children": [ - { - "children": [], - "depends_on": "SPI_FLASH_AUTO_SUSPEND && FREERTOS_PLACE_FUNCTIONS_INTO_FLASH", - "help": "When enabled additional FreeRTOS functions which maybe called from an ISR context are\nalso placed in Flash, thus freeing up more IRAM.\nThis option is only applicable when the SPI_FLASH_AUTO_SUSPEND feature is supported.", - "id": "FREERTOS_PLACE_ISR_FUNCTIONS_INTO_FLASH", - "name": "FREERTOS_PLACE_ISR_FUNCTIONS_INTO_FLASH", - "range": null, - "title": "Place FreeRTOS functions called from ISR context into Flash", - "type": "bool" - } - ], - "depends_on": null, - "help": "When enabled the selected Non-ISR FreeRTOS functions will be placed into Flash memory instead of IRAM.\nThis saves up to 8KB of IRAM depending on which functions are used.", - "id": "FREERTOS_PLACE_FUNCTIONS_INTO_FLASH", - "name": "FREERTOS_PLACE_FUNCTIONS_INTO_FLASH", - "range": null, - "title": "Place FreeRTOS functions into Flash", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "If enabled, context of port*_CRITICAL calls (ISR or Non-ISR) would be checked to be in compliance with\nVanilla FreeRTOS. e.g Calling port*_CRITICAL from ISR context would cause assert failure", - "id": "FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE", - "name": "FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE", - "range": null, - "title": "Tests compliance with Vanilla FreeRTOS port*_CRITICAL calls", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-freertos-port", - "title": "Port", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "SPIRAM && FREERTOS_SUPPORT_STATIC_ALLOCATION", - "help": "Accessing memory in PSRAM has certain restrictions, so task stacks allocated by xTaskCreate\nare by default allocated from internal RAM.\n\nThis option allows for passing memory allocated from SPIRAM to be passed to xTaskCreateStatic.\nThis should only be used for tasks where the stack is never accessed while the cache is disabled.\n\nExtra notes for ESP32:\n\nBecause some bits of the ESP32 code environment cannot be recompiled with the cache workaround,\nnormally tasks cannot be safely run with their stack residing in external memory; for this reason\nxTaskCreate (and related task creation functions) always allocate stack in internal memory and\nxTaskCreateStatic will check if the memory passed to it is in internal memory.\nIf you have a task that needs a large amount of stack and does not call on ROM code in any way\n(no direct calls, but also no Bluetooth/WiFi), you can try enable this to\ncause xTaskCreateStatic to allow tasks stack in external memory.", - "id": "FREERTOS_TASK_CREATE_ALLOW_EXT_MEM", - "name": "FREERTOS_TASK_CREATE_ALLOW_EXT_MEM", - "range": null, - "title": "Allow external memory as an argument to xTaskCreateStatic (READ HELP)", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-freertos-extra", - "title": "Extra", - "type": "menu" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "FREERTOS_PORT", - "name": "FREERTOS_PORT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "FREERTOS_NO_AFFINITY", - "name": "FREERTOS_NO_AFFINITY", - "range": null, - "title": null, - "type": "hex" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "FREERTOS_SUPPORT_STATIC_ALLOCATION", - "name": "FREERTOS_SUPPORT_STATIC_ALLOCATION", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Hidden option, gets selected by CONFIG_ESP_DEBUG_OCDAWARE", - "id": "FREERTOS_DEBUG_OCDAWARE", - "name": "FREERTOS_DEBUG_OCDAWARE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "FREERTOS_ENABLE_TASK_SNAPSHOT", - "name": "FREERTOS_ENABLE_TASK_SNAPSHOT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "!ESP_PANIC_HANDLER_IRAM", - "help": null, - "id": "FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH", - "name": "FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "FREERTOS_NUMBER_OF_CORES", - "name": "FREERTOS_NUMBER_OF_CORES", - "range": [ - 1, - 2 - ], - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "FREERTOS_IN_IRAM", - "name": "FREERTOS_IN_IRAM", - "range": null, - "title": null, - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-freertos", - "title": "FreeRTOS", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "HAL_ASSERTION_EQUALS_SYSTEM", - "name": "HAL_ASSERTION_EQUALS_SYSTEM", - "range": null, - "title": "Same as system assertion level", - "type": "bool" - }, - { - "children": [], - "depends_on": "COMPILER_OPTIMIZATION_ASSERTION_LEVEL >= 0 && ", - "help": null, - "id": "HAL_ASSERTION_DISABLE", - "name": "HAL_ASSERTION_DISABLE", - "range": null, - "title": "Disabled", - "type": "bool" - }, - { - "children": [], - "depends_on": "COMPILER_OPTIMIZATION_ASSERTION_LEVEL >= 1 && ", - "help": null, - "id": "HAL_ASSERTION_SILENT", - "name": "HAL_ASSERTION_SILENT", - "range": null, - "title": "Silent", - "type": "bool" - }, - { - "children": [], - "depends_on": "COMPILER_OPTIMIZATION_ASSERTION_LEVEL >= 2 && ", - "help": null, - "id": "HAL_ASSERTION_ENABLE", - "name": "HAL_ASSERTION_ENABLE", - "range": null, - "title": "Enabled", - "type": "bool" - } - ], - "depends_on": null, - "help": "Set the assert behavior / level for HAL component.\nHAL component assert level can be set separately,\nbut the level can't exceed the system assertion level.\ne.g. If the system assertion is disabled, then the HAL\nassertion can't be enabled either. If the system assertion\nis enable, then the HAL assertion can still be disabled\nby this Kconfig option.", - "id": "component-config-hardware-abstraction-layer-hal-and-low-level-ll--default-hal-assertion-level", - "name": "HAL_DEFAULT_ASSERTION_LEVEL", - "title": "Default HAL assertion level", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "HAL_DEFAULT_ASSERTION_LEVEL", - "name": "HAL_DEFAULT_ASSERTION_LEVEL", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "HAL_LOG_LEVEL_NONE", - "name": "HAL_LOG_LEVEL_NONE", - "range": null, - "title": "No output", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "HAL_LOG_LEVEL_ERROR", - "name": "HAL_LOG_LEVEL_ERROR", - "range": null, - "title": "Error", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "HAL_LOG_LEVEL_WARN", - "name": "HAL_LOG_LEVEL_WARN", - "range": null, - "title": "Warning", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "HAL_LOG_LEVEL_INFO", - "name": "HAL_LOG_LEVEL_INFO", - "range": null, - "title": "Info", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "HAL_LOG_LEVEL_DEBUG", - "name": "HAL_LOG_LEVEL_DEBUG", - "range": null, - "title": "Debug", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "HAL_LOG_LEVEL_VERBOSE", - "name": "HAL_LOG_LEVEL_VERBOSE", - "range": null, - "title": "Verbose", - "type": "bool" - } - ], - "depends_on": "!LOG_DEFAULT_LEVEL_NONE && !LOG_DEFAULT_LEVEL_ERROR && !LOG_DEFAULT_LEVEL_WARN && !LOG_DEFAULT_LEVEL_INFO && !LOG_DEFAULT_LEVEL_DEBUG && !LOG_DEFAULT_LEVEL_VERBOSE", - "help": "Specify how much output to see in HAL logs.", - "id": "component-config-hardware-abstraction-layer-hal-and-low-level-ll--hal-layer-log-verbosity", - "name": "HAL_LOG_LEVEL", - "title": "HAL layer log verbosity", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "HAL_LOG_LEVEL", - "name": "HAL_LOG_LEVEL", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_ROM_HAS_HAL_SYSTIMER", - "help": "Enable this flag to use HAL functions from ROM instead of ESP-IDF.\n\nIf keeping this as \"n\" in your project, you will have less free IRAM.\nIf making this as \"y\" in your project, you will increase free IRAM,\nbut you will lose the possibility to debug this module, and some new\nfeatures will be added and bugs will be fixed in the IDF source\nbut cannot be synced to ROM.", - "id": "HAL_SYSTIMER_USE_ROM_IMPL", - "name": "HAL_SYSTIMER_USE_ROM_IMPL", - "range": null, - "title": "Use ROM implementation of SysTimer HAL driver", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_ROM_HAS_HAL_WDT", - "help": "Enable this flag to use HAL functions from ROM instead of ESP-IDF.\n\nIf keeping this as \"n\" in your project, you will have less free IRAM.\nIf making this as \"y\" in your project, you will increase free IRAM,\nbut you will lose the possibility to debug this module, and some new\nfeatures will be added and bugs will be fixed in the IDF source\nbut cannot be synced to ROM.", - "id": "HAL_WDT_USE_ROM_IMPL", - "name": "HAL_WDT_USE_ROM_IMPL", - "range": null, - "title": "Use ROM implementation of WDT HAL driver", - "type": "bool" - }, - { - "children": [], - "depends_on": "IDF_TARGET_ESP32H2", - "help": "Enable this option to apply the countermeasure for ECDSA signature operation\nThis countermeasure masks the real ECDSA sign operation\nunder dummy sign operations to add randomness in the generated power signature.\nThis countermeasure is only necessary for ESP32-H2 < v1.2.", - "id": "HAL_ECDSA_GEN_SIG_CM", - "name": "HAL_ECDSA_GEN_SIG_CM", - "range": null, - "title": "Enable countermeasure for ECDSA signature generation", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-hardware-abstraction-layer-hal-and-low-level-ll-", - "title": "Hardware Abstraction Layer (HAL) and Low Level (LL)", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": "Select this option to use Log V1. Recommended for projects with strict stack constraints\nor that prioritize performance over flexibility.", - "id": "LOG_VERSION_1", - "name": "LOG_VERSION_1", - "range": null, - "title": "V1", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "Select this option to use Log V2. Recommended for projects that require smaller binaries,\nruntime log formatting configuration, or advanced logging features.", - "id": "LOG_VERSION_2", - "name": "LOG_VERSION_2", - "range": null, - "title": "V2", - "type": "bool" - } - ], - "depends_on": null, - "help": "Select the log version to be used by the ESP log component.\n\n- \"V1\": This version integrates log formatting into the format string provided by the user.\n Logs are processed and formatted during compile time, leading to a larger binary file.\n Example: ESP_LOGI(\"boot\", \"chip revision: v%d.%d\", major, minor);\n Output: I (56) boot: chip revision: v3.0\n Note: Log strings are stored in Flash with added formatting characters.\n Format string on flash: \"[0;32mI (%lu) %s: chip revision: v%d.%d [0m\"\n\n- \"V2\": This version centralizes log formatting within the esp_log() function.\n User-supplied format strings are stored without added formatting, reducing binary size.\n Example: ESP_LOGI(\"boot\", \"chip revision: v%d.%d\", major, minor);\n Output: I (56) boot: chip revision: v3.0\n Note: This version supports runtime configuration of formatting and is more flexible,\n logging from constrained environments (ex.: ISR, Startup, Cache disabled).\n It may consumes a bit more stack and affect performance.\n Format string on flash: \"chip revision: v%d.%d\"\n\nUse V1 for minimal stack usage and simpler implementation.\nUse V2 for smaller binary sizes, more flexible log formatting, and advanced features like disabling\ncolors or timestamps.", - "id": "component-config-log-log-version", - "name": "LOG_VERSION", - "title": "Log version", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": "This configuration sets the log version number based on the chosen log version.", - "id": "LOG_VERSION", - "name": "LOG_VERSION", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "LOG_DEFAULT_LEVEL_NONE", - "name": "LOG_DEFAULT_LEVEL_NONE", - "range": null, - "title": "No output", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LOG_DEFAULT_LEVEL_ERROR", - "name": "LOG_DEFAULT_LEVEL_ERROR", - "range": null, - "title": "Error", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LOG_DEFAULT_LEVEL_WARN", - "name": "LOG_DEFAULT_LEVEL_WARN", - "range": null, - "title": "Warning", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LOG_DEFAULT_LEVEL_INFO", - "name": "LOG_DEFAULT_LEVEL_INFO", - "range": null, - "title": "Info", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LOG_DEFAULT_LEVEL_DEBUG", - "name": "LOG_DEFAULT_LEVEL_DEBUG", - "range": null, - "title": "Debug", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LOG_DEFAULT_LEVEL_VERBOSE", - "name": "LOG_DEFAULT_LEVEL_VERBOSE", - "range": null, - "title": "Verbose", - "type": "bool" - } - ], - "depends_on": null, - "help": "Specify how much output to see in logs by default.\nYou can set lower verbosity level at runtime using\nesp_log_level_set() function if LOG_DYNAMIC_LEVEL_CONTROL\nis enabled.\n\nBy default, this setting limits which log statements\nare compiled into the program. For example, selecting\n\"Warning\" would mean that changing log level to \"Debug\"\nat runtime will not be possible. To allow increasing log\nlevel above the default at runtime, see the next option.", - "id": "component-config-log-log-level-default-log-verbosity", - "name": "LOG_DEFAULT_LEVEL", - "title": "Default log verbosity", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "LOG_DEFAULT_LEVEL", - "name": "LOG_DEFAULT_LEVEL", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "LOG_MAXIMUM_EQUALS_DEFAULT", - "name": "LOG_MAXIMUM_EQUALS_DEFAULT", - "range": null, - "title": "Same as default", - "type": "bool" - }, - { - "children": [], - "depends_on": "LOG_DEFAULT_LEVEL < 1 && ", - "help": null, - "id": "LOG_MAXIMUM_LEVEL_ERROR", - "name": "LOG_MAXIMUM_LEVEL_ERROR", - "range": null, - "title": "Error", - "type": "bool" - }, - { - "children": [], - "depends_on": "LOG_DEFAULT_LEVEL < 2 && ", - "help": null, - "id": "LOG_MAXIMUM_LEVEL_WARN", - "name": "LOG_MAXIMUM_LEVEL_WARN", - "range": null, - "title": "Warning", - "type": "bool" - }, - { - "children": [], - "depends_on": "LOG_DEFAULT_LEVEL < 3 && ", - "help": null, - "id": "LOG_MAXIMUM_LEVEL_INFO", - "name": "LOG_MAXIMUM_LEVEL_INFO", - "range": null, - "title": "Info", - "type": "bool" - }, - { - "children": [], - "depends_on": "LOG_DEFAULT_LEVEL < 4 && ", - "help": null, - "id": "LOG_MAXIMUM_LEVEL_DEBUG", - "name": "LOG_MAXIMUM_LEVEL_DEBUG", - "range": null, - "title": "Debug", - "type": "bool" - }, - { - "children": [], - "depends_on": "LOG_DEFAULT_LEVEL < 5 && ", - "help": null, - "id": "LOG_MAXIMUM_LEVEL_VERBOSE", - "name": "LOG_MAXIMUM_LEVEL_VERBOSE", - "range": null, - "title": "Verbose", - "type": "bool" - } - ], - "depends_on": null, - "help": "This config option sets the highest log verbosity that it's possible to select\nat runtime by calling esp_log_level_set(). This level may be higher than\nthe default verbosity level which is set when the app starts up.\n\nThis can be used enable debugging output only at a critical point, for a particular\ntag, or to minimize startup time but then enable more logs once the firmware has\nloaded.\n\nNote that increasing the maximum available log level will increase the firmware\nbinary size.\n\nThis option only applies to logging from the app, the bootloader log level is\nfixed at compile time to the separate \"Bootloader log verbosity\" setting.", - "id": "component-config-log-log-level-maximum-log-verbosity", - "name": "LOG_MAXIMUM_LEVEL", - "title": "Maximum log verbosity", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "LOG_MAXIMUM_LEVEL", - "name": "LOG_MAXIMUM_LEVEL", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": "Enables an additional global \"master\" log level check that occurs before a log tag cache\nlookup. This is useful if you want to compile in a lot of logs that are selectable at\nruntime, but avoid the performance hit during periods where you don't want log output.\n\nExamples include remote log forwarding, or disabling logs during a time-critical or\nCPU-intensive section and re-enabling them later. Results in larger program size\ndepending on number of logs compiled in.\n\nIf enabled, defaults to LOG_DEFAULT_LEVEL and can be set using\nesp_log_set_level_master(). This check takes precedence over ESP_LOG_LEVEL_LOCAL.", - "id": "LOG_MASTER_LEVEL", - "name": "LOG_MASTER_LEVEL", - "range": null, - "title": "Enable global master log level", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enabling this option allows dynamic changes to the log level at runtime\n(using esp_log_level_set()), providing the ability to increase or decrease\nthe log level during program execution.\nIf disabled, the log level remains static once set at compile-time and calling\nesp_log_level_set() will have no effect.\nIf binary size is a critical consideration and dynamic log level changes are not needed,\nconsider disabling this option when LOG_TAG_LEVEL_IMPL_NONE=y to minimize program size.", - "id": "LOG_DYNAMIC_LEVEL_CONTROL", - "name": "LOG_DYNAMIC_LEVEL_CONTROL", - "range": null, - "title": "Enable dynamic log level changes at runtime", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": "This option disables the ability to set the log level per tag.\nThe ability to change the log level at runtime depends on LOG_DYNAMIC_LEVEL_CONTROL.\nIf LOG_DYNAMIC_LEVEL_CONTROL is disabled, then changing the log level at runtime\nusing `esp_log_level_set()` is not possible.\nThis implementation is suitable for highly constrained environments.", - "id": "LOG_TAG_LEVEL_IMPL_NONE", - "name": "LOG_TAG_LEVEL_IMPL_NONE", - "range": null, - "title": "None", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "Select this option to use the linked list-only implementation (no cache) for log level retrieval.\nThis approach searches the linked list of all tags for the log level, which may be slower\nfor a large number of tags but may have lower memory requirements than the CACHE approach.\nThe linked list approach compares the whole strings of log tags for finding the log level.", - "id": "LOG_TAG_LEVEL_IMPL_LINKED_LIST", - "name": "LOG_TAG_LEVEL_IMPL_LINKED_LIST", - "range": null, - "title": "Linked List", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "Select this option to use a hybrid mode: cache in combination with the linked list\nfor log tag level checks. This hybrid approach offers a balance between speed and memory usage.\n\nThe cache stores recently accessed log tags and their corresponding log levels, providing\nfaster lookups for frequently used tags. The cache approach compares the tag pointers, which is\nfaster than comparing the whole strings.\n\nFor less frequently used tags, the linked list is used to search for the log level, which may be\nslower for a large number of tags but has lower memory requirements compared to a full cache.\n\nThis hybrid approach aims to improve the efficiency of log level retrieval by combining the benefits\nof both cache and linked list implementations.", - "id": "LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST", - "name": "LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST", - "range": null, - "title": "Cache + Linked List", - "type": "bool" - } - ], - "depends_on": null, - "help": "Choose the per-tag log level implementation for the log library. This functionality is used\nto enable/disable logs for a particular tag at run time. Applicable only for\napplication logs (i.e., not bootloader logs).", - "id": "component-config-log-log-level-level-settings-method-of-tag-level-checks", - "name": "LOG_TAG_LEVEL_IMPL", - "title": "Method of tag level checks", - "type": "choice" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": "This option enables the use of a simple array-based cache implementation for storing and\nretrieving log tag levels. There is no additional code that reorders the cache for fast lookups.\nSuitable for projects where memory usage optimization is crucial and the simplicity of implementation\nis preferred.", - "id": "LOG_TAG_LEVEL_CACHE_ARRAY", - "name": "LOG_TAG_LEVEL_CACHE_ARRAY", - "range": null, - "title": "Array", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "This option enables the use of a binary min-heap-based cache implementation for efficient\nstorage and retrieval of log tag levels. It does automatically optimizing cache for fast lookups.\nSuitable for projects where speed of lookup is critical and memory usage can accommodate\nthe overhead of maintaining a binary min-heap structure.", - "id": "LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP", - "name": "LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP", - "range": null, - "title": "Binary Min-Heap", - "type": "bool" - } - ], - "depends_on": "LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST", - "help": "The cache stores recently accessed log tags (address of tag) and their corresponding log levels,\nproviding faster lookups for frequently used tags. Cache size can be configured using the\nLOG_TAG_LEVEL_IMPL_CACHE_SIZE option. The cache approach compares the tag pointers, which is\nfaster than comparing the whole strings.", - "id": "component-config-log-log-level-level-settings-cache-implementation", - "name": "LOG_TAG_LEVEL_CACHE_IMPL", - "title": "Cache implementation", - "type": "choice" - }, - { - "children": [], - "depends_on": "LOG_TAG_LEVEL_CACHE_ARRAY || LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP", - "help": "This option sets the size of the cache used for log tag entries. The cache stores recently accessed\nlog tags and their corresponding log levels, which helps improve the efficiency of log level retrieval.\nThe value must be a power of 2 minus 1 (e.g., 1, 3, 7, 15, 31, 63, 127, 255, ...)\nto ensure proper cache behavior. For LOG_TAG_LEVEL_CACHE_ARRAY option the value can be any,\nwithout restrictions.\n\nNote: A larger cache size can improve lookup performance for frequently used log tags but may consume\nmore memory. Conversely, a smaller cache size reduces memory usage but may lead to more frequent cache\nevictions for less frequently used log tags.", - "id": "LOG_TAG_LEVEL_IMPL_CACHE_SIZE", - "name": "LOG_TAG_LEVEL_IMPL_CACHE_SIZE", - "range": null, - "title": "Log Tag Cache Size", - "type": "int" - } - ], - "depends_on": null, - "id": "component-config-log-log-level-level-settings", - "title": "Level Settings", - "type": "menu" - } - ], - "depends_on": null, - "id": "component-config-log-log-level", - "title": "Log Level", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": "Enable ANSI terminal color codes. Logs (info, errors, warnings) will contain color codes.\nIn order to view these, your terminal program must support ANSI color codes.\n\nThis is disabled by default, as colors are added in IDF Monitor. If you want to use new lines\nin the messages or you are using a different terminal program, you may want to enable this option.", - "id": "LOG_COLORS", - "name": "LOG_COLORS", - "range": null, - "title": "Color", - "type": "bool" - }, - { - "children": [], - "depends_on": "LOG_VERSION_2", - "help": "Enables support for color codes in the esp_log() function. If CONFIG_LOG_COLORS is enabled, this option\nis always active. If CONFIG_LOG_COLORS is disabled, this option allows you to still handle color codes\nin specific files by defining ESP_LOG_COLOR_DISABLED as 0 before including esp_log.h.\n\nNote that enabling this option may slightly increase IRAM usage due to additional color handling\nfunctionality. It provides flexibility to manage color output even when CONFIG_LOG_COLORS is turned off.", - "id": "LOG_COLORS_SUPPORT", - "name": "LOG_COLORS_SUPPORT", - "range": null, - "title": "Allow enabling color output at run time", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "LOG_VERSION_2 && ", - "help": null, - "id": "LOG_TIMESTAMP_SOURCE_NONE", - "name": "LOG_TIMESTAMP_SOURCE_NONE", - "range": null, - "title": "None", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LOG_TIMESTAMP_SOURCE_RTOS", - "name": "LOG_TIMESTAMP_SOURCE_RTOS", - "range": null, - "title": "Milliseconds Since Boot", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LOG_TIMESTAMP_SOURCE_SYSTEM", - "name": "LOG_TIMESTAMP_SOURCE_SYSTEM", - "range": null, - "title": "System Time (HH:MM:SS.sss)", - "type": "bool" - }, - { - "children": [], - "depends_on": "LOG_VERSION_2 && ", - "help": null, - "id": "LOG_TIMESTAMP_SOURCE_SYSTEM_FULL", - "name": "LOG_TIMESTAMP_SOURCE_SYSTEM_FULL", - "range": null, - "title": "System Time (YY-MM-DD HH:MM:SS.sss)", - "type": "bool" - }, - { - "children": [], - "depends_on": "LOG_VERSION_2 && ", - "help": null, - "id": "LOG_TIMESTAMP_SOURCE_UNIX", - "name": "LOG_TIMESTAMP_SOURCE_UNIX", - "range": null, - "title": "Unix time in milliseconds", - "type": "bool" - } - ], - "depends_on": null, - "help": "Choose what sort of timestamp is displayed in the log output:\n\n- \"None\" - The log will only contain the actual log messages themselves\n without any time-related information. Avoiding timestamps can help conserve\n processing power and memory. It might useful when you\n perform log analysis or debugging, sometimes it's more straightforward\n to work with logs that lack timestamps, especially if the time of occurrence\n is not critical for understanding the issues.\n\n- \"Milliseconds since boot\" is calculated from the RTOS tick count multiplied\n by the tick period. This time will reset after a software reboot.\n e.g. (90000)\n\n- \"System time (HH:MM:SS.sss)\" is taken from POSIX time functions which use the chip's\n RTC and high resolution timers to maintain an accurate time. The system time is\n initialized to 0 on startup, it can be set with an SNTP sync, or with\n POSIX time functions. This time will not reset after a software reboot.\n e.g. (00:01:30.000)\n\n- \"System time (YY-MM-DD HH:MM:SS.sss)\" it is the same as the above,\n but also prints the date as well.\n\n- \"Unix time in milliseconds\" is the same as the two above,\n but in Unix time format and in milliseconds.\n e.g. (1718795571035).\n\n- NOTE: Currently this will not get used in logging from binary blobs\n (i.e WiFi & Bluetooth libraries), these will always print\n milliseconds since boot.", - "id": "component-config-log-format-timestamp", - "name": "LOG_TIMESTAMP_SOURCE", - "title": "Timestamp", - "type": "choice" - }, - { - "children": [], - "depends_on": "LOG_VERSION_2", - "help": "Enables support for timestamp in the esp_log() function.\nIf CONFIG_LOG_TIMESTAMP_SOURCE_NONE, this option allows you to still handle timestamp\nin specific files by defining ESP_LOG_TIMESTAMP_DISABLED as 0 before including esp_log.h.\n\nNote that enabling this option may slightly increase IRAM usage due to additional timestamp handling\nfunctionality. It provides flexibility to manage timestamp output even when\nCONFIG_LOG_TIMESTAMP_SOURCE_NONE.", - "id": "LOG_TIMESTAMP_SUPPORT", - "name": "LOG_TIMESTAMP_SUPPORT", - "range": null, - "title": "Allow enabling timestamp output at run time", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-log-format", - "title": "Format", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": null, - "id": "LOG_MODE_TEXT_EN", - "name": "LOG_MODE_TEXT_EN", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "LOG_MODE_BINARY_EN", - "name": "LOG_MODE_BINARY_EN", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": "Enables text-based logging, where log messages are stored in a human-readable format.\nThis mode is useful for development and debugging, as it allows logs to be easily\nread and interpreted without additional processing.", - "id": "LOG_MODE_TEXT", - "name": "LOG_MODE_TEXT", - "range": null, - "title": "Text Log Mode", - "type": "bool" - }, - { - "children": [], - "depends_on": "LOG_VERSION_2 && ", - "help": "Enables binary logging with host-side format string expansion. In this mode, the\nformat argument of ESP_LOGx, ESP_EARLY_LOG, and ESP_DRAM_LOG macros is stored in a\nNOLOAD section, not included in the final binary file. This reduces flash usage by\napproximately 10% - 35%. The esp_log() function uses the binary log handler to output\nmessages. Instead of sending the full log string, the chip transmits only the\naddresses of these strings (if present in the ELF file). If the format string\ncannot be found in the ELF file, the chip sends the entire string. The host-side\nmonitor tool, which has access to the ELF file, reconstructs the log message using\nthe format string.\nThis reduces firmware size by eliminating format strings from\nflash memory and removing the usage of printf-like functions, potentially freeing up\na few kilobytes of space. To further reduce firmware size, wrap string data with ESP_LOG_ATTR_STR.", - "id": "LOG_MODE_BINARY", - "name": "LOG_MODE_BINARY", - "range": null, - "title": "Binary Log Mode", - "type": "bool" - } - ], - "depends_on": null, - "help": null, - "id": "component-config-log-settings-log-mode", - "name": "LOG_MODE", - "title": "Log Mode", - "type": "choice" - } - ], - "depends_on": null, - "id": "component-config-log-settings", - "title": "Settings", - "type": "menu" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "LOG_IN_IRAM", - "name": "LOG_IN_IRAM", - "range": null, - "title": "Place logging functions in IRAM", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-log", - "title": "Log", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "LIBC_NEWLIB", - "name": "LIBC_NEWLIB", - "range": null, - "title": "NewLib", - "type": "bool" - }, - { - "children": [], - "depends_on": "!IDF_TOOLCHAIN_CLANG && IDF_EXPERIMENTAL_FEATURES && ", - "help": null, - "id": "LIBC_PICOLIBC", - "name": "LIBC_PICOLIBC", - "range": null, - "title": "Picolibc (EXPERIMENTAL)", - "type": "bool" - } - ], - "depends_on": null, - "help": null, - "id": "component-config-libc-libc-to-build-application-with", - "name": "LIBC", - "title": "LibC to build application with", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "LIBC_MISC_IN_IRAM", - "name": "LIBC_MISC_IN_IRAM", - "range": null, - "title": "Place misc libc functions (abort/assert/stdatomics) in IRAM", - "type": "bool" - }, - { - "children": [], - "depends_on": "LIBC_NEWLIB", - "help": "Enable this option to include be able to call the lock API from\ncode that runs while cache is disabled, e.g. IRAM interrupts.", - "id": "LIBC_LOCKS_PLACE_IN_IRAM", - "name": "LIBC_LOCKS_PLACE_IN_IRAM", - "range": null, - "title": "Place lock API in IRAM", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "LIBC_STDOUT_LINE_ENDING_CRLF", - "name": "LIBC_STDOUT_LINE_ENDING_CRLF", - "range": null, - "title": "CRLF", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LIBC_STDOUT_LINE_ENDING_LF", - "name": "LIBC_STDOUT_LINE_ENDING_LF", - "range": null, - "title": "LF", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LIBC_STDOUT_LINE_ENDING_CR", - "name": "LIBC_STDOUT_LINE_ENDING_CR", - "range": null, - "title": "CR", - "type": "bool" - } - ], - "depends_on": "VFS_SUPPORT_IO", - "help": "This option allows configuring the desired line endings sent to console\nwhen a newline ('\\n', LF) appears on stdout.\nThree options are possible:\n\nCRLF: whenever LF is encountered, prepend it with CR\n\nLF: no modification is applied, stdout is sent as is\n\nCR: each occurrence of LF is replaced with CR\n\nThis option doesn't affect behavior of the UART driver (drivers/uart.h).", - "id": "component-config-libc-line-ending-for-console-output", - "name": "LIBC_STDOUT_LINE_ENDING", - "title": "Line ending for console output", - "type": "choice" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "LIBC_STDIN_LINE_ENDING_CRLF", - "name": "LIBC_STDIN_LINE_ENDING_CRLF", - "range": null, - "title": "CRLF", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LIBC_STDIN_LINE_ENDING_LF", - "name": "LIBC_STDIN_LINE_ENDING_LF", - "range": null, - "title": "LF", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LIBC_STDIN_LINE_ENDING_CR", - "name": "LIBC_STDIN_LINE_ENDING_CR", - "range": null, - "title": "CR", - "type": "bool" - } - ], - "depends_on": "VFS_SUPPORT_IO", - "help": "This option allows configuring which input sequence on console produces\na newline ('\\n', LF) on stdin.\nThree options are possible:\n\nCRLF: CRLF is converted to LF\n\nLF: no modification is applied, input is sent to stdin as is\n\nCR: each occurrence of CR is replaced with LF\n\nThis option doesn't affect behavior of the UART driver (drivers/uart.h).", - "id": "component-config-libc-line-ending-for-console-input", - "name": "LIBC_STDIN_LINE_ENDING", - "title": "Line ending for console input", - "type": "choice" - }, - { - "children": [], - "depends_on": "LIBC_NEWLIB", - "help": "In most chips the ROM contains parts of newlib C library, including printf/scanf family\nof functions. These functions have been compiled with so-called \"nano\"\nformatting option. This option doesn't support 64-bit integer formats and C99\nfeatures, such as positional arguments.\n\nFor more details about \"nano\" formatting option, please see newlib readme file,\nsearch for '--enable-newlib-nano-formatted-io':\nhttps://sourceware.org/git/?p=newlib-cygwin.git;a=blob_plain;f=newlib/README;hb=HEAD\n\nIf this option is enabled and the ROM contains functions from newlib-nano, the build system\nwill use functions available in ROM, reducing the application binary size.\nFunctions available in ROM run faster than functions which run from flash. Functions available\nin ROM can also run when flash instruction cache is disabled.\n\nSome chips (e.g. ESP32-C6) has the full formatting versions of printf/scanf in ROM instead of\nthe nano versions and in this building with newlib nano might actually increase the size of\nthe binary. Which functions are present in ROM can be seen from ROM caps:\nESP_ROM_HAS_NEWLIB_NANO_FORMAT and ESP_ROM_HAS_NEWLIB_NORMAL_FORMAT.\n\nIf you need 64-bit integer formatting support or C99 features, keep this\noption disabled.", - "id": "LIBC_NEWLIB_NANO_FORMAT", - "name": "LIBC_NEWLIB_NANO_FORMAT", - "range": null, - "title": "Enable 'nano' formatting options for printf/scanf family", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "LIBC_TIME_SYSCALL_USE_RTC_HRT", - "name": "LIBC_TIME_SYSCALL_USE_RTC_HRT", - "range": null, - "title": "RTC and high-resolution timer", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LIBC_TIME_SYSCALL_USE_RTC", - "name": "LIBC_TIME_SYSCALL_USE_RTC", - "range": null, - "title": "RTC", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LIBC_TIME_SYSCALL_USE_HRT", - "name": "LIBC_TIME_SYSCALL_USE_HRT", - "range": null, - "title": "High-resolution timer", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LIBC_TIME_SYSCALL_USE_NONE", - "name": "LIBC_TIME_SYSCALL_USE_NONE", - "range": null, - "title": "None", - "type": "bool" - } - ], - "depends_on": null, - "help": "This setting defines which hardware timers are used to\nimplement 'gettimeofday' and 'time' functions in C library.\n\n- If both high-resolution (systimer for all targets except ESP32)\n and RTC timers are used, timekeeping will continue in deep sleep.\n Time will be reported at 1 microsecond resolution.\n This is the default, and the recommended option.\n- If only high-resolution timer (systimer) is used, gettimeofday will\n provide time at microsecond resolution.\n Time will not be preserved when going into deep sleep mode.\n- If only RTC timer is used, timekeeping will continue in\n deep sleep, but time will be measured at 6.(6) microsecond\n resolution. Also the gettimeofday function itself may take\n longer to run.\n- If no timers are used, gettimeofday and time functions\n return -1 and set errno to ENOSYS; they are defined as weak,\n so they could be overridden.\n If you want to customize gettimeofday() and other time functions,\n please choose this option and refer to the 'time.c' source file\n for the exact prototypes of these functions.\n\n- When RTC is used for timekeeping, two RTC_STORE registers are\n used to keep time in deep sleep mode.", - "id": "component-config-libc-timers-used-for-gettimeofday-function", - "name": "LIBC_TIME_SYSCALL", - "title": "Timers used for gettimeofday function", - "type": "choice" - }, - { - "children": [], - "depends_on": "ESP_ROM_HAS_SUBOPTIMAL_NEWLIB_ON_MISALIGNED_MEMORY", - "help": "Enables performance-optimized implementations of memory and string functions\nwhen handling misaligned memory.\n\nThis increases the image size by ~1000 bytes.\n\nOptimized functions include:\n - memcpy\n - memset\n - memmove\n - str[n]cpy\n - str[n]cmp", - "id": "LIBC_OPTIMIZED_MISALIGNED_ACCESS", - "name": "LIBC_OPTIMIZED_MISALIGNED_ACCESS", - "range": null, - "title": "Use performance-optimized memXXX/strXXX functions on misaligned memory access", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-libc", - "title": "LibC", - "type": "menu" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "STDATOMIC_S32C1I_SPIRAM_WORKAROUND", - "name": "STDATOMIC_S32C1I_SPIRAM_WORKAROUND", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "SOC_MMU_PAGE_SIZE_8KB_SUPPORTED", - "help": null, - "id": "MMU_PAGE_SIZE_8KB", - "name": "MMU_PAGE_SIZE_8KB", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "MMU_PAGE_SIZE_16KB", - "name": "MMU_PAGE_SIZE_16KB", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "MMU_PAGE_SIZE_32KB", - "name": "MMU_PAGE_SIZE_32KB", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "MMU_PAGE_SIZE_64KB", - "name": "MMU_PAGE_SIZE_64KB", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "MMU_PAGE_MODE", - "name": "MMU_PAGE_MODE", - "range": null, - "title": null, - "type": "string" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "MMU_PAGE_SIZE", - "name": "MMU_PAGE_SIZE", - "range": null, - "title": null, - "type": "hex" - } - ], - "depends_on": null, - "id": "component-config-soc-settings-mmu-config", - "title": "MMU Config", - "type": "menu" - } - ], - "depends_on": null, - "id": "component-config-soc-settings", - "title": "SoC Settings", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "When this option is selected, the patch will be enabled for XMC.\nFollow the recommended flow by XMC for better stability.\n\nDO NOT DISABLE UNLESS YOU KNOW WHAT YOU ARE DOING.", - "id": "SPI_FLASH_BROWNOUT_RESET_XMC", - "name": "SPI_FLASH_BROWNOUT_RESET_XMC", - "range": null, - "title": "Enable sending reset when brownout for XMC flash chips", - "type": "bool" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "When brownout happens during flash erase/write operations,\nsend reset command to stop the flash operations to improve stability.", - "id": "SPI_FLASH_BROWNOUT_RESET", - "name": "SPI_FLASH_BROWNOUT_RESET", - "range": null, - "title": null, - "type": "bool" - } - ], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "id": "component-config-main-flash-configuration-spi-flash-behavior-when-brownout", - "title": "SPI Flash behavior when brownout", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "This is a helper config for HPM. Invisible for users.", - "id": "SPI_FLASH_UNDER_HIGH_FREQ", - "name": "SPI_FLASH_UNDER_HIGH_FREQ", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "SPI_FLASH_HPM_ENA", - "name": "SPI_FLASH_HPM_ENA", - "range": null, - "title": "Enable", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "SPI_FLASH_HPM_AUTO", - "name": "SPI_FLASH_HPM_AUTO", - "range": null, - "title": "Auto (Not recommended)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "SPI_FLASH_HPM_DIS", - "name": "SPI_FLASH_HPM_DIS", - "range": null, - "title": "Disabled", - "type": "bool" - } - ], - "depends_on": "(IDF_TARGET_ESP32S3 || IDF_TARGET_ESP32P4) && !ESPTOOLPY_OCT_FLASH && !APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Whether the High Performance Mode of Flash is enabled. As an optional feature, user needs to manually\nenable this option as a confirmation. To be back-compatible with earlier IDF version, this option is\nautomatically enabled with warning when Flash running > 80Mhz.", - "id": "component-config-main-flash-configuration-optional-and-experimental-features-read-docs-first--high-performance-mode-read-docs-first-80mhz-", - "name": "SPI_FLASH_HPM", - "title": "High Performance Mode (READ DOCS FIRST, > 80MHz)", - "type": "choice" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "This option is invisible, and will be selected automatically\nwhen ``ESPTOOLPY_FLASHFREQ_120M`` is selected.", - "id": "SPI_FLASH_HPM_ON", - "name": "SPI_FLASH_HPM_ON", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "SPI_FLASH_HPM_DC_AUTO", - "name": "SPI_FLASH_HPM_DC_AUTO", - "range": null, - "title": "Auto (Enable when bootloader support enabled (BOOTLOADER_FLASH_DC_AWARE))", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "SPI_FLASH_HPM_DC_DISABLE", - "name": "SPI_FLASH_HPM_DC_DISABLE", - "range": null, - "title": "Disable (READ DOCS FIRST)", - "type": "bool" - } - ], - "depends_on": "SPI_FLASH_HPM_ON && !APP_BUILD_TYPE_PURE_RAM_APP", - "help": "This feature needs your bootloader to be compiled DC-aware (BOOTLOADER_FLASH_DC_AWARE=y). Otherwise the\nchip will not be able to boot after a reset.", - "id": "component-config-main-flash-configuration-optional-and-experimental-features-read-docs-first--support-hpm-using-dc-read-docs-first-", - "name": "SPI_FLASH_HPM_DC", - "title": "Support HPM using DC (READ DOCS FIRST)", - "type": "choice" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "This is a helper config for HPM. Whether HPM-DC is enabled is also determined by bootloader.\nInvisible for users.", - "id": "SPI_FLASH_HPM_DC_ON", - "name": "SPI_FLASH_HPM_DC_ON", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND && !SPI_FLASH_ROM_IMPL && !APP_BUILD_TYPE_PURE_RAM_APP", - "help": "This option is disabled by default because it is supported only\nfor specific flash chips and for specific Espressif chips.\nTo evaluate if you can use this feature refer to\n`Optional Features for Flash` > `Auto Suspend & Resume` of the `ESP-IDF Programming Guide`.\n\nCAUTION: If you want to OTA to an app with this feature turned on, please make\nsure the bootloader has the support for it. (later than IDF v4.3)\n\nIf you are using an official Espressif module, please contact Espressif Business support\nto check if the module has the flash that support this feature installed.\nAlso refer to `Concurrency Constraints for Flash on SPI1` > `Flash Auto Suspend Feature`\nbefore enabling this option.", - "id": "SPI_FLASH_AUTO_SUSPEND", - "name": "SPI_FLASH_AUTO_SUSPEND", - "range": null, - "title": "Auto suspend long erase/write operations (READ DOCS FIRST)", - "type": "bool" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "This config is used for setting Tsus parameter. Tsus means CS# high to next command after\nsuspend. You can refer to the chapter of AC CHARACTERISTICS of flash datasheet.", - "id": "SPI_FLASH_SUSPEND_TSUS_VAL_US", - "name": "SPI_FLASH_SUSPEND_TSUS_VAL_US", - "range": [ - 20, - 100 - ], - "title": "SPI flash tSUS value (refer to chapter AC CHARACTERISTICS)", - "type": "int" - }, - { - "children": [], - "depends_on": "SOC_SPI_MEM_SUPPORT_TSUS_TRES_SEPERATE_CTR && !APP_BUILD_TYPE_PURE_RAM_APP", - "help": "This config is used for setting Trs parameter. Trs means CS Latency Between Resume And Next Suspend.\nYou can refer to the chapter of AC CHARACTERISTICS of flash datasheet.\nFor high-performance scenarios, some flash chips allow this set value to be smaller than the\ngiven value in the datasheet without causing errors in the flash state machine.\nWhen you have any related needs, please contact espressif business team.", - "id": "SPI_FLASH_SUSPEND_TRS_VAL_US", - "name": "SPI_FLASH_SUSPEND_TRS_VAL_US", - "range": null, - "title": "SPI flash tRS value (refer to chapter AC CHARACTERISTICS)", - "type": "int" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "XMC-C series is regarded as not qualified for the Suspend feature, since its specification\nhas a tRS >= 1ms restriction. We strongly do not suggest using it for the Suspend feature.\nHowever, if your product in field has enabled this feature, you may still enable this\nconfig option to keep the legacy behavior.\n\nFor new users, DO NOT enable this config.", - "id": "SPI_FLASH_FORCE_ENABLE_XMC_C_SUSPEND", - "name": "SPI_FLASH_FORCE_ENABLE_XMC_C_SUSPEND", - "range": null, - "title": "Enable XMC-C series flash chip suspend feature anyway", - "type": "bool" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Flash suspend has a defect on ESP32C6 until v0.2 and ESP32H2 until v1.2. If you already use suspend\nfeature for mass production, you can enable this for bypassing check after knowing the risk.\nBut if you are new users, or developing new applications, or producing a new batch,\nplease DO NOT enable this config option.\n\nFor more information, please refer to errata or connect to Espressif business support team.", - "id": "SPI_FLASH_FORCE_ENABLE_C6_H2_SUSPEND", - "name": "SPI_FLASH_FORCE_ENABLE_C6_H2_SUSPEND", - "range": null, - "title": "Enable chip suspend feature on c6 or h2 anyway (DO NOT ENABLE FOR NEW USERS OR APPLICATIONS)", - "type": "bool" - }, - { - "children": [], - "depends_on": "SPI_FLASH_AUTO_SUSPEND && FREERTOS_UNICORE && IDF_EXPERIMENTAL_FEATURES && !APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Enable this config will disable auto-resume from hardware. Thus the software will resume the chip\nafter any higher priority task/interrupt which suspend the chip. The benefit is that the suspend-resume\nwill not disturb the higher priority task and interrupt.\n\nThis currently is only valid on single core chip.", - "id": "SPI_FLASH_SOFTWARE_RESUME", - "name": "SPI_FLASH_SOFTWARE_RESUME", - "range": null, - "title": "Resume flash program/erase form suspend state by software control", - "type": "bool" - }, - { - "children": [], - "depends_on": "SPI_FLASH_AUTO_SUSPEND && FREERTOS_UNICORE && !APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Disable freertos task scheduler when CONFIG_SPI_FLASH_AUTO_SUSPEND is enabled.\nThus only interrupt can trigger a suspend. When SPI_FLASH_AUTO_SUSPEND is enabled,\ndefault behavior is not disable the task scheduler, so both interrupt and high priority\ntask can suspend the erase/program operation. When this option is enabled, task\nscheduler is disabled, only interrupt can suspend erase/program operation.", - "id": "SPI_FLASH_DISABLE_SCHEDULER_IN_SUSPEND", - "name": "SPI_FLASH_DISABLE_SCHEDULER_IN_SUSPEND", - "range": null, - "title": "Disable task scheduler when suspend is enabled when SPI1 operation is ongoing", - "type": "bool" - }, - { - "children": [], - "depends_on": "SPI_FLASH_AUTO_SUSPEND && !APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Majority flash supports to use flash register to judge if flash suspend status is\ndone or not. So enable this config, the behavior would use flash register WIP bit to judge\nwhether suspend is valid instead of waiting for a specific long time, which can save a\nlot of time and benefit for performance improvement.", - "id": "SPI_FLASH_AUTO_CHECK_SUSPEND_STATUS", - "name": "SPI_FLASH_AUTO_CHECK_SUSPEND_STATUS", - "range": null, - "title": "Check flash status automatically after flash suspend", - "type": "bool" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "When disabled, certain functions in `spi_flash` component will be placed into Flash memory\ninstead of IRAM. Disabling this option will save almost 10KB of IRAM depending on which\nfunctions are used.\n\nWhen enabled, these functions will be placed in internal RAM, with better performance.\n\nFor more information please refer to programming guide.", - "id": "SPI_FLASH_PLACE_FUNCTIONS_IN_IRAM", - "name": "SPI_FLASH_PLACE_FUNCTIONS_IN_IRAM", - "range": null, - "title": "Place spi_flash operation functions into IRAM", - "type": "bool" - } - ], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "id": "component-config-main-flash-configuration-optional-and-experimental-features-read-docs-first-", - "title": "Optional and Experimental Features (READ DOCS FIRST)", - "type": "menu" - } - ], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "id": "component-config-main-flash-configuration", - "title": "Main Flash configuration", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "SPI_FLASH_VERIFY_WRITE && !APP_BUILD_TYPE_PURE_RAM_APP", - "help": "If this option is enabled, if SPI flash write verification fails then a log error line\nwill be written with the address, expected & actual values. This can be useful when\ndebugging hardware SPI flash problems.", - "id": "SPI_FLASH_LOG_FAILED_WRITE", - "name": "SPI_FLASH_LOG_FAILED_WRITE", - "range": null, - "title": "Log errors if verification fails", - "type": "bool" - }, - { - "children": [], - "depends_on": "SPI_FLASH_VERIFY_WRITE && !APP_BUILD_TYPE_PURE_RAM_APP", - "help": "If this option is enabled, any SPI flash write which tries to set zero bits in the flash to\nones will log a warning. Such writes will not result in the requested data appearing identically\nin flash once written, as SPI NOR flash can only set bits to one when an entire sector is erased.\nAfter erasing, individual bits can only be written from one to zero.\n\nNote that some software (such as SPIFFS) which is aware of SPI NOR flash may write one bits as an\noptimisation, relying on the data in flash becoming a bitwise AND of the new data and any existing data.\nSuch software will log spurious warnings if this option is enabled.", - "id": "SPI_FLASH_WARN_SETTING_ZERO_TO_ONE", - "name": "SPI_FLASH_WARN_SETTING_ZERO_TO_ONE", - "range": null, - "title": "Log warning if writing zero bits to ones", - "type": "bool" - } - ], - "depends_on": "!SPI_FLASH_ROM_IMPL && !APP_BUILD_TYPE_PURE_RAM_APP", - "help": "If this option is enabled, any time SPI flash is written then the data will be read\nback and verified. This can catch hardware problems with SPI flash, or flash which\nwas not erased before verification.\n\nThis will slightly influence the write performance.", - "id": "SPI_FLASH_VERIFY_WRITE", - "name": "SPI_FLASH_VERIFY_WRITE", - "range": null, - "title": "Verify SPI flash writes", - "type": "bool" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "This option enables the following APIs:\n\n- esp_flash_reset_counters\n- esp_flash_dump_counters\n- esp_flash_get_counters\n\nThese APIs may be used to collect performance data for spi_flash APIs\nand to help understand behaviour of libraries which use SPI flash.", - "id": "SPI_FLASH_ENABLE_COUNTERS", - "name": "SPI_FLASH_ENABLE_COUNTERS", - "range": null, - "title": "Enable operation counters", - "type": "bool" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Enable this flag to use patched versions of SPI flash ROM driver functions.\nThis option should be enabled, if any one of the following is true: (1) need to write\nto flash on ESP32-D2WD; (2) main SPI flash is connected to non-default pins; (3) main\nSPI flash chip is manufactured by ISSI.", - "id": "SPI_FLASH_ROM_DRIVER_PATCH", - "name": "SPI_FLASH_ROM_DRIVER_PATCH", - "range": null, - "title": "Enable SPI flash ROM driver patched functions", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_ROM_HAS_SPI_FLASH && !ESPTOOLPY_OCT_FLASH && !APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Enable this flag to use new SPI flash driver functions from ROM instead of ESP-IDF.\n\nIf keeping this as \"n\" in your project, you will have less free IRAM.\nBut you can use all of our flash features.\n\nIf making this as \"y\" in your project, you will increase free IRAM.\nBut you may miss out on some flash features and support for new flash chips.\n\nCurrently the ROM cannot support the following features:\n\n- SPI_FLASH_AUTO_SUSPEND (C3, S3)", - "id": "SPI_FLASH_ROM_IMPL", - "name": "SPI_FLASH_ROM_IMPL", - "range": null, - "title": "Use esp_flash implementation in ROM", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "SPI_FLASH_DANGEROUS_WRITE_ABORTS", - "name": "SPI_FLASH_DANGEROUS_WRITE_ABORTS", - "range": null, - "title": "Aborts", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "SPI_FLASH_DANGEROUS_WRITE_FAILS", - "name": "SPI_FLASH_DANGEROUS_WRITE_FAILS", - "range": null, - "title": "Fails", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "SPI_FLASH_DANGEROUS_WRITE_ALLOWED", - "name": "SPI_FLASH_DANGEROUS_WRITE_ALLOWED", - "range": null, - "title": "Allowed", - "type": "bool" - } - ], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "SPI flash APIs can optionally abort or return a failure code\nif erasing or writing addresses that fall at the beginning\nof flash (covering the bootloader and partition table) or that\noverlap the app partition that contains the running app.\n\nIt is not recommended to ever write to these regions from an IDF app,\nand this check prevents logic errors or corrupted firmware memory from\ndamaging these regions.\n\nNote that this feature *does not* check calls to the esp_rom_xxx SPI flash\nROM functions. These functions should not be called directly from IDF\napplications.", - "id": "component-config-spi-flash-driver-writing-to-dangerous-flash-regions", - "name": "SPI_FLASH_DANGEROUS_WRITE", - "title": "Writing to dangerous flash regions", - "type": "choice" - }, - { - "children": [], - "depends_on": "IDF_TARGET_ESP32 && !APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Each SPI bus needs a lock for arbitration among devices. This allows multiple\ndevices on a same bus, but may reduce the speed of esp_flash driver access to the\nmain flash chip.\n\nIf you only need to use esp_flash driver to access the main flash chip, disable\nthis option, and the lock will be bypassed on SPI1 bus. Otherwise if extra devices\nare needed to attach to SPI1 bus, enable this option.", - "id": "SPI_FLASH_SHARE_SPI1_BUS", - "name": "SPI_FLASH_SHARE_SPI1_BUS", - "range": null, - "title": "Support other devices attached to SPI1 bus", - "type": "bool" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Some flash chips can have very high \"max\" erase times, especially for block erase (32KB or 64KB).\nThis option allows to bypass \"block erase\" and always do sector erase commands.\nThis will be much slower overall in most cases, but improves latency for other code to run.", - "id": "SPI_FLASH_BYPASS_BLOCK_ERASE", - "name": "SPI_FLASH_BYPASS_BLOCK_ERASE", - "range": null, - "title": "Bypass a block erase and always do sector erase", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "SPI_FLASH_YIELD_DURING_ERASE && !APP_BUILD_TYPE_PURE_RAM_APP", - "help": "If a duration of one erase command is large\nthen it will yield CPUs after finishing a current command.", - "id": "SPI_FLASH_ERASE_YIELD_DURATION_MS", - "name": "SPI_FLASH_ERASE_YIELD_DURATION_MS", - "range": null, - "title": "Duration of erasing to yield CPUs (ms)", - "type": "int" - }, - { - "children": [], - "depends_on": "SPI_FLASH_YIELD_DURING_ERASE && !APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Defines how many ticks will be before returning to continue a erasing.", - "id": "SPI_FLASH_ERASE_YIELD_TICKS", - "name": "SPI_FLASH_ERASE_YIELD_TICKS", - "range": null, - "title": "CPU release time (tick) for an erase operation", - "type": "int" - } - ], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "This allows to yield the CPUs between erase commands.\nPrevents starvation of other tasks.\nPlease use this configuration together with ``SPI_FLASH_ERASE_YIELD_DURATION_MS`` and\n``SPI_FLASH_ERASE_YIELD_TICKS`` after carefully checking flash datasheet to avoid a\nwatchdog timeout.\nFor more information, please check `SPI Flash API` reference documentation\nunder section `OS Function`.", - "id": "SPI_FLASH_YIELD_DURING_ERASE", - "name": "SPI_FLASH_YIELD_DURING_ERASE", - "range": null, - "title": "Enables yield operation during flash erase", - "type": "bool" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Flash write is broken down in terms of multiple (smaller) write operations.\nThis configuration options helps to set individual write chunk size, smaller\nvalue here ensures that cache (and non-IRAM resident interrupts) remains\ndisabled for shorter duration.", - "id": "SPI_FLASH_WRITE_CHUNK_SIZE", - "name": "SPI_FLASH_WRITE_CHUNK_SIZE", - "range": [ - 256, - 8192 - ], - "title": "Flash write chunk size", - "type": "int" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "SPI Flash driver uses the flash size configured in bootloader header by default.\nEnable this option to override flash size with latest ESPTOOLPY_FLASHSIZE value from\nthe app header if the size in the bootloader header is incorrect.", - "id": "SPI_FLASH_SIZE_OVERRIDE", - "name": "SPI_FLASH_SIZE_OVERRIDE", - "range": null, - "title": "Override flash size in bootloader header by ESPTOOLPY_FLASHSIZE", - "type": "bool" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "This option is helpful if you are using a flash chip whose timeout is quite large or unpredictable.", - "id": "SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED", - "name": "SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED", - "range": null, - "title": "Flash timeout checkout disabled", - "type": "bool" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "This option allows the chip driver list to be customized, instead of using the default list provided by\nESP-IDF.\n\nWhen this option is enabled, the default list is no longer compiled or linked. Instead, the\n`default_registered_chips` structure must be provided by the user.\n\nSee example: custom_chip_driver under examples/storage for more details.", - "id": "SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST", - "name": "SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST", - "range": null, - "title": "Override default chip driver list", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": null, - "id": "SPI_FLASH_VENDOR_XMC_SUPPORT_ENABLED", - "name": "SPI_FLASH_VENDOR_XMC_SUPPORT_ENABLED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": null, - "id": "SPI_FLASH_VENDOR_GD_SUPPORT_ENABLED", - "name": "SPI_FLASH_VENDOR_GD_SUPPORT_ENABLED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Enable this to support auto detection of ISSI chips if chip vendor not directly\ngiven by ``chip_drv`` member of the chip struct. This adds support for variant\nchips, however will extend detecting time.", - "id": "SPI_FLASH_SUPPORT_ISSI_CHIP", - "name": "SPI_FLASH_SUPPORT_ISSI_CHIP", - "range": null, - "title": "ISSI", - "type": "bool" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Enable this to support auto detection of MXIC chips if chip vendor not directly\ngiven by ``chip_drv`` member of the chip struct. This adds support for variant\nchips, however will extend detecting time.", - "id": "SPI_FLASH_SUPPORT_MXIC_CHIP", - "name": "SPI_FLASH_SUPPORT_MXIC_CHIP", - "range": null, - "title": "MXIC", - "type": "bool" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Enable this to support auto detection of GD (GigaDevice) chips if chip vendor not\ndirectly given by ``chip_drv`` member of the chip struct. If you are using Wrover\nmodules, please don't disable this, otherwise your flash may not work in 4-bit\nmode.\n\nThis adds support for variant chips, however will extend detecting time and image\nsize. Note that the default chip driver supports the GD chips with product ID\n60H.", - "id": "SPI_FLASH_SUPPORT_GD_CHIP", - "name": "SPI_FLASH_SUPPORT_GD_CHIP", - "range": null, - "title": "GigaDevice", - "type": "bool" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Enable this to support auto detection of Winbond chips if chip vendor not directly\ngiven by ``chip_drv`` member of the chip struct. This adds support for variant\nchips, however will extend detecting time.", - "id": "SPI_FLASH_SUPPORT_WINBOND_CHIP", - "name": "SPI_FLASH_SUPPORT_WINBOND_CHIP", - "range": null, - "title": "Winbond", - "type": "bool" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Enable this to support auto detection of BOYA chips if chip vendor not directly\ngiven by ``chip_drv`` member of the chip struct. This adds support for variant\nchips, however will extend detecting time.", - "id": "SPI_FLASH_SUPPORT_BOYA_CHIP", - "name": "SPI_FLASH_SUPPORT_BOYA_CHIP", - "range": null, - "title": "BOYA", - "type": "bool" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Enable this to support auto detection of TH chips if chip vendor not directly\ngiven by ``chip_drv`` member of the chip struct. This adds support for variant\nchips, however will extend detecting time.", - "id": "SPI_FLASH_SUPPORT_TH_CHIP", - "name": "SPI_FLASH_SUPPORT_TH_CHIP", - "range": null, - "title": "TH", - "type": "bool" - }, - { - "children": [], - "depends_on": "IDF_TARGET_ESP32S3 && !APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Enable this to support auto detection of Octal MXIC chips if chip vendor not directly\ngiven by ``chip_drv`` member of the chip struct. This adds support for variant\nchips, however will extend detecting time.", - "id": "SPI_FLASH_SUPPORT_MXIC_OPI_CHIP", - "name": "SPI_FLASH_SUPPORT_MXIC_OPI_CHIP", - "range": null, - "title": "mxic (opi)", - "type": "bool" - } - ], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "id": "component-config-spi-flash-driver-auto-detect-flash-chips", - "title": "Auto-detect flash chips", - "type": "menu" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "This option enables flash read/write operations to encrypted partition/s. This option\nis kept enabled irrespective of state of flash encryption feature. However, in case\napplication is not using flash encryption feature and is in need of some additional\nmemory from IRAM region (~1KB) then this config can be disabled.", - "id": "SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE", - "name": "SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE", - "range": null, - "title": "Enable encrypted partition read/write operations", - "type": "bool" - } - ], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "id": "component-config-spi-flash-driver", - "title": "SPI Flash driver", - "type": "menu" - } - ], - "depends_on": null, - "id": "component-config", - "title": "Component config", - "type": "menu" - }, - { - "children": [], - "depends_on": null, - "help": "By enabling this option, ESP-IDF experimental feature options will be visible.\n\nNote you should still enable a certain experimental feature option to use it, and you\nshould read the corresponding risk warning and known issue list carefully.\n\nCurrent experimental feature list:\n\n- CONFIG_ESPTOOLPY_FLASHFREQ_120M && CONFIG_ESPTOOLPY_FLASH_SAMPLE_MODE_DTR\n- CONFIG_SPIRAM_SPEED_120M && CONFIG_SPIRAM_MODE_OCT\n- CONFIG_BOOTLOADER_CACHE_32BIT_ADDR_QUAD_FLASH\n- CONFIG_ESP_WIFI_EAP_TLS1_3\n- CONFIG_ESP_WIFI_ENABLE_ROAMING_APP\n- CONFIG_USB_HOST_EXT_PORT_RESET_ATTEMPTS\n- CONFIG_LIBC_PICOLIBC", - "id": "IDF_EXPERIMENTAL_FEATURES", - "name": "IDF_EXPERIMENTAL_FEATURES", - "range": null, - "title": "Make experimental features visible", - "type": "bool" - } -] \ No newline at end of file diff --git a/esp32-thread/open-thread-rcp/build/bootloader/config/sdkconfig.cmake b/esp32-thread/open-thread-rcp/build/bootloader/config/sdkconfig.cmake deleted file mode 100644 index 2e357188..00000000 --- a/esp32-thread/open-thread-rcp/build/bootloader/config/sdkconfig.cmake +++ /dev/null @@ -1,886 +0,0 @@ -# - # Automatically generated file. DO NOT EDIT. - # Espressif IoT Development Framework (ESP-IDF) Configuration cmake include file - # -set(CONFIG_SOC_CAPS_ECO_VER_MAX "102") -set(CONFIG_SOC_ADC_SUPPORTED "y") -set(CONFIG_SOC_ANA_CMPR_SUPPORTED "y") -set(CONFIG_SOC_DEDICATED_GPIO_SUPPORTED "y") -set(CONFIG_SOC_UART_SUPPORTED "y") -set(CONFIG_SOC_UHCI_SUPPORTED "y") -set(CONFIG_SOC_GDMA_SUPPORTED "y") -set(CONFIG_SOC_AHB_GDMA_SUPPORTED "y") -set(CONFIG_SOC_ASYNC_MEMCPY_SUPPORTED "y") -set(CONFIG_SOC_PCNT_SUPPORTED "y") -set(CONFIG_SOC_MCPWM_SUPPORTED "y") -set(CONFIG_SOC_TWAI_SUPPORTED "y") -set(CONFIG_SOC_PHY_SUPPORTED "y") -set(CONFIG_SOC_BT_SUPPORTED "y") -set(CONFIG_SOC_GPTIMER_SUPPORTED "y") -set(CONFIG_SOC_IEEE802154_SUPPORTED "y") -set(CONFIG_SOC_IEEE802154_BLE_ONLY "y") -set(CONFIG_SOC_USB_SERIAL_JTAG_SUPPORTED "y") -set(CONFIG_SOC_TEMP_SENSOR_SUPPORTED "y") -set(CONFIG_SOC_SUPPORTS_SECURE_DL_MODE "y") -set(CONFIG_SOC_EFUSE_KEY_PURPOSE_FIELD "y") -set(CONFIG_SOC_EFUSE_SUPPORTED "y") -set(CONFIG_SOC_RTC_FAST_MEM_SUPPORTED "y") -set(CONFIG_SOC_RTC_MEM_SUPPORTED "y") -set(CONFIG_SOC_I2S_SUPPORTED "y") -set(CONFIG_SOC_SDM_SUPPORTED "y") -set(CONFIG_SOC_ETM_SUPPORTED "y") -set(CONFIG_SOC_RMT_SUPPORTED "y") -set(CONFIG_SOC_PARLIO_SUPPORTED "y") -set(CONFIG_SOC_GPSPI_SUPPORTED "y") -set(CONFIG_SOC_LEDC_SUPPORTED "y") -set(CONFIG_SOC_I2C_SUPPORTED "y") -set(CONFIG_SOC_SYSTIMER_SUPPORTED "y") -set(CONFIG_SOC_SUPPORT_COEXISTENCE "y") -set(CONFIG_SOC_AES_SUPPORTED "y") -set(CONFIG_SOC_MPI_SUPPORTED "y") -set(CONFIG_SOC_SHA_SUPPORTED "y") -set(CONFIG_SOC_HMAC_SUPPORTED "y") -set(CONFIG_SOC_DIG_SIGN_SUPPORTED "y") -set(CONFIG_SOC_ECC_SUPPORTED "y") -set(CONFIG_SOC_ECC_EXTENDED_MODES_SUPPORTED "y") -set(CONFIG_SOC_ECDSA_SUPPORTED "y") -set(CONFIG_SOC_FLASH_ENC_SUPPORTED "y") -set(CONFIG_SOC_SECURE_BOOT_SUPPORTED "y") -set(CONFIG_SOC_BOD_SUPPORTED "y") -set(CONFIG_SOC_VBAT_SUPPORTED "y") -set(CONFIG_SOC_APM_SUPPORTED "y") -set(CONFIG_SOC_PMU_SUPPORTED "y") -set(CONFIG_SOC_LP_TIMER_SUPPORTED "y") -set(CONFIG_SOC_LP_AON_SUPPORTED "y") -set(CONFIG_SOC_PAU_SUPPORTED "y") -set(CONFIG_SOC_CLK_TREE_SUPPORTED "y") -set(CONFIG_SOC_ASSIST_DEBUG_SUPPORTED "y") -set(CONFIG_SOC_WDT_SUPPORTED "y") -set(CONFIG_SOC_SPI_FLASH_SUPPORTED "y") -set(CONFIG_SOC_RNG_SUPPORTED "y") -set(CONFIG_SOC_LIGHT_SLEEP_SUPPORTED "y") -set(CONFIG_SOC_DEEP_SLEEP_SUPPORTED "y") -set(CONFIG_SOC_MODEM_CLOCK_SUPPORTED "y") -set(CONFIG_SOC_PM_SUPPORTED "y") -set(CONFIG_SOC_XTAL_SUPPORT_32M "y") -set(CONFIG_SOC_XTAL_CLOCK_PATH_DEPENDS_ON_TOP_DOMAIN "y") -set(CONFIG_SOC_AES_SUPPORT_DMA "y") -set(CONFIG_SOC_AES_GDMA "y") -set(CONFIG_SOC_AES_SUPPORT_AES_128 "y") -set(CONFIG_SOC_AES_SUPPORT_AES_256 "y") -set(CONFIG_SOC_AES_SUPPORT_PSEUDO_ROUND_FUNCTION "y") -set(CONFIG_SOC_ADC_DIG_CTRL_SUPPORTED "y") -set(CONFIG_SOC_ADC_DIG_IIR_FILTER_SUPPORTED "y") -set(CONFIG_SOC_ADC_MONITOR_SUPPORTED "y") -set(CONFIG_SOC_ADC_DMA_SUPPORTED "y") -set(CONFIG_SOC_ADC_PERIPH_NUM "1") -set(CONFIG_SOC_ADC_MAX_CHANNEL_NUM "5") -set(CONFIG_SOC_ADC_ATTEN_NUM "4") -set(CONFIG_SOC_ADC_DIGI_CONTROLLER_NUM "1") -set(CONFIG_SOC_ADC_PATT_LEN_MAX "8") -set(CONFIG_SOC_ADC_DIGI_MAX_BITWIDTH "12") -set(CONFIG_SOC_ADC_DIGI_MIN_BITWIDTH "12") -set(CONFIG_SOC_ADC_DIGI_IIR_FILTER_NUM "2") -set(CONFIG_SOC_ADC_DIGI_MONITOR_NUM "2") -set(CONFIG_SOC_ADC_DIGI_RESULT_BYTES "4") -set(CONFIG_SOC_ADC_DIGI_DATA_BYTES_PER_CONV "4") -set(CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_HIGH "83333") -set(CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_LOW "611") -set(CONFIG_SOC_ADC_RTC_MIN_BITWIDTH "12") -set(CONFIG_SOC_ADC_RTC_MAX_BITWIDTH "12") -set(CONFIG_SOC_ADC_CALIBRATION_V1_SUPPORTED "y") -set(CONFIG_SOC_ADC_SELF_HW_CALI_SUPPORTED "y") -set(CONFIG_SOC_ADC_CALIB_CHAN_COMPENS_SUPPORTED "y") -set(CONFIG_SOC_ADC_TEMPERATURE_SHARE_INTR "y") -set(CONFIG_SOC_ADC_SHARED_POWER "y") -set(CONFIG_SOC_BROWNOUT_RESET_SUPPORTED "y") -set(CONFIG_SOC_SHARED_IDCACHE_SUPPORTED "y") -set(CONFIG_SOC_CACHE_FREEZE_SUPPORTED "y") -set(CONFIG_SOC_CPU_CORES_NUM "1") -set(CONFIG_SOC_CPU_INTR_NUM "32") -set(CONFIG_SOC_CPU_HAS_FLEXIBLE_INTC "y") -set(CONFIG_SOC_INT_PLIC_SUPPORTED "y") -set(CONFIG_SOC_CPU_HAS_CSR_PC "y") -set(CONFIG_SOC_CPU_BREAKPOINTS_NUM "4") -set(CONFIG_SOC_CPU_WATCHPOINTS_NUM "4") -set(CONFIG_SOC_CPU_WATCHPOINT_MAX_REGION_SIZE "0x80000000") -set(CONFIG_SOC_CPU_HAS_PMA "y") -set(CONFIG_SOC_CPU_IDRAM_SPLIT_USING_PMP "y") -set(CONFIG_SOC_CPU_PMP_REGION_GRANULARITY "4") -set(CONFIG_SOC_MMU_PAGE_SIZE_CONFIGURABLE "y") -set(CONFIG_SOC_MMU_PAGE_SIZE_8KB_SUPPORTED "y") -set(CONFIG_SOC_MMU_PERIPH_NUM "1") -set(CONFIG_SOC_MMU_LINEAR_ADDRESS_REGION_NUM "1") -set(CONFIG_SOC_MMU_DI_VADDR_SHARED "y") -set(CONFIG_SOC_DS_SIGNATURE_MAX_BIT_LEN "3072") -set(CONFIG_SOC_DS_KEY_PARAM_MD_IV_LENGTH "16") -set(CONFIG_SOC_DS_KEY_CHECK_MAX_WAIT_US "1100") -set(CONFIG_SOC_AHB_GDMA_VERSION "1") -set(CONFIG_SOC_GDMA_NUM_GROUPS_MAX "1") -set(CONFIG_SOC_GDMA_PAIRS_PER_GROUP_MAX "3") -set(CONFIG_SOC_GDMA_SUPPORT_ETM "y") -set(CONFIG_SOC_GDMA_SUPPORT_SLEEP_RETENTION "y") -set(CONFIG_SOC_ETM_GROUPS "1") -set(CONFIG_SOC_ETM_CHANNELS_PER_GROUP "50") -set(CONFIG_SOC_ETM_SUPPORT_SLEEP_RETENTION "y") -set(CONFIG_SOC_GPIO_PORT "1") -set(CONFIG_SOC_GPIO_PIN_COUNT "28") -set(CONFIG_SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER "y") -set(CONFIG_SOC_GPIO_FLEX_GLITCH_FILTER_NUM "8") -set(CONFIG_SOC_GPIO_SUPPORT_PIN_HYS_FILTER "y") -set(CONFIG_SOC_GPIO_SUPPORT_PIN_HYS_CTRL_BY_EFUSE "y") -set(CONFIG_SOC_GPIO_SUPPORT_ETM "y") -set(CONFIG_SOC_GPIO_SUPPORT_RTC_INDEPENDENT "y") -set(CONFIG_SOC_LP_IO_CLOCK_IS_INDEPENDENT "y") -set(CONFIG_SOC_GPIO_IN_RANGE_MAX "27") -set(CONFIG_SOC_GPIO_OUT_RANGE_MAX "27") -set(CONFIG_SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK "0xfff807f") -set(CONFIG_SOC_GPIO_SUPPORT_FORCE_HOLD "y") -set(CONFIG_SOC_GPIO_SUPPORT_HOLD_IO_IN_DSLP "y") -set(CONFIG_SOC_GPIO_SUPPORT_HOLD_SINGLE_IO_IN_DSLP "y") -set(CONFIG_SOC_GPIO_CLOCKOUT_BY_GPIO_MATRIX "y") -set(CONFIG_SOC_CLOCKOUT_HAS_SOURCE_GATE "y") -set(CONFIG_SOC_GPIO_CLOCKOUT_CHANNEL_NUM "3") -set(CONFIG_SOC_RTCIO_PIN_COUNT "8") -set(CONFIG_SOC_RTCIO_HOLD_SUPPORTED "y") -set(CONFIG_SOC_DEDIC_GPIO_OUT_CHANNELS_NUM "8") -set(CONFIG_SOC_DEDIC_GPIO_IN_CHANNELS_NUM "8") -set(CONFIG_SOC_DEDIC_PERIPH_ALWAYS_ENABLE "y") -set(CONFIG_SOC_ANA_CMPR_NUM "1") -set(CONFIG_SOC_ANA_CMPR_INTR_SHARE_WITH_GPIO "y") -set(CONFIG_SOC_I2C_NUM "2") -set(CONFIG_SOC_HP_I2C_NUM "2") -set(CONFIG_SOC_I2C_FIFO_LEN "32") -set(CONFIG_SOC_I2C_CMD_REG_NUM "8") -set(CONFIG_SOC_I2C_SUPPORT_SLAVE "y") -set(CONFIG_SOC_I2C_SUPPORT_HW_FSM_RST "y") -set(CONFIG_SOC_I2C_SUPPORT_HW_CLR_BUS "y") -set(CONFIG_SOC_I2C_SUPPORT_XTAL "y") -set(CONFIG_SOC_I2C_SUPPORT_RTC "y") -set(CONFIG_SOC_I2C_SUPPORT_10BIT_ADDR "y") -set(CONFIG_SOC_I2C_SLAVE_SUPPORT_BROADCAST "y") -set(CONFIG_SOC_I2C_SLAVE_CAN_GET_STRETCH_CAUSE "y") -set(CONFIG_SOC_I2C_SLAVE_SUPPORT_I2CRAM_ACCESS "y") -set(CONFIG_SOC_I2C_SLAVE_SUPPORT_SLAVE_UNMATCH "y") -set(CONFIG_SOC_I2C_SUPPORT_SLEEP_RETENTION "y") -set(CONFIG_SOC_I2S_NUM "1") -set(CONFIG_SOC_I2S_HW_VERSION_2 "y") -set(CONFIG_SOC_I2S_SUPPORTS_ETM "y") -set(CONFIG_SOC_I2S_SUPPORTS_XTAL "y") -set(CONFIG_SOC_I2S_SUPPORTS_PLL_F96M "y") -set(CONFIG_SOC_I2S_SUPPORTS_PLL_F64M "y") -set(CONFIG_SOC_I2S_SUPPORTS_PCM "y") -set(CONFIG_SOC_I2S_SUPPORTS_PDM "y") -set(CONFIG_SOC_I2S_SUPPORTS_PDM_TX "y") -set(CONFIG_SOC_I2S_SUPPORTS_PCM2PDM "y") -set(CONFIG_SOC_I2S_SUPPORTS_PDM_RX "y") -set(CONFIG_SOC_I2S_PDM_MAX_TX_LINES "2") -set(CONFIG_SOC_I2S_PDM_MAX_RX_LINES "1") -set(CONFIG_SOC_I2S_SUPPORTS_TDM "y") -set(CONFIG_SOC_I2S_TDM_FULL_DATA_WIDTH "y") -set(CONFIG_SOC_I2S_SUPPORT_SLEEP_RETENTION "y") -set(CONFIG_SOC_LEDC_SUPPORT_PLL_DIV_CLOCK "y") -set(CONFIG_SOC_LEDC_SUPPORT_XTAL_CLOCK "y") -set(CONFIG_SOC_LEDC_TIMER_NUM "4") -set(CONFIG_SOC_LEDC_CHANNEL_NUM "6") -set(CONFIG_SOC_LEDC_TIMER_BIT_WIDTH "20") -set(CONFIG_SOC_LEDC_SUPPORT_FADE_STOP "y") -set(CONFIG_SOC_LEDC_GAMMA_CURVE_FADE_SUPPORTED "y") -set(CONFIG_SOC_LEDC_GAMMA_CURVE_FADE_RANGE_MAX "16") -set(CONFIG_SOC_LEDC_FADE_PARAMS_BIT_WIDTH "10") -set(CONFIG_SOC_LEDC_SUPPORT_SLEEP_RETENTION "y") -set(CONFIG_SOC_MPU_MIN_REGION_SIZE "0x20000000") -set(CONFIG_SOC_MPU_REGIONS_MAX_NUM "8") -set(CONFIG_SOC_PCNT_GROUPS "1") -set(CONFIG_SOC_PCNT_UNITS_PER_GROUP "4") -set(CONFIG_SOC_PCNT_CHANNELS_PER_UNIT "2") -set(CONFIG_SOC_PCNT_THRES_POINT_PER_UNIT "2") -set(CONFIG_SOC_PCNT_SUPPORT_RUNTIME_THRES_UPDATE "y") -set(CONFIG_SOC_PCNT_SUPPORT_STEP_NOTIFY "y") -set(CONFIG_SOC_PCNT_SUPPORT_SLEEP_RETENTION "y") -set(CONFIG_SOC_RMT_GROUPS "1") -set(CONFIG_SOC_RMT_TX_CANDIDATES_PER_GROUP "2") -set(CONFIG_SOC_RMT_RX_CANDIDATES_PER_GROUP "2") -set(CONFIG_SOC_RMT_CHANNELS_PER_GROUP "4") -set(CONFIG_SOC_RMT_MEM_WORDS_PER_CHANNEL "48") -set(CONFIG_SOC_RMT_SUPPORT_RX_PINGPONG "y") -set(CONFIG_SOC_RMT_SUPPORT_RX_DEMODULATION "y") -set(CONFIG_SOC_RMT_SUPPORT_TX_ASYNC_STOP "y") -set(CONFIG_SOC_RMT_SUPPORT_TX_LOOP_COUNT "y") -set(CONFIG_SOC_RMT_SUPPORT_TX_LOOP_AUTO_STOP "y") -set(CONFIG_SOC_RMT_SUPPORT_TX_SYNCHRO "y") -set(CONFIG_SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY "y") -set(CONFIG_SOC_RMT_SUPPORT_XTAL "y") -set(CONFIG_SOC_RMT_SUPPORT_RC_FAST "y") -set(CONFIG_SOC_RMT_SUPPORT_SLEEP_RETENTION "y") -set(CONFIG_SOC_MCPWM_GROUPS "1") -set(CONFIG_SOC_MCPWM_TIMERS_PER_GROUP "3") -set(CONFIG_SOC_MCPWM_OPERATORS_PER_GROUP "3") -set(CONFIG_SOC_MCPWM_COMPARATORS_PER_OPERATOR "2") -set(CONFIG_SOC_MCPWM_GENERATORS_PER_OPERATOR "2") -set(CONFIG_SOC_MCPWM_TRIGGERS_PER_OPERATOR "2") -set(CONFIG_SOC_MCPWM_GPIO_FAULTS_PER_GROUP "3") -set(CONFIG_SOC_MCPWM_CAPTURE_TIMERS_PER_GROUP "y") -set(CONFIG_SOC_MCPWM_CAPTURE_CHANNELS_PER_TIMER "3") -set(CONFIG_SOC_MCPWM_GPIO_SYNCHROS_PER_GROUP "3") -set(CONFIG_SOC_MCPWM_SWSYNC_CAN_PROPAGATE "y") -set(CONFIG_SOC_MCPWM_SUPPORT_ETM "y") -set(CONFIG_SOC_MCPWM_CAPTURE_CLK_FROM_GROUP "y") -set(CONFIG_SOC_MCPWM_SUPPORT_SLEEP_RETENTION "y") -set(CONFIG_SOC_PARLIO_GROUPS "1") -set(CONFIG_SOC_PARLIO_TX_UNITS_PER_GROUP "1") -set(CONFIG_SOC_PARLIO_RX_UNITS_PER_GROUP "1") -set(CONFIG_SOC_PARLIO_TX_UNIT_MAX_DATA_WIDTH "8") -set(CONFIG_SOC_PARLIO_RX_UNIT_MAX_DATA_WIDTH "8") -set(CONFIG_SOC_PARLIO_TX_CLK_SUPPORT_GATING "y") -set(CONFIG_SOC_PARLIO_RX_CLK_SUPPORT_GATING "y") -set(CONFIG_SOC_PARLIO_RX_CLK_SUPPORT_OUTPUT "y") -set(CONFIG_SOC_PARLIO_TRANS_BIT_ALIGN "y") -set(CONFIG_SOC_PARLIO_TX_SUPPORT_LOOP_TRANSMISSION "y") -set(CONFIG_SOC_PARLIO_SUPPORT_SLEEP_RETENTION "y") -set(CONFIG_SOC_PARLIO_SUPPORT_SPI_LCD "y") -set(CONFIG_SOC_MPI_MEM_BLOCKS_NUM "4") -set(CONFIG_SOC_MPI_OPERATIONS_NUM "3") -set(CONFIG_SOC_RSA_MAX_BIT_LEN "3072") -set(CONFIG_SOC_SHA_DMA_MAX_BUFFER_SIZE "3968") -set(CONFIG_SOC_SHA_SUPPORT_DMA "y") -set(CONFIG_SOC_SHA_SUPPORT_RESUME "y") -set(CONFIG_SOC_SHA_GDMA "y") -set(CONFIG_SOC_SHA_SUPPORT_SHA1 "y") -set(CONFIG_SOC_SHA_SUPPORT_SHA224 "y") -set(CONFIG_SOC_SHA_SUPPORT_SHA256 "y") -set(CONFIG_SOC_SDM_GROUPS "1") -set(CONFIG_SOC_SDM_CHANNELS_PER_GROUP "4") -set(CONFIG_SOC_SDM_CLK_SUPPORT_PLL_F48M "y") -set(CONFIG_SOC_SDM_CLK_SUPPORT_XTAL "y") -set(CONFIG_SOC_SPI_PERIPH_NUM "2") -set(CONFIG_SOC_SPI_MAX_CS_NUM "6") -set(CONFIG_SOC_SPI_MAXIMUM_BUFFER_SIZE "64") -set(CONFIG_SOC_SPI_SUPPORT_DDRCLK "y") -set(CONFIG_SOC_SPI_SLAVE_SUPPORT_SEG_TRANS "y") -set(CONFIG_SOC_SPI_SUPPORT_CD_SIG "y") -set(CONFIG_SOC_SPI_SUPPORT_CONTINUOUS_TRANS "y") -set(CONFIG_SOC_SPI_SUPPORT_SLAVE_HD_VER2 "y") -set(CONFIG_SOC_SPI_SUPPORT_SLEEP_RETENTION "y") -set(CONFIG_SOC_SPI_SUPPORT_CLK_XTAL "y") -set(CONFIG_SOC_SPI_SUPPORT_CLK_PLL_F48M "y") -set(CONFIG_SOC_SPI_SUPPORT_CLK_RC_FAST "y") -set(CONFIG_SOC_SPI_SCT_SUPPORTED "y") -set(CONFIG_SOC_SPI_SCT_REG_NUM "14") -set(CONFIG_SOC_SPI_SCT_BUFFER_NUM_MAX "y") -set(CONFIG_SOC_SPI_SCT_CONF_BITLEN_MAX "0x3fffa") -set(CONFIG_SOC_MEMSPI_IS_INDEPENDENT "y") -set(CONFIG_SOC_SPI_MAX_PRE_DIVIDER "16") -set(CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE "y") -set(CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND "y") -set(CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_RESUME "y") -set(CONFIG_SOC_SPI_MEM_SUPPORT_IDLE_INTR "y") -set(CONFIG_SOC_SPI_MEM_SUPPORT_SW_SUSPEND "y") -set(CONFIG_SOC_SPI_MEM_SUPPORT_CHECK_SUS "y") -set(CONFIG_SOC_SPI_MEM_SUPPORT_WRAP "y") -set(CONFIG_SOC_MEMSPI_SRC_FREQ_64M_SUPPORTED "y") -set(CONFIG_SOC_MEMSPI_SRC_FREQ_32M_SUPPORTED "y") -set(CONFIG_SOC_MEMSPI_SRC_FREQ_16M_SUPPORTED "y") -set(CONFIG_SOC_SYSTIMER_COUNTER_NUM "2") -set(CONFIG_SOC_SYSTIMER_ALARM_NUM "3") -set(CONFIG_SOC_SYSTIMER_BIT_WIDTH_LO "32") -set(CONFIG_SOC_SYSTIMER_BIT_WIDTH_HI "20") -set(CONFIG_SOC_SYSTIMER_FIXED_DIVIDER "y") -set(CONFIG_SOC_SYSTIMER_SUPPORT_RC_FAST "y") -set(CONFIG_SOC_SYSTIMER_INT_LEVEL "y") -set(CONFIG_SOC_SYSTIMER_ALARM_MISS_COMPENSATE "y") -set(CONFIG_SOC_SYSTIMER_SUPPORT_ETM "y") -set(CONFIG_SOC_LP_TIMER_BIT_WIDTH_LO "32") -set(CONFIG_SOC_LP_TIMER_BIT_WIDTH_HI "16") -set(CONFIG_SOC_TIMER_GROUPS "2") -set(CONFIG_SOC_TIMER_GROUP_TIMERS_PER_GROUP "1") -set(CONFIG_SOC_TIMER_GROUP_COUNTER_BIT_WIDTH "54") -set(CONFIG_SOC_TIMER_GROUP_SUPPORT_XTAL "y") -set(CONFIG_SOC_TIMER_GROUP_SUPPORT_RC_FAST "y") -set(CONFIG_SOC_TIMER_GROUP_TOTAL_TIMERS "2") -set(CONFIG_SOC_TIMER_SUPPORT_ETM "y") -set(CONFIG_SOC_TIMER_SUPPORT_SLEEP_RETENTION "y") -set(CONFIG_SOC_MWDT_SUPPORT_XTAL "y") -set(CONFIG_SOC_MWDT_SUPPORT_SLEEP_RETENTION "y") -set(CONFIG_SOC_TWAI_CONTROLLER_NUM "1") -set(CONFIG_SOC_TWAI_MASK_FILTER_NUM "1") -set(CONFIG_SOC_TWAI_CLK_SUPPORT_XTAL "y") -set(CONFIG_SOC_TWAI_BRP_MIN "2") -set(CONFIG_SOC_TWAI_BRP_MAX "32768") -set(CONFIG_SOC_TWAI_SUPPORTS_RX_STATUS "y") -set(CONFIG_SOC_TWAI_SUPPORT_SLEEP_RETENTION "y") -set(CONFIG_SOC_EFUSE_DIS_PAD_JTAG "y") -set(CONFIG_SOC_EFUSE_DIS_USB_JTAG "y") -set(CONFIG_SOC_EFUSE_DIS_DIRECT_BOOT "y") -set(CONFIG_SOC_EFUSE_SOFT_DIS_JTAG "y") -set(CONFIG_SOC_EFUSE_DIS_ICACHE "y") -set(CONFIG_SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK "y") -set(CONFIG_SOC_EFUSE_ECDSA_USE_HARDWARE_K "y") -set(CONFIG_SOC_EFUSE_ECDSA_KEY "y") -set(CONFIG_SOC_SECURE_BOOT_V2_RSA "y") -set(CONFIG_SOC_SECURE_BOOT_V2_ECC "y") -set(CONFIG_SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS "3") -set(CONFIG_SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS "y") -set(CONFIG_SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY "y") -set(CONFIG_SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX "64") -set(CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES "y") -set(CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_128 "y") -set(CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_SUPPORT_PSEUDO_ROUND "y") -set(CONFIG_SOC_APM_CTRL_FILTER_SUPPORTED "y") -set(CONFIG_SOC_CRYPTO_DPA_PROTECTION_SUPPORTED "y") -set(CONFIG_SOC_ECC_CONSTANT_TIME_POINT_MUL "y") -set(CONFIG_SOC_ECDSA_USES_MPI "y") -set(CONFIG_SOC_ECDSA_SUPPORT_DETERMINISTIC_MODE "y") -set(CONFIG_SOC_ECDSA_SUPPORT_HW_DETERMINISTIC_LOOP "y") -set(CONFIG_SOC_ECDSA_P192_CURVE_DEFAULT_DISABLED "y") -set(CONFIG_SOC_UART_NUM "2") -set(CONFIG_SOC_UART_HP_NUM "2") -set(CONFIG_SOC_UART_FIFO_LEN "128") -set(CONFIG_SOC_UART_BITRATE_MAX "5000000") -set(CONFIG_SOC_UART_SUPPORT_RTC_CLK "y") -set(CONFIG_SOC_UART_SUPPORT_XTAL_CLK "y") -set(CONFIG_SOC_UART_SUPPORT_WAKEUP_INT "y") -set(CONFIG_SOC_UART_SUPPORT_FSM_TX_WAIT_SEND "y") -set(CONFIG_SOC_UART_SUPPORT_SLEEP_RETENTION "y") -set(CONFIG_SOC_UART_WAKEUP_CHARS_SEQ_MAX_LEN "5") -set(CONFIG_SOC_UART_WAKEUP_SUPPORT_ACTIVE_THRESH_MODE "y") -set(CONFIG_SOC_UART_WAKEUP_SUPPORT_FIFO_THRESH_MODE "y") -set(CONFIG_SOC_UART_WAKEUP_SUPPORT_START_BIT_MODE "y") -set(CONFIG_SOC_UART_WAKEUP_SUPPORT_CHAR_SEQ_MODE "y") -set(CONFIG_SOC_UHCI_NUM "1") -set(CONFIG_SOC_COEX_HW_PTI "y") -set(CONFIG_SOC_EXTERNAL_COEX_ADVANCE "y") -set(CONFIG_SOC_PHY_DIG_REGS_MEM_SIZE "21") -set(CONFIG_SOC_PM_SUPPORT_BT_WAKEUP "y") -set(CONFIG_SOC_PM_SUPPORT_EXT1_WAKEUP "y") -set(CONFIG_SOC_PM_SUPPORT_EXT1_WAKEUP_MODE_PER_PIN "y") -set(CONFIG_SOC_PM_SUPPORT_CPU_PD "y") -set(CONFIG_SOC_PM_SUPPORT_MODEM_PD "y") -set(CONFIG_SOC_PM_SUPPORT_XTAL32K_PD "y") -set(CONFIG_SOC_PM_SUPPORT_RC32K_PD "y") -set(CONFIG_SOC_PM_SUPPORT_RC_FAST_PD "y") -set(CONFIG_SOC_PM_SUPPORT_VDDSDIO_PD "y") -set(CONFIG_SOC_PM_SUPPORT_TOP_PD "y") -set(CONFIG_SOC_PM_PAU_LINK_NUM "4") -set(CONFIG_SOC_PM_PAU_REGDMA_LINK_MULTI_ADDR "y") -set(CONFIG_SOC_PM_PAU_REGDMA_LINK_WIFIMAC "y") -set(CONFIG_SOC_PM_PAU_REGDMA_UPDATE_CACHE_BEFORE_WAIT_COMPARE "y") -set(CONFIG_SOC_PM_RETENTION_MODULE_NUM "32") -set(CONFIG_SOC_EXT_MEM_CACHE_TAG_IN_CPU_DOMAIN "y") -set(CONFIG_SOC_PM_CPU_RETENTION_BY_SW "y") -set(CONFIG_SOC_PM_MODEM_RETENTION_BY_REGDMA "y") -set(CONFIG_SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY "y") -set(CONFIG_SOC_PM_RETENTION_SW_TRIGGER_REGDMA "y") -set(CONFIG_SOC_PM_SUPPORT_PMU_CLK_ICG "y") -set(CONFIG_SOC_CLK_RC_FAST_SUPPORT_CALIBRATION "y") -set(CONFIG_SOC_CLK_XTAL32K_SUPPORTED "y") -set(CONFIG_SOC_CLK_OSC_SLOW_SUPPORTED "y") -set(CONFIG_SOC_CLK_RC32K_SUPPORTED "y") -set(CONFIG_SOC_CLK_LP_FAST_SUPPORT_LP_PLL "y") -set(CONFIG_SOC_CLK_LP_FAST_SUPPORT_XTAL_D2 "y") -set(CONFIG_SOC_MODEM_CLOCK_IS_INDEPENDENT "y") -set(CONFIG_SOC_RCC_IS_INDEPENDENT "y") -set(CONFIG_SOC_CLK_ANA_I2C_MST_HAS_ROOT_GATE "y") -set(CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC "y") -set(CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_XTAL "y") -set(CONFIG_SOC_TEMPERATURE_SENSOR_INTR_SUPPORT "y") -set(CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_ETM "y") -set(CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_SLEEP_RETENTION "y") -set(CONFIG_SOC_TEMPERATURE_SENSOR_UNDER_PD_TOP_DOMAIN "y") -set(CONFIG_SOC_RNG_CLOCK_IS_INDEPENDENT "y") -set(CONFIG_SOC_BLE_SUPPORTED "y") -set(CONFIG_SOC_BLE_MESH_SUPPORTED "y") -set(CONFIG_SOC_ESP_NIMBLE_CONTROLLER "y") -set(CONFIG_SOC_BLE_50_SUPPORTED "y") -set(CONFIG_SOC_BLE_DEVICE_PRIVACY_SUPPORTED "y") -set(CONFIG_SOC_BLE_POWER_CONTROL_SUPPORTED "y") -set(CONFIG_SOC_BLE_MULTI_CONN_OPTIMIZATION "y") -set(CONFIG_SOC_BLE_PERIODIC_ADV_ENH_SUPPORTED "y") -set(CONFIG_SOC_BLE_CTE_SUPPORTED "y") -set(CONFIG_SOC_DEBUG_HAVE_OCD_STUB_BINS "y") -set(CONFIG_IDF_CMAKE "y") -set(CONFIG_IDF_TOOLCHAIN "gcc") -set(CONFIG_IDF_TOOLCHAIN_GCC "y") -set(CONFIG_IDF_TARGET_ARCH_RISCV "y") -set(CONFIG_IDF_TARGET_ARCH "riscv") -set(CONFIG_IDF_TARGET "esp32h2") -set(CONFIG_IDF_INIT_VERSION "5.5.1") -set(CONFIG_IDF_TARGET_ESP32H2 "y") -set(CONFIG_IDF_FIRMWARE_CHIP_ID "0x10") -set(CONFIG_APP_BUILD_TYPE_APP_2NDBOOT "y") -set(CONFIG_APP_BUILD_TYPE_RAM "") -set(CONFIG_APP_BUILD_GENERATE_BINARIES "y") -set(CONFIG_APP_BUILD_BOOTLOADER "y") -set(CONFIG_APP_BUILD_USE_FLASH_SECTIONS "y") -set(CONFIG_APP_REPRODUCIBLE_BUILD "") -set(CONFIG_APP_NO_BLOBS "") -set(CONFIG_BOOTLOADER_COMPILE_TIME_DATE "y") -set(CONFIG_BOOTLOADER_PROJECT_VER "1") -set(CONFIG_BOOTLOADER_APP_ROLLBACK_ENABLE "") -set(CONFIG_BOOTLOADER_OFFSET_IN_FLASH "0x0") -set(CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_SIZE "y") -set(CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG "") -set(CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_PERF "") -set(CONFIG_BOOTLOADER_LOG_VERSION_1 "y") -set(CONFIG_BOOTLOADER_LOG_VERSION "1") -set(CONFIG_BOOTLOADER_LOG_LEVEL_NONE "") -set(CONFIG_BOOTLOADER_LOG_LEVEL_ERROR "") -set(CONFIG_BOOTLOADER_LOG_LEVEL_WARN "") -set(CONFIG_BOOTLOADER_LOG_LEVEL_INFO "y") -set(CONFIG_BOOTLOADER_LOG_LEVEL_DEBUG "") -set(CONFIG_BOOTLOADER_LOG_LEVEL_VERBOSE "") -set(CONFIG_BOOTLOADER_LOG_LEVEL "3") -set(CONFIG_BOOTLOADER_LOG_COLORS "") -set(CONFIG_BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS "y") -set(CONFIG_BOOTLOADER_LOG_MODE_TEXT_EN "y") -set(CONFIG_BOOTLOADER_LOG_MODE_TEXT "y") -set(CONFIG_BOOTLOADER_FLASH_DC_AWARE "") -set(CONFIG_BOOTLOADER_FLASH_XMC_SUPPORT "y") -set(CONFIG_BOOTLOADER_FACTORY_RESET "") -set(CONFIG_BOOTLOADER_APP_TEST "") -set(CONFIG_BOOTLOADER_REGION_PROTECTION_ENABLE "y") -set(CONFIG_BOOTLOADER_WDT_ENABLE "y") -set(CONFIG_BOOTLOADER_WDT_DISABLE_IN_USER_CODE "") -set(CONFIG_BOOTLOADER_WDT_TIME_MS "9000") -set(CONFIG_BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP "") -set(CONFIG_BOOTLOADER_SKIP_VALIDATE_ON_POWER_ON "") -set(CONFIG_BOOTLOADER_SKIP_VALIDATE_ALWAYS "") -set(CONFIG_BOOTLOADER_RESERVE_RTC_SIZE "0x0") -set(CONFIG_BOOTLOADER_CUSTOM_RESERVE_RTC "") -set(CONFIG_SECURE_BOOT_V2_RSA_SUPPORTED "y") -set(CONFIG_SECURE_BOOT_V2_ECC_SUPPORTED "y") -set(CONFIG_SECURE_BOOT_V2_PREFERRED "y") -set(CONFIG_SECURE_SIGNED_APPS_NO_SECURE_BOOT "") -set(CONFIG_SECURE_BOOT "") -set(CONFIG_SECURE_FLASH_ENC_ENABLED "") -set(CONFIG_SECURE_ROM_DL_MODE_ENABLED "y") -set(CONFIG_APP_COMPILE_TIME_DATE "y") -set(CONFIG_APP_EXCLUDE_PROJECT_VER_VAR "") -set(CONFIG_APP_EXCLUDE_PROJECT_NAME_VAR "") -set(CONFIG_APP_PROJECT_VER_FROM_CONFIG "") -set(CONFIG_APP_RETRIEVE_LEN_ELF_SHA "9") -set(CONFIG_ESP_ROM_HAS_CRC_LE "y") -set(CONFIG_ESP_ROM_HAS_CRC_BE "y") -set(CONFIG_ESP_ROM_UART_CLK_IS_XTAL "y") -set(CONFIG_ESP_ROM_USB_SERIAL_DEVICE_NUM "3") -set(CONFIG_ESP_ROM_HAS_RETARGETABLE_LOCKING "y") -set(CONFIG_ESP_ROM_GET_CLK_FREQ "y") -set(CONFIG_ESP_ROM_HAS_HAL_WDT "y") -set(CONFIG_ESP_ROM_HAS_HAL_SYSTIMER "y") -set(CONFIG_ESP_ROM_SYSTIMER_INIT_PATCH "y") -set(CONFIG_ESP_ROM_HAS_HEAP_TLSF "y") -set(CONFIG_ESP_ROM_TLSF_CHECK_PATCH "y") -set(CONFIG_ESP_ROM_MULTI_HEAP_WALK_PATCH "y") -set(CONFIG_ESP_ROM_HAS_LAYOUT_TABLE "y") -set(CONFIG_ESP_ROM_HAS_SPI_FLASH "y") -set(CONFIG_ESP_ROM_HAS_SPI_FLASH_MMAP "y") -set(CONFIG_ESP_ROM_WITHOUT_REGI2C "y") -set(CONFIG_ESP_ROM_HAS_NEWLIB "y") -set(CONFIG_ESP_ROM_HAS_NEWLIB_NANO_FORMAT "y") -set(CONFIG_ESP_ROM_HAS_NEWLIB_NANO_PRINTF_FLOAT_BUG "y") -set(CONFIG_ESP_ROM_WDT_INIT_PATCH "y") -set(CONFIG_ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE "y") -set(CONFIG_ESP_ROM_RAM_APP_NEEDS_MMU_INIT "y") -set(CONFIG_ESP_ROM_HAS_SW_FLOAT "y") -set(CONFIG_ESP_ROM_USB_OTG_NUM "-1") -set(CONFIG_ESP_ROM_HAS_VERSION "y") -set(CONFIG_ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB "y") -set(CONFIG_ESP_ROM_HAS_OUTPUT_PUTC_FUNC "y") -set(CONFIG_ESP_ROM_NO_USB_SERIAL_OUTPUT_API "y") -set(CONFIG_ESP_ROM_HAS_SUBOPTIMAL_NEWLIB_ON_MISALIGNED_MEMORY "y") -set(CONFIG_BOOT_ROM_LOG_ALWAYS_ON "y") -set(CONFIG_BOOT_ROM_LOG_ALWAYS_OFF "") -set(CONFIG_BOOT_ROM_LOG_ON_GPIO_HIGH "") -set(CONFIG_BOOT_ROM_LOG_ON_GPIO_LOW "") -set(CONFIG_SECURE_ENABLE_TEE "") -set(CONFIG_SECURE_TEE_LOG_LEVEL "0") -set(CONFIG_ESPTOOLPY_NO_STUB "") -set(CONFIG_ESPTOOLPY_FLASHMODE_QIO "") -set(CONFIG_ESPTOOLPY_FLASHMODE_QOUT "") -set(CONFIG_ESPTOOLPY_FLASHMODE_DIO "y") -set(CONFIG_ESPTOOLPY_FLASHMODE_DOUT "") -set(CONFIG_ESPTOOLPY_FLASH_SAMPLE_MODE_STR "y") -set(CONFIG_ESPTOOLPY_FLASHMODE "dio") -set(CONFIG_ESPTOOLPY_FLASHFREQ_64M "y") -set(CONFIG_ESPTOOLPY_FLASHFREQ_32M "") -set(CONFIG_ESPTOOLPY_FLASHFREQ_16M "") -set(CONFIG_ESPTOOLPY_FLASHFREQ "48m") -set(CONFIG_ESPTOOLPY_FLASHSIZE_1MB "") -set(CONFIG_ESPTOOLPY_FLASHSIZE_2MB "y") -set(CONFIG_ESPTOOLPY_FLASHSIZE_4MB "") -set(CONFIG_ESPTOOLPY_FLASHSIZE_8MB "") -set(CONFIG_ESPTOOLPY_FLASHSIZE_16MB "") -set(CONFIG_ESPTOOLPY_FLASHSIZE_32MB "") -set(CONFIG_ESPTOOLPY_FLASHSIZE_64MB "") -set(CONFIG_ESPTOOLPY_FLASHSIZE_128MB "") -set(CONFIG_ESPTOOLPY_FLASHSIZE "2MB") -set(CONFIG_ESPTOOLPY_HEADER_FLASHSIZE_UPDATE "") -set(CONFIG_ESPTOOLPY_BEFORE_RESET "y") -set(CONFIG_ESPTOOLPY_BEFORE_NORESET "") -set(CONFIG_ESPTOOLPY_BEFORE "default_reset") -set(CONFIG_ESPTOOLPY_AFTER_RESET "y") -set(CONFIG_ESPTOOLPY_AFTER_NORESET "") -set(CONFIG_ESPTOOLPY_AFTER "hard_reset") -set(CONFIG_ESPTOOLPY_MONITOR_BAUD "115200") -set(CONFIG_PARTITION_TABLE_SINGLE_APP "") -set(CONFIG_PARTITION_TABLE_SINGLE_APP_LARGE "") -set(CONFIG_PARTITION_TABLE_TWO_OTA "") -set(CONFIG_PARTITION_TABLE_TWO_OTA_LARGE "") -set(CONFIG_PARTITION_TABLE_CUSTOM "y") -set(CONFIG_PARTITION_TABLE_CUSTOM_FILENAME "partitions.csv") -set(CONFIG_PARTITION_TABLE_FILENAME "partitions.csv") -set(CONFIG_PARTITION_TABLE_OFFSET "0x8000") -set(CONFIG_PARTITION_TABLE_MD5 "y") -set(CONFIG_COMPILER_OPTIMIZATION_DEBUG "") -set(CONFIG_COMPILER_OPTIMIZATION_SIZE "y") -set(CONFIG_COMPILER_OPTIMIZATION_PERF "") -set(CONFIG_COMPILER_OPTIMIZATION_NONE "") -set(CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE "") -set(CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_SILENT "y") -set(CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE "") -set(CONFIG_COMPILER_ASSERT_NDEBUG_EVALUATE "y") -set(CONFIG_COMPILER_FLOAT_LIB_FROM_GCCLIB "y") -set(CONFIG_COMPILER_OPTIMIZATION_ASSERTION_LEVEL "1") -set(CONFIG_COMPILER_OPTIMIZATION_CHECKS_SILENT "y") -set(CONFIG_COMPILER_HIDE_PATHS_MACROS "y") -set(CONFIG_COMPILER_CXX_EXCEPTIONS "") -set(CONFIG_COMPILER_CXX_RTTI "") -set(CONFIG_COMPILER_STACK_CHECK_MODE_NONE "y") -set(CONFIG_COMPILER_STACK_CHECK_MODE_NORM "") -set(CONFIG_COMPILER_STACK_CHECK_MODE_STRONG "") -set(CONFIG_COMPILER_STACK_CHECK_MODE_ALL "") -set(CONFIG_COMPILER_NO_MERGE_CONSTANTS "") -set(CONFIG_COMPILER_WARN_WRITE_STRINGS "") -set(CONFIG_COMPILER_SAVE_RESTORE_LIBCALLS "y") -set(CONFIG_COMPILER_DISABLE_DEFAULT_ERRORS "y") -set(CONFIG_COMPILER_DISABLE_GCC12_WARNINGS "") -set(CONFIG_COMPILER_DISABLE_GCC13_WARNINGS "") -set(CONFIG_COMPILER_DISABLE_GCC14_WARNINGS "") -set(CONFIG_COMPILER_DUMP_RTL_FILES "") -set(CONFIG_COMPILER_RT_LIB_GCCLIB "y") -set(CONFIG_COMPILER_RT_LIB_NAME "gcc") -set(CONFIG_COMPILER_ORPHAN_SECTIONS_WARNING "y") -set(CONFIG_COMPILER_ORPHAN_SECTIONS_PLACE "") -set(CONFIG_COMPILER_STATIC_ANALYZER "") -set(CONFIG_EFUSE_CUSTOM_TABLE "") -set(CONFIG_EFUSE_VIRTUAL "") -set(CONFIG_EFUSE_MAX_BLK_LEN "256") -set(CONFIG_ESP_ERR_TO_NAME_LOOKUP "") -set(CONFIG_ESP32H2_REV_MIN_0 "y") -set(CONFIG_ESP32H2_REV_MIN_1 "") -set(CONFIG_ESP32H2_REV_MIN_2 "") -set(CONFIG_ESP32H2_REV_MIN_102 "") -set(CONFIG_ESP32H2_REV_MIN_FULL "0") -set(CONFIG_ESP_REV_MIN_FULL "0") -set(CONFIG_ESP32H2_REV_MAX_FULL "199") -set(CONFIG_ESP_REV_MAX_FULL "199") -set(CONFIG_ESP_EFUSE_BLOCK_REV_MIN_FULL "0") -set(CONFIG_ESP_EFUSE_BLOCK_REV_MAX_FULL "99") -set(CONFIG_ESP_MAC_ADDR_UNIVERSE_BT "y") -set(CONFIG_ESP_MAC_ADDR_UNIVERSE_IEEE802154 "y") -set(CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES_TWO "y") -set(CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES "2") -set(CONFIG_ESP32H2_UNIVERSAL_MAC_ADDRESSES_TWO "y") -set(CONFIG_ESP32H2_UNIVERSAL_MAC_ADDRESSES "2") -set(CONFIG_ESP_MAC_USE_CUSTOM_MAC_AS_BASE_MAC "") -set(CONFIG_ESP_SLEEP_POWER_DOWN_FLASH "") -set(CONFIG_ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND "y") -set(CONFIG_ESP_SLEEP_MSPI_NEED_ALL_IO_PU "") -set(CONFIG_ESP_SLEEP_GPIO_RESET_WORKAROUND "y") -set(CONFIG_ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY "0") -set(CONFIG_ESP_SLEEP_CACHE_SAFE_ASSERTION "") -set(CONFIG_ESP_SLEEP_DEBUG "") -set(CONFIG_ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS "y") -set(CONFIG_RTC_CLK_SRC_INT_RC "y") -set(CONFIG_RTC_CLK_SRC_EXT_CRYS "") -set(CONFIG_RTC_CLK_SRC_EXT_OSC "") -set(CONFIG_RTC_CLK_CAL_CYCLES "1024") -set(CONFIG_ESP_PERIPH_CTRL_FUNC_IN_IRAM "y") -set(CONFIG_ESP_REGI2C_CTRL_FUNC_IN_IRAM "y") -set(CONFIG_ETM_ENABLE_DEBUG_LOG "") -set(CONFIG_GDMA_CTRL_FUNC_IN_IRAM "y") -set(CONFIG_GDMA_ISR_HANDLER_IN_IRAM "y") -set(CONFIG_GDMA_OBJ_DRAM_SAFE "y") -set(CONFIG_GDMA_ENABLE_DEBUG_LOG "") -set(CONFIG_GDMA_ISR_IRAM_SAFE "") -set(CONFIG_XTAL_FREQ_32 "y") -set(CONFIG_XTAL_FREQ "32") -set(CONFIG_ESP_BROWNOUT_DET "y") -set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_7 "") -set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_6 "") -set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_5 "") -set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_4 "") -set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_3 "") -set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_2 "") -set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_1 "") -set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_0 "y") -set(CONFIG_ESP_BROWNOUT_DET_LVL "0") -set(CONFIG_ESP_BROWNOUT_USE_INTR "y") -set(CONFIG_ESP_VBAT_INIT_AUTO "") -set(CONFIG_ESP_VBAT_WAKEUP_CHIP_ON_VBAT_BROWNOUT "") -set(CONFIG_ESP_INTR_IN_IRAM "y") -set(CONFIG_ESP_ROM_PRINT_IN_IRAM "y") -set(CONFIG_ESP_CRYPTO_DPA_PROTECTION_AT_STARTUP "y") -set(CONFIG_ESP_CRYPTO_DPA_PROTECTION_LEVEL_LOW "y") -set(CONFIG_ESP_CRYPTO_DPA_PROTECTION_LEVEL_MEDIUM "") -set(CONFIG_ESP_CRYPTO_DPA_PROTECTION_LEVEL_HIGH "") -set(CONFIG_ESP_CRYPTO_DPA_PROTECTION_LEVEL "1") -set(CONFIG_ESP_CRYPTO_FORCE_ECC_CONSTANT_TIME_POINT_MUL "") -set(CONFIG_ESP_ECDSA_ENABLE_P192_CURVE "") -set(CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_48 "") -set(CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_64 "") -set(CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_96 "y") -set(CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ "96") -set(CONFIG_ESP_SYSTEM_IN_IRAM "y") -set(CONFIG_ESP_SYSTEM_PANIC_PRINT_HALT "") -set(CONFIG_ESP_SYSTEM_PANIC_PRINT_REBOOT "") -set(CONFIG_ESP_SYSTEM_PANIC_SILENT_REBOOT "y") -set(CONFIG_ESP_SYSTEM_SINGLE_CORE_MODE "y") -set(CONFIG_ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK "y") -set(CONFIG_ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP "y") -set(CONFIG_ESP_SYSTEM_NO_BACKTRACE "y") -set(CONFIG_ESP_SYSTEM_USE_EH_FRAME "") -set(CONFIG_ESP_SYSTEM_USE_FRAME_POINTER "") -set(CONFIG_ESP_SYSTEM_PMP_IDRAM_SPLIT "y") -set(CONFIG_ESP_SYSTEM_EVENT_QUEUE_SIZE "32") -set(CONFIG_ESP_SYSTEM_EVENT_TASK_STACK_SIZE "2304") -set(CONFIG_ESP_MAIN_TASK_STACK_SIZE "3584") -set(CONFIG_ESP_MAIN_TASK_AFFINITY_CPU0 "y") -set(CONFIG_ESP_MAIN_TASK_AFFINITY_NO_AFFINITY "") -set(CONFIG_ESP_MAIN_TASK_AFFINITY "0x0") -set(CONFIG_ESP_MINIMAL_SHARED_STACK_SIZE "2048") -set(CONFIG_ESP_CONSOLE_UART_DEFAULT "y") -set(CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG "") -set(CONFIG_ESP_CONSOLE_UART_CUSTOM "") -set(CONFIG_ESP_CONSOLE_NONE "") -set(CONFIG_ESP_CONSOLE_SECONDARY_NONE "") -set(CONFIG_ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG "y") -set(CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED "y") -set(CONFIG_ESP_CONSOLE_UART "y") -set(CONFIG_ESP_CONSOLE_UART_NUM "0") -set(CONFIG_ESP_CONSOLE_ROM_SERIAL_PORT_NUM "0") -set(CONFIG_ESP_CONSOLE_UART_BAUDRATE "115200") -set(CONFIG_ESP_INT_WDT "y") -set(CONFIG_ESP_INT_WDT_TIMEOUT_MS "300") -set(CONFIG_ESP_TASK_WDT_EN "y") -set(CONFIG_ESP_TASK_WDT_INIT "y") -set(CONFIG_ESP_TASK_WDT_PANIC "") -set(CONFIG_ESP_TASK_WDT_TIMEOUT_S "5") -set(CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0 "y") -set(CONFIG_ESP_PANIC_HANDLER_IRAM "") -set(CONFIG_ESP_DEBUG_STUBS_ENABLE "") -set(CONFIG_ESP_DEBUG_INCLUDE_OCD_STUB_BINS "") -set(CONFIG_ESP_DEBUG_OCDAWARE "y") -set(CONFIG_ESP_SYSTEM_CHECK_INT_LEVEL_4 "y") -set(CONFIG_ESP_SYSTEM_HW_STACK_GUARD "y") -set(CONFIG_ESP_SYSTEM_BBPLL_RECALIB "y") -set(CONFIG_ESP_SYSTEM_HW_PC_RECORD "y") -set(CONFIG_ESP_IPC_TASK_STACK_SIZE "1024") -set(CONFIG_FREERTOS_SMP "") -set(CONFIG_FREERTOS_UNICORE "y") -set(CONFIG_FREERTOS_HZ "100") -set(CONFIG_FREERTOS_OPTIMIZED_SCHEDULER "y") -set(CONFIG_FREERTOS_CHECK_STACKOVERFLOW_NONE "") -set(CONFIG_FREERTOS_CHECK_STACKOVERFLOW_PTRVAL "") -set(CONFIG_FREERTOS_CHECK_STACKOVERFLOW_CANARY "y") -set(CONFIG_FREERTOS_THREAD_LOCAL_STORAGE_POINTERS "1") -set(CONFIG_FREERTOS_IDLE_TASK_STACKSIZE "1536") -set(CONFIG_FREERTOS_USE_IDLE_HOOK "") -set(CONFIG_FREERTOS_USE_TICK_HOOK "") -set(CONFIG_FREERTOS_MAX_TASK_NAME_LEN "16") -set(CONFIG_FREERTOS_ENABLE_BACKWARD_COMPATIBILITY "") -set(CONFIG_FREERTOS_USE_TIMERS "y") -set(CONFIG_FREERTOS_TIMER_SERVICE_TASK_NAME "Tmr Svc") -set(CONFIG_FREERTOS_TIMER_TASK_AFFINITY_CPU0 "") -set(CONFIG_FREERTOS_TIMER_TASK_NO_AFFINITY "y") -set(CONFIG_FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY "0x7fffffff") -set(CONFIG_FREERTOS_TIMER_TASK_PRIORITY "1") -set(CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH "2048") -set(CONFIG_FREERTOS_TIMER_QUEUE_LENGTH "10") -set(CONFIG_FREERTOS_QUEUE_REGISTRY_SIZE "0") -set(CONFIG_FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES "1") -set(CONFIG_FREERTOS_USE_TRACE_FACILITY "") -set(CONFIG_FREERTOS_USE_LIST_DATA_INTEGRITY_CHECK_BYTES "") -set(CONFIG_FREERTOS_GENERATE_RUN_TIME_STATS "") -set(CONFIG_FREERTOS_USE_APPLICATION_TASK_TAG "") -set(CONFIG_FREERTOS_WATCHPOINT_END_OF_STACK "") -set(CONFIG_FREERTOS_TLSP_DELETION_CALLBACKS "y") -set(CONFIG_FREERTOS_TASK_PRE_DELETION_HOOK "") -set(CONFIG_FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP "") -set(CONFIG_FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER "y") -set(CONFIG_FREERTOS_ISR_STACKSIZE "1536") -set(CONFIG_FREERTOS_INTERRUPT_BACKTRACE "y") -set(CONFIG_FREERTOS_TICK_SUPPORT_SYSTIMER "y") -set(CONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL1 "y") -set(CONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL3 "") -set(CONFIG_FREERTOS_SYSTICK_USES_SYSTIMER "y") -set(CONFIG_FREERTOS_PLACE_FUNCTIONS_INTO_FLASH "") -set(CONFIG_FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE "") -set(CONFIG_FREERTOS_PORT "y") -set(CONFIG_FREERTOS_NO_AFFINITY "0x7fffffff") -set(CONFIG_FREERTOS_SUPPORT_STATIC_ALLOCATION "y") -set(CONFIG_FREERTOS_DEBUG_OCDAWARE "y") -set(CONFIG_FREERTOS_ENABLE_TASK_SNAPSHOT "y") -set(CONFIG_FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH "y") -set(CONFIG_FREERTOS_NUMBER_OF_CORES "1") -set(CONFIG_FREERTOS_IN_IRAM "y") -set(CONFIG_HAL_ASSERTION_EQUALS_SYSTEM "y") -set(CONFIG_HAL_ASSERTION_DISABLE "") -set(CONFIG_HAL_ASSERTION_SILENT "") -set(CONFIG_HAL_DEFAULT_ASSERTION_LEVEL "1") -set(CONFIG_HAL_SYSTIMER_USE_ROM_IMPL "y") -set(CONFIG_HAL_WDT_USE_ROM_IMPL "y") -set(CONFIG_HAL_ECDSA_GEN_SIG_CM "") -set(CONFIG_LOG_VERSION_1 "y") -set(CONFIG_LOG_VERSION_2 "") -set(CONFIG_LOG_VERSION "1") -set(CONFIG_LOG_DEFAULT_LEVEL_NONE "y") -set(CONFIG_LOG_DEFAULT_LEVEL_ERROR "") -set(CONFIG_LOG_DEFAULT_LEVEL_WARN "") -set(CONFIG_LOG_DEFAULT_LEVEL_INFO "") -set(CONFIG_LOG_DEFAULT_LEVEL_DEBUG "") -set(CONFIG_LOG_DEFAULT_LEVEL_VERBOSE "") -set(CONFIG_LOG_DEFAULT_LEVEL "0") -set(CONFIG_LOG_MAXIMUM_EQUALS_DEFAULT "y") -set(CONFIG_LOG_MAXIMUM_LEVEL_ERROR "") -set(CONFIG_LOG_MAXIMUM_LEVEL_WARN "") -set(CONFIG_LOG_MAXIMUM_LEVEL_INFO "") -set(CONFIG_LOG_MAXIMUM_LEVEL_DEBUG "") -set(CONFIG_LOG_MAXIMUM_LEVEL_VERBOSE "") -set(CONFIG_LOG_MAXIMUM_LEVEL "0") -set(CONFIG_LOG_MASTER_LEVEL "") -set(CONFIG_LOG_DYNAMIC_LEVEL_CONTROL "y") -set(CONFIG_LOG_TAG_LEVEL_IMPL_NONE "") -set(CONFIG_LOG_TAG_LEVEL_IMPL_LINKED_LIST "") -set(CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST "y") -set(CONFIG_LOG_TAG_LEVEL_CACHE_ARRAY "") -set(CONFIG_LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP "y") -set(CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_SIZE "31") -set(CONFIG_LOG_COLORS "") -set(CONFIG_LOG_TIMESTAMP_SOURCE_RTOS "y") -set(CONFIG_LOG_TIMESTAMP_SOURCE_SYSTEM "") -set(CONFIG_LOG_MODE_TEXT_EN "y") -set(CONFIG_LOG_MODE_TEXT "y") -set(CONFIG_LOG_IN_IRAM "y") -set(CONFIG_LIBC_NEWLIB "y") -set(CONFIG_LIBC_MISC_IN_IRAM "y") -set(CONFIG_LIBC_LOCKS_PLACE_IN_IRAM "y") -set(CONFIG_LIBC_NEWLIB_NANO_FORMAT "y") -set(CONFIG_LIBC_TIME_SYSCALL_USE_RTC_HRT "y") -set(CONFIG_LIBC_TIME_SYSCALL_USE_RTC "") -set(CONFIG_LIBC_TIME_SYSCALL_USE_HRT "") -set(CONFIG_LIBC_TIME_SYSCALL_USE_NONE "") -set(CONFIG_LIBC_OPTIMIZED_MISALIGNED_ACCESS "") -set(CONFIG_MMU_PAGE_SIZE_32KB "y") -set(CONFIG_MMU_PAGE_MODE "32KB") -set(CONFIG_MMU_PAGE_SIZE "0x8000") -set(CONFIG_SPI_FLASH_BROWNOUT_RESET_XMC "y") -set(CONFIG_SPI_FLASH_BROWNOUT_RESET "y") -set(CONFIG_SPI_FLASH_AUTO_SUSPEND "") -set(CONFIG_SPI_FLASH_SUSPEND_TSUS_VAL_US "50") -set(CONFIG_SPI_FLASH_FORCE_ENABLE_XMC_C_SUSPEND "") -set(CONFIG_SPI_FLASH_FORCE_ENABLE_C6_H2_SUSPEND "") -set(CONFIG_SPI_FLASH_PLACE_FUNCTIONS_IN_IRAM "y") -set(CONFIG_SPI_FLASH_VERIFY_WRITE "") -set(CONFIG_SPI_FLASH_ENABLE_COUNTERS "") -set(CONFIG_SPI_FLASH_ROM_DRIVER_PATCH "y") -set(CONFIG_SPI_FLASH_ROM_IMPL "") -set(CONFIG_SPI_FLASH_DANGEROUS_WRITE_ABORTS "y") -set(CONFIG_SPI_FLASH_DANGEROUS_WRITE_FAILS "") -set(CONFIG_SPI_FLASH_DANGEROUS_WRITE_ALLOWED "") -set(CONFIG_SPI_FLASH_BYPASS_BLOCK_ERASE "") -set(CONFIG_SPI_FLASH_YIELD_DURING_ERASE "y") -set(CONFIG_SPI_FLASH_ERASE_YIELD_DURATION_MS "20") -set(CONFIG_SPI_FLASH_ERASE_YIELD_TICKS "1") -set(CONFIG_SPI_FLASH_WRITE_CHUNK_SIZE "8192") -set(CONFIG_SPI_FLASH_SIZE_OVERRIDE "") -set(CONFIG_SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED "") -set(CONFIG_SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST "") -set(CONFIG_SPI_FLASH_VENDOR_XMC_SUPPORT_ENABLED "y") -set(CONFIG_SPI_FLASH_VENDOR_GD_SUPPORT_ENABLED "y") -set(CONFIG_SPI_FLASH_SUPPORT_ISSI_CHIP "") -set(CONFIG_SPI_FLASH_SUPPORT_MXIC_CHIP "") -set(CONFIG_SPI_FLASH_SUPPORT_GD_CHIP "y") -set(CONFIG_SPI_FLASH_SUPPORT_WINBOND_CHIP "") -set(CONFIG_SPI_FLASH_SUPPORT_BOYA_CHIP "") -set(CONFIG_SPI_FLASH_SUPPORT_TH_CHIP "") -set(CONFIG_SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE "y") -set(CONFIG_IDF_EXPERIMENTAL_FEATURES "") -set(CONFIGS_LIST CONFIG_SOC_CAPS_ECO_VER_MAX;CONFIG_SOC_ADC_SUPPORTED;CONFIG_SOC_ANA_CMPR_SUPPORTED;CONFIG_SOC_DEDICATED_GPIO_SUPPORTED;CONFIG_SOC_UART_SUPPORTED;CONFIG_SOC_UHCI_SUPPORTED;CONFIG_SOC_GDMA_SUPPORTED;CONFIG_SOC_AHB_GDMA_SUPPORTED;CONFIG_SOC_ASYNC_MEMCPY_SUPPORTED;CONFIG_SOC_PCNT_SUPPORTED;CONFIG_SOC_MCPWM_SUPPORTED;CONFIG_SOC_TWAI_SUPPORTED;CONFIG_SOC_PHY_SUPPORTED;CONFIG_SOC_BT_SUPPORTED;CONFIG_SOC_GPTIMER_SUPPORTED;CONFIG_SOC_IEEE802154_SUPPORTED;CONFIG_SOC_IEEE802154_BLE_ONLY;CONFIG_SOC_USB_SERIAL_JTAG_SUPPORTED;CONFIG_SOC_TEMP_SENSOR_SUPPORTED;CONFIG_SOC_SUPPORTS_SECURE_DL_MODE;CONFIG_SOC_EFUSE_KEY_PURPOSE_FIELD;CONFIG_SOC_EFUSE_SUPPORTED;CONFIG_SOC_RTC_FAST_MEM_SUPPORTED;CONFIG_SOC_RTC_MEM_SUPPORTED;CONFIG_SOC_I2S_SUPPORTED;CONFIG_SOC_SDM_SUPPORTED;CONFIG_SOC_ETM_SUPPORTED;CONFIG_SOC_RMT_SUPPORTED;CONFIG_SOC_PARLIO_SUPPORTED;CONFIG_SOC_GPSPI_SUPPORTED;CONFIG_SOC_LEDC_SUPPORTED;CONFIG_SOC_I2C_SUPPORTED;CONFIG_SOC_SYSTIMER_SUPPORTED;CONFIG_SOC_SUPPORT_COEXISTENCE;CONFIG_SOC_AES_SUPPORTED;CONFIG_SOC_MPI_SUPPORTED;CONFIG_SOC_SHA_SUPPORTED;CONFIG_SOC_HMAC_SUPPORTED;CONFIG_SOC_DIG_SIGN_SUPPORTED;CONFIG_SOC_ECC_SUPPORTED;CONFIG_SOC_ECC_EXTENDED_MODES_SUPPORTED;CONFIG_SOC_ECDSA_SUPPORTED;CONFIG_SOC_FLASH_ENC_SUPPORTED;CONFIG_SOC_SECURE_BOOT_SUPPORTED;CONFIG_SOC_BOD_SUPPORTED;CONFIG_SOC_VBAT_SUPPORTED;CONFIG_SOC_APM_SUPPORTED;CONFIG_SOC_PMU_SUPPORTED;CONFIG_SOC_LP_TIMER_SUPPORTED;CONFIG_SOC_LP_AON_SUPPORTED;CONFIG_SOC_PAU_SUPPORTED;CONFIG_SOC_CLK_TREE_SUPPORTED;CONFIG_SOC_ASSIST_DEBUG_SUPPORTED;CONFIG_SOC_WDT_SUPPORTED;CONFIG_SOC_SPI_FLASH_SUPPORTED;CONFIG_SOC_RNG_SUPPORTED;CONFIG_SOC_LIGHT_SLEEP_SUPPORTED;CONFIG_SOC_DEEP_SLEEP_SUPPORTED;CONFIG_SOC_MODEM_CLOCK_SUPPORTED;CONFIG_SOC_PM_SUPPORTED;CONFIG_SOC_XTAL_SUPPORT_32M;CONFIG_SOC_XTAL_CLOCK_PATH_DEPENDS_ON_TOP_DOMAIN;CONFIG_SOC_AES_SUPPORT_DMA;CONFIG_SOC_AES_GDMA;CONFIG_SOC_AES_SUPPORT_AES_128;CONFIG_SOC_AES_SUPPORT_AES_256;CONFIG_SOC_AES_SUPPORT_PSEUDO_ROUND_FUNCTION;CONFIG_SOC_ADC_DIG_CTRL_SUPPORTED;CONFIG_SOC_ADC_DIG_IIR_FILTER_SUPPORTED;CONFIG_SOC_ADC_MONITOR_SUPPORTED;CONFIG_SOC_ADC_DMA_SUPPORTED;CONFIG_SOC_ADC_PERIPH_NUM;CONFIG_SOC_ADC_MAX_CHANNEL_NUM;CONFIG_SOC_ADC_ATTEN_NUM;CONFIG_SOC_ADC_DIGI_CONTROLLER_NUM;CONFIG_SOC_ADC_PATT_LEN_MAX;CONFIG_SOC_ADC_DIGI_MAX_BITWIDTH;CONFIG_SOC_ADC_DIGI_MIN_BITWIDTH;CONFIG_SOC_ADC_DIGI_IIR_FILTER_NUM;CONFIG_SOC_ADC_DIGI_MONITOR_NUM;CONFIG_SOC_ADC_DIGI_RESULT_BYTES;CONFIG_SOC_ADC_DIGI_DATA_BYTES_PER_CONV;CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_HIGH;CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_LOW;CONFIG_SOC_ADC_RTC_MIN_BITWIDTH;CONFIG_SOC_ADC_RTC_MAX_BITWIDTH;CONFIG_SOC_ADC_CALIBRATION_V1_SUPPORTED;CONFIG_SOC_ADC_SELF_HW_CALI_SUPPORTED;CONFIG_SOC_ADC_CALIB_CHAN_COMPENS_SUPPORTED;CONFIG_SOC_ADC_TEMPERATURE_SHARE_INTR;CONFIG_SOC_ADC_SHARED_POWER;CONFIG_SOC_BROWNOUT_RESET_SUPPORTED;CONFIG_SOC_SHARED_IDCACHE_SUPPORTED;CONFIG_SOC_CACHE_FREEZE_SUPPORTED;CONFIG_SOC_CPU_CORES_NUM;CONFIG_SOC_CPU_INTR_NUM;CONFIG_SOC_CPU_HAS_FLEXIBLE_INTC;CONFIG_SOC_INT_PLIC_SUPPORTED;CONFIG_SOC_CPU_HAS_CSR_PC;CONFIG_SOC_CPU_BREAKPOINTS_NUM;CONFIG_SOC_CPU_WATCHPOINTS_NUM;CONFIG_SOC_CPU_WATCHPOINT_MAX_REGION_SIZE;CONFIG_SOC_CPU_HAS_PMA;CONFIG_SOC_CPU_IDRAM_SPLIT_USING_PMP;CONFIG_SOC_CPU_PMP_REGION_GRANULARITY;CONFIG_SOC_MMU_PAGE_SIZE_CONFIGURABLE;CONFIG_SOC_MMU_PAGE_SIZE_8KB_SUPPORTED;CONFIG_SOC_MMU_PERIPH_NUM;CONFIG_SOC_MMU_LINEAR_ADDRESS_REGION_NUM;CONFIG_SOC_MMU_DI_VADDR_SHARED;CONFIG_SOC_DS_SIGNATURE_MAX_BIT_LEN;CONFIG_SOC_DS_KEY_PARAM_MD_IV_LENGTH;CONFIG_SOC_DS_KEY_CHECK_MAX_WAIT_US;CONFIG_SOC_AHB_GDMA_VERSION;CONFIG_SOC_GDMA_NUM_GROUPS_MAX;CONFIG_SOC_GDMA_PAIRS_PER_GROUP_MAX;CONFIG_SOC_GDMA_SUPPORT_ETM;CONFIG_SOC_GDMA_SUPPORT_SLEEP_RETENTION;CONFIG_SOC_ETM_GROUPS;CONFIG_SOC_ETM_CHANNELS_PER_GROUP;CONFIG_SOC_ETM_SUPPORT_SLEEP_RETENTION;CONFIG_SOC_GPIO_PORT;CONFIG_SOC_GPIO_PIN_COUNT;CONFIG_SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER;CONFIG_SOC_GPIO_FLEX_GLITCH_FILTER_NUM;CONFIG_SOC_GPIO_SUPPORT_PIN_HYS_FILTER;CONFIG_SOC_GPIO_SUPPORT_PIN_HYS_CTRL_BY_EFUSE;CONFIG_SOC_GPIO_SUPPORT_ETM;CONFIG_SOC_GPIO_SUPPORT_RTC_INDEPENDENT;CONFIG_SOC_LP_IO_CLOCK_IS_INDEPENDENT;CONFIG_SOC_GPIO_IN_RANGE_MAX;CONFIG_SOC_GPIO_OUT_RANGE_MAX;CONFIG_SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK;CONFIG_SOC_GPIO_SUPPORT_FORCE_HOLD;CONFIG_SOC_GPIO_SUPPORT_HOLD_IO_IN_DSLP;CONFIG_SOC_GPIO_SUPPORT_HOLD_SINGLE_IO_IN_DSLP;CONFIG_SOC_GPIO_CLOCKOUT_BY_GPIO_MATRIX;CONFIG_SOC_CLOCKOUT_HAS_SOURCE_GATE;CONFIG_SOC_GPIO_CLOCKOUT_CHANNEL_NUM;CONFIG_SOC_RTCIO_PIN_COUNT;CONFIG_SOC_RTCIO_HOLD_SUPPORTED;CONFIG_SOC_DEDIC_GPIO_OUT_CHANNELS_NUM;CONFIG_SOC_DEDIC_GPIO_IN_CHANNELS_NUM;CONFIG_SOC_DEDIC_PERIPH_ALWAYS_ENABLE;CONFIG_SOC_ANA_CMPR_NUM;CONFIG_SOC_ANA_CMPR_INTR_SHARE_WITH_GPIO;CONFIG_SOC_I2C_NUM;CONFIG_SOC_HP_I2C_NUM;CONFIG_SOC_I2C_FIFO_LEN;CONFIG_SOC_I2C_CMD_REG_NUM;CONFIG_SOC_I2C_SUPPORT_SLAVE;CONFIG_SOC_I2C_SUPPORT_HW_FSM_RST;CONFIG_SOC_I2C_SUPPORT_HW_CLR_BUS;CONFIG_SOC_I2C_SUPPORT_XTAL;CONFIG_SOC_I2C_SUPPORT_RTC;CONFIG_SOC_I2C_SUPPORT_10BIT_ADDR;CONFIG_SOC_I2C_SLAVE_SUPPORT_BROADCAST;CONFIG_SOC_I2C_SLAVE_CAN_GET_STRETCH_CAUSE;CONFIG_SOC_I2C_SLAVE_SUPPORT_I2CRAM_ACCESS;CONFIG_SOC_I2C_SLAVE_SUPPORT_SLAVE_UNMATCH;CONFIG_SOC_I2C_SUPPORT_SLEEP_RETENTION;CONFIG_SOC_I2S_NUM;CONFIG_SOC_I2S_HW_VERSION_2;CONFIG_SOC_I2S_SUPPORTS_ETM;CONFIG_SOC_I2S_SUPPORTS_XTAL;CONFIG_SOC_I2S_SUPPORTS_PLL_F96M;CONFIG_SOC_I2S_SUPPORTS_PLL_F64M;CONFIG_SOC_I2S_SUPPORTS_PCM;CONFIG_SOC_I2S_SUPPORTS_PDM;CONFIG_SOC_I2S_SUPPORTS_PDM_TX;CONFIG_SOC_I2S_SUPPORTS_PCM2PDM;CONFIG_SOC_I2S_SUPPORTS_PDM_RX;CONFIG_SOC_I2S_PDM_MAX_TX_LINES;CONFIG_SOC_I2S_PDM_MAX_RX_LINES;CONFIG_SOC_I2S_SUPPORTS_TDM;CONFIG_SOC_I2S_TDM_FULL_DATA_WIDTH;CONFIG_SOC_I2S_SUPPORT_SLEEP_RETENTION;CONFIG_SOC_LEDC_SUPPORT_PLL_DIV_CLOCK;CONFIG_SOC_LEDC_SUPPORT_XTAL_CLOCK;CONFIG_SOC_LEDC_TIMER_NUM;CONFIG_SOC_LEDC_CHANNEL_NUM;CONFIG_SOC_LEDC_TIMER_BIT_WIDTH;CONFIG_SOC_LEDC_SUPPORT_FADE_STOP;CONFIG_SOC_LEDC_GAMMA_CURVE_FADE_SUPPORTED;CONFIG_SOC_LEDC_GAMMA_CURVE_FADE_RANGE_MAX;CONFIG_SOC_LEDC_FADE_PARAMS_BIT_WIDTH;CONFIG_SOC_LEDC_SUPPORT_SLEEP_RETENTION;CONFIG_SOC_MPU_MIN_REGION_SIZE;CONFIG_SOC_MPU_REGIONS_MAX_NUM;CONFIG_SOC_PCNT_GROUPS;CONFIG_SOC_PCNT_UNITS_PER_GROUP;CONFIG_SOC_PCNT_CHANNELS_PER_UNIT;CONFIG_SOC_PCNT_THRES_POINT_PER_UNIT;CONFIG_SOC_PCNT_SUPPORT_RUNTIME_THRES_UPDATE;CONFIG_SOC_PCNT_SUPPORT_STEP_NOTIFY;CONFIG_SOC_PCNT_SUPPORT_SLEEP_RETENTION;CONFIG_SOC_RMT_GROUPS;CONFIG_SOC_RMT_TX_CANDIDATES_PER_GROUP;CONFIG_SOC_RMT_RX_CANDIDATES_PER_GROUP;CONFIG_SOC_RMT_CHANNELS_PER_GROUP;CONFIG_SOC_RMT_MEM_WORDS_PER_CHANNEL;CONFIG_SOC_RMT_SUPPORT_RX_PINGPONG;CONFIG_SOC_RMT_SUPPORT_RX_DEMODULATION;CONFIG_SOC_RMT_SUPPORT_TX_ASYNC_STOP;CONFIG_SOC_RMT_SUPPORT_TX_LOOP_COUNT;CONFIG_SOC_RMT_SUPPORT_TX_LOOP_AUTO_STOP;CONFIG_SOC_RMT_SUPPORT_TX_SYNCHRO;CONFIG_SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY;CONFIG_SOC_RMT_SUPPORT_XTAL;CONFIG_SOC_RMT_SUPPORT_RC_FAST;CONFIG_SOC_RMT_SUPPORT_SLEEP_RETENTION;CONFIG_SOC_MCPWM_GROUPS;CONFIG_SOC_MCPWM_TIMERS_PER_GROUP;CONFIG_SOC_MCPWM_OPERATORS_PER_GROUP;CONFIG_SOC_MCPWM_COMPARATORS_PER_OPERATOR;CONFIG_SOC_MCPWM_GENERATORS_PER_OPERATOR;CONFIG_SOC_MCPWM_TRIGGERS_PER_OPERATOR;CONFIG_SOC_MCPWM_GPIO_FAULTS_PER_GROUP;CONFIG_SOC_MCPWM_CAPTURE_TIMERS_PER_GROUP;CONFIG_SOC_MCPWM_CAPTURE_CHANNELS_PER_TIMER;CONFIG_SOC_MCPWM_GPIO_SYNCHROS_PER_GROUP;CONFIG_SOC_MCPWM_SWSYNC_CAN_PROPAGATE;CONFIG_SOC_MCPWM_SUPPORT_ETM;CONFIG_SOC_MCPWM_CAPTURE_CLK_FROM_GROUP;CONFIG_SOC_MCPWM_SUPPORT_SLEEP_RETENTION;CONFIG_SOC_PARLIO_GROUPS;CONFIG_SOC_PARLIO_TX_UNITS_PER_GROUP;CONFIG_SOC_PARLIO_RX_UNITS_PER_GROUP;CONFIG_SOC_PARLIO_TX_UNIT_MAX_DATA_WIDTH;CONFIG_SOC_PARLIO_RX_UNIT_MAX_DATA_WIDTH;CONFIG_SOC_PARLIO_TX_CLK_SUPPORT_GATING;CONFIG_SOC_PARLIO_RX_CLK_SUPPORT_GATING;CONFIG_SOC_PARLIO_RX_CLK_SUPPORT_OUTPUT;CONFIG_SOC_PARLIO_TRANS_BIT_ALIGN;CONFIG_SOC_PARLIO_TX_SUPPORT_LOOP_TRANSMISSION;CONFIG_SOC_PARLIO_SUPPORT_SLEEP_RETENTION;CONFIG_SOC_PARLIO_SUPPORT_SPI_LCD;CONFIG_SOC_MPI_MEM_BLOCKS_NUM;CONFIG_SOC_MPI_OPERATIONS_NUM;CONFIG_SOC_RSA_MAX_BIT_LEN;CONFIG_SOC_SHA_DMA_MAX_BUFFER_SIZE;CONFIG_SOC_SHA_SUPPORT_DMA;CONFIG_SOC_SHA_SUPPORT_RESUME;CONFIG_SOC_SHA_GDMA;CONFIG_SOC_SHA_SUPPORT_SHA1;CONFIG_SOC_SHA_SUPPORT_SHA224;CONFIG_SOC_SHA_SUPPORT_SHA256;CONFIG_SOC_SDM_GROUPS;CONFIG_SOC_SDM_CHANNELS_PER_GROUP;CONFIG_SOC_SDM_CLK_SUPPORT_PLL_F48M;CONFIG_SOC_SDM_CLK_SUPPORT_XTAL;CONFIG_SOC_SPI_PERIPH_NUM;CONFIG_SOC_SPI_MAX_CS_NUM;CONFIG_SOC_SPI_MAXIMUM_BUFFER_SIZE;CONFIG_SOC_SPI_SUPPORT_DDRCLK;CONFIG_SOC_SPI_SLAVE_SUPPORT_SEG_TRANS;CONFIG_SOC_SPI_SUPPORT_CD_SIG;CONFIG_SOC_SPI_SUPPORT_CONTINUOUS_TRANS;CONFIG_SOC_SPI_SUPPORT_SLAVE_HD_VER2;CONFIG_SOC_SPI_SUPPORT_SLEEP_RETENTION;CONFIG_SOC_SPI_SUPPORT_CLK_XTAL;CONFIG_SOC_SPI_SUPPORT_CLK_PLL_F48M;CONFIG_SOC_SPI_SUPPORT_CLK_RC_FAST;CONFIG_SOC_SPI_SCT_SUPPORTED;CONFIG_SOC_SPI_SCT_REG_NUM;CONFIG_SOC_SPI_SCT_BUFFER_NUM_MAX;CONFIG_SOC_SPI_SCT_CONF_BITLEN_MAX;CONFIG_SOC_MEMSPI_IS_INDEPENDENT;CONFIG_SOC_SPI_MAX_PRE_DIVIDER;CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE;CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND;CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_RESUME;CONFIG_SOC_SPI_MEM_SUPPORT_IDLE_INTR;CONFIG_SOC_SPI_MEM_SUPPORT_SW_SUSPEND;CONFIG_SOC_SPI_MEM_SUPPORT_CHECK_SUS;CONFIG_SOC_SPI_MEM_SUPPORT_WRAP;CONFIG_SOC_MEMSPI_SRC_FREQ_64M_SUPPORTED;CONFIG_SOC_MEMSPI_SRC_FREQ_32M_SUPPORTED;CONFIG_SOC_MEMSPI_SRC_FREQ_16M_SUPPORTED;CONFIG_SOC_SYSTIMER_COUNTER_NUM;CONFIG_SOC_SYSTIMER_ALARM_NUM;CONFIG_SOC_SYSTIMER_BIT_WIDTH_LO;CONFIG_SOC_SYSTIMER_BIT_WIDTH_HI;CONFIG_SOC_SYSTIMER_FIXED_DIVIDER;CONFIG_SOC_SYSTIMER_SUPPORT_RC_FAST;CONFIG_SOC_SYSTIMER_INT_LEVEL;CONFIG_SOC_SYSTIMER_ALARM_MISS_COMPENSATE;CONFIG_SOC_SYSTIMER_SUPPORT_ETM;CONFIG_SOC_LP_TIMER_BIT_WIDTH_LO;CONFIG_SOC_LP_TIMER_BIT_WIDTH_HI;CONFIG_SOC_TIMER_GROUPS;CONFIG_SOC_TIMER_GROUP_TIMERS_PER_GROUP;CONFIG_SOC_TIMER_GROUP_COUNTER_BIT_WIDTH;CONFIG_SOC_TIMER_GROUP_SUPPORT_XTAL;CONFIG_SOC_TIMER_GROUP_SUPPORT_RC_FAST;CONFIG_SOC_TIMER_GROUP_TOTAL_TIMERS;CONFIG_SOC_TIMER_SUPPORT_ETM;CONFIG_SOC_TIMER_SUPPORT_SLEEP_RETENTION;CONFIG_SOC_MWDT_SUPPORT_XTAL;CONFIG_SOC_MWDT_SUPPORT_SLEEP_RETENTION;CONFIG_SOC_TWAI_CONTROLLER_NUM;CONFIG_SOC_TWAI_MASK_FILTER_NUM;CONFIG_SOC_TWAI_CLK_SUPPORT_XTAL;CONFIG_SOC_TWAI_BRP_MIN;CONFIG_SOC_TWAI_BRP_MAX;CONFIG_SOC_TWAI_SUPPORTS_RX_STATUS;CONFIG_SOC_TWAI_SUPPORT_SLEEP_RETENTION;CONFIG_SOC_EFUSE_DIS_PAD_JTAG;CONFIG_SOC_EFUSE_DIS_USB_JTAG;CONFIG_SOC_EFUSE_DIS_DIRECT_BOOT;CONFIG_SOC_EFUSE_SOFT_DIS_JTAG;CONFIG_SOC_EFUSE_DIS_ICACHE;CONFIG_SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK;CONFIG_SOC_EFUSE_ECDSA_USE_HARDWARE_K;CONFIG_SOC_EFUSE_ECDSA_KEY;CONFIG_SOC_SECURE_BOOT_V2_RSA;CONFIG_SOC_SECURE_BOOT_V2_ECC;CONFIG_SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS;CONFIG_SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS;CONFIG_SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY;CONFIG_SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX;CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES;CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_128;CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_SUPPORT_PSEUDO_ROUND;CONFIG_SOC_APM_CTRL_FILTER_SUPPORTED;CONFIG_SOC_CRYPTO_DPA_PROTECTION_SUPPORTED;CONFIG_SOC_ECC_CONSTANT_TIME_POINT_MUL;CONFIG_SOC_ECDSA_USES_MPI;CONFIG_SOC_ECDSA_SUPPORT_DETERMINISTIC_MODE;CONFIG_SOC_ECDSA_SUPPORT_HW_DETERMINISTIC_LOOP;CONFIG_SOC_ECDSA_P192_CURVE_DEFAULT_DISABLED;CONFIG_SOC_UART_NUM;CONFIG_SOC_UART_HP_NUM;CONFIG_SOC_UART_FIFO_LEN;CONFIG_SOC_UART_BITRATE_MAX;CONFIG_SOC_UART_SUPPORT_RTC_CLK;CONFIG_SOC_UART_SUPPORT_XTAL_CLK;CONFIG_SOC_UART_SUPPORT_WAKEUP_INT;CONFIG_SOC_UART_SUPPORT_FSM_TX_WAIT_SEND;CONFIG_SOC_UART_SUPPORT_SLEEP_RETENTION;CONFIG_SOC_UART_WAKEUP_CHARS_SEQ_MAX_LEN;CONFIG_SOC_UART_WAKEUP_SUPPORT_ACTIVE_THRESH_MODE;CONFIG_SOC_UART_WAKEUP_SUPPORT_FIFO_THRESH_MODE;CONFIG_SOC_UART_WAKEUP_SUPPORT_START_BIT_MODE;CONFIG_SOC_UART_WAKEUP_SUPPORT_CHAR_SEQ_MODE;CONFIG_SOC_UHCI_NUM;CONFIG_SOC_COEX_HW_PTI;CONFIG_SOC_EXTERNAL_COEX_ADVANCE;CONFIG_SOC_PHY_DIG_REGS_MEM_SIZE;CONFIG_SOC_PM_SUPPORT_BT_WAKEUP;CONFIG_SOC_PM_SUPPORT_EXT1_WAKEUP;CONFIG_SOC_PM_SUPPORT_EXT1_WAKEUP_MODE_PER_PIN;CONFIG_SOC_PM_SUPPORT_CPU_PD;CONFIG_SOC_PM_SUPPORT_MODEM_PD;CONFIG_SOC_PM_SUPPORT_XTAL32K_PD;CONFIG_SOC_PM_SUPPORT_RC32K_PD;CONFIG_SOC_PM_SUPPORT_RC_FAST_PD;CONFIG_SOC_PM_SUPPORT_VDDSDIO_PD;CONFIG_SOC_PM_SUPPORT_TOP_PD;CONFIG_SOC_PM_PAU_LINK_NUM;CONFIG_SOC_PM_PAU_REGDMA_LINK_MULTI_ADDR;CONFIG_SOC_PM_PAU_REGDMA_LINK_WIFIMAC;CONFIG_SOC_PM_PAU_REGDMA_UPDATE_CACHE_BEFORE_WAIT_COMPARE;CONFIG_SOC_PM_RETENTION_MODULE_NUM;CONFIG_SOC_EXT_MEM_CACHE_TAG_IN_CPU_DOMAIN;CONFIG_SOC_PM_CPU_RETENTION_BY_SW;CONFIG_SOC_PM_MODEM_RETENTION_BY_REGDMA;CONFIG_SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY;CONFIG_SOC_PM_RETENTION_SW_TRIGGER_REGDMA;CONFIG_SOC_PM_SUPPORT_PMU_CLK_ICG;CONFIG_SOC_CLK_RC_FAST_SUPPORT_CALIBRATION;CONFIG_SOC_CLK_XTAL32K_SUPPORTED;CONFIG_SOC_CLK_OSC_SLOW_SUPPORTED;CONFIG_SOC_CLK_RC32K_SUPPORTED;CONFIG_SOC_CLK_LP_FAST_SUPPORT_LP_PLL;CONFIG_SOC_CLK_LP_FAST_SUPPORT_XTAL_D2;CONFIG_SOC_MODEM_CLOCK_IS_INDEPENDENT;CONFIG_SOC_RCC_IS_INDEPENDENT;CONFIG_SOC_CLK_ANA_I2C_MST_HAS_ROOT_GATE;CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC;CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_XTAL;CONFIG_SOC_TEMPERATURE_SENSOR_INTR_SUPPORT;CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_ETM;CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_SLEEP_RETENTION;CONFIG_SOC_TEMPERATURE_SENSOR_UNDER_PD_TOP_DOMAIN;CONFIG_SOC_RNG_CLOCK_IS_INDEPENDENT;CONFIG_SOC_BLE_SUPPORTED;CONFIG_SOC_BLE_MESH_SUPPORTED;CONFIG_SOC_ESP_NIMBLE_CONTROLLER;CONFIG_SOC_BLE_50_SUPPORTED;CONFIG_SOC_BLE_DEVICE_PRIVACY_SUPPORTED;CONFIG_SOC_BLE_POWER_CONTROL_SUPPORTED;CONFIG_SOC_BLE_MULTI_CONN_OPTIMIZATION;CONFIG_SOC_BLE_PERIODIC_ADV_ENH_SUPPORTED;CONFIG_SOC_BLE_CTE_SUPPORTED;CONFIG_SOC_DEBUG_HAVE_OCD_STUB_BINS;CONFIG_IDF_CMAKE;CONFIG_IDF_TOOLCHAIN;CONFIG_IDF_TOOLCHAIN_GCC;CONFIG_IDF_TARGET_ARCH_RISCV;CONFIG_IDF_TARGET_ARCH;CONFIG_IDF_TARGET;CONFIG_IDF_INIT_VERSION;CONFIG_IDF_TARGET_ESP32H2;CONFIG_IDF_FIRMWARE_CHIP_ID;CONFIG_APP_BUILD_TYPE_APP_2NDBOOT;CONFIG_APP_BUILD_TYPE_RAM;CONFIG_APP_BUILD_TYPE_ELF_RAM;CONFIG_APP_BUILD_GENERATE_BINARIES;CONFIG_APP_BUILD_BOOTLOADER;CONFIG_APP_BUILD_USE_FLASH_SECTIONS;CONFIG_APP_REPRODUCIBLE_BUILD;CONFIG_APP_NO_BLOBS;CONFIG_NO_BLOBS;CONFIG_BOOTLOADER_COMPILE_TIME_DATE;CONFIG_BOOTLOADER_PROJECT_VER;CONFIG_BOOTLOADER_APP_ROLLBACK_ENABLE;CONFIG_APP_ROLLBACK_ENABLE;CONFIG_BOOTLOADER_OFFSET_IN_FLASH;CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_SIZE;CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG;CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_PERF;CONFIG_BOOTLOADER_LOG_VERSION_1;CONFIG_BOOTLOADER_LOG_VERSION;CONFIG_BOOTLOADER_LOG_LEVEL_NONE;CONFIG_LOG_BOOTLOADER_LEVEL_NONE;CONFIG_BOOTLOADER_LOG_LEVEL_ERROR;CONFIG_LOG_BOOTLOADER_LEVEL_ERROR;CONFIG_BOOTLOADER_LOG_LEVEL_WARN;CONFIG_LOG_BOOTLOADER_LEVEL_WARN;CONFIG_BOOTLOADER_LOG_LEVEL_INFO;CONFIG_LOG_BOOTLOADER_LEVEL_INFO;CONFIG_BOOTLOADER_LOG_LEVEL_DEBUG;CONFIG_LOG_BOOTLOADER_LEVEL_DEBUG;CONFIG_BOOTLOADER_LOG_LEVEL_VERBOSE;CONFIG_LOG_BOOTLOADER_LEVEL_VERBOSE;CONFIG_BOOTLOADER_LOG_LEVEL;CONFIG_LOG_BOOTLOADER_LEVEL;CONFIG_BOOTLOADER_LOG_COLORS;CONFIG_BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS;CONFIG_BOOTLOADER_LOG_MODE_TEXT_EN;CONFIG_BOOTLOADER_LOG_MODE_TEXT;CONFIG_BOOTLOADER_FLASH_DC_AWARE;CONFIG_BOOTLOADER_FLASH_XMC_SUPPORT;CONFIG_BOOTLOADER_FACTORY_RESET;CONFIG_BOOTLOADER_APP_TEST;CONFIG_BOOTLOADER_REGION_PROTECTION_ENABLE;CONFIG_BOOTLOADER_WDT_ENABLE;CONFIG_BOOTLOADER_WDT_DISABLE_IN_USER_CODE;CONFIG_BOOTLOADER_WDT_TIME_MS;CONFIG_BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP;CONFIG_BOOTLOADER_SKIP_VALIDATE_ON_POWER_ON;CONFIG_BOOTLOADER_SKIP_VALIDATE_ALWAYS;CONFIG_BOOTLOADER_RESERVE_RTC_SIZE;CONFIG_BOOTLOADER_CUSTOM_RESERVE_RTC;CONFIG_SECURE_BOOT_V2_RSA_SUPPORTED;CONFIG_SECURE_BOOT_V2_ECC_SUPPORTED;CONFIG_SECURE_BOOT_V2_PREFERRED;CONFIG_SECURE_SIGNED_APPS_NO_SECURE_BOOT;CONFIG_SECURE_BOOT;CONFIG_SECURE_FLASH_ENC_ENABLED;CONFIG_FLASH_ENCRYPTION_ENABLED;CONFIG_SECURE_ROM_DL_MODE_ENABLED;CONFIG_APP_COMPILE_TIME_DATE;CONFIG_APP_EXCLUDE_PROJECT_VER_VAR;CONFIG_APP_EXCLUDE_PROJECT_NAME_VAR;CONFIG_APP_PROJECT_VER_FROM_CONFIG;CONFIG_APP_RETRIEVE_LEN_ELF_SHA;CONFIG_ESP_ROM_HAS_CRC_LE;CONFIG_ESP_ROM_HAS_CRC_BE;CONFIG_ESP_ROM_UART_CLK_IS_XTAL;CONFIG_ESP_ROM_USB_SERIAL_DEVICE_NUM;CONFIG_ESP_ROM_HAS_RETARGETABLE_LOCKING;CONFIG_ESP_ROM_GET_CLK_FREQ;CONFIG_ESP_ROM_HAS_HAL_WDT;CONFIG_ESP_ROM_HAS_HAL_SYSTIMER;CONFIG_ESP_ROM_SYSTIMER_INIT_PATCH;CONFIG_ESP_ROM_HAS_HEAP_TLSF;CONFIG_ESP_ROM_TLSF_CHECK_PATCH;CONFIG_ESP_ROM_MULTI_HEAP_WALK_PATCH;CONFIG_ESP_ROM_HAS_LAYOUT_TABLE;CONFIG_ESP_ROM_HAS_SPI_FLASH;CONFIG_ESP_ROM_HAS_SPI_FLASH_MMAP;CONFIG_ESP_ROM_WITHOUT_REGI2C;CONFIG_ESP_ROM_HAS_NEWLIB;CONFIG_ESP_ROM_HAS_NEWLIB_NANO_FORMAT;CONFIG_ESP_ROM_HAS_NEWLIB_NANO_PRINTF_FLOAT_BUG;CONFIG_ESP_ROM_WDT_INIT_PATCH;CONFIG_ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE;CONFIG_ESP_ROM_RAM_APP_NEEDS_MMU_INIT;CONFIG_ESP_ROM_HAS_SW_FLOAT;CONFIG_ESP_ROM_USB_OTG_NUM;CONFIG_ESP_ROM_HAS_VERSION;CONFIG_ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB;CONFIG_ESP_ROM_HAS_OUTPUT_PUTC_FUNC;CONFIG_ESP_ROM_NO_USB_SERIAL_OUTPUT_API;CONFIG_ESP_ROM_HAS_SUBOPTIMAL_NEWLIB_ON_MISALIGNED_MEMORY;CONFIG_BOOT_ROM_LOG_ALWAYS_ON;CONFIG_BOOT_ROM_LOG_ALWAYS_OFF;CONFIG_BOOT_ROM_LOG_ON_GPIO_HIGH;CONFIG_BOOT_ROM_LOG_ON_GPIO_LOW;CONFIG_SECURE_ENABLE_TEE;CONFIG_SECURE_TEE_LOG_LEVEL;CONFIG_ESPTOOLPY_NO_STUB;CONFIG_ESPTOOLPY_FLASHMODE_QIO;CONFIG_FLASHMODE_QIO;CONFIG_ESPTOOLPY_FLASHMODE_QOUT;CONFIG_FLASHMODE_QOUT;CONFIG_ESPTOOLPY_FLASHMODE_DIO;CONFIG_FLASHMODE_DIO;CONFIG_ESPTOOLPY_FLASHMODE_DOUT;CONFIG_FLASHMODE_DOUT;CONFIG_ESPTOOLPY_FLASH_SAMPLE_MODE_STR;CONFIG_ESPTOOLPY_FLASHMODE;CONFIG_ESPTOOLPY_FLASHFREQ_64M;CONFIG_ESPTOOLPY_FLASHFREQ_32M;CONFIG_ESPTOOLPY_FLASHFREQ_16M;CONFIG_ESPTOOLPY_FLASHFREQ;CONFIG_ESPTOOLPY_FLASHSIZE_1MB;CONFIG_ESPTOOLPY_FLASHSIZE_2MB;CONFIG_ESPTOOLPY_FLASHSIZE_4MB;CONFIG_ESPTOOLPY_FLASHSIZE_8MB;CONFIG_ESPTOOLPY_FLASHSIZE_16MB;CONFIG_ESPTOOLPY_FLASHSIZE_32MB;CONFIG_ESPTOOLPY_FLASHSIZE_64MB;CONFIG_ESPTOOLPY_FLASHSIZE_128MB;CONFIG_ESPTOOLPY_FLASHSIZE;CONFIG_ESPTOOLPY_HEADER_FLASHSIZE_UPDATE;CONFIG_ESPTOOLPY_BEFORE_RESET;CONFIG_ESPTOOLPY_BEFORE_NORESET;CONFIG_ESPTOOLPY_BEFORE;CONFIG_ESPTOOLPY_AFTER_RESET;CONFIG_ESPTOOLPY_AFTER_NORESET;CONFIG_ESPTOOLPY_AFTER;CONFIG_ESPTOOLPY_MONITOR_BAUD;CONFIG_MONITOR_BAUD;CONFIG_PARTITION_TABLE_SINGLE_APP;CONFIG_PARTITION_TABLE_SINGLE_APP_LARGE;CONFIG_PARTITION_TABLE_TWO_OTA;CONFIG_PARTITION_TABLE_TWO_OTA_LARGE;CONFIG_PARTITION_TABLE_CUSTOM;CONFIG_PARTITION_TABLE_CUSTOM_FILENAME;CONFIG_PARTITION_TABLE_FILENAME;CONFIG_PARTITION_TABLE_OFFSET;CONFIG_PARTITION_TABLE_MD5;CONFIG_COMPILER_OPTIMIZATION_DEBUG;CONFIG_OPTIMIZATION_LEVEL_DEBUG;CONFIG_COMPILER_OPTIMIZATION_LEVEL_DEBUG;CONFIG_COMPILER_OPTIMIZATION_DEFAULT;CONFIG_COMPILER_OPTIMIZATION_SIZE;CONFIG_OPTIMIZATION_LEVEL_RELEASE;CONFIG_COMPILER_OPTIMIZATION_LEVEL_RELEASE;CONFIG_COMPILER_OPTIMIZATION_PERF;CONFIG_COMPILER_OPTIMIZATION_NONE;CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE;CONFIG_OPTIMIZATION_ASSERTIONS_ENABLED;CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_SILENT;CONFIG_OPTIMIZATION_ASSERTIONS_SILENT;CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE;CONFIG_OPTIMIZATION_ASSERTIONS_DISABLED;CONFIG_COMPILER_ASSERT_NDEBUG_EVALUATE;CONFIG_COMPILER_FLOAT_LIB_FROM_GCCLIB;CONFIG_COMPILER_OPTIMIZATION_ASSERTION_LEVEL;CONFIG_OPTIMIZATION_ASSERTION_LEVEL;CONFIG_COMPILER_OPTIMIZATION_CHECKS_SILENT;CONFIG_COMPILER_HIDE_PATHS_MACROS;CONFIG_COMPILER_CXX_EXCEPTIONS;CONFIG_CXX_EXCEPTIONS;CONFIG_COMPILER_CXX_RTTI;CONFIG_COMPILER_STACK_CHECK_MODE_NONE;CONFIG_STACK_CHECK_NONE;CONFIG_COMPILER_STACK_CHECK_MODE_NORM;CONFIG_STACK_CHECK_NORM;CONFIG_COMPILER_STACK_CHECK_MODE_STRONG;CONFIG_STACK_CHECK_STRONG;CONFIG_COMPILER_STACK_CHECK_MODE_ALL;CONFIG_STACK_CHECK_ALL;CONFIG_COMPILER_NO_MERGE_CONSTANTS;CONFIG_COMPILER_WARN_WRITE_STRINGS;CONFIG_WARN_WRITE_STRINGS;CONFIG_COMPILER_SAVE_RESTORE_LIBCALLS;CONFIG_COMPILER_DISABLE_DEFAULT_ERRORS;CONFIG_COMPILER_DISABLE_GCC12_WARNINGS;CONFIG_COMPILER_DISABLE_GCC13_WARNINGS;CONFIG_COMPILER_DISABLE_GCC14_WARNINGS;CONFIG_COMPILER_DUMP_RTL_FILES;CONFIG_COMPILER_RT_LIB_GCCLIB;CONFIG_COMPILER_RT_LIB_NAME;CONFIG_COMPILER_ORPHAN_SECTIONS_WARNING;CONFIG_COMPILER_ORPHAN_SECTIONS_PLACE;CONFIG_COMPILER_STATIC_ANALYZER;CONFIG_EFUSE_CUSTOM_TABLE;CONFIG_EFUSE_VIRTUAL;CONFIG_EFUSE_MAX_BLK_LEN;CONFIG_ESP_ERR_TO_NAME_LOOKUP;CONFIG_ESP32H2_REV_MIN_0;CONFIG_ESP32H2_REV_MIN_1;CONFIG_ESP32H2_REV_MIN_2;CONFIG_ESP32H2_REV_MIN_102;CONFIG_ESP32H2_REV_MIN_FULL;CONFIG_ESP_REV_MIN_FULL;CONFIG_ESP32H2_REV_MAX_FULL;CONFIG_ESP_REV_MAX_FULL;CONFIG_ESP_EFUSE_BLOCK_REV_MIN_FULL;CONFIG_ESP_EFUSE_BLOCK_REV_MAX_FULL;CONFIG_ESP_MAC_ADDR_UNIVERSE_BT;CONFIG_ESP_MAC_ADDR_UNIVERSE_IEEE802154;CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES_TWO;CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES;CONFIG_ESP32H2_UNIVERSAL_MAC_ADDRESSES_TWO;CONFIG_ESP32H2_UNIVERSAL_MAC_ADDRESSES;CONFIG_ESP_MAC_USE_CUSTOM_MAC_AS_BASE_MAC;CONFIG_ESP_SLEEP_POWER_DOWN_FLASH;CONFIG_ESP_SYSTEM_PD_FLASH;CONFIG_ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND;CONFIG_ESP_SLEEP_MSPI_NEED_ALL_IO_PU;CONFIG_ESP_SLEEP_GPIO_RESET_WORKAROUND;CONFIG_ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY;CONFIG_ESP_SLEEP_CACHE_SAFE_ASSERTION;CONFIG_ESP_SLEEP_DEBUG;CONFIG_ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS;CONFIG_RTC_CLK_SRC_INT_RC;CONFIG_RTC_CLK_SRC_EXT_CRYS;CONFIG_RTC_CLK_SRC_EXT_OSC;CONFIG_RTC_CLK_CAL_CYCLES;CONFIG_ESP_PERIPH_CTRL_FUNC_IN_IRAM;CONFIG_PERIPH_CTRL_FUNC_IN_IRAM;CONFIG_ESP_REGI2C_CTRL_FUNC_IN_IRAM;CONFIG_ETM_ENABLE_DEBUG_LOG;CONFIG_GDMA_CTRL_FUNC_IN_IRAM;CONFIG_GDMA_ISR_HANDLER_IN_IRAM;CONFIG_GDMA_OBJ_DRAM_SAFE;CONFIG_GDMA_ENABLE_DEBUG_LOG;CONFIG_GDMA_ISR_IRAM_SAFE;CONFIG_XTAL_FREQ_32;CONFIG_XTAL_FREQ;CONFIG_ESP_BROWNOUT_DET;CONFIG_BROWNOUT_DET;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_7;CONFIG_BROWNOUT_DET_LVL_SEL_7;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_6;CONFIG_BROWNOUT_DET_LVL_SEL_6;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_5;CONFIG_BROWNOUT_DET_LVL_SEL_5;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_4;CONFIG_BROWNOUT_DET_LVL_SEL_4;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_3;CONFIG_BROWNOUT_DET_LVL_SEL_3;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_2;CONFIG_BROWNOUT_DET_LVL_SEL_2;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_1;CONFIG_BROWNOUT_DET_LVL_SEL_1;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_0;CONFIG_BROWNOUT_DET_LVL_SEL_0;CONFIG_ESP_BROWNOUT_DET_LVL;CONFIG_BROWNOUT_DET_LVL;CONFIG_ESP_BROWNOUT_USE_INTR;CONFIG_ESP_SYSTEM_BROWNOUT_INTR;CONFIG_ESP_VBAT_INIT_AUTO;CONFIG_ESP_VBAT_WAKEUP_CHIP_ON_VBAT_BROWNOUT;CONFIG_ESP_INTR_IN_IRAM;CONFIG_ESP_ROM_PRINT_IN_IRAM;CONFIG_ESP_CRYPTO_DPA_PROTECTION_AT_STARTUP;CONFIG_ESP_CRYPTO_DPA_PROTECTION_LEVEL_LOW;CONFIG_ESP_CRYPTO_DPA_PROTECTION_LEVEL_MEDIUM;CONFIG_ESP_CRYPTO_DPA_PROTECTION_LEVEL_HIGH;CONFIG_ESP_CRYPTO_DPA_PROTECTION_LEVEL;CONFIG_ESP_CRYPTO_FORCE_ECC_CONSTANT_TIME_POINT_MUL;CONFIG_ESP_ECDSA_ENABLE_P192_CURVE;CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_48;CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_64;CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_96;CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ;CONFIG_ESP_SYSTEM_IN_IRAM;CONFIG_ESP_SYSTEM_PANIC_PRINT_HALT;CONFIG_ESP_SYSTEM_PANIC_PRINT_REBOOT;CONFIG_ESP_SYSTEM_PANIC_SILENT_REBOOT;CONFIG_ESP_SYSTEM_SINGLE_CORE_MODE;CONFIG_ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK;CONFIG_ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP;CONFIG_ESP_SYSTEM_NO_BACKTRACE;CONFIG_ESP_SYSTEM_USE_EH_FRAME;CONFIG_ESP_SYSTEM_USE_FRAME_POINTER;CONFIG_ESP_SYSTEM_PMP_IDRAM_SPLIT;CONFIG_ESP_SYSTEM_EVENT_QUEUE_SIZE;CONFIG_SYSTEM_EVENT_QUEUE_SIZE;CONFIG_ESP_SYSTEM_EVENT_TASK_STACK_SIZE;CONFIG_SYSTEM_EVENT_TASK_STACK_SIZE;CONFIG_ESP_MAIN_TASK_STACK_SIZE;CONFIG_MAIN_TASK_STACK_SIZE;CONFIG_ESP_MAIN_TASK_AFFINITY_CPU0;CONFIG_ESP_MAIN_TASK_AFFINITY_NO_AFFINITY;CONFIG_ESP_MAIN_TASK_AFFINITY;CONFIG_ESP_MINIMAL_SHARED_STACK_SIZE;CONFIG_ESP_CONSOLE_UART_DEFAULT;CONFIG_CONSOLE_UART_DEFAULT;CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG;CONFIG_ESP_CONSOLE_UART_CUSTOM;CONFIG_CONSOLE_UART_CUSTOM;CONFIG_ESP_CONSOLE_NONE;CONFIG_CONSOLE_UART_NONE;CONFIG_ESP_CONSOLE_UART_NONE;CONFIG_ESP_CONSOLE_SECONDARY_NONE;CONFIG_ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG;CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED;CONFIG_ESP_CONSOLE_UART;CONFIG_CONSOLE_UART;CONFIG_ESP_CONSOLE_UART_NUM;CONFIG_CONSOLE_UART_NUM;CONFIG_ESP_CONSOLE_ROM_SERIAL_PORT_NUM;CONFIG_ESP_CONSOLE_UART_BAUDRATE;CONFIG_CONSOLE_UART_BAUDRATE;CONFIG_ESP_INT_WDT;CONFIG_INT_WDT;CONFIG_ESP_INT_WDT_TIMEOUT_MS;CONFIG_INT_WDT_TIMEOUT_MS;CONFIG_ESP_TASK_WDT_EN;CONFIG_ESP_TASK_WDT_INIT;CONFIG_TASK_WDT;CONFIG_ESP_TASK_WDT;CONFIG_ESP_TASK_WDT_PANIC;CONFIG_TASK_WDT_PANIC;CONFIG_ESP_TASK_WDT_TIMEOUT_S;CONFIG_TASK_WDT_TIMEOUT_S;CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0;CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU0;CONFIG_ESP_PANIC_HANDLER_IRAM;CONFIG_ESP_DEBUG_STUBS_ENABLE;CONFIG_ESP32_DEBUG_STUBS_ENABLE;CONFIG_ESP_DEBUG_INCLUDE_OCD_STUB_BINS;CONFIG_ESP_DEBUG_OCDAWARE;CONFIG_ESP_SYSTEM_CHECK_INT_LEVEL_4;CONFIG_ESP_SYSTEM_HW_STACK_GUARD;CONFIG_ESP_SYSTEM_BBPLL_RECALIB;CONFIG_ESP_SYSTEM_HW_PC_RECORD;CONFIG_ESP_IPC_TASK_STACK_SIZE;CONFIG_IPC_TASK_STACK_SIZE;CONFIG_FREERTOS_SMP;CONFIG_FREERTOS_UNICORE;CONFIG_FREERTOS_HZ;CONFIG_FREERTOS_OPTIMIZED_SCHEDULER;CONFIG_FREERTOS_CHECK_STACKOVERFLOW_NONE;CONFIG_FREERTOS_CHECK_STACKOVERFLOW_PTRVAL;CONFIG_FREERTOS_CHECK_STACKOVERFLOW_CANARY;CONFIG_FREERTOS_THREAD_LOCAL_STORAGE_POINTERS;CONFIG_FREERTOS_IDLE_TASK_STACKSIZE;CONFIG_FREERTOS_USE_IDLE_HOOK;CONFIG_FREERTOS_USE_TICK_HOOK;CONFIG_FREERTOS_MAX_TASK_NAME_LEN;CONFIG_FREERTOS_ENABLE_BACKWARD_COMPATIBILITY;CONFIG_FREERTOS_USE_TIMERS;CONFIG_FREERTOS_TIMER_SERVICE_TASK_NAME;CONFIG_FREERTOS_TIMER_TASK_AFFINITY_CPU0;CONFIG_FREERTOS_TIMER_TASK_NO_AFFINITY;CONFIG_FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY;CONFIG_FREERTOS_TIMER_TASK_PRIORITY;CONFIG_TIMER_TASK_PRIORITY;CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH;CONFIG_TIMER_TASK_STACK_DEPTH;CONFIG_FREERTOS_TIMER_QUEUE_LENGTH;CONFIG_TIMER_QUEUE_LENGTH;CONFIG_FREERTOS_QUEUE_REGISTRY_SIZE;CONFIG_FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES;CONFIG_FREERTOS_USE_TRACE_FACILITY;CONFIG_FREERTOS_USE_LIST_DATA_INTEGRITY_CHECK_BYTES;CONFIG_FREERTOS_GENERATE_RUN_TIME_STATS;CONFIG_FREERTOS_USE_APPLICATION_TASK_TAG;CONFIG_FREERTOS_WATCHPOINT_END_OF_STACK;CONFIG_FREERTOS_TLSP_DELETION_CALLBACKS;CONFIG_FREERTOS_TASK_PRE_DELETION_HOOK;CONFIG_FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP;CONFIG_ENABLE_STATIC_TASK_CLEAN_UP_HOOK;CONFIG_FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER;CONFIG_FREERTOS_ISR_STACKSIZE;CONFIG_FREERTOS_INTERRUPT_BACKTRACE;CONFIG_FREERTOS_TICK_SUPPORT_SYSTIMER;CONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL1;CONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL3;CONFIG_FREERTOS_SYSTICK_USES_SYSTIMER;CONFIG_FREERTOS_PLACE_FUNCTIONS_INTO_FLASH;CONFIG_FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE;CONFIG_FREERTOS_PORT;CONFIG_FREERTOS_NO_AFFINITY;CONFIG_FREERTOS_SUPPORT_STATIC_ALLOCATION;CONFIG_FREERTOS_DEBUG_OCDAWARE;CONFIG_FREERTOS_ENABLE_TASK_SNAPSHOT;CONFIG_FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH;CONFIG_FREERTOS_NUMBER_OF_CORES;CONFIG_FREERTOS_IN_IRAM;CONFIG_HAL_ASSERTION_EQUALS_SYSTEM;CONFIG_HAL_ASSERTION_DISABLE;CONFIG_HAL_ASSERTION_SILENT;CONFIG_HAL_ASSERTION_SILIENT;CONFIG_HAL_DEFAULT_ASSERTION_LEVEL;CONFIG_HAL_SYSTIMER_USE_ROM_IMPL;CONFIG_HAL_WDT_USE_ROM_IMPL;CONFIG_HAL_ECDSA_GEN_SIG_CM;CONFIG_LOG_VERSION_1;CONFIG_LOG_VERSION_2;CONFIG_LOG_VERSION;CONFIG_LOG_DEFAULT_LEVEL_NONE;CONFIG_LOG_DEFAULT_LEVEL_ERROR;CONFIG_LOG_DEFAULT_LEVEL_WARN;CONFIG_LOG_DEFAULT_LEVEL_INFO;CONFIG_LOG_DEFAULT_LEVEL_DEBUG;CONFIG_LOG_DEFAULT_LEVEL_VERBOSE;CONFIG_LOG_DEFAULT_LEVEL;CONFIG_LOG_MAXIMUM_EQUALS_DEFAULT;CONFIG_LOG_MAXIMUM_LEVEL_ERROR;CONFIG_LOG_MAXIMUM_LEVEL_WARN;CONFIG_LOG_MAXIMUM_LEVEL_INFO;CONFIG_LOG_MAXIMUM_LEVEL_DEBUG;CONFIG_LOG_MAXIMUM_LEVEL_VERBOSE;CONFIG_LOG_MAXIMUM_LEVEL;CONFIG_LOG_MASTER_LEVEL;CONFIG_LOG_DYNAMIC_LEVEL_CONTROL;CONFIG_LOG_TAG_LEVEL_IMPL_NONE;CONFIG_LOG_TAG_LEVEL_IMPL_LINKED_LIST;CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST;CONFIG_LOG_TAG_LEVEL_CACHE_ARRAY;CONFIG_LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP;CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_SIZE;CONFIG_LOG_COLORS;CONFIG_LOG_TIMESTAMP_SOURCE_RTOS;CONFIG_LOG_TIMESTAMP_SOURCE_SYSTEM;CONFIG_LOG_MODE_TEXT_EN;CONFIG_LOG_MODE_TEXT;CONFIG_LOG_IN_IRAM;CONFIG_LIBC_NEWLIB;CONFIG_LIBC_MISC_IN_IRAM;CONFIG_LIBC_LOCKS_PLACE_IN_IRAM;CONFIG_LIBC_NEWLIB_NANO_FORMAT;CONFIG_NEWLIB_NANO_FORMAT;CONFIG_LIBC_TIME_SYSCALL_USE_RTC_HRT;CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC_HRT;CONFIG_LIBC_TIME_SYSCALL_USE_RTC;CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC;CONFIG_LIBC_TIME_SYSCALL_USE_HRT;CONFIG_NEWLIB_TIME_SYSCALL_USE_HRT;CONFIG_LIBC_TIME_SYSCALL_USE_NONE;CONFIG_NEWLIB_TIME_SYSCALL_USE_NONE;CONFIG_LIBC_OPTIMIZED_MISALIGNED_ACCESS;CONFIG_MMU_PAGE_SIZE_32KB;CONFIG_MMU_PAGE_MODE;CONFIG_MMU_PAGE_SIZE;CONFIG_SPI_FLASH_BROWNOUT_RESET_XMC;CONFIG_SPI_FLASH_BROWNOUT_RESET;CONFIG_SPI_FLASH_AUTO_SUSPEND;CONFIG_SPI_FLASH_SUSPEND_TSUS_VAL_US;CONFIG_SPI_FLASH_FORCE_ENABLE_XMC_C_SUSPEND;CONFIG_SPI_FLASH_FORCE_ENABLE_C6_H2_SUSPEND;CONFIG_SPI_FLASH_PLACE_FUNCTIONS_IN_IRAM;CONFIG_SPI_FLASH_VERIFY_WRITE;CONFIG_SPI_FLASH_ENABLE_COUNTERS;CONFIG_SPI_FLASH_ROM_DRIVER_PATCH;CONFIG_SPI_FLASH_ROM_IMPL;CONFIG_SPI_FLASH_DANGEROUS_WRITE_ABORTS;CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ABORTS;CONFIG_SPI_FLASH_DANGEROUS_WRITE_FAILS;CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_FAILS;CONFIG_SPI_FLASH_DANGEROUS_WRITE_ALLOWED;CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ALLOWED;CONFIG_SPI_FLASH_BYPASS_BLOCK_ERASE;CONFIG_SPI_FLASH_YIELD_DURING_ERASE;CONFIG_SPI_FLASH_ERASE_YIELD_DURATION_MS;CONFIG_SPI_FLASH_ERASE_YIELD_TICKS;CONFIG_SPI_FLASH_WRITE_CHUNK_SIZE;CONFIG_SPI_FLASH_SIZE_OVERRIDE;CONFIG_SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED;CONFIG_SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST;CONFIG_SPI_FLASH_VENDOR_XMC_SUPPORT_ENABLED;CONFIG_SPI_FLASH_VENDOR_GD_SUPPORT_ENABLED;CONFIG_SPI_FLASH_SUPPORT_ISSI_CHIP;CONFIG_SPI_FLASH_SUPPORT_MXIC_CHIP;CONFIG_SPI_FLASH_SUPPORT_GD_CHIP;CONFIG_SPI_FLASH_SUPPORT_WINBOND_CHIP;CONFIG_SPI_FLASH_SUPPORT_BOYA_CHIP;CONFIG_SPI_FLASH_SUPPORT_TH_CHIP;CONFIG_SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE;CONFIG_IDF_EXPERIMENTAL_FEATURES) -# List of deprecated options for backward compatibility -set(CONFIG_APP_BUILD_TYPE_ELF_RAM "") -set(CONFIG_NO_BLOBS "") -set(CONFIG_APP_ROLLBACK_ENABLE "") -set(CONFIG_LOG_BOOTLOADER_LEVEL_NONE "") -set(CONFIG_LOG_BOOTLOADER_LEVEL_ERROR "") -set(CONFIG_LOG_BOOTLOADER_LEVEL_WARN "") -set(CONFIG_LOG_BOOTLOADER_LEVEL_INFO "y") -set(CONFIG_LOG_BOOTLOADER_LEVEL_DEBUG "") -set(CONFIG_LOG_BOOTLOADER_LEVEL_VERBOSE "") -set(CONFIG_LOG_BOOTLOADER_LEVEL "3") -set(CONFIG_FLASH_ENCRYPTION_ENABLED "") -set(CONFIG_FLASHMODE_QIO "") -set(CONFIG_FLASHMODE_QOUT "") -set(CONFIG_FLASHMODE_DIO "y") -set(CONFIG_FLASHMODE_DOUT "") -set(CONFIG_MONITOR_BAUD "115200") -set(CONFIG_OPTIMIZATION_LEVEL_DEBUG "") -set(CONFIG_COMPILER_OPTIMIZATION_LEVEL_DEBUG "") -set(CONFIG_COMPILER_OPTIMIZATION_DEFAULT "") -set(CONFIG_OPTIMIZATION_LEVEL_RELEASE "y") -set(CONFIG_COMPILER_OPTIMIZATION_LEVEL_RELEASE "y") -set(CONFIG_OPTIMIZATION_ASSERTIONS_ENABLED "") -set(CONFIG_OPTIMIZATION_ASSERTIONS_SILENT "y") -set(CONFIG_OPTIMIZATION_ASSERTIONS_DISABLED "") -set(CONFIG_OPTIMIZATION_ASSERTION_LEVEL "1") -set(CONFIG_CXX_EXCEPTIONS "") -set(CONFIG_STACK_CHECK_NONE "y") -set(CONFIG_STACK_CHECK_NORM "") -set(CONFIG_STACK_CHECK_STRONG "") -set(CONFIG_STACK_CHECK_ALL "") -set(CONFIG_WARN_WRITE_STRINGS "") -set(CONFIG_ESP_SYSTEM_PD_FLASH "") -set(CONFIG_PERIPH_CTRL_FUNC_IN_IRAM "y") -set(CONFIG_BROWNOUT_DET "y") -set(CONFIG_BROWNOUT_DET_LVL_SEL_7 "") -set(CONFIG_BROWNOUT_DET_LVL_SEL_6 "") -set(CONFIG_BROWNOUT_DET_LVL_SEL_5 "") -set(CONFIG_BROWNOUT_DET_LVL_SEL_4 "") -set(CONFIG_BROWNOUT_DET_LVL_SEL_3 "") -set(CONFIG_BROWNOUT_DET_LVL_SEL_2 "") -set(CONFIG_BROWNOUT_DET_LVL_SEL_1 "") -set(CONFIG_BROWNOUT_DET_LVL_SEL_0 "y") -set(CONFIG_BROWNOUT_DET_LVL "0") -set(CONFIG_ESP_SYSTEM_BROWNOUT_INTR "y") -set(CONFIG_SYSTEM_EVENT_QUEUE_SIZE "32") -set(CONFIG_SYSTEM_EVENT_TASK_STACK_SIZE "2304") -set(CONFIG_MAIN_TASK_STACK_SIZE "3584") -set(CONFIG_CONSOLE_UART_DEFAULT "y") -set(CONFIG_CONSOLE_UART_CUSTOM "") -set(CONFIG_CONSOLE_UART_NONE "") -set(CONFIG_ESP_CONSOLE_UART_NONE "") -set(CONFIG_CONSOLE_UART "y") -set(CONFIG_CONSOLE_UART_NUM "0") -set(CONFIG_CONSOLE_UART_BAUDRATE "115200") -set(CONFIG_INT_WDT "y") -set(CONFIG_INT_WDT_TIMEOUT_MS "300") -set(CONFIG_TASK_WDT "y") -set(CONFIG_ESP_TASK_WDT "y") -set(CONFIG_TASK_WDT_PANIC "") -set(CONFIG_TASK_WDT_TIMEOUT_S "5") -set(CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU0 "y") -set(CONFIG_ESP32_DEBUG_STUBS_ENABLE "") -set(CONFIG_IPC_TASK_STACK_SIZE "1024") -set(CONFIG_TIMER_TASK_PRIORITY "1") -set(CONFIG_TIMER_TASK_STACK_DEPTH "2048") -set(CONFIG_TIMER_QUEUE_LENGTH "10") -set(CONFIG_ENABLE_STATIC_TASK_CLEAN_UP_HOOK "") -set(CONFIG_HAL_ASSERTION_SILIENT "") -set(CONFIG_NEWLIB_NANO_FORMAT "y") -set(CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC_HRT "y") -set(CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC "") -set(CONFIG_NEWLIB_TIME_SYSCALL_USE_HRT "") -set(CONFIG_NEWLIB_TIME_SYSCALL_USE_NONE "") -set(CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ABORTS "y") -set(CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_FAILS "") -set(CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ALLOWED "") diff --git a/esp32-thread/open-thread-rcp/build/bootloader/config/sdkconfig.h b/esp32-thread/open-thread-rcp/build/bootloader/config/sdkconfig.h deleted file mode 100644 index fcbee40f..00000000 --- a/esp32-thread/open-thread-rcp/build/bootloader/config/sdkconfig.h +++ /dev/null @@ -1,674 +0,0 @@ -/* - * Automatically generated file. DO NOT EDIT. - * Espressif IoT Development Framework (ESP-IDF) 5.5.1 Configuration Header - */ -#pragma once -#define CONFIG_SOC_CAPS_ECO_VER_MAX 102 -#define CONFIG_SOC_ADC_SUPPORTED 1 -#define CONFIG_SOC_ANA_CMPR_SUPPORTED 1 -#define CONFIG_SOC_DEDICATED_GPIO_SUPPORTED 1 -#define CONFIG_SOC_UART_SUPPORTED 1 -#define CONFIG_SOC_UHCI_SUPPORTED 1 -#define CONFIG_SOC_GDMA_SUPPORTED 1 -#define CONFIG_SOC_AHB_GDMA_SUPPORTED 1 -#define CONFIG_SOC_ASYNC_MEMCPY_SUPPORTED 1 -#define CONFIG_SOC_PCNT_SUPPORTED 1 -#define CONFIG_SOC_MCPWM_SUPPORTED 1 -#define CONFIG_SOC_TWAI_SUPPORTED 1 -#define CONFIG_SOC_PHY_SUPPORTED 1 -#define CONFIG_SOC_BT_SUPPORTED 1 -#define CONFIG_SOC_GPTIMER_SUPPORTED 1 -#define CONFIG_SOC_IEEE802154_SUPPORTED 1 -#define CONFIG_SOC_IEEE802154_BLE_ONLY 1 -#define CONFIG_SOC_USB_SERIAL_JTAG_SUPPORTED 1 -#define CONFIG_SOC_TEMP_SENSOR_SUPPORTED 1 -#define CONFIG_SOC_SUPPORTS_SECURE_DL_MODE 1 -#define CONFIG_SOC_EFUSE_KEY_PURPOSE_FIELD 1 -#define CONFIG_SOC_EFUSE_SUPPORTED 1 -#define CONFIG_SOC_RTC_FAST_MEM_SUPPORTED 1 -#define CONFIG_SOC_RTC_MEM_SUPPORTED 1 -#define CONFIG_SOC_I2S_SUPPORTED 1 -#define CONFIG_SOC_SDM_SUPPORTED 1 -#define CONFIG_SOC_ETM_SUPPORTED 1 -#define CONFIG_SOC_RMT_SUPPORTED 1 -#define CONFIG_SOC_PARLIO_SUPPORTED 1 -#define CONFIG_SOC_GPSPI_SUPPORTED 1 -#define CONFIG_SOC_LEDC_SUPPORTED 1 -#define CONFIG_SOC_I2C_SUPPORTED 1 -#define CONFIG_SOC_SYSTIMER_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_HMAC_SUPPORTED 1 -#define CONFIG_SOC_DIG_SIGN_SUPPORTED 1 -#define CONFIG_SOC_ECC_SUPPORTED 1 -#define CONFIG_SOC_ECC_EXTENDED_MODES_SUPPORTED 1 -#define CONFIG_SOC_ECDSA_SUPPORTED 1 -#define CONFIG_SOC_FLASH_ENC_SUPPORTED 1 -#define CONFIG_SOC_SECURE_BOOT_SUPPORTED 1 -#define CONFIG_SOC_BOD_SUPPORTED 1 -#define CONFIG_SOC_VBAT_SUPPORTED 1 -#define CONFIG_SOC_APM_SUPPORTED 1 -#define CONFIG_SOC_PMU_SUPPORTED 1 -#define CONFIG_SOC_LP_TIMER_SUPPORTED 1 -#define CONFIG_SOC_LP_AON_SUPPORTED 1 -#define CONFIG_SOC_PAU_SUPPORTED 1 -#define CONFIG_SOC_CLK_TREE_SUPPORTED 1 -#define CONFIG_SOC_ASSIST_DEBUG_SUPPORTED 1 -#define CONFIG_SOC_WDT_SUPPORTED 1 -#define CONFIG_SOC_SPI_FLASH_SUPPORTED 1 -#define CONFIG_SOC_RNG_SUPPORTED 1 -#define CONFIG_SOC_LIGHT_SLEEP_SUPPORTED 1 -#define CONFIG_SOC_DEEP_SLEEP_SUPPORTED 1 -#define CONFIG_SOC_MODEM_CLOCK_SUPPORTED 1 -#define CONFIG_SOC_PM_SUPPORTED 1 -#define CONFIG_SOC_XTAL_SUPPORT_32M 1 -#define CONFIG_SOC_XTAL_CLOCK_PATH_DEPENDS_ON_TOP_DOMAIN 1 -#define CONFIG_SOC_AES_SUPPORT_DMA 1 -#define CONFIG_SOC_AES_GDMA 1 -#define CONFIG_SOC_AES_SUPPORT_AES_128 1 -#define CONFIG_SOC_AES_SUPPORT_AES_256 1 -#define CONFIG_SOC_AES_SUPPORT_PSEUDO_ROUND_FUNCTION 1 -#define CONFIG_SOC_ADC_DIG_CTRL_SUPPORTED 1 -#define CONFIG_SOC_ADC_DIG_IIR_FILTER_SUPPORTED 1 -#define CONFIG_SOC_ADC_MONITOR_SUPPORTED 1 -#define CONFIG_SOC_ADC_DMA_SUPPORTED 1 -#define CONFIG_SOC_ADC_PERIPH_NUM 1 -#define CONFIG_SOC_ADC_MAX_CHANNEL_NUM 5 -#define CONFIG_SOC_ADC_ATTEN_NUM 4 -#define CONFIG_SOC_ADC_DIGI_CONTROLLER_NUM 1 -#define CONFIG_SOC_ADC_PATT_LEN_MAX 8 -#define CONFIG_SOC_ADC_DIGI_MAX_BITWIDTH 12 -#define CONFIG_SOC_ADC_DIGI_MIN_BITWIDTH 12 -#define CONFIG_SOC_ADC_DIGI_IIR_FILTER_NUM 2 -#define CONFIG_SOC_ADC_DIGI_MONITOR_NUM 2 -#define CONFIG_SOC_ADC_DIGI_RESULT_BYTES 4 -#define CONFIG_SOC_ADC_DIGI_DATA_BYTES_PER_CONV 4 -#define CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_HIGH 83333 -#define CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_LOW 611 -#define CONFIG_SOC_ADC_RTC_MIN_BITWIDTH 12 -#define CONFIG_SOC_ADC_RTC_MAX_BITWIDTH 12 -#define CONFIG_SOC_ADC_CALIBRATION_V1_SUPPORTED 1 -#define CONFIG_SOC_ADC_SELF_HW_CALI_SUPPORTED 1 -#define CONFIG_SOC_ADC_CALIB_CHAN_COMPENS_SUPPORTED 1 -#define CONFIG_SOC_ADC_TEMPERATURE_SHARE_INTR 1 -#define CONFIG_SOC_ADC_SHARED_POWER 1 -#define CONFIG_SOC_BROWNOUT_RESET_SUPPORTED 1 -#define CONFIG_SOC_SHARED_IDCACHE_SUPPORTED 1 -#define CONFIG_SOC_CACHE_FREEZE_SUPPORTED 1 -#define CONFIG_SOC_CPU_CORES_NUM 1 -#define CONFIG_SOC_CPU_INTR_NUM 32 -#define CONFIG_SOC_CPU_HAS_FLEXIBLE_INTC 1 -#define CONFIG_SOC_INT_PLIC_SUPPORTED 1 -#define CONFIG_SOC_CPU_HAS_CSR_PC 1 -#define CONFIG_SOC_CPU_BREAKPOINTS_NUM 4 -#define CONFIG_SOC_CPU_WATCHPOINTS_NUM 4 -#define CONFIG_SOC_CPU_WATCHPOINT_MAX_REGION_SIZE 0x80000000 -#define CONFIG_SOC_CPU_HAS_PMA 1 -#define CONFIG_SOC_CPU_IDRAM_SPLIT_USING_PMP 1 -#define CONFIG_SOC_CPU_PMP_REGION_GRANULARITY 4 -#define CONFIG_SOC_MMU_PAGE_SIZE_CONFIGURABLE 1 -#define CONFIG_SOC_MMU_PAGE_SIZE_8KB_SUPPORTED 1 -#define CONFIG_SOC_MMU_PERIPH_NUM 1 -#define CONFIG_SOC_MMU_LINEAR_ADDRESS_REGION_NUM 1 -#define CONFIG_SOC_MMU_DI_VADDR_SHARED 1 -#define CONFIG_SOC_DS_SIGNATURE_MAX_BIT_LEN 3072 -#define CONFIG_SOC_DS_KEY_PARAM_MD_IV_LENGTH 16 -#define CONFIG_SOC_DS_KEY_CHECK_MAX_WAIT_US 1100 -#define CONFIG_SOC_AHB_GDMA_VERSION 1 -#define CONFIG_SOC_GDMA_NUM_GROUPS_MAX 1 -#define CONFIG_SOC_GDMA_PAIRS_PER_GROUP_MAX 3 -#define CONFIG_SOC_GDMA_SUPPORT_ETM 1 -#define CONFIG_SOC_GDMA_SUPPORT_SLEEP_RETENTION 1 -#define CONFIG_SOC_ETM_GROUPS 1 -#define CONFIG_SOC_ETM_CHANNELS_PER_GROUP 50 -#define CONFIG_SOC_ETM_SUPPORT_SLEEP_RETENTION 1 -#define CONFIG_SOC_GPIO_PORT 1 -#define CONFIG_SOC_GPIO_PIN_COUNT 28 -#define CONFIG_SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER 1 -#define CONFIG_SOC_GPIO_FLEX_GLITCH_FILTER_NUM 8 -#define CONFIG_SOC_GPIO_SUPPORT_PIN_HYS_FILTER 1 -#define CONFIG_SOC_GPIO_SUPPORT_PIN_HYS_CTRL_BY_EFUSE 1 -#define CONFIG_SOC_GPIO_SUPPORT_ETM 1 -#define CONFIG_SOC_GPIO_SUPPORT_RTC_INDEPENDENT 1 -#define CONFIG_SOC_LP_IO_CLOCK_IS_INDEPENDENT 1 -#define CONFIG_SOC_GPIO_IN_RANGE_MAX 27 -#define CONFIG_SOC_GPIO_OUT_RANGE_MAX 27 -#define CONFIG_SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK 0x000000000FFF807F -#define CONFIG_SOC_GPIO_SUPPORT_FORCE_HOLD 1 -#define CONFIG_SOC_GPIO_SUPPORT_HOLD_IO_IN_DSLP 1 -#define CONFIG_SOC_GPIO_SUPPORT_HOLD_SINGLE_IO_IN_DSLP 1 -#define CONFIG_SOC_GPIO_CLOCKOUT_BY_GPIO_MATRIX 1 -#define CONFIG_SOC_CLOCKOUT_HAS_SOURCE_GATE 1 -#define CONFIG_SOC_GPIO_CLOCKOUT_CHANNEL_NUM 3 -#define CONFIG_SOC_RTCIO_PIN_COUNT 8 -#define CONFIG_SOC_RTCIO_HOLD_SUPPORTED 1 -#define CONFIG_SOC_DEDIC_GPIO_OUT_CHANNELS_NUM 8 -#define CONFIG_SOC_DEDIC_GPIO_IN_CHANNELS_NUM 8 -#define CONFIG_SOC_DEDIC_PERIPH_ALWAYS_ENABLE 1 -#define CONFIG_SOC_ANA_CMPR_NUM 1 -#define CONFIG_SOC_ANA_CMPR_INTR_SHARE_WITH_GPIO 1 -#define CONFIG_SOC_I2C_NUM 2 -#define CONFIG_SOC_HP_I2C_NUM 2 -#define CONFIG_SOC_I2C_FIFO_LEN 32 -#define CONFIG_SOC_I2C_CMD_REG_NUM 8 -#define CONFIG_SOC_I2C_SUPPORT_SLAVE 1 -#define CONFIG_SOC_I2C_SUPPORT_HW_FSM_RST 1 -#define CONFIG_SOC_I2C_SUPPORT_HW_CLR_BUS 1 -#define CONFIG_SOC_I2C_SUPPORT_XTAL 1 -#define CONFIG_SOC_I2C_SUPPORT_RTC 1 -#define CONFIG_SOC_I2C_SUPPORT_10BIT_ADDR 1 -#define CONFIG_SOC_I2C_SLAVE_SUPPORT_BROADCAST 1 -#define CONFIG_SOC_I2C_SLAVE_CAN_GET_STRETCH_CAUSE 1 -#define CONFIG_SOC_I2C_SLAVE_SUPPORT_I2CRAM_ACCESS 1 -#define CONFIG_SOC_I2C_SLAVE_SUPPORT_SLAVE_UNMATCH 1 -#define CONFIG_SOC_I2C_SUPPORT_SLEEP_RETENTION 1 -#define CONFIG_SOC_I2S_NUM 1 -#define CONFIG_SOC_I2S_HW_VERSION_2 1 -#define CONFIG_SOC_I2S_SUPPORTS_ETM 1 -#define CONFIG_SOC_I2S_SUPPORTS_XTAL 1 -#define CONFIG_SOC_I2S_SUPPORTS_PLL_F96M 1 -#define CONFIG_SOC_I2S_SUPPORTS_PLL_F64M 1 -#define CONFIG_SOC_I2S_SUPPORTS_PCM 1 -#define CONFIG_SOC_I2S_SUPPORTS_PDM 1 -#define CONFIG_SOC_I2S_SUPPORTS_PDM_TX 1 -#define CONFIG_SOC_I2S_SUPPORTS_PCM2PDM 1 -#define CONFIG_SOC_I2S_SUPPORTS_PDM_RX 1 -#define CONFIG_SOC_I2S_PDM_MAX_TX_LINES 2 -#define CONFIG_SOC_I2S_PDM_MAX_RX_LINES 1 -#define CONFIG_SOC_I2S_SUPPORTS_TDM 1 -#define CONFIG_SOC_I2S_TDM_FULL_DATA_WIDTH 1 -#define CONFIG_SOC_I2S_SUPPORT_SLEEP_RETENTION 1 -#define CONFIG_SOC_LEDC_SUPPORT_PLL_DIV_CLOCK 1 -#define CONFIG_SOC_LEDC_SUPPORT_XTAL_CLOCK 1 -#define CONFIG_SOC_LEDC_TIMER_NUM 4 -#define CONFIG_SOC_LEDC_CHANNEL_NUM 6 -#define CONFIG_SOC_LEDC_TIMER_BIT_WIDTH 20 -#define CONFIG_SOC_LEDC_SUPPORT_FADE_STOP 1 -#define CONFIG_SOC_LEDC_GAMMA_CURVE_FADE_SUPPORTED 1 -#define CONFIG_SOC_LEDC_GAMMA_CURVE_FADE_RANGE_MAX 16 -#define CONFIG_SOC_LEDC_FADE_PARAMS_BIT_WIDTH 10 -#define CONFIG_SOC_LEDC_SUPPORT_SLEEP_RETENTION 1 -#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 4 -#define CONFIG_SOC_PCNT_CHANNELS_PER_UNIT 2 -#define CONFIG_SOC_PCNT_THRES_POINT_PER_UNIT 2 -#define CONFIG_SOC_PCNT_SUPPORT_RUNTIME_THRES_UPDATE 1 -#define CONFIG_SOC_PCNT_SUPPORT_STEP_NOTIFY 1 -#define CONFIG_SOC_PCNT_SUPPORT_SLEEP_RETENTION 1 -#define CONFIG_SOC_RMT_GROUPS 1 -#define CONFIG_SOC_RMT_TX_CANDIDATES_PER_GROUP 2 -#define CONFIG_SOC_RMT_RX_CANDIDATES_PER_GROUP 2 -#define CONFIG_SOC_RMT_CHANNELS_PER_GROUP 4 -#define CONFIG_SOC_RMT_MEM_WORDS_PER_CHANNEL 48 -#define CONFIG_SOC_RMT_SUPPORT_RX_PINGPONG 1 -#define CONFIG_SOC_RMT_SUPPORT_RX_DEMODULATION 1 -#define CONFIG_SOC_RMT_SUPPORT_TX_ASYNC_STOP 1 -#define CONFIG_SOC_RMT_SUPPORT_TX_LOOP_COUNT 1 -#define CONFIG_SOC_RMT_SUPPORT_TX_LOOP_AUTO_STOP 1 -#define CONFIG_SOC_RMT_SUPPORT_TX_SYNCHRO 1 -#define CONFIG_SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY 1 -#define CONFIG_SOC_RMT_SUPPORT_XTAL 1 -#define CONFIG_SOC_RMT_SUPPORT_RC_FAST 1 -#define CONFIG_SOC_RMT_SUPPORT_SLEEP_RETENTION 1 -#define CONFIG_SOC_MCPWM_GROUPS 1 -#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_MCPWM_SWSYNC_CAN_PROPAGATE 1 -#define CONFIG_SOC_MCPWM_SUPPORT_ETM 1 -#define CONFIG_SOC_MCPWM_CAPTURE_CLK_FROM_GROUP 1 -#define CONFIG_SOC_MCPWM_SUPPORT_SLEEP_RETENTION 1 -#define CONFIG_SOC_PARLIO_GROUPS 1 -#define CONFIG_SOC_PARLIO_TX_UNITS_PER_GROUP 1 -#define CONFIG_SOC_PARLIO_RX_UNITS_PER_GROUP 1 -#define CONFIG_SOC_PARLIO_TX_UNIT_MAX_DATA_WIDTH 8 -#define CONFIG_SOC_PARLIO_RX_UNIT_MAX_DATA_WIDTH 8 -#define CONFIG_SOC_PARLIO_TX_CLK_SUPPORT_GATING 1 -#define CONFIG_SOC_PARLIO_RX_CLK_SUPPORT_GATING 1 -#define CONFIG_SOC_PARLIO_RX_CLK_SUPPORT_OUTPUT 1 -#define CONFIG_SOC_PARLIO_TRANS_BIT_ALIGN 1 -#define CONFIG_SOC_PARLIO_TX_SUPPORT_LOOP_TRANSMISSION 1 -#define CONFIG_SOC_PARLIO_SUPPORT_SLEEP_RETENTION 1 -#define CONFIG_SOC_PARLIO_SUPPORT_SPI_LCD 1 -#define CONFIG_SOC_MPI_MEM_BLOCKS_NUM 4 -#define CONFIG_SOC_MPI_OPERATIONS_NUM 3 -#define CONFIG_SOC_RSA_MAX_BIT_LEN 3072 -#define CONFIG_SOC_SHA_DMA_MAX_BUFFER_SIZE 3968 -#define CONFIG_SOC_SHA_SUPPORT_DMA 1 -#define CONFIG_SOC_SHA_SUPPORT_RESUME 1 -#define CONFIG_SOC_SHA_GDMA 1 -#define CONFIG_SOC_SHA_SUPPORT_SHA1 1 -#define CONFIG_SOC_SHA_SUPPORT_SHA224 1 -#define CONFIG_SOC_SHA_SUPPORT_SHA256 1 -#define CONFIG_SOC_SDM_GROUPS 1 -#define CONFIG_SOC_SDM_CHANNELS_PER_GROUP 4 -#define CONFIG_SOC_SDM_CLK_SUPPORT_PLL_F48M 1 -#define CONFIG_SOC_SDM_CLK_SUPPORT_XTAL 1 -#define CONFIG_SOC_SPI_PERIPH_NUM 2 -#define CONFIG_SOC_SPI_MAX_CS_NUM 6 -#define CONFIG_SOC_SPI_MAXIMUM_BUFFER_SIZE 64 -#define CONFIG_SOC_SPI_SUPPORT_DDRCLK 1 -#define CONFIG_SOC_SPI_SLAVE_SUPPORT_SEG_TRANS 1 -#define CONFIG_SOC_SPI_SUPPORT_CD_SIG 1 -#define CONFIG_SOC_SPI_SUPPORT_CONTINUOUS_TRANS 1 -#define CONFIG_SOC_SPI_SUPPORT_SLAVE_HD_VER2 1 -#define CONFIG_SOC_SPI_SUPPORT_SLEEP_RETENTION 1 -#define CONFIG_SOC_SPI_SUPPORT_CLK_XTAL 1 -#define CONFIG_SOC_SPI_SUPPORT_CLK_PLL_F48M 1 -#define CONFIG_SOC_SPI_SUPPORT_CLK_RC_FAST 1 -#define CONFIG_SOC_SPI_SCT_SUPPORTED 1 -#define CONFIG_SOC_SPI_SCT_REG_NUM 14 -#define CONFIG_SOC_SPI_SCT_BUFFER_NUM_MAX 1 -#define CONFIG_SOC_SPI_SCT_CONF_BITLEN_MAX 0x3FFFA -#define CONFIG_SOC_MEMSPI_IS_INDEPENDENT 1 -#define CONFIG_SOC_SPI_MAX_PRE_DIVIDER 16 -#define CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE 1 -#define CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND 1 -#define CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_RESUME 1 -#define CONFIG_SOC_SPI_MEM_SUPPORT_IDLE_INTR 1 -#define CONFIG_SOC_SPI_MEM_SUPPORT_SW_SUSPEND 1 -#define CONFIG_SOC_SPI_MEM_SUPPORT_CHECK_SUS 1 -#define CONFIG_SOC_SPI_MEM_SUPPORT_WRAP 1 -#define CONFIG_SOC_MEMSPI_SRC_FREQ_64M_SUPPORTED 1 -#define CONFIG_SOC_MEMSPI_SRC_FREQ_32M_SUPPORTED 1 -#define CONFIG_SOC_MEMSPI_SRC_FREQ_16M_SUPPORTED 1 -#define CONFIG_SOC_SYSTIMER_COUNTER_NUM 2 -#define CONFIG_SOC_SYSTIMER_ALARM_NUM 3 -#define CONFIG_SOC_SYSTIMER_BIT_WIDTH_LO 32 -#define CONFIG_SOC_SYSTIMER_BIT_WIDTH_HI 20 -#define CONFIG_SOC_SYSTIMER_FIXED_DIVIDER 1 -#define CONFIG_SOC_SYSTIMER_SUPPORT_RC_FAST 1 -#define CONFIG_SOC_SYSTIMER_INT_LEVEL 1 -#define CONFIG_SOC_SYSTIMER_ALARM_MISS_COMPENSATE 1 -#define CONFIG_SOC_SYSTIMER_SUPPORT_ETM 1 -#define CONFIG_SOC_LP_TIMER_BIT_WIDTH_LO 32 -#define CONFIG_SOC_LP_TIMER_BIT_WIDTH_HI 16 -#define CONFIG_SOC_TIMER_GROUPS 2 -#define CONFIG_SOC_TIMER_GROUP_TIMERS_PER_GROUP 1 -#define CONFIG_SOC_TIMER_GROUP_COUNTER_BIT_WIDTH 54 -#define CONFIG_SOC_TIMER_GROUP_SUPPORT_XTAL 1 -#define CONFIG_SOC_TIMER_GROUP_SUPPORT_RC_FAST 1 -#define CONFIG_SOC_TIMER_GROUP_TOTAL_TIMERS 2 -#define CONFIG_SOC_TIMER_SUPPORT_ETM 1 -#define CONFIG_SOC_TIMER_SUPPORT_SLEEP_RETENTION 1 -#define CONFIG_SOC_MWDT_SUPPORT_XTAL 1 -#define CONFIG_SOC_MWDT_SUPPORT_SLEEP_RETENTION 1 -#define CONFIG_SOC_TWAI_CONTROLLER_NUM 1 -#define CONFIG_SOC_TWAI_MASK_FILTER_NUM 1 -#define CONFIG_SOC_TWAI_CLK_SUPPORT_XTAL 1 -#define CONFIG_SOC_TWAI_BRP_MIN 2 -#define CONFIG_SOC_TWAI_BRP_MAX 32768 -#define CONFIG_SOC_TWAI_SUPPORTS_RX_STATUS 1 -#define CONFIG_SOC_TWAI_SUPPORT_SLEEP_RETENTION 1 -#define CONFIG_SOC_EFUSE_DIS_PAD_JTAG 1 -#define CONFIG_SOC_EFUSE_DIS_USB_JTAG 1 -#define CONFIG_SOC_EFUSE_DIS_DIRECT_BOOT 1 -#define CONFIG_SOC_EFUSE_SOFT_DIS_JTAG 1 -#define CONFIG_SOC_EFUSE_DIS_ICACHE 1 -#define CONFIG_SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK 1 -#define CONFIG_SOC_EFUSE_ECDSA_USE_HARDWARE_K 1 -#define CONFIG_SOC_EFUSE_ECDSA_KEY 1 -#define CONFIG_SOC_SECURE_BOOT_V2_RSA 1 -#define CONFIG_SOC_SECURE_BOOT_V2_ECC 1 -#define CONFIG_SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS 3 -#define CONFIG_SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS 1 -#define CONFIG_SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY 1 -#define CONFIG_SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX 64 -#define CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES 1 -#define CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_128 1 -#define CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_SUPPORT_PSEUDO_ROUND 1 -#define CONFIG_SOC_APM_CTRL_FILTER_SUPPORTED 1 -#define CONFIG_SOC_CRYPTO_DPA_PROTECTION_SUPPORTED 1 -#define CONFIG_SOC_ECC_CONSTANT_TIME_POINT_MUL 1 -#define CONFIG_SOC_ECDSA_USES_MPI 1 -#define CONFIG_SOC_ECDSA_SUPPORT_DETERMINISTIC_MODE 1 -#define CONFIG_SOC_ECDSA_SUPPORT_HW_DETERMINISTIC_LOOP 1 -#define CONFIG_SOC_ECDSA_P192_CURVE_DEFAULT_DISABLED 1 -#define CONFIG_SOC_UART_NUM 2 -#define CONFIG_SOC_UART_HP_NUM 2 -#define CONFIG_SOC_UART_FIFO_LEN 128 -#define CONFIG_SOC_UART_BITRATE_MAX 5000000 -#define CONFIG_SOC_UART_SUPPORT_RTC_CLK 1 -#define CONFIG_SOC_UART_SUPPORT_XTAL_CLK 1 -#define CONFIG_SOC_UART_SUPPORT_WAKEUP_INT 1 -#define CONFIG_SOC_UART_SUPPORT_FSM_TX_WAIT_SEND 1 -#define CONFIG_SOC_UART_SUPPORT_SLEEP_RETENTION 1 -#define CONFIG_SOC_UART_WAKEUP_CHARS_SEQ_MAX_LEN 5 -#define CONFIG_SOC_UART_WAKEUP_SUPPORT_ACTIVE_THRESH_MODE 1 -#define CONFIG_SOC_UART_WAKEUP_SUPPORT_FIFO_THRESH_MODE 1 -#define CONFIG_SOC_UART_WAKEUP_SUPPORT_START_BIT_MODE 1 -#define CONFIG_SOC_UART_WAKEUP_SUPPORT_CHAR_SEQ_MODE 1 -#define CONFIG_SOC_UHCI_NUM 1 -#define CONFIG_SOC_COEX_HW_PTI 1 -#define CONFIG_SOC_EXTERNAL_COEX_ADVANCE 1 -#define CONFIG_SOC_PHY_DIG_REGS_MEM_SIZE 21 -#define CONFIG_SOC_PM_SUPPORT_BT_WAKEUP 1 -#define CONFIG_SOC_PM_SUPPORT_EXT1_WAKEUP 1 -#define CONFIG_SOC_PM_SUPPORT_EXT1_WAKEUP_MODE_PER_PIN 1 -#define CONFIG_SOC_PM_SUPPORT_CPU_PD 1 -#define CONFIG_SOC_PM_SUPPORT_MODEM_PD 1 -#define CONFIG_SOC_PM_SUPPORT_XTAL32K_PD 1 -#define CONFIG_SOC_PM_SUPPORT_RC32K_PD 1 -#define CONFIG_SOC_PM_SUPPORT_RC_FAST_PD 1 -#define CONFIG_SOC_PM_SUPPORT_VDDSDIO_PD 1 -#define CONFIG_SOC_PM_SUPPORT_TOP_PD 1 -#define CONFIG_SOC_PM_PAU_LINK_NUM 4 -#define CONFIG_SOC_PM_PAU_REGDMA_LINK_MULTI_ADDR 1 -#define CONFIG_SOC_PM_PAU_REGDMA_LINK_WIFIMAC 1 -#define CONFIG_SOC_PM_PAU_REGDMA_UPDATE_CACHE_BEFORE_WAIT_COMPARE 1 -#define CONFIG_SOC_PM_RETENTION_MODULE_NUM 32 -#define CONFIG_SOC_EXT_MEM_CACHE_TAG_IN_CPU_DOMAIN 1 -#define CONFIG_SOC_PM_CPU_RETENTION_BY_SW 1 -#define CONFIG_SOC_PM_MODEM_RETENTION_BY_REGDMA 1 -#define CONFIG_SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY 1 -#define CONFIG_SOC_PM_RETENTION_SW_TRIGGER_REGDMA 1 -#define CONFIG_SOC_PM_SUPPORT_PMU_CLK_ICG 1 -#define CONFIG_SOC_CLK_RC_FAST_SUPPORT_CALIBRATION 1 -#define CONFIG_SOC_CLK_XTAL32K_SUPPORTED 1 -#define CONFIG_SOC_CLK_OSC_SLOW_SUPPORTED 1 -#define CONFIG_SOC_CLK_RC32K_SUPPORTED 1 -#define CONFIG_SOC_CLK_LP_FAST_SUPPORT_LP_PLL 1 -#define CONFIG_SOC_CLK_LP_FAST_SUPPORT_XTAL_D2 1 -#define CONFIG_SOC_MODEM_CLOCK_IS_INDEPENDENT 1 -#define CONFIG_SOC_RCC_IS_INDEPENDENT 1 -#define CONFIG_SOC_CLK_ANA_I2C_MST_HAS_ROOT_GATE 1 -#define CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC 1 -#define CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_XTAL 1 -#define CONFIG_SOC_TEMPERATURE_SENSOR_INTR_SUPPORT 1 -#define CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_ETM 1 -#define CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_SLEEP_RETENTION 1 -#define CONFIG_SOC_TEMPERATURE_SENSOR_UNDER_PD_TOP_DOMAIN 1 -#define CONFIG_SOC_RNG_CLOCK_IS_INDEPENDENT 1 -#define CONFIG_SOC_BLE_SUPPORTED 1 -#define CONFIG_SOC_BLE_MESH_SUPPORTED 1 -#define CONFIG_SOC_ESP_NIMBLE_CONTROLLER 1 -#define CONFIG_SOC_BLE_50_SUPPORTED 1 -#define CONFIG_SOC_BLE_DEVICE_PRIVACY_SUPPORTED 1 -#define CONFIG_SOC_BLE_POWER_CONTROL_SUPPORTED 1 -#define CONFIG_SOC_BLE_MULTI_CONN_OPTIMIZATION 1 -#define CONFIG_SOC_BLE_PERIODIC_ADV_ENH_SUPPORTED 1 -#define CONFIG_SOC_BLE_CTE_SUPPORTED 1 -#define CONFIG_SOC_DEBUG_HAVE_OCD_STUB_BINS 1 -#define CONFIG_IDF_CMAKE 1 -#define CONFIG_IDF_TOOLCHAIN "gcc" -#define CONFIG_IDF_TOOLCHAIN_GCC 1 -#define CONFIG_IDF_TARGET_ARCH_RISCV 1 -#define CONFIG_IDF_TARGET_ARCH "riscv" -#define CONFIG_IDF_TARGET "esp32h2" -#define CONFIG_IDF_INIT_VERSION "5.5.1" -#define CONFIG_IDF_TARGET_ESP32H2 1 -#define CONFIG_IDF_FIRMWARE_CHIP_ID 0x0010 -#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_COMPILE_TIME_DATE 1 -#define CONFIG_BOOTLOADER_PROJECT_VER 1 -#define CONFIG_BOOTLOADER_OFFSET_IN_FLASH 0x0 -#define CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_SIZE 1 -#define CONFIG_BOOTLOADER_LOG_VERSION_1 1 -#define CONFIG_BOOTLOADER_LOG_VERSION 1 -#define CONFIG_BOOTLOADER_LOG_LEVEL_INFO 1 -#define CONFIG_BOOTLOADER_LOG_LEVEL 3 -#define CONFIG_BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS 1 -#define CONFIG_BOOTLOADER_LOG_MODE_TEXT_EN 1 -#define CONFIG_BOOTLOADER_LOG_MODE_TEXT 1 -#define CONFIG_BOOTLOADER_FLASH_XMC_SUPPORT 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_SECURE_BOOT_V2_RSA_SUPPORTED 1 -#define CONFIG_SECURE_BOOT_V2_ECC_SUPPORTED 1 -#define CONFIG_SECURE_BOOT_V2_PREFERRED 1 -#define CONFIG_SECURE_ROM_DL_MODE_ENABLED 1 -#define CONFIG_APP_COMPILE_TIME_DATE 1 -#define CONFIG_APP_RETRIEVE_LEN_ELF_SHA 9 -#define CONFIG_ESP_ROM_HAS_CRC_LE 1 -#define CONFIG_ESP_ROM_HAS_CRC_BE 1 -#define CONFIG_ESP_ROM_UART_CLK_IS_XTAL 1 -#define CONFIG_ESP_ROM_USB_SERIAL_DEVICE_NUM 3 -#define CONFIG_ESP_ROM_HAS_RETARGETABLE_LOCKING 1 -#define CONFIG_ESP_ROM_GET_CLK_FREQ 1 -#define CONFIG_ESP_ROM_HAS_HAL_WDT 1 -#define CONFIG_ESP_ROM_HAS_HAL_SYSTIMER 1 -#define CONFIG_ESP_ROM_SYSTIMER_INIT_PATCH 1 -#define CONFIG_ESP_ROM_HAS_HEAP_TLSF 1 -#define CONFIG_ESP_ROM_TLSF_CHECK_PATCH 1 -#define CONFIG_ESP_ROM_MULTI_HEAP_WALK_PATCH 1 -#define CONFIG_ESP_ROM_HAS_LAYOUT_TABLE 1 -#define CONFIG_ESP_ROM_HAS_SPI_FLASH 1 -#define CONFIG_ESP_ROM_HAS_SPI_FLASH_MMAP 1 -#define CONFIG_ESP_ROM_WITHOUT_REGI2C 1 -#define CONFIG_ESP_ROM_HAS_NEWLIB 1 -#define CONFIG_ESP_ROM_HAS_NEWLIB_NANO_FORMAT 1 -#define CONFIG_ESP_ROM_HAS_NEWLIB_NANO_PRINTF_FLOAT_BUG 1 -#define CONFIG_ESP_ROM_WDT_INIT_PATCH 1 -#define CONFIG_ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE 1 -#define CONFIG_ESP_ROM_RAM_APP_NEEDS_MMU_INIT 1 -#define CONFIG_ESP_ROM_HAS_SW_FLOAT 1 -#define CONFIG_ESP_ROM_USB_OTG_NUM -1 -#define CONFIG_ESP_ROM_HAS_VERSION 1 -#define CONFIG_ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB 1 -#define CONFIG_ESP_ROM_HAS_OUTPUT_PUTC_FUNC 1 -#define CONFIG_ESP_ROM_NO_USB_SERIAL_OUTPUT_API 1 -#define CONFIG_ESP_ROM_HAS_SUBOPTIMAL_NEWLIB_ON_MISALIGNED_MEMORY 1 -#define CONFIG_BOOT_ROM_LOG_ALWAYS_ON 1 -#define CONFIG_SECURE_TEE_LOG_LEVEL 0 -#define CONFIG_ESPTOOLPY_FLASHMODE_DIO 1 -#define CONFIG_ESPTOOLPY_FLASH_SAMPLE_MODE_STR 1 -#define CONFIG_ESPTOOLPY_FLASHMODE "dio" -#define CONFIG_ESPTOOLPY_FLASHFREQ_64M 1 -#define CONFIG_ESPTOOLPY_FLASHFREQ "48m" -#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_CUSTOM 1 -#define CONFIG_PARTITION_TABLE_CUSTOM_FILENAME "partitions.csv" -#define CONFIG_PARTITION_TABLE_FILENAME "partitions.csv" -#define CONFIG_PARTITION_TABLE_OFFSET 0x8000 -#define CONFIG_PARTITION_TABLE_MD5 1 -#define CONFIG_COMPILER_OPTIMIZATION_SIZE 1 -#define CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_SILENT 1 -#define CONFIG_COMPILER_ASSERT_NDEBUG_EVALUATE 1 -#define CONFIG_COMPILER_FLOAT_LIB_FROM_GCCLIB 1 -#define CONFIG_COMPILER_OPTIMIZATION_ASSERTION_LEVEL 1 -#define CONFIG_COMPILER_OPTIMIZATION_CHECKS_SILENT 1 -#define CONFIG_COMPILER_HIDE_PATHS_MACROS 1 -#define CONFIG_COMPILER_STACK_CHECK_MODE_NONE 1 -#define CONFIG_COMPILER_SAVE_RESTORE_LIBCALLS 1 -#define CONFIG_COMPILER_DISABLE_DEFAULT_ERRORS 1 -#define CONFIG_COMPILER_RT_LIB_GCCLIB 1 -#define CONFIG_COMPILER_RT_LIB_NAME "gcc" -#define CONFIG_COMPILER_ORPHAN_SECTIONS_WARNING 1 -#define CONFIG_EFUSE_MAX_BLK_LEN 256 -#define CONFIG_ESP32H2_REV_MIN_0 1 -#define CONFIG_ESP32H2_REV_MIN_FULL 0 -#define CONFIG_ESP_REV_MIN_FULL 0 -#define CONFIG_ESP32H2_REV_MAX_FULL 199 -#define CONFIG_ESP_REV_MAX_FULL 199 -#define CONFIG_ESP_EFUSE_BLOCK_REV_MIN_FULL 0 -#define CONFIG_ESP_EFUSE_BLOCK_REV_MAX_FULL 99 -#define CONFIG_ESP_MAC_ADDR_UNIVERSE_BT 1 -#define CONFIG_ESP_MAC_ADDR_UNIVERSE_IEEE802154 1 -#define CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES_TWO 1 -#define CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES 2 -#define CONFIG_ESP32H2_UNIVERSAL_MAC_ADDRESSES_TWO 1 -#define CONFIG_ESP32H2_UNIVERSAL_MAC_ADDRESSES 2 -#define CONFIG_ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND 1 -#define CONFIG_ESP_SLEEP_GPIO_RESET_WORKAROUND 1 -#define CONFIG_ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY 0 -#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_ESP_PERIPH_CTRL_FUNC_IN_IRAM 1 -#define CONFIG_ESP_REGI2C_CTRL_FUNC_IN_IRAM 1 -#define CONFIG_GDMA_CTRL_FUNC_IN_IRAM 1 -#define CONFIG_GDMA_ISR_HANDLER_IN_IRAM 1 -#define CONFIG_GDMA_OBJ_DRAM_SAFE 1 -#define CONFIG_XTAL_FREQ_32 1 -#define CONFIG_XTAL_FREQ 32 -#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_BROWNOUT_USE_INTR 1 -#define CONFIG_ESP_INTR_IN_IRAM 1 -#define CONFIG_ESP_ROM_PRINT_IN_IRAM 1 -#define CONFIG_ESP_CRYPTO_DPA_PROTECTION_AT_STARTUP 1 -#define CONFIG_ESP_CRYPTO_DPA_PROTECTION_LEVEL_LOW 1 -#define CONFIG_ESP_CRYPTO_DPA_PROTECTION_LEVEL 1 -#define CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_96 1 -#define CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ 96 -#define CONFIG_ESP_SYSTEM_IN_IRAM 1 -#define CONFIG_ESP_SYSTEM_PANIC_SILENT_REBOOT 1 -#define CONFIG_ESP_SYSTEM_SINGLE_CORE_MODE 1 -#define CONFIG_ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK 1 -#define CONFIG_ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP 1 -#define CONFIG_ESP_SYSTEM_NO_BACKTRACE 1 -#define CONFIG_ESP_SYSTEM_PMP_IDRAM_SPLIT 1 -#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_SECONDARY_USB_SERIAL_JTAG 1 -#define CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED 1 -#define CONFIG_ESP_CONSOLE_UART 1 -#define CONFIG_ESP_CONSOLE_UART_NUM 0 -#define CONFIG_ESP_CONSOLE_ROM_SERIAL_PORT_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_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_DEBUG_OCDAWARE 1 -#define CONFIG_ESP_SYSTEM_CHECK_INT_LEVEL_4 1 -#define CONFIG_ESP_SYSTEM_HW_STACK_GUARD 1 -#define CONFIG_ESP_SYSTEM_BBPLL_RECALIB 1 -#define CONFIG_ESP_SYSTEM_HW_PC_RECORD 1 -#define CONFIG_ESP_IPC_TASK_STACK_SIZE 1024 -#define CONFIG_FREERTOS_UNICORE 1 -#define CONFIG_FREERTOS_HZ 100 -#define CONFIG_FREERTOS_OPTIMIZED_SCHEDULER 1 -#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_USE_TIMERS 1 -#define CONFIG_FREERTOS_TIMER_SERVICE_TASK_NAME "Tmr Svc" -#define CONFIG_FREERTOS_TIMER_TASK_NO_AFFINITY 1 -#define CONFIG_FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY 0x7FFFFFFF -#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_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_SYSTIMER 1 -#define CONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL1 1 -#define CONFIG_FREERTOS_SYSTICK_USES_SYSTIMER 1 -#define CONFIG_FREERTOS_PORT 1 -#define CONFIG_FREERTOS_NO_AFFINITY 0x7FFFFFFF -#define CONFIG_FREERTOS_SUPPORT_STATIC_ALLOCATION 1 -#define CONFIG_FREERTOS_DEBUG_OCDAWARE 1 -#define CONFIG_FREERTOS_ENABLE_TASK_SNAPSHOT 1 -#define CONFIG_FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH 1 -#define CONFIG_FREERTOS_NUMBER_OF_CORES 1 -#define CONFIG_FREERTOS_IN_IRAM 1 -#define CONFIG_HAL_ASSERTION_EQUALS_SYSTEM 1 -#define CONFIG_HAL_DEFAULT_ASSERTION_LEVEL 1 -#define CONFIG_HAL_SYSTIMER_USE_ROM_IMPL 1 -#define CONFIG_HAL_WDT_USE_ROM_IMPL 1 -#define CONFIG_LOG_VERSION_1 1 -#define CONFIG_LOG_VERSION 1 -#define CONFIG_LOG_DEFAULT_LEVEL_NONE 1 -#define CONFIG_LOG_DEFAULT_LEVEL 0 -#define CONFIG_LOG_MAXIMUM_EQUALS_DEFAULT 1 -#define CONFIG_LOG_MAXIMUM_LEVEL 0 -#define CONFIG_LOG_DYNAMIC_LEVEL_CONTROL 1 -#define CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST 1 -#define CONFIG_LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP 1 -#define CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_SIZE 31 -#define CONFIG_LOG_TIMESTAMP_SOURCE_RTOS 1 -#define CONFIG_LOG_MODE_TEXT_EN 1 -#define CONFIG_LOG_MODE_TEXT 1 -#define CONFIG_LOG_IN_IRAM 1 -#define CONFIG_LIBC_NEWLIB 1 -#define CONFIG_LIBC_MISC_IN_IRAM 1 -#define CONFIG_LIBC_LOCKS_PLACE_IN_IRAM 1 -#define CONFIG_LIBC_NEWLIB_NANO_FORMAT 1 -#define CONFIG_LIBC_TIME_SYSCALL_USE_RTC_HRT 1 -#define CONFIG_MMU_PAGE_SIZE_32KB 1 -#define CONFIG_MMU_PAGE_MODE "32KB" -#define CONFIG_MMU_PAGE_SIZE 0x8000 -#define CONFIG_SPI_FLASH_BROWNOUT_RESET_XMC 1 -#define CONFIG_SPI_FLASH_BROWNOUT_RESET 1 -#define CONFIG_SPI_FLASH_SUSPEND_TSUS_VAL_US 50 -#define CONFIG_SPI_FLASH_PLACE_FUNCTIONS_IN_IRAM 1 -#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_VENDOR_XMC_SUPPORT_ENABLED 1 -#define CONFIG_SPI_FLASH_VENDOR_GD_SUPPORT_ENABLED 1 -#define CONFIG_SPI_FLASH_SUPPORT_GD_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_RELEASE CONFIG_COMPILER_OPTIMIZATION_SIZE -#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_ESP_SYSTEM_BROWNOUT_INTR CONFIG_ESP_BROWNOUT_USE_INTR -#define CONFIG_ESP_TASK_WDT CONFIG_ESP_TASK_WDT_INIT -#define CONFIG_FLASHMODE_DIO CONFIG_ESPTOOLPY_FLASHMODE_DIO -#define CONFIG_INT_WDT CONFIG_ESP_INT_WDT -#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_NEWLIB_NANO_FORMAT CONFIG_LIBC_NEWLIB_NANO_FORMAT -#define CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC_HRT CONFIG_LIBC_TIME_SYSCALL_USE_RTC_HRT -#define CONFIG_OPTIMIZATION_ASSERTIONS_SILENT CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_SILENT -#define CONFIG_OPTIMIZATION_ASSERTION_LEVEL CONFIG_COMPILER_OPTIMIZATION_ASSERTION_LEVEL -#define CONFIG_OPTIMIZATION_LEVEL_RELEASE CONFIG_COMPILER_OPTIMIZATION_SIZE -#define CONFIG_PERIPH_CTRL_FUNC_IN_IRAM CONFIG_ESP_PERIPH_CTRL_FUNC_IN_IRAM -#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_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 diff --git a/esp32-thread/open-thread-rcp/build/bootloader/config/sdkconfig.json b/esp32-thread/open-thread-rcp/build/bootloader/config/sdkconfig.json deleted file mode 100644 index 3da40729..00000000 --- a/esp32-thread/open-thread-rcp/build/bootloader/config/sdkconfig.json +++ /dev/null @@ -1,806 +0,0 @@ -{ - "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_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": 9, - "BOOTLOADER_APP_ROLLBACK_ENABLE": false, - "BOOTLOADER_APP_TEST": false, - "BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG": false, - "BOOTLOADER_COMPILER_OPTIMIZATION_PERF": false, - "BOOTLOADER_COMPILER_OPTIMIZATION_SIZE": true, - "BOOTLOADER_COMPILE_TIME_DATE": true, - "BOOTLOADER_CUSTOM_RESERVE_RTC": false, - "BOOTLOADER_FACTORY_RESET": false, - "BOOTLOADER_FLASH_DC_AWARE": false, - "BOOTLOADER_FLASH_XMC_SUPPORT": true, - "BOOTLOADER_LOG_COLORS": false, - "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_LOG_MODE_TEXT": true, - "BOOTLOADER_LOG_MODE_TEXT_EN": true, - "BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS": true, - "BOOTLOADER_LOG_VERSION": 1, - "BOOTLOADER_LOG_VERSION_1": true, - "BOOTLOADER_OFFSET_IN_FLASH": 0, - "BOOTLOADER_PROJECT_VER": 1, - "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_WDT_DISABLE_IN_USER_CODE": false, - "BOOTLOADER_WDT_ENABLE": true, - "BOOTLOADER_WDT_TIME_MS": 9000, - "BOOT_ROM_LOG_ALWAYS_OFF": false, - "BOOT_ROM_LOG_ALWAYS_ON": true, - "BOOT_ROM_LOG_ON_GPIO_HIGH": false, - "BOOT_ROM_LOG_ON_GPIO_LOW": false, - "COMPILER_ASSERT_NDEBUG_EVALUATE": true, - "COMPILER_CXX_EXCEPTIONS": false, - "COMPILER_CXX_RTTI": false, - "COMPILER_DISABLE_DEFAULT_ERRORS": true, - "COMPILER_DISABLE_GCC12_WARNINGS": false, - "COMPILER_DISABLE_GCC13_WARNINGS": false, - "COMPILER_DISABLE_GCC14_WARNINGS": false, - "COMPILER_DUMP_RTL_FILES": false, - "COMPILER_FLOAT_LIB_FROM_GCCLIB": true, - "COMPILER_HIDE_PATHS_MACROS": true, - "COMPILER_NO_MERGE_CONSTANTS": false, - "COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE": false, - "COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE": false, - "COMPILER_OPTIMIZATION_ASSERTIONS_SILENT": true, - "COMPILER_OPTIMIZATION_ASSERTION_LEVEL": 1, - "COMPILER_OPTIMIZATION_CHECKS_SILENT": true, - "COMPILER_OPTIMIZATION_DEBUG": false, - "COMPILER_OPTIMIZATION_NONE": false, - "COMPILER_OPTIMIZATION_PERF": false, - "COMPILER_OPTIMIZATION_SIZE": true, - "COMPILER_ORPHAN_SECTIONS_PLACE": false, - "COMPILER_ORPHAN_SECTIONS_WARNING": true, - "COMPILER_RT_LIB_GCCLIB": true, - "COMPILER_RT_LIB_NAME": "gcc", - "COMPILER_SAVE_RESTORE_LIBCALLS": true, - "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_STATIC_ANALYZER": false, - "COMPILER_WARN_WRITE_STRINGS": false, - "EFUSE_CUSTOM_TABLE": false, - "EFUSE_MAX_BLK_LEN": 256, - "EFUSE_VIRTUAL": false, - "ESP32H2_REV_MAX_FULL": 199, - "ESP32H2_REV_MIN_0": true, - "ESP32H2_REV_MIN_1": false, - "ESP32H2_REV_MIN_102": false, - "ESP32H2_REV_MIN_2": false, - "ESP32H2_REV_MIN_FULL": 0, - "ESP32H2_UNIVERSAL_MAC_ADDRESSES": 2, - "ESP32H2_UNIVERSAL_MAC_ADDRESSES_TWO": true, - "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": "48m", - "ESPTOOLPY_FLASHFREQ_16M": false, - "ESPTOOLPY_FLASHFREQ_32M": false, - "ESPTOOLPY_FLASHFREQ_64M": true, - "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_BROWNOUT_USE_INTR": true, - "ESP_CONSOLE_NONE": false, - "ESP_CONSOLE_ROM_SERIAL_PORT_NUM": 0, - "ESP_CONSOLE_SECONDARY_NONE": false, - "ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG": true, - "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_CONSOLE_USB_SERIAL_JTAG": false, - "ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED": true, - "ESP_CRYPTO_DPA_PROTECTION_AT_STARTUP": true, - "ESP_CRYPTO_DPA_PROTECTION_LEVEL": 1, - "ESP_CRYPTO_DPA_PROTECTION_LEVEL_HIGH": false, - "ESP_CRYPTO_DPA_PROTECTION_LEVEL_LOW": true, - "ESP_CRYPTO_DPA_PROTECTION_LEVEL_MEDIUM": false, - "ESP_CRYPTO_FORCE_ECC_CONSTANT_TIME_POINT_MUL": false, - "ESP_DEBUG_INCLUDE_OCD_STUB_BINS": false, - "ESP_DEBUG_OCDAWARE": true, - "ESP_DEBUG_STUBS_ENABLE": false, - "ESP_DEFAULT_CPU_FREQ_MHZ": 96, - "ESP_DEFAULT_CPU_FREQ_MHZ_48": false, - "ESP_DEFAULT_CPU_FREQ_MHZ_64": false, - "ESP_DEFAULT_CPU_FREQ_MHZ_96": true, - "ESP_ECDSA_ENABLE_P192_CURVE": false, - "ESP_EFUSE_BLOCK_REV_MAX_FULL": 99, - "ESP_EFUSE_BLOCK_REV_MIN_FULL": 0, - "ESP_ERR_TO_NAME_LOOKUP": false, - "ESP_INTR_IN_IRAM": true, - "ESP_INT_WDT": true, - "ESP_INT_WDT_TIMEOUT_MS": 300, - "ESP_IPC_TASK_STACK_SIZE": 1024, - "ESP_MAC_ADDR_UNIVERSE_BT": true, - "ESP_MAC_ADDR_UNIVERSE_IEEE802154": true, - "ESP_MAC_UNIVERSAL_MAC_ADDRESSES": 2, - "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_TWO": true, - "ESP_MAC_USE_CUSTOM_MAC_AS_BASE_MAC": false, - "ESP_MAIN_TASK_AFFINITY": 0, - "ESP_MAIN_TASK_AFFINITY_CPU0": true, - "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_PERIPH_CTRL_FUNC_IN_IRAM": true, - "ESP_REGI2C_CTRL_FUNC_IN_IRAM": true, - "ESP_REV_MAX_FULL": 199, - "ESP_REV_MIN_FULL": 0, - "ESP_ROM_GET_CLK_FREQ": true, - "ESP_ROM_HAS_CRC_BE": true, - "ESP_ROM_HAS_CRC_LE": true, - "ESP_ROM_HAS_HAL_SYSTIMER": true, - "ESP_ROM_HAS_HAL_WDT": true, - "ESP_ROM_HAS_HEAP_TLSF": true, - "ESP_ROM_HAS_LAYOUT_TABLE": true, - "ESP_ROM_HAS_NEWLIB": true, - "ESP_ROM_HAS_NEWLIB_NANO_FORMAT": true, - "ESP_ROM_HAS_NEWLIB_NANO_PRINTF_FLOAT_BUG": true, - "ESP_ROM_HAS_OUTPUT_PUTC_FUNC": true, - "ESP_ROM_HAS_RETARGETABLE_LOCKING": true, - "ESP_ROM_HAS_SPI_FLASH": true, - "ESP_ROM_HAS_SPI_FLASH_MMAP": true, - "ESP_ROM_HAS_SUBOPTIMAL_NEWLIB_ON_MISALIGNED_MEMORY": true, - "ESP_ROM_HAS_SW_FLOAT": true, - "ESP_ROM_HAS_VERSION": true, - "ESP_ROM_MULTI_HEAP_WALK_PATCH": true, - "ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE": true, - "ESP_ROM_NO_USB_SERIAL_OUTPUT_API": true, - "ESP_ROM_PRINT_IN_IRAM": true, - "ESP_ROM_RAM_APP_NEEDS_MMU_INIT": true, - "ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB": true, - "ESP_ROM_SYSTIMER_INIT_PATCH": true, - "ESP_ROM_TLSF_CHECK_PATCH": true, - "ESP_ROM_UART_CLK_IS_XTAL": true, - "ESP_ROM_USB_OTG_NUM": -1, - "ESP_ROM_USB_SERIAL_DEVICE_NUM": 3, - "ESP_ROM_WDT_INIT_PATCH": true, - "ESP_ROM_WITHOUT_REGI2C": true, - "ESP_SLEEP_CACHE_SAFE_ASSERTION": false, - "ESP_SLEEP_DEBUG": false, - "ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND": true, - "ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS": true, - "ESP_SLEEP_GPIO_RESET_WORKAROUND": true, - "ESP_SLEEP_MSPI_NEED_ALL_IO_PU": false, - "ESP_SLEEP_POWER_DOWN_FLASH": false, - "ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY": 0, - "ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP": true, - "ESP_SYSTEM_BBPLL_RECALIB": true, - "ESP_SYSTEM_CHECK_INT_LEVEL_4": true, - "ESP_SYSTEM_EVENT_QUEUE_SIZE": 32, - "ESP_SYSTEM_EVENT_TASK_STACK_SIZE": 2304, - "ESP_SYSTEM_HW_PC_RECORD": true, - "ESP_SYSTEM_HW_STACK_GUARD": true, - "ESP_SYSTEM_IN_IRAM": true, - "ESP_SYSTEM_NO_BACKTRACE": true, - "ESP_SYSTEM_PANIC_PRINT_HALT": false, - "ESP_SYSTEM_PANIC_PRINT_REBOOT": false, - "ESP_SYSTEM_PANIC_SILENT_REBOOT": true, - "ESP_SYSTEM_PMP_IDRAM_SPLIT": true, - "ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK": true, - "ESP_SYSTEM_SINGLE_CORE_MODE": true, - "ESP_SYSTEM_USE_EH_FRAME": false, - "ESP_SYSTEM_USE_FRAME_POINTER": false, - "ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0": true, - "ESP_TASK_WDT_EN": true, - "ESP_TASK_WDT_INIT": true, - "ESP_TASK_WDT_PANIC": false, - "ESP_TASK_WDT_TIMEOUT_S": 5, - "ESP_VBAT_INIT_AUTO": false, - "ESP_VBAT_WAKEUP_CHIP_ON_VBAT_BROWNOUT": false, - "ETM_ENABLE_DEBUG_LOG": false, - "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_SYSTIMER_LVL1": true, - "FREERTOS_CORETIMER_SYSTIMER_LVL3": false, - "FREERTOS_DEBUG_OCDAWARE": true, - "FREERTOS_ENABLE_BACKWARD_COMPATIBILITY": false, - "FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP": false, - "FREERTOS_ENABLE_TASK_SNAPSHOT": true, - "FREERTOS_GENERATE_RUN_TIME_STATS": false, - "FREERTOS_HZ": 100, - "FREERTOS_IDLE_TASK_STACKSIZE": 1536, - "FREERTOS_INTERRUPT_BACKTRACE": true, - "FREERTOS_IN_IRAM": true, - "FREERTOS_ISR_STACKSIZE": 1536, - "FREERTOS_MAX_TASK_NAME_LEN": 16, - "FREERTOS_NO_AFFINITY": 2147483647, - "FREERTOS_NUMBER_OF_CORES": 1, - "FREERTOS_OPTIMIZED_SCHEDULER": true, - "FREERTOS_PLACE_FUNCTIONS_INTO_FLASH": false, - "FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH": true, - "FREERTOS_PORT": true, - "FREERTOS_QUEUE_REGISTRY_SIZE": 0, - "FREERTOS_SMP": false, - "FREERTOS_SUPPORT_STATIC_ALLOCATION": true, - "FREERTOS_SYSTICK_USES_SYSTIMER": true, - "FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES": 1, - "FREERTOS_TASK_PRE_DELETION_HOOK": false, - "FREERTOS_THREAD_LOCAL_STORAGE_POINTERS": 1, - "FREERTOS_TICK_SUPPORT_SYSTIMER": true, - "FREERTOS_TIMER_QUEUE_LENGTH": 10, - "FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY": 2147483647, - "FREERTOS_TIMER_SERVICE_TASK_NAME": "Tmr Svc", - "FREERTOS_TIMER_TASK_AFFINITY_CPU0": false, - "FREERTOS_TIMER_TASK_NO_AFFINITY": true, - "FREERTOS_TIMER_TASK_PRIORITY": 1, - "FREERTOS_TIMER_TASK_STACK_DEPTH": 2048, - "FREERTOS_TLSP_DELETION_CALLBACKS": true, - "FREERTOS_UNICORE": true, - "FREERTOS_USE_APPLICATION_TASK_TAG": false, - "FREERTOS_USE_IDLE_HOOK": false, - "FREERTOS_USE_LIST_DATA_INTEGRITY_CHECK_BYTES": false, - "FREERTOS_USE_TICK_HOOK": false, - "FREERTOS_USE_TIMERS": true, - "FREERTOS_USE_TRACE_FACILITY": false, - "FREERTOS_WATCHPOINT_END_OF_STACK": false, - "GDMA_CTRL_FUNC_IN_IRAM": true, - "GDMA_ENABLE_DEBUG_LOG": false, - "GDMA_ISR_HANDLER_IN_IRAM": true, - "GDMA_ISR_IRAM_SAFE": false, - "GDMA_OBJ_DRAM_SAFE": true, - "HAL_ASSERTION_DISABLE": false, - "HAL_ASSERTION_EQUALS_SYSTEM": true, - "HAL_ASSERTION_SILENT": false, - "HAL_DEFAULT_ASSERTION_LEVEL": 1, - "HAL_ECDSA_GEN_SIG_CM": false, - "HAL_SYSTIMER_USE_ROM_IMPL": true, - "HAL_WDT_USE_ROM_IMPL": true, - "IDF_CMAKE": true, - "IDF_EXPERIMENTAL_FEATURES": false, - "IDF_FIRMWARE_CHIP_ID": 16, - "IDF_INIT_VERSION": "5.5.1", - "IDF_TARGET": "esp32h2", - "IDF_TARGET_ARCH": "riscv", - "IDF_TARGET_ARCH_RISCV": true, - "IDF_TARGET_ESP32H2": true, - "IDF_TOOLCHAIN": "gcc", - "IDF_TOOLCHAIN_GCC": true, - "LIBC_LOCKS_PLACE_IN_IRAM": true, - "LIBC_MISC_IN_IRAM": true, - "LIBC_NEWLIB": true, - "LIBC_NEWLIB_NANO_FORMAT": true, - "LIBC_OPTIMIZED_MISALIGNED_ACCESS": false, - "LIBC_TIME_SYSCALL_USE_HRT": false, - "LIBC_TIME_SYSCALL_USE_NONE": false, - "LIBC_TIME_SYSCALL_USE_RTC": false, - "LIBC_TIME_SYSCALL_USE_RTC_HRT": true, - "LOG_COLORS": false, - "LOG_DEFAULT_LEVEL": 0, - "LOG_DEFAULT_LEVEL_DEBUG": false, - "LOG_DEFAULT_LEVEL_ERROR": false, - "LOG_DEFAULT_LEVEL_INFO": false, - "LOG_DEFAULT_LEVEL_NONE": true, - "LOG_DEFAULT_LEVEL_VERBOSE": false, - "LOG_DEFAULT_LEVEL_WARN": false, - "LOG_DYNAMIC_LEVEL_CONTROL": true, - "LOG_IN_IRAM": true, - "LOG_MASTER_LEVEL": false, - "LOG_MAXIMUM_EQUALS_DEFAULT": true, - "LOG_MAXIMUM_LEVEL": 0, - "LOG_MAXIMUM_LEVEL_DEBUG": false, - "LOG_MAXIMUM_LEVEL_ERROR": false, - "LOG_MAXIMUM_LEVEL_INFO": false, - "LOG_MAXIMUM_LEVEL_VERBOSE": false, - "LOG_MAXIMUM_LEVEL_WARN": false, - "LOG_MODE_TEXT": true, - "LOG_MODE_TEXT_EN": true, - "LOG_TAG_LEVEL_CACHE_ARRAY": false, - "LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP": true, - "LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST": true, - "LOG_TAG_LEVEL_IMPL_CACHE_SIZE": 31, - "LOG_TAG_LEVEL_IMPL_LINKED_LIST": false, - "LOG_TAG_LEVEL_IMPL_NONE": false, - "LOG_TIMESTAMP_SOURCE_RTOS": true, - "LOG_TIMESTAMP_SOURCE_SYSTEM": false, - "LOG_VERSION": 1, - "LOG_VERSION_1": true, - "LOG_VERSION_2": false, - "MMU_PAGE_MODE": "32KB", - "MMU_PAGE_SIZE": 32768, - "MMU_PAGE_SIZE_32KB": true, - "PARTITION_TABLE_CUSTOM": true, - "PARTITION_TABLE_CUSTOM_FILENAME": "partitions.csv", - "PARTITION_TABLE_FILENAME": "partitions.csv", - "PARTITION_TABLE_MD5": true, - "PARTITION_TABLE_OFFSET": 32768, - "PARTITION_TABLE_SINGLE_APP": false, - "PARTITION_TABLE_SINGLE_APP_LARGE": false, - "PARTITION_TABLE_TWO_OTA": false, - "PARTITION_TABLE_TWO_OTA_LARGE": false, - "RTC_CLK_CAL_CYCLES": 1024, - "RTC_CLK_SRC_EXT_CRYS": false, - "RTC_CLK_SRC_EXT_OSC": false, - "RTC_CLK_SRC_INT_RC": true, - "SECURE_BOOT": false, - "SECURE_BOOT_V2_ECC_SUPPORTED": true, - "SECURE_BOOT_V2_PREFERRED": true, - "SECURE_BOOT_V2_RSA_SUPPORTED": true, - "SECURE_ENABLE_TEE": false, - "SECURE_FLASH_ENC_ENABLED": false, - "SECURE_ROM_DL_MODE_ENABLED": true, - "SECURE_SIGNED_APPS_NO_SECURE_BOOT": false, - "SECURE_TEE_LOG_LEVEL": 0, - "SOC_ADC_ATTEN_NUM": 4, - "SOC_ADC_CALIBRATION_V1_SUPPORTED": true, - "SOC_ADC_CALIB_CHAN_COMPENS_SUPPORTED": true, - "SOC_ADC_DIGI_CONTROLLER_NUM": 1, - "SOC_ADC_DIGI_DATA_BYTES_PER_CONV": 4, - "SOC_ADC_DIGI_IIR_FILTER_NUM": 2, - "SOC_ADC_DIGI_MAX_BITWIDTH": 12, - "SOC_ADC_DIGI_MIN_BITWIDTH": 12, - "SOC_ADC_DIGI_MONITOR_NUM": 2, - "SOC_ADC_DIGI_RESULT_BYTES": 4, - "SOC_ADC_DIG_CTRL_SUPPORTED": true, - "SOC_ADC_DIG_IIR_FILTER_SUPPORTED": true, - "SOC_ADC_DMA_SUPPORTED": true, - "SOC_ADC_MAX_CHANNEL_NUM": 5, - "SOC_ADC_MONITOR_SUPPORTED": true, - "SOC_ADC_PATT_LEN_MAX": 8, - "SOC_ADC_PERIPH_NUM": 1, - "SOC_ADC_RTC_MAX_BITWIDTH": 12, - "SOC_ADC_RTC_MIN_BITWIDTH": 12, - "SOC_ADC_SAMPLE_FREQ_THRES_HIGH": 83333, - "SOC_ADC_SAMPLE_FREQ_THRES_LOW": 611, - "SOC_ADC_SELF_HW_CALI_SUPPORTED": true, - "SOC_ADC_SHARED_POWER": true, - "SOC_ADC_SUPPORTED": true, - "SOC_ADC_TEMPERATURE_SHARE_INTR": true, - "SOC_AES_GDMA": true, - "SOC_AES_SUPPORTED": true, - "SOC_AES_SUPPORT_AES_128": true, - "SOC_AES_SUPPORT_AES_256": true, - "SOC_AES_SUPPORT_DMA": true, - "SOC_AES_SUPPORT_PSEUDO_ROUND_FUNCTION": true, - "SOC_AHB_GDMA_SUPPORTED": true, - "SOC_AHB_GDMA_VERSION": 1, - "SOC_ANA_CMPR_INTR_SHARE_WITH_GPIO": true, - "SOC_ANA_CMPR_NUM": 1, - "SOC_ANA_CMPR_SUPPORTED": true, - "SOC_APM_CTRL_FILTER_SUPPORTED": true, - "SOC_APM_SUPPORTED": true, - "SOC_ASSIST_DEBUG_SUPPORTED": true, - "SOC_ASYNC_MEMCPY_SUPPORTED": true, - "SOC_BLE_50_SUPPORTED": true, - "SOC_BLE_CTE_SUPPORTED": true, - "SOC_BLE_DEVICE_PRIVACY_SUPPORTED": true, - "SOC_BLE_MESH_SUPPORTED": true, - "SOC_BLE_MULTI_CONN_OPTIMIZATION": true, - "SOC_BLE_PERIODIC_ADV_ENH_SUPPORTED": true, - "SOC_BLE_POWER_CONTROL_SUPPORTED": true, - "SOC_BLE_SUPPORTED": true, - "SOC_BOD_SUPPORTED": true, - "SOC_BROWNOUT_RESET_SUPPORTED": true, - "SOC_BT_SUPPORTED": true, - "SOC_CACHE_FREEZE_SUPPORTED": true, - "SOC_CAPS_ECO_VER_MAX": 102, - "SOC_CLK_ANA_I2C_MST_HAS_ROOT_GATE": true, - "SOC_CLK_LP_FAST_SUPPORT_LP_PLL": true, - "SOC_CLK_LP_FAST_SUPPORT_XTAL_D2": true, - "SOC_CLK_OSC_SLOW_SUPPORTED": true, - "SOC_CLK_RC32K_SUPPORTED": true, - "SOC_CLK_RC_FAST_SUPPORT_CALIBRATION": true, - "SOC_CLK_TREE_SUPPORTED": true, - "SOC_CLK_XTAL32K_SUPPORTED": true, - "SOC_CLOCKOUT_HAS_SOURCE_GATE": true, - "SOC_COEX_HW_PTI": true, - "SOC_CPU_BREAKPOINTS_NUM": 4, - "SOC_CPU_CORES_NUM": 1, - "SOC_CPU_HAS_CSR_PC": true, - "SOC_CPU_HAS_FLEXIBLE_INTC": true, - "SOC_CPU_HAS_PMA": true, - "SOC_CPU_IDRAM_SPLIT_USING_PMP": true, - "SOC_CPU_INTR_NUM": 32, - "SOC_CPU_PMP_REGION_GRANULARITY": 4, - "SOC_CPU_WATCHPOINTS_NUM": 4, - "SOC_CPU_WATCHPOINT_MAX_REGION_SIZE": 2147483648, - "SOC_CRYPTO_DPA_PROTECTION_SUPPORTED": true, - "SOC_DEBUG_HAVE_OCD_STUB_BINS": true, - "SOC_DEDICATED_GPIO_SUPPORTED": true, - "SOC_DEDIC_GPIO_IN_CHANNELS_NUM": 8, - "SOC_DEDIC_GPIO_OUT_CHANNELS_NUM": 8, - "SOC_DEDIC_PERIPH_ALWAYS_ENABLE": true, - "SOC_DEEP_SLEEP_SUPPORTED": true, - "SOC_DIG_SIGN_SUPPORTED": true, - "SOC_DS_KEY_CHECK_MAX_WAIT_US": 1100, - "SOC_DS_KEY_PARAM_MD_IV_LENGTH": 16, - "SOC_DS_SIGNATURE_MAX_BIT_LEN": 3072, - "SOC_ECC_CONSTANT_TIME_POINT_MUL": true, - "SOC_ECC_EXTENDED_MODES_SUPPORTED": true, - "SOC_ECC_SUPPORTED": true, - "SOC_ECDSA_P192_CURVE_DEFAULT_DISABLED": true, - "SOC_ECDSA_SUPPORTED": true, - "SOC_ECDSA_SUPPORT_DETERMINISTIC_MODE": true, - "SOC_ECDSA_SUPPORT_HW_DETERMINISTIC_LOOP": true, - "SOC_ECDSA_USES_MPI": true, - "SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK": true, - "SOC_EFUSE_DIS_DIRECT_BOOT": true, - "SOC_EFUSE_DIS_ICACHE": true, - "SOC_EFUSE_DIS_PAD_JTAG": true, - "SOC_EFUSE_DIS_USB_JTAG": true, - "SOC_EFUSE_ECDSA_KEY": true, - "SOC_EFUSE_ECDSA_USE_HARDWARE_K": true, - "SOC_EFUSE_KEY_PURPOSE_FIELD": true, - "SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS": true, - "SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS": 3, - "SOC_EFUSE_SOFT_DIS_JTAG": true, - "SOC_EFUSE_SUPPORTED": true, - "SOC_ESP_NIMBLE_CONTROLLER": true, - "SOC_ETM_CHANNELS_PER_GROUP": 50, - "SOC_ETM_GROUPS": 1, - "SOC_ETM_SUPPORTED": true, - "SOC_ETM_SUPPORT_SLEEP_RETENTION": true, - "SOC_EXTERNAL_COEX_ADVANCE": true, - "SOC_EXT_MEM_CACHE_TAG_IN_CPU_DOMAIN": true, - "SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX": 64, - "SOC_FLASH_ENCRYPTION_XTS_AES": true, - "SOC_FLASH_ENCRYPTION_XTS_AES_128": true, - "SOC_FLASH_ENCRYPTION_XTS_AES_SUPPORT_PSEUDO_ROUND": true, - "SOC_FLASH_ENC_SUPPORTED": true, - "SOC_GDMA_NUM_GROUPS_MAX": 1, - "SOC_GDMA_PAIRS_PER_GROUP_MAX": 3, - "SOC_GDMA_SUPPORTED": true, - "SOC_GDMA_SUPPORT_ETM": true, - "SOC_GDMA_SUPPORT_SLEEP_RETENTION": true, - "SOC_GPIO_CLOCKOUT_BY_GPIO_MATRIX": true, - "SOC_GPIO_CLOCKOUT_CHANNEL_NUM": 3, - "SOC_GPIO_FLEX_GLITCH_FILTER_NUM": 8, - "SOC_GPIO_IN_RANGE_MAX": 27, - "SOC_GPIO_OUT_RANGE_MAX": 27, - "SOC_GPIO_PIN_COUNT": 28, - "SOC_GPIO_PORT": 1, - "SOC_GPIO_SUPPORT_ETM": true, - "SOC_GPIO_SUPPORT_FORCE_HOLD": true, - "SOC_GPIO_SUPPORT_HOLD_IO_IN_DSLP": true, - "SOC_GPIO_SUPPORT_HOLD_SINGLE_IO_IN_DSLP": true, - "SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER": true, - "SOC_GPIO_SUPPORT_PIN_HYS_CTRL_BY_EFUSE": true, - "SOC_GPIO_SUPPORT_PIN_HYS_FILTER": true, - "SOC_GPIO_SUPPORT_RTC_INDEPENDENT": true, - "SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK": 268402815, - "SOC_GPSPI_SUPPORTED": true, - "SOC_GPTIMER_SUPPORTED": true, - "SOC_HMAC_SUPPORTED": true, - "SOC_HP_I2C_NUM": 2, - "SOC_I2C_CMD_REG_NUM": 8, - "SOC_I2C_FIFO_LEN": 32, - "SOC_I2C_NUM": 2, - "SOC_I2C_SLAVE_CAN_GET_STRETCH_CAUSE": true, - "SOC_I2C_SLAVE_SUPPORT_BROADCAST": true, - "SOC_I2C_SLAVE_SUPPORT_I2CRAM_ACCESS": true, - "SOC_I2C_SLAVE_SUPPORT_SLAVE_UNMATCH": true, - "SOC_I2C_SUPPORTED": true, - "SOC_I2C_SUPPORT_10BIT_ADDR": true, - "SOC_I2C_SUPPORT_HW_CLR_BUS": true, - "SOC_I2C_SUPPORT_HW_FSM_RST": true, - "SOC_I2C_SUPPORT_RTC": true, - "SOC_I2C_SUPPORT_SLAVE": true, - "SOC_I2C_SUPPORT_SLEEP_RETENTION": true, - "SOC_I2C_SUPPORT_XTAL": true, - "SOC_I2S_HW_VERSION_2": true, - "SOC_I2S_NUM": 1, - "SOC_I2S_PDM_MAX_RX_LINES": 1, - "SOC_I2S_PDM_MAX_TX_LINES": 2, - "SOC_I2S_SUPPORTED": true, - "SOC_I2S_SUPPORTS_ETM": true, - "SOC_I2S_SUPPORTS_PCM": true, - "SOC_I2S_SUPPORTS_PCM2PDM": true, - "SOC_I2S_SUPPORTS_PDM": true, - "SOC_I2S_SUPPORTS_PDM_RX": true, - "SOC_I2S_SUPPORTS_PDM_TX": true, - "SOC_I2S_SUPPORTS_PLL_F64M": true, - "SOC_I2S_SUPPORTS_PLL_F96M": true, - "SOC_I2S_SUPPORTS_TDM": true, - "SOC_I2S_SUPPORTS_XTAL": true, - "SOC_I2S_SUPPORT_SLEEP_RETENTION": true, - "SOC_I2S_TDM_FULL_DATA_WIDTH": true, - "SOC_IEEE802154_BLE_ONLY": true, - "SOC_IEEE802154_SUPPORTED": true, - "SOC_INT_PLIC_SUPPORTED": true, - "SOC_LEDC_CHANNEL_NUM": 6, - "SOC_LEDC_FADE_PARAMS_BIT_WIDTH": 10, - "SOC_LEDC_GAMMA_CURVE_FADE_RANGE_MAX": 16, - "SOC_LEDC_GAMMA_CURVE_FADE_SUPPORTED": true, - "SOC_LEDC_SUPPORTED": true, - "SOC_LEDC_SUPPORT_FADE_STOP": true, - "SOC_LEDC_SUPPORT_PLL_DIV_CLOCK": true, - "SOC_LEDC_SUPPORT_SLEEP_RETENTION": true, - "SOC_LEDC_SUPPORT_XTAL_CLOCK": true, - "SOC_LEDC_TIMER_BIT_WIDTH": 20, - "SOC_LEDC_TIMER_NUM": 4, - "SOC_LIGHT_SLEEP_SUPPORTED": true, - "SOC_LP_AON_SUPPORTED": true, - "SOC_LP_IO_CLOCK_IS_INDEPENDENT": true, - "SOC_LP_TIMER_BIT_WIDTH_HI": 16, - "SOC_LP_TIMER_BIT_WIDTH_LO": 32, - "SOC_LP_TIMER_SUPPORTED": true, - "SOC_MCPWM_CAPTURE_CHANNELS_PER_TIMER": 3, - "SOC_MCPWM_CAPTURE_CLK_FROM_GROUP": true, - "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": 1, - "SOC_MCPWM_OPERATORS_PER_GROUP": 3, - "SOC_MCPWM_SUPPORTED": true, - "SOC_MCPWM_SUPPORT_ETM": true, - "SOC_MCPWM_SUPPORT_SLEEP_RETENTION": true, - "SOC_MCPWM_SWSYNC_CAN_PROPAGATE": true, - "SOC_MCPWM_TIMERS_PER_GROUP": 3, - "SOC_MCPWM_TRIGGERS_PER_OPERATOR": 2, - "SOC_MEMSPI_IS_INDEPENDENT": true, - "SOC_MEMSPI_SRC_FREQ_16M_SUPPORTED": true, - "SOC_MEMSPI_SRC_FREQ_32M_SUPPORTED": true, - "SOC_MEMSPI_SRC_FREQ_64M_SUPPORTED": true, - "SOC_MMU_DI_VADDR_SHARED": true, - "SOC_MMU_LINEAR_ADDRESS_REGION_NUM": 1, - "SOC_MMU_PAGE_SIZE_8KB_SUPPORTED": true, - "SOC_MMU_PAGE_SIZE_CONFIGURABLE": true, - "SOC_MMU_PERIPH_NUM": 1, - "SOC_MODEM_CLOCK_IS_INDEPENDENT": true, - "SOC_MODEM_CLOCK_SUPPORTED": true, - "SOC_MPI_MEM_BLOCKS_NUM": 4, - "SOC_MPI_OPERATIONS_NUM": 3, - "SOC_MPI_SUPPORTED": true, - "SOC_MPU_MIN_REGION_SIZE": 536870912, - "SOC_MPU_REGIONS_MAX_NUM": 8, - "SOC_MWDT_SUPPORT_SLEEP_RETENTION": true, - "SOC_MWDT_SUPPORT_XTAL": true, - "SOC_PARLIO_GROUPS": 1, - "SOC_PARLIO_RX_CLK_SUPPORT_GATING": true, - "SOC_PARLIO_RX_CLK_SUPPORT_OUTPUT": true, - "SOC_PARLIO_RX_UNITS_PER_GROUP": 1, - "SOC_PARLIO_RX_UNIT_MAX_DATA_WIDTH": 8, - "SOC_PARLIO_SUPPORTED": true, - "SOC_PARLIO_SUPPORT_SLEEP_RETENTION": true, - "SOC_PARLIO_SUPPORT_SPI_LCD": true, - "SOC_PARLIO_TRANS_BIT_ALIGN": true, - "SOC_PARLIO_TX_CLK_SUPPORT_GATING": true, - "SOC_PARLIO_TX_SUPPORT_LOOP_TRANSMISSION": true, - "SOC_PARLIO_TX_UNITS_PER_GROUP": 1, - "SOC_PARLIO_TX_UNIT_MAX_DATA_WIDTH": 8, - "SOC_PAU_SUPPORTED": true, - "SOC_PCNT_CHANNELS_PER_UNIT": 2, - "SOC_PCNT_GROUPS": 1, - "SOC_PCNT_SUPPORTED": true, - "SOC_PCNT_SUPPORT_RUNTIME_THRES_UPDATE": true, - "SOC_PCNT_SUPPORT_SLEEP_RETENTION": true, - "SOC_PCNT_SUPPORT_STEP_NOTIFY": true, - "SOC_PCNT_THRES_POINT_PER_UNIT": 2, - "SOC_PCNT_UNITS_PER_GROUP": 4, - "SOC_PHY_DIG_REGS_MEM_SIZE": 21, - "SOC_PHY_SUPPORTED": true, - "SOC_PMU_SUPPORTED": true, - "SOC_PM_CPU_RETENTION_BY_SW": true, - "SOC_PM_MODEM_RETENTION_BY_REGDMA": true, - "SOC_PM_PAU_LINK_NUM": 4, - "SOC_PM_PAU_REGDMA_LINK_MULTI_ADDR": true, - "SOC_PM_PAU_REGDMA_LINK_WIFIMAC": true, - "SOC_PM_PAU_REGDMA_UPDATE_CACHE_BEFORE_WAIT_COMPARE": true, - "SOC_PM_RETENTION_MODULE_NUM": 32, - "SOC_PM_RETENTION_SW_TRIGGER_REGDMA": true, - "SOC_PM_SUPPORTED": true, - "SOC_PM_SUPPORT_BT_WAKEUP": true, - "SOC_PM_SUPPORT_CPU_PD": true, - "SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY": true, - "SOC_PM_SUPPORT_EXT1_WAKEUP": true, - "SOC_PM_SUPPORT_EXT1_WAKEUP_MODE_PER_PIN": true, - "SOC_PM_SUPPORT_MODEM_PD": true, - "SOC_PM_SUPPORT_PMU_CLK_ICG": true, - "SOC_PM_SUPPORT_RC32K_PD": true, - "SOC_PM_SUPPORT_RC_FAST_PD": true, - "SOC_PM_SUPPORT_TOP_PD": true, - "SOC_PM_SUPPORT_VDDSDIO_PD": true, - "SOC_PM_SUPPORT_XTAL32K_PD": true, - "SOC_RCC_IS_INDEPENDENT": true, - "SOC_RMT_CHANNELS_PER_GROUP": 4, - "SOC_RMT_GROUPS": 1, - "SOC_RMT_MEM_WORDS_PER_CHANNEL": 48, - "SOC_RMT_RX_CANDIDATES_PER_GROUP": 2, - "SOC_RMT_SUPPORTED": true, - "SOC_RMT_SUPPORT_RC_FAST": true, - "SOC_RMT_SUPPORT_RX_DEMODULATION": true, - "SOC_RMT_SUPPORT_RX_PINGPONG": true, - "SOC_RMT_SUPPORT_SLEEP_RETENTION": true, - "SOC_RMT_SUPPORT_TX_ASYNC_STOP": true, - "SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY": true, - "SOC_RMT_SUPPORT_TX_LOOP_AUTO_STOP": true, - "SOC_RMT_SUPPORT_TX_LOOP_COUNT": true, - "SOC_RMT_SUPPORT_TX_SYNCHRO": true, - "SOC_RMT_SUPPORT_XTAL": true, - "SOC_RMT_TX_CANDIDATES_PER_GROUP": 2, - "SOC_RNG_CLOCK_IS_INDEPENDENT": true, - "SOC_RNG_SUPPORTED": true, - "SOC_RSA_MAX_BIT_LEN": 3072, - "SOC_RTCIO_HOLD_SUPPORTED": true, - "SOC_RTCIO_PIN_COUNT": 8, - "SOC_RTC_FAST_MEM_SUPPORTED": true, - "SOC_RTC_MEM_SUPPORTED": true, - "SOC_SDM_CHANNELS_PER_GROUP": 4, - "SOC_SDM_CLK_SUPPORT_PLL_F48M": true, - "SOC_SDM_CLK_SUPPORT_XTAL": true, - "SOC_SDM_GROUPS": 1, - "SOC_SDM_SUPPORTED": true, - "SOC_SECURE_BOOT_SUPPORTED": true, - "SOC_SECURE_BOOT_V2_ECC": true, - "SOC_SECURE_BOOT_V2_RSA": true, - "SOC_SHARED_IDCACHE_SUPPORTED": true, - "SOC_SHA_DMA_MAX_BUFFER_SIZE": 3968, - "SOC_SHA_GDMA": true, - "SOC_SHA_SUPPORTED": true, - "SOC_SHA_SUPPORT_DMA": true, - "SOC_SHA_SUPPORT_RESUME": true, - "SOC_SHA_SUPPORT_SHA1": true, - "SOC_SHA_SUPPORT_SHA224": true, - "SOC_SHA_SUPPORT_SHA256": true, - "SOC_SPI_FLASH_SUPPORTED": true, - "SOC_SPI_MAXIMUM_BUFFER_SIZE": 64, - "SOC_SPI_MAX_CS_NUM": 6, - "SOC_SPI_MAX_PRE_DIVIDER": 16, - "SOC_SPI_MEM_SUPPORT_AUTO_RESUME": true, - "SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND": true, - "SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE": true, - "SOC_SPI_MEM_SUPPORT_CHECK_SUS": true, - "SOC_SPI_MEM_SUPPORT_IDLE_INTR": true, - "SOC_SPI_MEM_SUPPORT_SW_SUSPEND": true, - "SOC_SPI_MEM_SUPPORT_WRAP": true, - "SOC_SPI_PERIPH_NUM": 2, - "SOC_SPI_SCT_BUFFER_NUM_MAX": true, - "SOC_SPI_SCT_CONF_BITLEN_MAX": 262138, - "SOC_SPI_SCT_REG_NUM": 14, - "SOC_SPI_SCT_SUPPORTED": true, - "SOC_SPI_SLAVE_SUPPORT_SEG_TRANS": true, - "SOC_SPI_SUPPORT_CD_SIG": true, - "SOC_SPI_SUPPORT_CLK_PLL_F48M": true, - "SOC_SPI_SUPPORT_CLK_RC_FAST": true, - "SOC_SPI_SUPPORT_CLK_XTAL": true, - "SOC_SPI_SUPPORT_CONTINUOUS_TRANS": true, - "SOC_SPI_SUPPORT_DDRCLK": true, - "SOC_SPI_SUPPORT_SLAVE_HD_VER2": true, - "SOC_SPI_SUPPORT_SLEEP_RETENTION": true, - "SOC_SUPPORTS_SECURE_DL_MODE": true, - "SOC_SUPPORT_COEXISTENCE": true, - "SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY": true, - "SOC_SYSTIMER_ALARM_MISS_COMPENSATE": true, - "SOC_SYSTIMER_ALARM_NUM": 3, - "SOC_SYSTIMER_BIT_WIDTH_HI": 20, - "SOC_SYSTIMER_BIT_WIDTH_LO": 32, - "SOC_SYSTIMER_COUNTER_NUM": 2, - "SOC_SYSTIMER_FIXED_DIVIDER": true, - "SOC_SYSTIMER_INT_LEVEL": true, - "SOC_SYSTIMER_SUPPORTED": true, - "SOC_SYSTIMER_SUPPORT_ETM": true, - "SOC_SYSTIMER_SUPPORT_RC_FAST": true, - "SOC_TEMPERATURE_SENSOR_INTR_SUPPORT": true, - "SOC_TEMPERATURE_SENSOR_SUPPORT_ETM": true, - "SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC": true, - "SOC_TEMPERATURE_SENSOR_SUPPORT_SLEEP_RETENTION": true, - "SOC_TEMPERATURE_SENSOR_SUPPORT_XTAL": true, - "SOC_TEMPERATURE_SENSOR_UNDER_PD_TOP_DOMAIN": true, - "SOC_TEMP_SENSOR_SUPPORTED": true, - "SOC_TIMER_GROUPS": 2, - "SOC_TIMER_GROUP_COUNTER_BIT_WIDTH": 54, - "SOC_TIMER_GROUP_SUPPORT_RC_FAST": true, - "SOC_TIMER_GROUP_SUPPORT_XTAL": true, - "SOC_TIMER_GROUP_TIMERS_PER_GROUP": 1, - "SOC_TIMER_GROUP_TOTAL_TIMERS": 2, - "SOC_TIMER_SUPPORT_ETM": true, - "SOC_TIMER_SUPPORT_SLEEP_RETENTION": true, - "SOC_TWAI_BRP_MAX": 32768, - "SOC_TWAI_BRP_MIN": 2, - "SOC_TWAI_CLK_SUPPORT_XTAL": true, - "SOC_TWAI_CONTROLLER_NUM": 1, - "SOC_TWAI_MASK_FILTER_NUM": 1, - "SOC_TWAI_SUPPORTED": true, - "SOC_TWAI_SUPPORTS_RX_STATUS": true, - "SOC_TWAI_SUPPORT_SLEEP_RETENTION": true, - "SOC_UART_BITRATE_MAX": 5000000, - "SOC_UART_FIFO_LEN": 128, - "SOC_UART_HP_NUM": 2, - "SOC_UART_NUM": 2, - "SOC_UART_SUPPORTED": true, - "SOC_UART_SUPPORT_FSM_TX_WAIT_SEND": true, - "SOC_UART_SUPPORT_RTC_CLK": true, - "SOC_UART_SUPPORT_SLEEP_RETENTION": true, - "SOC_UART_SUPPORT_WAKEUP_INT": true, - "SOC_UART_SUPPORT_XTAL_CLK": true, - "SOC_UART_WAKEUP_CHARS_SEQ_MAX_LEN": 5, - "SOC_UART_WAKEUP_SUPPORT_ACTIVE_THRESH_MODE": true, - "SOC_UART_WAKEUP_SUPPORT_CHAR_SEQ_MODE": true, - "SOC_UART_WAKEUP_SUPPORT_FIFO_THRESH_MODE": true, - "SOC_UART_WAKEUP_SUPPORT_START_BIT_MODE": true, - "SOC_UHCI_NUM": 1, - "SOC_UHCI_SUPPORTED": true, - "SOC_USB_SERIAL_JTAG_SUPPORTED": true, - "SOC_VBAT_SUPPORTED": true, - "SOC_WDT_SUPPORTED": true, - "SOC_XTAL_CLOCK_PATH_DEPENDS_ON_TOP_DOMAIN": true, - "SOC_XTAL_SUPPORT_32M": true, - "SPI_FLASH_AUTO_SUSPEND": false, - "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_FORCE_ENABLE_C6_H2_SUSPEND": false, - "SPI_FLASH_FORCE_ENABLE_XMC_C_SUSPEND": false, - "SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST": false, - "SPI_FLASH_PLACE_FUNCTIONS_IN_IRAM": true, - "SPI_FLASH_ROM_DRIVER_PATCH": true, - "SPI_FLASH_ROM_IMPL": false, - "SPI_FLASH_SIZE_OVERRIDE": false, - "SPI_FLASH_SUPPORT_BOYA_CHIP": false, - "SPI_FLASH_SUPPORT_GD_CHIP": true, - "SPI_FLASH_SUPPORT_ISSI_CHIP": false, - "SPI_FLASH_SUPPORT_MXIC_CHIP": false, - "SPI_FLASH_SUPPORT_TH_CHIP": false, - "SPI_FLASH_SUPPORT_WINBOND_CHIP": false, - "SPI_FLASH_SUSPEND_TSUS_VAL_US": 50, - "SPI_FLASH_VENDOR_GD_SUPPORT_ENABLED": true, - "SPI_FLASH_VENDOR_XMC_SUPPORT_ENABLED": true, - "SPI_FLASH_VERIFY_WRITE": false, - "SPI_FLASH_WRITE_CHUNK_SIZE": 8192, - "SPI_FLASH_YIELD_DURING_ERASE": true, - "XTAL_FREQ": 32, - "XTAL_FREQ_32": true -} \ No newline at end of file diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader/cmake_install.cmake deleted file mode 100644 index 9fc030b7..00000000 --- a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj deleted file mode 100644 index 5e05ad9f..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32h2.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32h2.c.obj deleted file mode 100644 index d1be5134..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32h2.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj deleted file mode 100644 index 495020ae..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj deleted file mode 100644 index 826d86eb..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_loader.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_loader.c.obj deleted file mode 100644 index 7f7a8453..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_loader.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj deleted file mode 100644 index 6656e7fa..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj deleted file mode 100644 index f1c79ebb..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console.c.obj deleted file mode 100644 index b9b02cf9..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console_loader.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console_loader.c.obj deleted file mode 100644 index 13bc9a6e..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console_loader.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj deleted file mode 100644 index 81bd7f72..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_init.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_init.c.obj deleted file mode 100644 index 2165670e..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_init.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj deleted file mode 100644 index 1bb216c2..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_panic.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_panic.c.obj deleted file mode 100644 index d33cc2d0..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_panic.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj deleted file mode 100644 index a6084ab9..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32h2.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32h2.c.obj deleted file mode 100644 index e918f5ee..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32h2.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_sha.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_sha.c.obj deleted file mode 100644 index 3534cc22..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_sha.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj deleted file mode 100644 index 80a7e9e5..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32h2/bootloader_esp32h2.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32h2/bootloader_esp32h2.c.obj deleted file mode 100644 index 1f14e606..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32h2/bootloader_esp32h2.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32h2/bootloader_soc.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32h2/bootloader_soc.c.obj deleted file mode 100644 index e37bbd71..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32h2/bootloader_soc.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj deleted file mode 100644 index 7fa72a08..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj deleted file mode 100644 index 18c9a6a8..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj deleted file mode 100644 index 8a4cb1be..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj deleted file mode 100644 index c9fd68a8..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/cmake_install.cmake deleted file mode 100644 index 3ba08b8d..00000000 --- a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/libbootloader_support.a b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/libbootloader_support.a deleted file mode 100644 index abd1e35d..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/libbootloader_support.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/cmake_install.cmake deleted file mode 100644 index c9f4e058..00000000 --- a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/cmake_install.cmake +++ /dev/null @@ -1,149 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/hal/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/riscv/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/newlib/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/micro-ecc/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/spi_flash/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_bootloader_format/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_app_format/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/efuse/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_security/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_system/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_hw_support/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_common/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_rom/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/log/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esptool_py/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/partition_table/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_tee/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/freertos/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/main/cmake_install.cmake") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32h2/esp_efuse_fields.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32h2/esp_efuse_fields.c.obj deleted file mode 100644 index 4aec5bbe..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32h2/esp_efuse_fields.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32h2/esp_efuse_rtc_calib.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32h2/esp_efuse_rtc_calib.c.obj deleted file mode 100644 index f903762a..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32h2/esp_efuse_rtc_calib.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32h2/esp_efuse_table.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32h2/esp_efuse_table.c.obj deleted file mode 100644 index 5fb75112..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32h2/esp_efuse_table.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32h2/esp_efuse_table_v0.0_v1.1.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32h2/esp_efuse_table_v0.0_v1.1.c.obj deleted file mode 100644 index 362f8f88..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32h2/esp_efuse_table_v0.0_v1.1.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32h2/esp_efuse_utility.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32h2/esp_efuse_utility.c.obj deleted file mode 100644 index 018db5ec..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32h2/esp_efuse_utility.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c.obj deleted file mode 100644 index 58864544..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj deleted file mode 100644 index ae879747..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj deleted file mode 100644 index bca10ad5..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj deleted file mode 100644 index 2a3cfc7d..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/efuse/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/efuse/cmake_install.cmake deleted file mode 100644 index 3929a1d1..00000000 --- a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/efuse/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/efuse/libefuse.a b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/efuse/libefuse.a deleted file mode 100644 index 0c18044d..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/efuse/libefuse.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_app_format/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_app_format/cmake_install.cmake deleted file mode 100644 index 24daea96..00000000 --- a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_app_format/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj deleted file mode 100644 index 9d0e5824..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_bootloader_format/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_bootloader_format/cmake_install.cmake deleted file mode 100644 index 706853a1..00000000 --- a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_bootloader_format/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_bootloader_format/libesp_bootloader_format.a b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_bootloader_format/libesp_bootloader_format.a deleted file mode 100644 index c9858bd9..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_bootloader_format/libesp_bootloader_format.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj deleted file mode 100644 index bca002e1..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_common/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_common/cmake_install.cmake deleted file mode 100644 index b68a5c2d..00000000 --- a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_common/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_common/libesp_common.a b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_common/libesp_common.a deleted file mode 100644 index 65f931b4..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_common/libesp_common.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj deleted file mode 100644 index db1ebffe..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj deleted file mode 100644 index 7f2a7b06..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/chip_info.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/chip_info.c.obj deleted file mode 100644 index 538c4cd5..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/chip_info.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/cpu_region_protect.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/cpu_region_protect.c.obj deleted file mode 100644 index eb46a760..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/cpu_region_protect.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/esp_cpu_intr.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/esp_cpu_intr.c.obj deleted file mode 100644 index 188572ec..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/esp_cpu_intr.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/pmu_init.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/pmu_init.c.obj deleted file mode 100644 index 9cde2a5c..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/pmu_init.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/pmu_param.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/pmu_param.c.obj deleted file mode 100644 index 40f0a3c8..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/pmu_param.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/pmu_sleep.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/pmu_sleep.c.obj deleted file mode 100644 index 52769228..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/pmu_sleep.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/rtc_clk.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/rtc_clk.c.obj deleted file mode 100644 index acfbf8a7..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/rtc_clk.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/rtc_clk_init.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/rtc_clk_init.c.obj deleted file mode 100644 index 5749e6bc..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/rtc_clk_init.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/rtc_time.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/rtc_time.c.obj deleted file mode 100644 index 30a3fd8a..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/rtc_time.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_hw_support/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_hw_support/cmake_install.cmake deleted file mode 100644 index fc011a17..00000000 --- a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_hw_support/cmake_install.cmake +++ /dev/null @@ -1,49 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_hw_support/port/esp32h2/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_hw_support/lowpower/cmake_install.cmake") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_hw_support/libesp_hw_support.a b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_hw_support/libesp_hw_support.a deleted file mode 100644 index 78bad0af..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_hw_support/libesp_hw_support.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_hw_support/lowpower/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_hw_support/lowpower/cmake_install.cmake deleted file mode 100644 index 2a673469..00000000 --- a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_hw_support/lowpower/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/lowpower - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_hw_support/port/esp32h2/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_hw_support/port/esp32h2/cmake_install.cmake deleted file mode 100644 index 468c1e60..00000000 --- a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_hw_support/port/esp32h2/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2 - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj deleted file mode 100644 index 7c8c5234..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj deleted file mode 100644 index 45c17c5b..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_gpio.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_gpio.c.obj deleted file mode 100644 index 6fbd5efa..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_gpio.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_print.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_print.c.obj deleted file mode 100644 index 0c8de2d6..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_print.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_regi2c_esp32h2.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_regi2c_esp32h2.c.obj deleted file mode 100644 index 05a77518..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_regi2c_esp32h2.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj deleted file mode 100644 index 1214f9a3..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj deleted file mode 100644 index 8acbd15d..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj deleted file mode 100644 index 6dd55aaa..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj deleted file mode 100644 index 39939086..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_usb_serial.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_usb_serial.c.obj deleted file mode 100644 index 67b7eaa0..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_usb_serial.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_wdt.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_wdt.c.obj deleted file mode 100644 index 0319fbfa..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_wdt.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_rom/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_rom/cmake_install.cmake deleted file mode 100644 index fb167bba..00000000 --- a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_rom/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_rom/libesp_rom.a b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_rom/libesp_rom.a deleted file mode 100644 index 05e8a8a1..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_rom/libesp_rom.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_security/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_security/cmake_install.cmake deleted file mode 100644 index eaa97b80..00000000 --- a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_security/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj deleted file mode 100644 index 91962c6e..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_system/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_system/cmake_install.cmake deleted file mode 100644 index e0d3a901..00000000 --- a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_system/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_system/libesp_system.a b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_system/libesp_system.a deleted file mode 100644 index 7f2c44aa..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_system/libesp_system.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_tee/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_tee/cmake_install.cmake deleted file mode 100644 index d54db7a2..00000000 --- a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_tee/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_tee - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esptool_py/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esptool_py/cmake_install.cmake deleted file mode 100644 index 72afec62..00000000 --- a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esptool_py/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esptool_py - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/freertos/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/freertos/cmake_install.cmake deleted file mode 100644 index 0fb98cbe..00000000 --- a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/freertos/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj deleted file mode 100644 index 9a69ced0..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj deleted file mode 100644 index fabf330a..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32h2/efuse_hal.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32h2/efuse_hal.c.obj deleted file mode 100644 index eb12fc10..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32h2/efuse_hal.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj deleted file mode 100644 index 415fe043..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/lp_timer_hal.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/lp_timer_hal.c.obj deleted file mode 100644 index 7b0e1ffc..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/lp_timer_hal.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj deleted file mode 100644 index 2a784c02..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/hal/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/hal/cmake_install.cmake deleted file mode 100644 index 5740ca1b..00000000 --- a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/hal/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/hal/libhal.a b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/hal/libhal.a deleted file mode 100644 index 48398bda..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/hal/libhal.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/src/buffer/log_buffers.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/src/buffer/log_buffers.c.obj deleted file mode 100644 index 42b3c1f3..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/src/buffer/log_buffers.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/src/log.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/src/log.c.obj deleted file mode 100644 index d1e5273f..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/src/log.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_format_text.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_format_text.c.obj deleted file mode 100644 index 7b4fd38f..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_format_text.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_print.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_print.c.obj deleted file mode 100644 index 9626f892..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_print.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_timestamp_common.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_timestamp_common.c.obj deleted file mode 100644 index c49f7cb1..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_timestamp_common.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/log_lock.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/log_lock.c.obj deleted file mode 100644 index a667c884..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/log_lock.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/log_timestamp.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/log_timestamp.c.obj deleted file mode 100644 index 954a314f..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/log_timestamp.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/util.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/util.c.obj deleted file mode 100644 index 278b7925..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/src/noos/util.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/src/util.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/src/util.c.obj deleted file mode 100644 index 29618758..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/src/util.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/log/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/log/cmake_install.cmake deleted file mode 100644 index 45cac4c7..00000000 --- a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/log/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/log - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/log/liblog.a b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/log/liblog.a deleted file mode 100644 index 5303abbd..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/log/liblog.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/main/CMakeFiles/__idf_main.dir/bootloader_start.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/main/CMakeFiles/__idf_main.dir/bootloader_start.c.obj deleted file mode 100644 index b0395c1e..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/main/CMakeFiles/__idf_main.dir/bootloader_start.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/main/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/main/cmake_install.cmake deleted file mode 100644 index 62169498..00000000 --- a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/main/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/main - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/main/libmain.a b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/main/libmain.a deleted file mode 100644 index 738b9949..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/main/libmain.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir/uECC_verify_antifault.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir/uECC_verify_antifault.c.obj deleted file mode 100644 index 96c9cafa..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir/uECC_verify_antifault.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/micro-ecc/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/micro-ecc/cmake_install.cmake deleted file mode 100644 index a727c72e..00000000 --- a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/micro-ecc/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/micro-ecc/libmicro-ecc.a b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/micro-ecc/libmicro-ecc.a deleted file mode 100644 index e5d0e928..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/micro-ecc/libmicro-ecc.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/newlib/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/newlib/cmake_install.cmake deleted file mode 100644 index 5cc65ffe..00000000 --- a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/newlib/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/partition_table/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/partition_table/cmake_install.cmake deleted file mode 100644 index 2c1bebbb..00000000 --- a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/partition_table/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/partition_table - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/riscv/CMakeFiles/__idf_riscv.dir/rv_utils.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/riscv/CMakeFiles/__idf_riscv.dir/rv_utils.c.obj deleted file mode 100644 index 6033181e..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/riscv/CMakeFiles/__idf_riscv.dir/rv_utils.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/riscv/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/riscv/cmake_install.cmake deleted file mode 100644 index 1351bd95..00000000 --- a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/riscv/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/riscv/libriscv.a b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/riscv/libriscv.a deleted file mode 100644 index 8d16db7e..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/riscv/libriscv.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj deleted file mode 100644 index 0d00bae2..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/adc_periph.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/adc_periph.c.obj deleted file mode 100644 index 26b65d35..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/adc_periph.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/ana_cmpr_periph.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/ana_cmpr_periph.c.obj deleted file mode 100644 index 2ad746b7..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/ana_cmpr_periph.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/dedic_gpio_periph.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/dedic_gpio_periph.c.obj deleted file mode 100644 index 15f9c27f..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/dedic_gpio_periph.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/etm_periph.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/etm_periph.c.obj deleted file mode 100644 index 7c244a7a..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/etm_periph.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/gdma_periph.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/gdma_periph.c.obj deleted file mode 100644 index 2da98a1a..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/gdma_periph.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/gpio_periph.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/gpio_periph.c.obj deleted file mode 100644 index bf9635ed..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/gpio_periph.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/i2c_periph.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/i2c_periph.c.obj deleted file mode 100644 index 4a54c88a..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/i2c_periph.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/i2s_periph.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/i2s_periph.c.obj deleted file mode 100644 index c616a74f..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/i2s_periph.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/ieee802154_periph.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/ieee802154_periph.c.obj deleted file mode 100644 index e5558835..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/ieee802154_periph.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/interrupts.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/interrupts.c.obj deleted file mode 100644 index e4ddaebb..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/interrupts.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/ledc_periph.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/ledc_periph.c.obj deleted file mode 100644 index fdcf58a2..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/ledc_periph.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/mcpwm_periph.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/mcpwm_periph.c.obj deleted file mode 100644 index 8d45bcb9..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/mcpwm_periph.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/mpi_periph.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/mpi_periph.c.obj deleted file mode 100644 index 5642314f..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/mpi_periph.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/parlio_periph.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/parlio_periph.c.obj deleted file mode 100644 index 699997c5..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/parlio_periph.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/pcnt_periph.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/pcnt_periph.c.obj deleted file mode 100644 index 2d4b36a8..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/pcnt_periph.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/power_supply_periph.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/power_supply_periph.c.obj deleted file mode 100644 index ac9942a4..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/power_supply_periph.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/rmt_periph.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/rmt_periph.c.obj deleted file mode 100644 index 31fc0a2f..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/rmt_periph.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/rtc_io_periph.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/rtc_io_periph.c.obj deleted file mode 100644 index 1a5aab7a..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/rtc_io_periph.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/sdm_periph.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/sdm_periph.c.obj deleted file mode 100644 index b4dd05ce..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/sdm_periph.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/spi_periph.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/spi_periph.c.obj deleted file mode 100644 index 11dcc63c..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/spi_periph.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/system_retention_periph.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/system_retention_periph.c.obj deleted file mode 100644 index 53e77a5d..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/system_retention_periph.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/temperature_sensor_periph.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/temperature_sensor_periph.c.obj deleted file mode 100644 index cbd4b325..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/temperature_sensor_periph.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/timer_periph.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/timer_periph.c.obj deleted file mode 100644 index 52162444..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/timer_periph.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/twai_periph.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/twai_periph.c.obj deleted file mode 100644 index 9641d738..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/twai_periph.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/uart_periph.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/uart_periph.c.obj deleted file mode 100644 index 2739b792..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/uart_periph.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/wdt_periph.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/wdt_periph.c.obj deleted file mode 100644 index 2e939121..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/wdt_periph.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj deleted file mode 100644 index 5fd96e29..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/cmake_install.cmake deleted file mode 100644 index c3ff1b21..00000000 --- a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/libsoc.a b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/libsoc.a deleted file mode 100644 index a90f2a21..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/libsoc.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj deleted file mode 100644 index 41727e38..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/spi_flash/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/spi_flash/cmake_install.cmake deleted file mode 100644 index 2d7df503..00000000 --- a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/spi_flash/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash - -# 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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/spi_flash/libspi_flash.a b/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/spi_flash/libspi_flash.a deleted file mode 100644 index c3471c97..00000000 Binary files a/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/spi_flash/libspi_flash.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/bootloader/gdbinit/connect b/esp32-thread/open-thread-rcp/build/bootloader/gdbinit/connect deleted file mode 100644 index faa38573..00000000 --- a/esp32-thread/open-thread-rcp/build/bootloader/gdbinit/connect +++ /dev/null @@ -1,7 +0,0 @@ -# Connect to the default openocd-esp port and stop on app_main() -set remotetimeout 10 -target remote :3333 -monitor reset halt -maintenance flush register-cache -thbreak app_main -continue diff --git a/esp32-thread/open-thread-rcp/build/bootloader/gdbinit/gdbinit b/esp32-thread/open-thread-rcp/build/bootloader/gdbinit/gdbinit deleted file mode 100644 index 2a6efb60..00000000 --- a/esp32-thread/open-thread-rcp/build/bootloader/gdbinit/gdbinit +++ /dev/null @@ -1,2 +0,0 @@ -source C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/gdbinit/symbols -source C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/gdbinit/connect diff --git a/esp32-thread/open-thread-rcp/build/bootloader/gdbinit/prefix_map b/esp32-thread/open-thread-rcp/build/bootloader/gdbinit/prefix_map deleted file mode 100644 index c7842ec1..00000000 --- a/esp32-thread/open-thread-rcp/build/bootloader/gdbinit/prefix_map +++ /dev/null @@ -1 +0,0 @@ -# There is no prefix map defined for the project. diff --git a/esp32-thread/open-thread-rcp/build/bootloader/gdbinit/py_extensions b/esp32-thread/open-thread-rcp/build/bootloader/gdbinit/py_extensions deleted file mode 100644 index 336f9957..00000000 --- a/esp32-thread/open-thread-rcp/build/bootloader/gdbinit/py_extensions +++ /dev/null @@ -1,7 +0,0 @@ -# Add Python GDB extensions -python -try: - import freertos_gdb -except ModuleNotFoundError: - print('warning: python extension "freertos_gdb" not found.') -end diff --git a/esp32-thread/open-thread-rcp/build/bootloader/gdbinit/symbols b/esp32-thread/open-thread-rcp/build/bootloader/gdbinit/symbols deleted file mode 100644 index bc42ab6d..00000000 --- a/esp32-thread/open-thread-rcp/build/bootloader/gdbinit/symbols +++ /dev/null @@ -1,20 +0,0 @@ -# Load esp32h2 ROM ELF symbols -define target hookpost-remote -set confirm off - # if $_streq((char *) 0x4001c7dc, "Nov 1 2022") - if (*(int*) 0x4001c7dc) == 0x20766f4e && (*(int*) 0x4001c7e0) == 0x32203120 && (*(int*) 0x4001c7e4) == 0x323230 - add-symbol-file C:/Users/Laurent/.espressif/tools/esp-rom-elfs/20241011/esp32h2_rev0_rom.elf - else - echo Warning: Unknown esp32h2 ROM revision.\n - end -set confirm on -end - - -# Load bootloader symbols -set confirm off - # Bootloader elf was not found -set confirm on - -# Load application symbols -file C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/bootloader.elf diff --git a/esp32-thread/open-thread-rcp/build/bootloader/kconfigs.in b/esp32-thread/open-thread-rcp/build/bootloader/kconfigs.in deleted file mode 100644 index cfc53c0f..00000000 --- a/esp32-thread/open-thread-rcp/build/bootloader/kconfigs.in +++ /dev/null @@ -1,12 +0,0 @@ -source "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/Kconfig" -source "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/Kconfig" -source "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/Kconfig" -source "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/Kconfig" -source "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/Kconfig" -source "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/Kconfig" -source "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/Kconfig" -source "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/Kconfig" -source "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/Kconfig" -source "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/Kconfig" -source "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/Kconfig" -source "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/Kconfig" \ No newline at end of file diff --git a/esp32-thread/open-thread-rcp/build/bootloader/kconfigs_projbuild.in b/esp32-thread/open-thread-rcp/build/bootloader/kconfigs_projbuild.in deleted file mode 100644 index a730ce93..00000000 --- a/esp32-thread/open-thread-rcp/build/bootloader/kconfigs_projbuild.in +++ /dev/null @@ -1,6 +0,0 @@ -source "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/Kconfig.projbuild" -source "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/Kconfig.projbuild" -source "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/Kconfig.projbuild" -source "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_tee/Kconfig.projbuild" -source "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esptool_py/Kconfig.projbuild" -source "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/partition_table/Kconfig.projbuild" \ No newline at end of file diff --git a/esp32-thread/open-thread-rcp/build/bootloader/project_description.json b/esp32-thread/open-thread-rcp/build/bootloader/project_description.json deleted file mode 100644 index 4a92cb3b..00000000 --- a/esp32-thread/open-thread-rcp/build/bootloader/project_description.json +++ /dev/null @@ -1,1692 +0,0 @@ -{ - "version": "1.2", - "project_name": "bootloader", - "project_version": "v5.5.1", - "project_path": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject", - "idf_path": "C:/Users/Laurent/esp/v5.5.1/esp-idf", - "build_dir": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", - "config_file": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/sdkconfig", - "config_defaults": "", - "bootloader_elf": "", - "app_elf": "bootloader.elf", - "app_bin": "bootloader.bin", - "build_type": "flash_app", - "git_revision": "v5.5.1", - "target": "esp32h2", - "rev": "", - "min_rev": "0", - "max_rev": "199", - "phy_data_partition": "", - "monitor_baud" : "115200", - "monitor_toolprefix": "riscv32-esp-elf-", - "c_compiler": "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc.exe", - "config_environment" : { - "COMPONENT_KCONFIGS" : "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/Kconfig", - "COMPONENT_KCONFIGS_PROJBUILD" : "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/Kconfig.projbuild;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/Kconfig.projbuild;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/Kconfig.projbuild;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_tee/Kconfig.projbuild;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esptool_py/Kconfig.projbuild;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/partition_table/Kconfig.projbuild" - }, - "common_component_reqs": [ "log", "esp_rom", "esp_common", "esp_hw_support", "newlib", "riscv" ], - "build_components" : [ "bootloader", "bootloader_support", "efuse", "esp_app_format", "esp_bootloader_format", "esp_common", "esp_hw_support", "esp_rom", "esp_security", "esp_system", "esp_tee", "esptool_py", "freertos", "hal", "log", "main", "micro-ecc", "newlib", "partition_table", "riscv", "soc", "spi_flash", "" ], - "build_component_paths" : [ "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_tee", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esptool_py", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/log", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/main", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/partition_table", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash", "" ], - "build_component_info" : { - "bootloader": { - "alias": "idf::bootloader", - "target": "___idf_bootloader", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader", - "type": "CONFIG_ONLY", - "lib": "__idf_bootloader", - "reqs": [], - "priv_reqs": [ "partition_table", "esptool_py" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "", - "sources": [], - "include_dirs": [] - }, - "bootloader_support": { - "alias": "idf::bootloader_support", - "target": "___idf_bootloader_support", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support", - "type": "LIBRARY", - "lib": "__idf_bootloader_support", - "reqs": [ "soc" ], - "priv_reqs": [ "micro-ecc", "spi_flash", "efuse", "esp_bootloader_format", "esp_app_format", "hal" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/bootloader_support/libbootloader_support.a", - "sources": [ "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_common.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_common_loader.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_clock_init.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_mem.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_random.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_efuse.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/src/flash_encrypt.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/src/secure_boot.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_random_esp32h2.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/src/bootloader_flash.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/src/flash_qio_mode.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/src/bootloader_flash_config_esp32h2.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_utility.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/src/flash_partitions.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/src/esp_image_format.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_sha.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_init.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_clock_loader.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_console.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_console_loader.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/src/esp32h2/bootloader_soc.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/src/esp32h2/bootloader_esp32h2.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_panic.c" ], - "include_dirs": [ "include", "bootloader_flash/include", "private_include" ] - }, - "efuse": { - "alias": "idf::efuse", - "target": "___idf_efuse", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse", - "type": "LIBRARY", - "lib": "__idf_efuse", - "reqs": [], - "priv_reqs": [ "bootloader_support", "soc", "spi_flash" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/efuse/libefuse.a", - "sources": [ "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/esp_efuse_table.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/esp_efuse_table_v0.0_v1.1.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/esp_efuse_fields.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/esp_efuse_rtc_calib.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/esp_efuse_utility.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/src/esp_efuse_api.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/src/esp_efuse_fields.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/src/esp_efuse_utility.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c" ], - "include_dirs": [ "include", "esp32h2/include" ] - }, - "esp_app_format": { - "alias": "idf::esp_app_format", - "target": "___idf_esp_app_format", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format", - "type": "CONFIG_ONLY", - "lib": "__idf_esp_app_format", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "", - "sources": [], - "include_dirs": [ "include" ] - }, - "esp_bootloader_format": { - "alias": "idf::esp_bootloader_format", - "target": "___idf_esp_bootloader_format", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format", - "type": "LIBRARY", - "lib": "__idf_esp_bootloader_format", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_bootloader_format/libesp_bootloader_format.a", - "sources": [ "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/esp_bootloader_desc.c" ], - "include_dirs": [ "include" ] - }, - "esp_common": { - "alias": "idf::esp_common", - "target": "___idf_esp_common", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common", - "type": "LIBRARY", - "lib": "__idf_esp_common", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_common/libesp_common.a", - "sources": [ "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/src/esp_err_to_name.c" ], - "include_dirs": [ "include" ] - }, - "esp_hw_support": { - "alias": "idf::esp_hw_support", - "target": "___idf_esp_hw_support", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support", - "type": "LIBRARY", - "lib": "__idf_esp_hw_support", - "reqs": [ "soc" ], - "priv_reqs": [ "efuse", "spi_flash", "bootloader_support", "esp_security", "esp_system" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_hw_support/libesp_hw_support.a", - "sources": [ "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/cpu.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/esp_cpu_intr.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/esp_memory_utils.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/cpu_region_protect.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/rtc_clk_init.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/rtc_clk.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/pmu_param.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/pmu_init.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/pmu_sleep.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/rtc_time.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/chip_info.c" ], - "include_dirs": [ "include", "include/soc", "include/soc/esp32h2", "dma/include", "ldo/include", "debug_probe/include", "mspi_timing_tuning/include", "mspi_timing_tuning/tuning_scheme_impl/include", "power_supply/include" ] - }, - "esp_rom": { - "alias": "idf::esp_rom", - "target": "___idf_esp_rom", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom", - "type": "LIBRARY", - "lib": "__idf_esp_rom", - "reqs": [], - "priv_reqs": [ "soc", "hal" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_rom/libesp_rom.a", - "sources": [ "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_sys.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_print.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_crc.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_uart.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_spiflash.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_efuse.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_gpio.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_regi2c_esp32h2.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_systimer.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_wdt.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_usb_serial.c" ], - "include_dirs": [ "include", "esp32h2/include", "esp32h2/include/esp32h2", "esp32h2" ] - }, - "esp_security": { - "alias": "idf::esp_security", - "target": "___idf_esp_security", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security", - "type": "CONFIG_ONLY", - "lib": "__idf_esp_security", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "", - "sources": [], - "include_dirs": [ "include" ] - }, - "esp_system": { - "alias": "idf::esp_system", - "target": "___idf_esp_system", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system", - "type": "LIBRARY", - "lib": "__idf_esp_system", - "reqs": [ "spi_flash" ], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/esp_system/libesp_system.a", - "sources": [ "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/esp_err.c" ], - "include_dirs": [] - }, - "esp_tee": { - "alias": "idf::esp_tee", - "target": "___idf_esp_tee", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_tee", - "type": "CONFIG_ONLY", - "lib": "__idf_esp_tee", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "", - "sources": [], - "include_dirs": [] - }, - "esptool_py": { - "alias": "idf::esptool_py", - "target": "___idf_esptool_py", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esptool_py", - "type": "CONFIG_ONLY", - "lib": "__idf_esptool_py", - "reqs": [ "bootloader" ], - "priv_reqs": [ "partition_table" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "", - "sources": [], - "include_dirs": [] - }, - "freertos": { - "alias": "idf::freertos", - "target": "___idf_freertos", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos", - "type": "CONFIG_ONLY", - "lib": "__idf_freertos", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "", - "sources": [], - "include_dirs": [] - }, - "hal": { - "alias": "idf::hal", - "target": "___idf_hal", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal", - "type": "LIBRARY", - "lib": "__idf_hal", - "reqs": [ "soc", "esp_rom" ], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/hal/libhal.a", - "sources": [ "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/hal_utils.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/efuse_hal.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/efuse_hal.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/lp_timer_hal.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/mmu_hal.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/cache_hal.c" ], - "include_dirs": [ "platform_port/include", "esp32h2/include", "include" ] - }, - "log": { - "alias": "idf::log", - "target": "___idf_log", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/log", - "type": "LIBRARY", - "lib": "__idf_log", - "reqs": [], - "priv_reqs": [ "hal" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/log/liblog.a", - "sources": [ "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/src/noos/log_timestamp.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/src/log_timestamp_common.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/src/noos/log_lock.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/src/buffer/log_buffers.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/src/noos/util.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/src/util.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/src/log_format_text.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/src/log_print.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/src/log.c" ], - "include_dirs": [ "include" ] - }, - "main": { - "alias": "idf::main", - "target": "___idf_main", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/main", - "type": "LIBRARY", - "lib": "__idf_main", - "reqs": [ "bootloader", "bootloader_support" ], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/main/libmain.a", - "sources": [ "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/main/bootloader_start.c" ], - "include_dirs": [] - }, - "micro-ecc": { - "alias": "idf::micro-ecc", - "target": "___idf_micro-ecc", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc", - "type": "LIBRARY", - "lib": "__idf_micro-ecc", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/micro-ecc/libmicro-ecc.a", - "sources": [ "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/uECC_verify_antifault.c" ], - "include_dirs": [ ".", "micro-ecc" ] - }, - "newlib": { - "alias": "idf::newlib", - "target": "___idf_newlib", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib", - "type": "CONFIG_ONLY", - "lib": "__idf_newlib", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "", - "sources": [], - "include_dirs": [ "platform_include" ] - }, - "partition_table": { - "alias": "idf::partition_table", - "target": "___idf_partition_table", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/partition_table", - "type": "CONFIG_ONLY", - "lib": "__idf_partition_table", - "reqs": [], - "priv_reqs": [ "esptool_py" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "", - "sources": [], - "include_dirs": [] - }, - "riscv": { - "alias": "idf::riscv", - "target": "___idf_riscv", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv", - "type": "LIBRARY", - "lib": "__idf_riscv", - "reqs": [], - "priv_reqs": [ "soc", "hal" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/riscv/libriscv.a", - "sources": [ "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/rv_utils.c" ], - "include_dirs": [ "include" ] - }, - "soc": { - "alias": "idf::soc", - "target": "___idf_soc", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc", - "type": "LIBRARY", - "lib": "__idf_soc", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/soc/libsoc.a", - "sources": [ "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/lldesc.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/dport_access_common.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/interrupts.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/gpio_periph.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/uart_periph.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/adc_periph.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/ana_cmpr_periph.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/dedic_gpio_periph.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/etm_periph.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/gdma_periph.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/spi_periph.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/ledc_periph.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/pcnt_periph.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/rmt_periph.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/sdm_periph.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/i2s_periph.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/i2c_periph.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/temperature_sensor_periph.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/timer_periph.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/parlio_periph.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/mcpwm_periph.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/mpi_periph.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/twai_periph.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/wdt_periph.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/ieee802154_periph.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/rtc_io_periph.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/system_retention_periph.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/power_supply_periph.c" ], - "include_dirs": [ "include", "esp32h2", "esp32h2/include", "esp32h2/register" ] - }, - "spi_flash": { - "alias": "idf::spi_flash", - "target": "___idf_spi_flash", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash", - "type": "LIBRARY", - "lib": "__idf_spi_flash", - "reqs": [ "hal" ], - "priv_reqs": [ "bootloader_support", "soc" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/esp-idf/spi_flash/libspi_flash.a", - "sources": [ "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/spi_flash_wrap.c" ], - "include_dirs": [ "include" ] - } - }, - "all_component_info" : { - "app_trace": { - "alias": "idf::app_trace", - "target": "___idf_app_trace", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/app_trace", - "lib": "__idf_app_trace", - "reqs": [ "esp_timer" ], - "priv_reqs": [ "esp_driver_gptimer", "esp_driver_gpio", "esp_driver_uart" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "app_update": { - "alias": "idf::app_update", - "target": "___idf_app_update", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/app_update", - "lib": "__idf_app_update", - "reqs": [ "partition_table", "bootloader_support", "esp_app_format", "esp_bootloader_format", "esp_partition" ], - "priv_reqs": [ "esptool_py", "efuse", "spi_flash" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "bootloader": { - "alias": "idf::bootloader", - "target": "___idf_bootloader", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader", - "lib": "__idf_bootloader", - "reqs": [], - "priv_reqs": [ "partition_table", "esptool_py" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [] - }, - "bootloader_support": { - "alias": "idf::bootloader_support", - "target": "___idf_bootloader_support", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support", - "lib": "__idf_bootloader_support", - "reqs": [ "soc" ], - "priv_reqs": [ "micro-ecc", "spi_flash", "efuse", "esp_bootloader_format", "esp_app_format", "hal" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include", "bootloader_flash/include", "private_include" ] - }, - "bt": { - "alias": "idf::bt", - "target": "___idf_bt", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bt", - "lib": "__idf_bt", - "reqs": [ "esp_timer", "esp_wifi" ], - "priv_reqs": [ "nvs_flash", "soc", "esp_pm", "esp_phy", "esp_coex", "mbedtls", "esp_driver_uart", "vfs", "esp_ringbuf", "esp_driver_spi", "esp_driver_gpio", "esp_gdbstub" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [] - }, - "cmock": { - "alias": "idf::cmock", - "target": "___idf_cmock", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/cmock", - "lib": "__idf_cmock", - "reqs": [ "unity" ], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "CMock/src" ] - }, - "console": { - "alias": "idf::console", - "target": "___idf_console", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/console", - "lib": "__idf_console", - "reqs": [ "vfs", "esp_vfs_console" ], - "priv_reqs": [ "esp_driver_uart", "esp_driver_usb_serial_jtag" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader" ] - }, - "cxx": { - "alias": "idf::cxx", - "target": "___idf_cxx", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/cxx", - "lib": "__idf_cxx", - "reqs": [], - "priv_reqs": [ "esp_system", "pthread" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [] - }, - "driver": { - "alias": "idf::driver", - "target": "___idf_driver", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver", - "lib": "__idf_driver", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [] - }, - "efuse": { - "alias": "idf::efuse", - "target": "___idf_efuse", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse", - "lib": "__idf_efuse", - "reqs": [], - "priv_reqs": [ "bootloader_support", "soc", "spi_flash" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include", "esp32h2/include" ] - }, - "esp-tls": { - "alias": "idf::esp-tls", - "target": "___idf_esp-tls", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp-tls", - "lib": "__idf_esp-tls", - "reqs": [ "mbedtls" ], - "priv_reqs": [ "http_parser", "esp_timer", "lwip" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader", "esp-tls-crypto" ] - }, - "esp_adc": { - "alias": "idf::esp_adc", - "target": "___idf_esp_adc", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_adc", - "lib": "__idf_esp_adc", - "reqs": [], - "priv_reqs": [ "esp_driver_gpio", "efuse", "esp_pm", "esp_ringbuf", "esp_mm", "driver" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include", "interface", "esp32h2/include", "deprecated/include" ] - }, - "esp_app_format": { - "alias": "idf::esp_app_format", - "target": "___idf_esp_app_format", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format", - "lib": "__idf_esp_app_format", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_bootloader_format": { - "alias": "idf::esp_bootloader_format", - "target": "___idf_esp_bootloader_format", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format", - "lib": "__idf_esp_bootloader_format", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_coex": { - "alias": "idf::esp_coex", - "target": "___idf_esp_coex", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex", - "lib": "__idf_esp_coex", - "reqs": [], - "priv_reqs": [ "esp_timer", "esp_driver_gpio" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_common": { - "alias": "idf::esp_common", - "target": "___idf_esp_common", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common", - "lib": "__idf_esp_common", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_ana_cmpr": { - "alias": "idf::esp_driver_ana_cmpr", - "target": "___idf_esp_driver_ana_cmpr", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr", - "lib": "__idf_esp_driver_ana_cmpr", - "reqs": [], - "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_bitscrambler": { - "alias": "idf::esp_driver_bitscrambler", - "target": "___idf_esp_driver_bitscrambler", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_bitscrambler", - "lib": "__idf_esp_driver_bitscrambler", - "reqs": [], - "priv_reqs": [ "esp_mm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_cam": { - "alias": "idf::esp_driver_cam", - "target": "___idf_esp_driver_cam", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_cam", - "lib": "__idf_esp_driver_cam", - "reqs": [ "esp_driver_isp", "esp_mm" ], - "priv_reqs": [ "esp_driver_gpio" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include", "interface" ] - }, - "esp_driver_dac": { - "alias": "idf::esp_driver_dac", - "target": "___idf_esp_driver_dac", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac", - "lib": "__idf_esp_driver_dac", - "reqs": [], - "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "./include" ] - }, - "esp_driver_gpio": { - "alias": "idf::esp_driver_gpio", - "target": "___idf_esp_driver_gpio", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio", - "lib": "__idf_esp_driver_gpio", - "reqs": [], - "priv_reqs": [ "esp_pm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_gptimer": { - "alias": "idf::esp_driver_gptimer", - "target": "___idf_esp_driver_gptimer", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer", - "lib": "__idf_esp_driver_gptimer", - "reqs": [ "esp_pm" ], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_i2c": { - "alias": "idf::esp_driver_i2c", - "target": "___idf_esp_driver_i2c", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c", - "lib": "__idf_esp_driver_i2c", - "reqs": [], - "priv_reqs": [ "esp_driver_gpio", "esp_pm", "esp_ringbuf" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_i2s": { - "alias": "idf::esp_driver_i2s", - "target": "___idf_esp_driver_i2s", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s", - "lib": "__idf_esp_driver_i2s", - "reqs": [], - "priv_reqs": [ "esp_driver_gpio", "esp_pm", "esp_mm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_isp": { - "alias": "idf::esp_driver_isp", - "target": "___idf_esp_driver_isp", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_isp", - "lib": "__idf_esp_driver_isp", - "reqs": [ "esp_mm" ], - "priv_reqs": [ "esp_driver_gpio" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_jpeg": { - "alias": "idf::esp_driver_jpeg", - "target": "___idf_esp_driver_jpeg", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_jpeg", - "lib": "__idf_esp_driver_jpeg", - "reqs": [], - "priv_reqs": [ "esp_mm", "esp_pm", "esp_psram" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_ledc": { - "alias": "idf::esp_driver_ledc", - "target": "___idf_esp_driver_ledc", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc", - "lib": "__idf_esp_driver_ledc", - "reqs": [ "esp_driver_gpio" ], - "priv_reqs": [ "esp_pm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_mcpwm": { - "alias": "idf::esp_driver_mcpwm", - "target": "___idf_esp_driver_mcpwm", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm", - "lib": "__idf_esp_driver_mcpwm", - "reqs": [], - "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_parlio": { - "alias": "idf::esp_driver_parlio", - "target": "___idf_esp_driver_parlio", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio", - "lib": "__idf_esp_driver_parlio", - "reqs": [], - "priv_reqs": [ "esp_pm", "esp_driver_gpio", "esp_mm", "esp_driver_bitscrambler" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_pcnt": { - "alias": "idf::esp_driver_pcnt", - "target": "___idf_esp_driver_pcnt", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt", - "lib": "__idf_esp_driver_pcnt", - "reqs": [], - "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_ppa": { - "alias": "idf::esp_driver_ppa", - "target": "___idf_esp_driver_ppa", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ppa", - "lib": "__idf_esp_driver_ppa", - "reqs": [], - "priv_reqs": [ "esp_mm", "esp_pm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_rmt": { - "alias": "idf::esp_driver_rmt", - "target": "___idf_esp_driver_rmt", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt", - "lib": "__idf_esp_driver_rmt", - "reqs": [], - "priv_reqs": [ "esp_pm", "esp_driver_gpio", "esp_driver_bitscrambler", "esp_mm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_sdio": { - "alias": "idf::esp_driver_sdio", - "target": "___idf_esp_driver_sdio", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio", - "lib": "__idf_esp_driver_sdio", - "reqs": [], - "priv_reqs": [ "esp_driver_gpio", "esp_ringbuf" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_sdm": { - "alias": "idf::esp_driver_sdm", - "target": "___idf_esp_driver_sdm", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm", - "lib": "__idf_esp_driver_sdm", - "reqs": [], - "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_sdmmc": { - "alias": "idf::esp_driver_sdmmc", - "target": "___idf_esp_driver_sdmmc", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc", - "lib": "__idf_esp_driver_sdmmc", - "reqs": [ "sdmmc", "esp_driver_gpio" ], - "priv_reqs": [ "esp_timer", "esp_pm", "esp_mm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_sdspi": { - "alias": "idf::esp_driver_sdspi", - "target": "___idf_esp_driver_sdspi", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi", - "lib": "__idf_esp_driver_sdspi", - "reqs": [ "sdmmc", "esp_driver_spi", "esp_driver_gpio" ], - "priv_reqs": [ "esp_timer", "esp_mm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_spi": { - "alias": "idf::esp_driver_spi", - "target": "___idf_esp_driver_spi", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi", - "lib": "__idf_esp_driver_spi", - "reqs": [ "esp_pm" ], - "priv_reqs": [ "esp_timer", "esp_mm", "esp_driver_gpio" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_touch_sens": { - "alias": "idf::esp_driver_touch_sens", - "target": "___idf_esp_driver_touch_sens", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_touch_sens", - "lib": "__idf_esp_driver_touch_sens", - "reqs": [], - "priv_reqs": [ "esp_driver_gpio" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [] - }, - "esp_driver_tsens": { - "alias": "idf::esp_driver_tsens", - "target": "___idf_esp_driver_tsens", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens", - "lib": "__idf_esp_driver_tsens", - "reqs": [], - "priv_reqs": [ "efuse" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_twai": { - "alias": "idf::esp_driver_twai", - "target": "___idf_esp_driver_twai", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai", - "lib": "__idf_esp_driver_twai", - "reqs": [], - "priv_reqs": [ "esp_driver_gpio", "esp_pm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_uart": { - "alias": "idf::esp_driver_uart", - "target": "___idf_esp_driver_uart", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart", - "lib": "__idf_esp_driver_uart", - "reqs": [], - "priv_reqs": [ "esp_pm", "esp_driver_gpio", "esp_ringbuf", "esp_mm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_usb_serial_jtag": { - "alias": "idf::esp_driver_usb_serial_jtag", - "target": "___idf_esp_driver_usb_serial_jtag", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag", - "lib": "__idf_esp_driver_usb_serial_jtag", - "reqs": [], - "priv_reqs": [ "esp_driver_gpio", "esp_ringbuf", "esp_pm", "esp_timer" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_eth": { - "alias": "idf::esp_eth", - "target": "___idf_esp_eth", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_eth", - "lib": "__idf_esp_eth", - "reqs": [ "esp_event" ], - "priv_reqs": [ "log", "esp_timer", "esp_driver_spi", "esp_driver_gpio" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [] - }, - "esp_event": { - "alias": "idf::esp_event", - "target": "___idf_esp_event", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event", - "lib": "__idf_esp_event", - "reqs": [ "log", "esp_common", "freertos" ], - "priv_reqs": [ "esp_timer" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_gdbstub": { - "alias": "idf::esp_gdbstub", - "target": "___idf_esp_gdbstub", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_gdbstub", - "lib": "__idf_esp_gdbstub", - "reqs": [ "freertos" ], - "priv_reqs": [ "soc", "esp_rom", "esp_system" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_hid": { - "alias": "idf::esp_hid", - "target": "___idf_esp_hid", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hid", - "lib": "__idf_esp_hid", - "reqs": [ "esp_event", "bt" ], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_http_client": { - "alias": "idf::esp_http_client", - "target": "___idf_esp_http_client", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_http_client", - "lib": "__idf_esp_http_client", - "reqs": [ "lwip", "esp_event" ], - "priv_reqs": [ "tcp_transport", "http_parser" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_http_server": { - "alias": "idf::esp_http_server", - "target": "___idf_esp_http_server", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_http_server", - "lib": "__idf_esp_http_server", - "reqs": [ "http_parser", "esp_event" ], - "priv_reqs": [ "mbedtls", "lwip", "esp_timer" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_https_ota": { - "alias": "idf::esp_https_ota", - "target": "___idf_esp_https_ota", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_https_ota", - "lib": "__idf_esp_https_ota", - "reqs": [ "esp_http_client", "bootloader_support", "esp_bootloader_format", "esp_app_format", "esp_event", "esp_partition" ], - "priv_reqs": [ "log", "app_update" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_https_server": { - "alias": "idf::esp_https_server", - "target": "___idf_esp_https_server", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_https_server", - "lib": "__idf_esp_https_server", - "reqs": [ "esp_http_server", "esp-tls", "esp_event" ], - "priv_reqs": [ "lwip" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_hw_support": { - "alias": "idf::esp_hw_support", - "target": "___idf_esp_hw_support", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support", - "lib": "__idf_esp_hw_support", - "reqs": [ "soc" ], - "priv_reqs": [ "efuse", "spi_flash", "bootloader_support", "esp_security", "esp_system" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include", "include/soc", "include/soc/esp32h2", "dma/include", "ldo/include", "debug_probe/include", "mspi_timing_tuning/include", "mspi_timing_tuning/tuning_scheme_impl/include", "power_supply/include" ] - }, - "esp_lcd": { - "alias": "idf::esp_lcd", - "target": "___idf_esp_lcd", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_lcd", - "lib": "__idf_esp_lcd", - "reqs": [ "driver", "esp_driver_gpio", "esp_driver_i2c", "esp_driver_spi" ], - "priv_reqs": [ "esp_mm", "esp_psram", "esp_pm", "esp_driver_i2s" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include", "interface" ] - }, - "esp_local_ctrl": { - "alias": "idf::esp_local_ctrl", - "target": "___idf_esp_local_ctrl", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_local_ctrl", - "lib": "__idf_esp_local_ctrl", - "reqs": [ "protocomm", "esp_https_server" ], - "priv_reqs": [ "protobuf-c", "esp_netif" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_mm": { - "alias": "idf::esp_mm", - "target": "___idf_esp_mm", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm", - "lib": "__idf_esp_mm", - "reqs": [], - "priv_reqs": [ "heap", "spi_flash" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_netif": { - "alias": "idf::esp_netif", - "target": "___idf_esp_netif", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif", - "lib": "__idf_esp_netif", - "reqs": [ "esp_event" ], - "priv_reqs": [ "esp_netif_stack" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_netif_stack": { - "alias": "idf::esp_netif_stack", - "target": "___idf_esp_netif_stack", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif_stack", - "lib": "__idf_esp_netif_stack", - "reqs": [ "lwip" ], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [] - }, - "esp_partition": { - "alias": "idf::esp_partition", - "target": "___idf_esp_partition", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition", - "lib": "__idf_esp_partition", - "reqs": [ "spi_flash" ], - "priv_reqs": [ "bootloader_support" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_phy": { - "alias": "idf::esp_phy", - "target": "___idf_esp_phy", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy", - "lib": "__idf_esp_phy", - "reqs": [], - "priv_reqs": [ "nvs_flash", "esp_driver_gpio", "efuse", "esp_timer", "esp_wifi" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include", "esp32h2/include" ] - }, - "esp_pm": { - "alias": "idf::esp_pm", - "target": "___idf_esp_pm", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm", - "lib": "__idf_esp_pm", - "reqs": [], - "priv_reqs": [ "esp_system", "esp_driver_gpio", "esp_timer" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_psram": { - "alias": "idf::esp_psram", - "target": "___idf_esp_psram", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_psram", - "lib": "__idf_esp_psram", - "reqs": [], - "priv_reqs": [ "heap", "spi_flash", "esp_mm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_ringbuf": { - "alias": "idf::esp_ringbuf", - "target": "___idf_esp_ringbuf", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf", - "lib": "__idf_esp_ringbuf", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_rom": { - "alias": "idf::esp_rom", - "target": "___idf_esp_rom", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom", - "lib": "__idf_esp_rom", - "reqs": [], - "priv_reqs": [ "soc", "hal" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include", "esp32h2/include", "esp32h2/include/esp32h2", "esp32h2" ] - }, - "esp_security": { - "alias": "idf::esp_security", - "target": "___idf_esp_security", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security", - "lib": "__idf_esp_security", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_system": { - "alias": "idf::esp_system", - "target": "___idf_esp_system", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system", - "lib": "__idf_esp_system", - "reqs": [ "spi_flash" ], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [] - }, - "esp_tee": { - "alias": "idf::esp_tee", - "target": "___idf_esp_tee", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_tee", - "lib": "__idf_esp_tee", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [] - }, - "esp_timer": { - "alias": "idf::esp_timer", - "target": "___idf_esp_timer", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer", - "lib": "__idf_esp_timer", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_vfs_console": { - "alias": "idf::esp_vfs_console", - "target": "___idf_esp_vfs_console", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console", - "lib": "__idf_esp_vfs_console", - "reqs": [], - "priv_reqs": [ "vfs", "esp_driver_uart", "esp_driver_usb_serial_jtag" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_wifi": { - "alias": "idf::esp_wifi", - "target": "___idf_esp_wifi", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_wifi", - "lib": "__idf_esp_wifi", - "reqs": [ "esp_event", "esp_phy", "esp_netif" ], - "priv_reqs": [ "esptool_py", "esp_pm", "esp_timer", "nvs_flash", "wpa_supplicant", "hal", "lwip", "esp_coex" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include", "include/local", "wifi_apps/include", "wifi_apps/nan_app/include" ] - }, - "espcoredump": { - "alias": "idf::espcoredump", - "target": "___idf_espcoredump", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/espcoredump", - "lib": "__idf_espcoredump", - "reqs": [], - "priv_reqs": [ "esp_partition", "spi_flash", "bootloader_support", "mbedtls", "esp_rom", "soc", "esp_system", "esp_driver_gpio" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esptool_py": { - "alias": "idf::esptool_py", - "target": "___idf_esptool_py", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esptool_py", - "lib": "__idf_esptool_py", - "reqs": [ "bootloader" ], - "priv_reqs": [ "partition_table" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [] - }, - "fatfs": { - "alias": "idf::fatfs", - "target": "___idf_fatfs", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/fatfs", - "lib": "__idf_fatfs", - "reqs": [ "wear_levelling", "sdmmc", "esp_driver_sdmmc", "esp_driver_sdspi" ], - "priv_reqs": [ "vfs", "esp_driver_gpio" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "diskio", "src", "vfs" ] - }, - "freertos": { - "alias": "idf::freertos", - "target": "___idf_freertos", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos", - "lib": "__idf_freertos", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [] - }, - "hal": { - "alias": "idf::hal", - "target": "___idf_hal", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal", - "lib": "__idf_hal", - "reqs": [ "soc", "esp_rom" ], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "platform_port/include", "esp32h2/include", "include" ] - }, - "heap": { - "alias": "idf::heap", - "target": "___idf_heap", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap", - "lib": "__idf_heap", - "reqs": [], - "priv_reqs": [ "soc" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include", "tlsf" ] - }, - "http_parser": { - "alias": "idf::http_parser", - "target": "___idf_http_parser", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/http_parser", - "lib": "__idf_http_parser", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "." ] - }, - "idf_test": { - "alias": "idf::idf_test", - "target": "___idf_idf_test", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/idf_test", - "lib": "__idf_idf_test", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include", "include/esp32h2" ] - }, - "ieee802154": { - "alias": "idf::ieee802154", - "target": "___idf_ieee802154", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154", - "lib": "__idf_ieee802154", - "reqs": [ "esp_coex" ], - "priv_reqs": [ "esp_phy", "esp_timer", "soc", "hal", "esp_pm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "json": { - "alias": "idf::json", - "target": "___idf_json", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/json", - "lib": "__idf_json", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "cJSON" ] - }, - "linux": { - "alias": "idf::linux", - "target": "___idf_linux", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/linux", - "lib": "__idf_linux", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "cJSON" ] - }, - "log": { - "alias": "idf::log", - "target": "___idf_log", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/log", - "lib": "__idf_log", - "reqs": [], - "priv_reqs": [ "hal" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "lwip": { - "alias": "idf::lwip", - "target": "___idf_lwip", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip", - "lib": "__idf_lwip", - "reqs": [], - "priv_reqs": [ "vfs" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [] - }, - "mbedtls": { - "alias": "idf::mbedtls", - "target": "___idf_mbedtls", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls", - "lib": "__idf_mbedtls", - "reqs": [], - "priv_reqs": [ "hal" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [] - }, - "mqtt": { - "alias": "idf::mqtt", - "target": "___idf_mqtt", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mqtt", - "lib": "__idf_mqtt", - "reqs": [ "esp_event", "tcp_transport" ], - "priv_reqs": [ "esp_timer", "http_parser", "esp_hw_support", "heap" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mqtt/esp-mqtt/include" ] - }, - "newlib": { - "alias": "idf::newlib", - "target": "___idf_newlib", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib", - "lib": "__idf_newlib", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "platform_include" ] - }, - "nvs_flash": { - "alias": "idf::nvs_flash", - "target": "___idf_nvs_flash", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash", - "lib": "__idf_nvs_flash", - "reqs": [ "esp_partition" ], - "priv_reqs": [ "mbedtls" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "nvs_sec_provider": { - "alias": "idf::nvs_sec_provider", - "target": "___idf_nvs_sec_provider", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_sec_provider", - "lib": "__idf_nvs_sec_provider", - "reqs": [], - "priv_reqs": [ "bootloader_support", "efuse", "esp_partition", "nvs_flash" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "openthread": { - "alias": "idf::openthread", - "target": "___idf_openthread", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread", - "lib": "__idf_openthread", - "reqs": [ "esp_netif", "lwip", "esp_driver_uart", "driver" ], - "priv_reqs": [ "console", "esp_coex", "esp_event", "esp_partition", "esp_timer", "ieee802154", "mbedtls", "nvs_flash" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [] - }, - "partition_table": { - "alias": "idf::partition_table", - "target": "___idf_partition_table", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/partition_table", - "lib": "__idf_partition_table", - "reqs": [], - "priv_reqs": [ "esptool_py" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [] - }, - "perfmon": { - "alias": "idf::perfmon", - "target": "___idf_perfmon", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/perfmon", - "lib": "__idf_perfmon", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [] - }, - "protobuf-c": { - "alias": "idf::protobuf-c", - "target": "___idf_protobuf-c", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/protobuf-c", - "lib": "__idf_protobuf-c", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "protobuf-c" ] - }, - "protocomm": { - "alias": "idf::protocomm", - "target": "___idf_protocomm", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/protocomm", - "lib": "__idf_protocomm", - "reqs": [ "bt" ], - "priv_reqs": [ "protobuf-c", "mbedtls", "console", "esp_http_server", "esp_driver_uart" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include/common", "include/security", "include/transports", "include/crypto/srp6a", "proto-c" ] - }, - "pthread": { - "alias": "idf::pthread", - "target": "___idf_pthread", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/pthread", - "lib": "__idf_pthread", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "riscv": { - "alias": "idf::riscv", - "target": "___idf_riscv", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv", - "lib": "__idf_riscv", - "reqs": [], - "priv_reqs": [ "soc", "hal" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "rt": { - "alias": "idf::rt", - "target": "___idf_rt", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/rt", - "lib": "__idf_rt", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "sdmmc": { - "alias": "idf::sdmmc", - "target": "___idf_sdmmc", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc", - "lib": "__idf_sdmmc", - "reqs": [], - "priv_reqs": [ "soc", "esp_timer", "esp_mm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "soc": { - "alias": "idf::soc", - "target": "___idf_soc", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc", - "lib": "__idf_soc", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include", "esp32h2", "esp32h2/include", "esp32h2/register" ] - }, - "spi_flash": { - "alias": "idf::spi_flash", - "target": "___idf_spi_flash", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash", - "lib": "__idf_spi_flash", - "reqs": [ "hal" ], - "priv_reqs": [ "bootloader_support", "soc" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "spiffs": { - "alias": "idf::spiffs", - "target": "___idf_spiffs", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/spiffs", - "lib": "__idf_spiffs", - "reqs": [ "esp_partition" ], - "priv_reqs": [ "bootloader_support", "esptool_py", "vfs" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "tcp_transport": { - "alias": "idf::tcp_transport", - "target": "___idf_tcp_transport", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/tcp_transport", - "lib": "__idf_tcp_transport", - "reqs": [ "esp-tls", "lwip", "esp_timer" ], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "touch_element": { - "alias": "idf::touch_element", - "target": "___idf_touch_element", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/touch_element", - "lib": "__idf_touch_element", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "ulp": { - "alias": "idf::ulp", - "target": "___idf_ulp", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/ulp", - "lib": "__idf_ulp", - "reqs": [ "driver", "esp_adc" ], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [] - }, - "unity": { - "alias": "idf::unity", - "target": "___idf_unity", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/unity", - "lib": "__idf_unity", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include", "unity/src" ] - }, - "usb": { - "alias": "idf::usb", - "target": "___idf_usb", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/usb", - "lib": "__idf_usb", - "reqs": [], - "priv_reqs": [ "esp_driver_gpio", "esp_mm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [] - }, - "vfs": { - "alias": "idf::vfs", - "target": "___idf_vfs", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs", - "lib": "__idf_vfs", - "reqs": [], - "priv_reqs": [ "esp_timer", "esp_driver_uart", "esp_driver_usb_serial_jtag", "esp_vfs_console" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "wear_levelling": { - "alias": "idf::wear_levelling", - "target": "___idf_wear_levelling", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/wear_levelling", - "lib": "__idf_wear_levelling", - "reqs": [ "esp_partition" ], - "priv_reqs": [ "spi_flash" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "wifi_provisioning": { - "alias": "idf::wifi_provisioning", - "target": "___idf_wifi_provisioning", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/wifi_provisioning", - "lib": "__idf_wifi_provisioning", - "reqs": [ "lwip", "protocomm" ], - "priv_reqs": [ "protobuf-c", "bt", "json", "esp_timer", "esp_wifi" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "wpa_supplicant": { - "alias": "idf::wpa_supplicant", - "target": "___idf_wpa_supplicant", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/wpa_supplicant", - "lib": "__idf_wpa_supplicant", - "reqs": [], - "priv_reqs": [ "mbedtls", "esp_timer", "esp_wifi" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include", "port/include", "esp_supplicant/include" ] - }, - "xtensa": { - "alias": "idf::xtensa", - "target": "___idf_xtensa", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/xtensa", - "lib": "__idf_xtensa", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include", "port/include", "esp_supplicant/include" ] - }, - "main": { - "alias": "idf::main", - "target": "___idf_main", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/main", - "lib": "__idf_main", - "reqs": [ "bootloader", "bootloader_support" ], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [] - }, - "micro-ecc": { - "alias": "idf::micro-ecc", - "target": "___idf_micro-ecc", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc", - "lib": "__idf_micro-ecc", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ ".", "micro-ecc" ] - } - }, - "debug_prefix_map_gdbinit": "", - "gdbinit_files": { - "01_symbols": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/gdbinit/symbols", - "02_prefix_map": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/gdbinit/prefix_map", - "03_py_extensions": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/gdbinit/py_extensions", - "04_connect": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/gdbinit/connect" - }, - "debug_arguments_openocd": "-f board/esp32h2-builtin.cfg" -} diff --git a/esp32-thread/open-thread-rcp/build/bootloader/project_elf_src_esp32h2.c b/esp32-thread/open-thread-rcp/build/bootloader/project_elf_src_esp32h2.c deleted file mode 100644 index e69de29b..00000000 diff --git a/esp32-thread/open-thread-rcp/build/build.ninja b/esp32-thread/open-thread-rcp/build/build.ninja deleted file mode 100644 index d381bbb6..00000000 --- a/esp32-thread/open-thread-rcp/build/build.ninja +++ /dev/null @@ -1,17844 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Ninja" Generator, CMake Version 3.30 - -# This file contains all the build statements describing the -# compilation DAG. - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# -# Which is the root file. -# ============================================================================= - -# ============================================================================= -# Project: open-thread-rcp -# Configurations: -# ============================================================================= - -############################################# -# Minimal version of Ninja required by this file - -ninja_required_version = 1.5 - -# ============================================================================= -# Include auxiliary files. - - -############################################# -# Include rules file. - -include CMakeFiles/rules.ninja - -# ============================================================================= - -############################################# -# Logical path to working directory; prefix for absolute paths. - -cmake_ninja_workdir = C$:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/ - -############################################# -# Utility command for menuconfig - -build menuconfig: phony CMakeFiles/menuconfig - - -############################################# -# Utility command for confserver - -build confserver: phony CMakeFiles/confserver - - -############################################# -# Utility command for save-defconfig - -build save-defconfig: phony CMakeFiles/save-defconfig - - -############################################# -# Utility command for bootloader - -build bootloader: phony CMakeFiles/bootloader CMakeFiles/bootloader-complete bootloader-prefix/src/bootloader-stamp/bootloader-done bootloader-prefix/src/bootloader-stamp/bootloader-build bootloader/bootloader.elf bootloader/bootloader.bin bootloader/bootloader.map bootloader-prefix/src/bootloader-stamp/bootloader-configure bootloader-prefix/src/bootloader-stamp/bootloader-download bootloader-prefix/src/bootloader-stamp/bootloader-install bootloader-prefix/src/bootloader-stamp/bootloader-mkdir bootloader-prefix/src/bootloader-stamp/bootloader-patch bootloader-prefix/src/bootloader-stamp/bootloader-update esp-idf/partition_table/partition_table_bin - - -############################################# -# Utility command for gen_project_binary - -build gen_project_binary: phony CMakeFiles/gen_project_binary .bin_timestamp open-thread-rcp.elf - - -############################################# -# Utility command for app - -build app: phony CMakeFiles/app esp-idf/esptool_py/app_check_size gen_project_binary - - -############################################# -# Utility command for erase_flash - -build erase_flash: phony CMakeFiles/erase_flash - - -############################################# -# Utility command for merge-bin - -build merge-bin: phony CMakeFiles/merge-bin bootloader gen_project_binary - - -############################################# -# Utility command for monitor - -build monitor: phony CMakeFiles/monitor open-thread-rcp.elf - - -############################################# -# Utility command for flash - -build flash: phony CMakeFiles/flash app bootloader esp-idf/partition_table/partition_table_bin - - -############################################# -# Utility command for encrypted-flash - -build encrypted-flash: phony CMakeFiles/encrypted-flash - - -############################################# -# Utility command for _project_elf_src - -build _project_elf_src: phony CMakeFiles/_project_elf_src project_elf_src_esp32h2.c - -# ============================================================================= -# Object build statements for EXECUTABLE target open-thread-rcp.elf - - -############################################# -# Order-only phony target for open-thread-rcp.elf - -build cmake_object_order_depends_target_open-thread-rcp.elf: phony || __ldgen_output_sections.ld _project_elf_src cmake_object_order_depends_target___idf_main cmake_object_order_depends_target___idf_riscv project_elf_src_esp32h2.c - -build CMakeFiles/open-thread-rcp.elf.dir/project_elf_src_esp32h2.c.obj: C_COMPILER__open-thread-rcp.2eelf_unscanned_ C$:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/project_elf_src_esp32h2.c || cmake_object_order_depends_target_open-thread-rcp.elf - DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ - DEP_FILE = CMakeFiles\open-thread-rcp.elf.dir\project_elf_src_esp32h2.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always - INCLUDES = -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/pthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_bitscrambler/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/main - OBJECT_DIR = CMakeFiles\open-thread-rcp.elf.dir - OBJECT_FILE_DIR = CMakeFiles\open-thread-rcp.elf.dir - TARGET_COMPILE_PDB = CMakeFiles\open-thread-rcp.elf.dir\ - TARGET_PDB = open-thread-rcp.elf.pdb - - -# ============================================================================= -# Link build statements for EXECUTABLE target open-thread-rcp.elf - - -############################################# -# Link the executable open-thread-rcp.elf - -build open-thread-rcp.elf: CXX_EXECUTABLE_LINKER__open-thread-rcp.2eelf_ CMakeFiles/open-thread-rcp.elf.dir/project_elf_src_esp32h2.c.obj | esp-idf/riscv/libriscv.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/app_update/libapp_update.a esp-idf/esp_partition/libesp_partition.a esp-idf/efuse/libefuse.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/soc/libsoc.a esp-idf/esp_security/libesp_security.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_vfs_console/libesp_vfs_console.a esp-idf/vfs/libvfs.a esp-idf/lwip/liblwip.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_ana_cmpr/libesp_driver_ana_cmpr.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_parlio/libesp_driver_parlio.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/driver/libdriver.a esp-idf/console/libconsole.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/esp_phy/libesp_phy.a esp-idf/ieee802154/libieee802154.a esp-idf/openthread/libopenthread.a esp-idf/main/libmain.a esp-idf/riscv/libriscv.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/app_update/libapp_update.a esp-idf/esp_partition/libesp_partition.a esp-idf/efuse/libefuse.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/soc/libsoc.a esp-idf/esp_security/libesp_security.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_vfs_console/libesp_vfs_console.a esp-idf/vfs/libvfs.a esp-idf/lwip/liblwip.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_ana_cmpr/libesp_driver_ana_cmpr.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_parlio/libesp_driver_parlio.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/driver/libdriver.a esp-idf/console/libconsole.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/esp_phy/libesp_phy.a esp-idf/ieee802154/libieee802154.a esp-idf/openthread/libopenthread.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/riscv/libriscv.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/app_update/libapp_update.a esp-idf/esp_partition/libesp_partition.a esp-idf/efuse/libefuse.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/soc/libsoc.a esp-idf/esp_security/libesp_security.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_vfs_console/libesp_vfs_console.a esp-idf/vfs/libvfs.a esp-idf/lwip/liblwip.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_ana_cmpr/libesp_driver_ana_cmpr.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_parlio/libesp_driver_parlio.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/driver/libdriver.a esp-idf/console/libconsole.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/esp_phy/libesp_phy.a esp-idf/ieee802154/libieee802154.a esp-idf/openthread/libopenthread.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/riscv/libriscv.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/app_update/libapp_update.a esp-idf/esp_partition/libesp_partition.a esp-idf/efuse/libefuse.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/soc/libsoc.a esp-idf/esp_security/libesp_security.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_vfs_console/libesp_vfs_console.a esp-idf/vfs/libvfs.a esp-idf/lwip/liblwip.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_ana_cmpr/libesp_driver_ana_cmpr.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_parlio/libesp_driver_parlio.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/driver/libdriver.a esp-idf/console/libconsole.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/esp_phy/libesp_phy.a esp-idf/ieee802154/libieee802154.a esp-idf/openthread/libopenthread.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/riscv/libriscv.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/app_update/libapp_update.a esp-idf/esp_partition/libesp_partition.a esp-idf/efuse/libefuse.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/soc/libsoc.a esp-idf/esp_security/libesp_security.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_vfs_console/libesp_vfs_console.a esp-idf/vfs/libvfs.a esp-idf/lwip/liblwip.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_ana_cmpr/libesp_driver_ana_cmpr.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_parlio/libesp_driver_parlio.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/driver/libdriver.a esp-idf/console/libconsole.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/esp_phy/libesp_phy.a esp-idf/ieee802154/libieee802154.a esp-idf/openthread/libopenthread.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/pthread/libpthread.a esp-idf/newlib/libnewlib.a esp-idf/cxx/libcxx.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_phy/libesp_phy.a C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/ld/rom.api.ld esp-idf/esp_system/ld/memory.ld C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/ld/esp32h2.rom.ld C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/ld/esp32h2.rom.api.ld C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/ld/esp32h2.rom.libgcc.ld C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/ld/esp32h2.rom.wdt.ld C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/ld/esp32h2.rom.systimer.ld C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/ld/esp32h2.rom.version.ld C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/ld/esp32h2.rom.libc.ld C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/ld/esp32h2.rom.libc-suboptimal_for_misaligned_mem.ld C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/ld/esp32h2.rom.newlib.ld C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/ld/esp32h2.rom.heap.ld C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/ld/esp32h2.peripherals.ld esp-idf/esp_system/ld/sections.ld || __ldgen_output_sections.ld _project_elf_src esp-idf/main/libmain.a esp-idf/riscv/libriscv.a - FLAGS = -march=rv32imac_zicsr_zifencei - LINK_FLAGS = -nostartfiles -march=rv32imac_zicsr_zifencei -Wl,--cref -Wl,--defsym=IDF_TARGET_ESP32H2=0 -Wl,--Map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/open-thread-rcp.map -Wl,--no-warn-rwx-segments -Wl,--orphan-handling=warn -fno-rtti -fno-lto -Wl,--gc-sections -Wl,--warn-common -T rom.api.ld -T esp32h2.peripherals.ld -T esp32h2.rom.ld -T esp32h2.rom.api.ld -T esp32h2.rom.libgcc.ld -T esp32h2.rom.wdt.ld -T esp32h2.rom.systimer.ld -T esp32h2.rom.version.ld -T esp32h2.rom.libc.ld -T esp32h2.rom.libc-suboptimal_for_misaligned_mem.ld -T esp32h2.rom.newlib.ld -T esp32h2.rom.heap.ld -T memory.ld -T sections.ld - LINK_LIBRARIES = esp-idf/riscv/libriscv.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/app_update/libapp_update.a esp-idf/esp_partition/libesp_partition.a esp-idf/efuse/libefuse.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/soc/libsoc.a esp-idf/esp_security/libesp_security.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_vfs_console/libesp_vfs_console.a esp-idf/vfs/libvfs.a esp-idf/lwip/liblwip.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_ana_cmpr/libesp_driver_ana_cmpr.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_parlio/libesp_driver_parlio.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/driver/libdriver.a esp-idf/console/libconsole.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/esp_phy/libesp_phy.a esp-idf/ieee802154/libieee802154.a esp-idf/openthread/libopenthread.a esp-idf/main/libmain.a esp-idf/riscv/libriscv.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/app_update/libapp_update.a esp-idf/esp_partition/libesp_partition.a esp-idf/efuse/libefuse.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/soc/libsoc.a esp-idf/esp_security/libesp_security.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_vfs_console/libesp_vfs_console.a esp-idf/vfs/libvfs.a esp-idf/lwip/liblwip.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_ana_cmpr/libesp_driver_ana_cmpr.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_parlio/libesp_driver_parlio.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/driver/libdriver.a esp-idf/console/libconsole.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/esp_phy/libesp_phy.a esp-idf/ieee802154/libieee802154.a esp-idf/openthread/libopenthread.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/riscv/libriscv.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/app_update/libapp_update.a esp-idf/esp_partition/libesp_partition.a esp-idf/efuse/libefuse.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/soc/libsoc.a esp-idf/esp_security/libesp_security.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_vfs_console/libesp_vfs_console.a esp-idf/vfs/libvfs.a esp-idf/lwip/liblwip.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_ana_cmpr/libesp_driver_ana_cmpr.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_parlio/libesp_driver_parlio.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/driver/libdriver.a esp-idf/console/libconsole.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/esp_phy/libesp_phy.a esp-idf/ieee802154/libieee802154.a esp-idf/openthread/libopenthread.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/riscv/libriscv.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/app_update/libapp_update.a esp-idf/esp_partition/libesp_partition.a esp-idf/efuse/libefuse.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/soc/libsoc.a esp-idf/esp_security/libesp_security.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_vfs_console/libesp_vfs_console.a esp-idf/vfs/libvfs.a esp-idf/lwip/liblwip.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_ana_cmpr/libesp_driver_ana_cmpr.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_parlio/libesp_driver_parlio.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/driver/libdriver.a esp-idf/console/libconsole.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/esp_phy/libesp_phy.a esp-idf/ieee802154/libieee802154.a esp-idf/openthread/libopenthread.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/riscv/libriscv.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_pm/libesp_pm.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/app_update/libapp_update.a esp-idf/esp_partition/libesp_partition.a esp-idf/efuse/libefuse.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/soc/libsoc.a esp-idf/esp_security/libesp_security.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_vfs_console/libesp_vfs_console.a esp-idf/vfs/libvfs.a esp-idf/lwip/liblwip.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_ana_cmpr/libesp_driver_ana_cmpr.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_parlio/libesp_driver_parlio.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/driver/libdriver.a esp-idf/console/libconsole.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/esp_phy/libesp_phy.a esp-idf/ieee802154/libieee802154.a esp-idf/openthread/libopenthread.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a -u esp_timer_init_include_func -Wl,--wrap=mbedtls_ecdsa_verify -Wl,--wrap=mbedtls_ecdsa_verify_restartable -Wl,--wrap=mbedtls_ecdsa_read_signature -Wl,--wrap=mbedtls_ecdsa_read_signature_restartable -u esp_app_desc -u esp_efuse_startup_include_func -u start_app -u __ubsan_include -u esp_system_include_startup_funcs -u tlsf_set_rom_patches -u esp_rom_include_multi_heap_patch -u abort -u esp_security_init_include_impl -u rv_core_critical_regs_save -u rv_core_critical_regs_restore -u esp_sleep_gpio_include -Wl,--undefined=FreeRTOS_openocd_params -u app_main -lc -lm -u esp_libc_include_heap_impl -u esp_libc_include_reent_syscalls_impl -u esp_libc_include_syscalls_impl -u esp_libc_include_pthread_impl -u esp_libc_include_assert_impl -u esp_libc_include_getentropy_impl -u esp_libc_include_init_funcs -u esp_libc_init_funcs --specs=nano.specs -u pthread_include_pthread_impl -u pthread_include_pthread_cond_var_impl -u pthread_include_pthread_local_storage_impl -u pthread_include_pthread_rwlock_impl -u pthread_include_pthread_semaphore_impl -Wl,--wrap=__register_frame_info_bases -Wl,--wrap=__register_frame_info -Wl,--wrap=__register_frame -Wl,--wrap=__register_frame_info_table_bases -Wl,--wrap=__register_frame_info_table -Wl,--wrap=__register_frame_table -Wl,--wrap=__deregister_frame_info_bases -Wl,--wrap=__deregister_frame_info -Wl,--wrap=_Unwind_Find_FDE -Wl,--wrap=_Unwind_GetGR -Wl,--wrap=_Unwind_GetCFA -Wl,--wrap=_Unwind_GetIP -Wl,--wrap=_Unwind_GetIPInfo -Wl,--wrap=_Unwind_GetRegionStart -Wl,--wrap=_Unwind_GetDataRelBase -Wl,--wrap=_Unwind_GetTextRelBase -Wl,--wrap=_Unwind_SetIP -Wl,--wrap=_Unwind_SetGR -Wl,--wrap=_Unwind_GetLanguageSpecificData -Wl,--wrap=_Unwind_FindEnclosingFunction -Wl,--wrap=_Unwind_Resume -Wl,--wrap=_Unwind_RaiseException -Wl,--wrap=_Unwind_DeleteException -Wl,--wrap=_Unwind_ForcedUnwind -Wl,--wrap=_Unwind_Resume_or_Rethrow -Wl,--wrap=_Unwind_Backtrace -Wl,--wrap=__cxa_call_unexpected -Wl,--wrap=__gxx_personality_v0 -Wl,--wrap=__cxa_throw -Wl,--wrap=__cxa_allocate_exception -lstdc++ esp-idf/pthread/libpthread.a esp-idf/newlib/libnewlib.a -u __cxa_guard_dummy -u __cxx_init_dummy -lgcc esp-idf/cxx/libcxx.a -u __cxx_fatal_exception -u uart_vfs_include_dev_init -u usb_serial_jtag_vfs_include_dev_init -u usb_serial_jtag_connection_monitor_include -u esp_vfs_include_console_register -u vfs_include_syscalls_impl -u esp_vfs_include_nullfs_register -u include_esp_phy_override -lphy -lbtbb esp-idf/esp_phy/libesp_phy.a -lphy -lbtbb esp-idf/esp_phy/libesp_phy.a -lphy -lbtbb - LINK_PATH = -LC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/ld -LC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/ld -LC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/ld -LC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/ld -LC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2 - OBJECT_DIR = CMakeFiles\open-thread-rcp.elf.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = CMakeFiles\open-thread-rcp.elf.dir\ - TARGET_FILE = open-thread-rcp.elf - TARGET_PDB = open-thread-rcp.elf.pdb - RSP_FILE = CMakeFiles\open-thread-rcp.elf.rsp - - -############################################# -# Utility command for size - -build size: phony CMakeFiles/size - - -############################################# -# Utility command for size-files - -build size-files: phony CMakeFiles/size-files - - -############################################# -# Utility command for size-components - -build size-components: phony CMakeFiles/size-components - - -############################################# -# Utility command for uf2 - -build uf2: phony CMakeFiles/uf2 - - -############################################# -# Utility command for uf2-app - -build uf2-app: phony CMakeFiles/uf2-app - - -############################################# -# Utility command for __ldgen_output_sections.ld - -build __ldgen_output_sections.ld: phony CMakeFiles/__ldgen_output_sections.ld esp-idf/esp_system/ld/sections.ld esp-idf/main/libmain.a esp-idf/riscv/libriscv.a - - -############################################# -# Utility command for edit_cache - -build CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build edit_cache: phony CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build rebuild_cache: phony CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build list_install_components: phony - - -############################################# -# Utility command for install - -build CMakeFiles/install.util: CUSTOM_COMMAND all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build install: phony CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build CMakeFiles/install/local.util: CUSTOM_COMMAND all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build install/local: phony CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build CMakeFiles/install/strip.util: CUSTOM_COMMAND all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build install/strip: phony CMakeFiles/install/strip.util - - -############################################# -# Custom command for CMakeFiles\menuconfig - -build CMakeFiles/menuconfig | ${cmake_ninja_workdir}CMakeFiles/menuconfig: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build && C:\Users\Laurent\.espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe C:/Users/Laurent/esp/v5.5.1/esp-idf/tools/kconfig_new/prepare_kconfig_files.py --list-separator=semicolon --env-file C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config.env && C:\Users\Laurent\.espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe -m kconfgen --list-separator=semicolon --kconfig C:/Users/Laurent/esp/v5.5.1/esp-idf/Kconfig --sdkconfig-rename C:/Users/Laurent/esp/v5.5.1/esp-idf/sdkconfig.rename --config C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/sdkconfig --defaults C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/sdkconfig.defaults --env IDF_MINIMAL_BUILD=y --env-file C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config.env --env IDF_TARGET=esp32h2 --env IDF_TOOLCHAIN=gcc --env IDF_ENV_FPGA= --env IDF_INIT_VERSION=5.5.1 --dont-write-deprecated --output config C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/sdkconfig && C:\Users\Laurent\.espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe C:/Users/Laurent/esp/v5.5.1/esp-idf/tools/check_term.py && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E env COMPONENT_KCONFIGS_SOURCE_FILE=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/kconfigs.in COMPONENT_KCONFIGS_PROJBUILD_SOURCE_FILE=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/kconfigs_projbuild.in KCONFIG_CONFIG=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/sdkconfig IDF_TARGET=esp32h2 IDF_TOOLCHAIN=gcc IDF_ENV_FPGA= IDF_INIT_VERSION=5.5.1 IDF_MINIMAL_BUILD=y C:/Users/Laurent/.espressif/python_env/idf5.5_py3.11_env/Scripts/python.exe -m menuconfig C:/Users/Laurent/esp/v5.5.1/esp-idf/Kconfig && C:\Users\Laurent\.espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe -m kconfgen --list-separator=semicolon --kconfig C:/Users/Laurent/esp/v5.5.1/esp-idf/Kconfig --sdkconfig-rename C:/Users/Laurent/esp/v5.5.1/esp-idf/sdkconfig.rename --config C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/sdkconfig --defaults C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/sdkconfig.defaults --env IDF_MINIMAL_BUILD=y --env-file C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config.env --env IDF_TARGET=esp32h2 --env IDF_TOOLCHAIN=gcc --env IDF_ENV_FPGA= --env IDF_INIT_VERSION=5.5.1 --output config C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/sdkconfig" - pool = console - - -############################################# -# Custom command for CMakeFiles\confserver - -build CMakeFiles/confserver | ${cmake_ninja_workdir}CMakeFiles/confserver: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build && C:\Users\Laurent\.espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe C:/Users/Laurent/esp/v5.5.1/esp-idf/tools/kconfig_new/prepare_kconfig_files.py --list-separator=semicolon --env-file C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config.env && C:\Users\Laurent\.espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe -m kconfserver --env-file C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config.env --kconfig C:/Users/Laurent/esp/v5.5.1/esp-idf/Kconfig --sdkconfig-rename C:/Users/Laurent/esp/v5.5.1/esp-idf/sdkconfig.rename --config C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/sdkconfig" - pool = console - - -############################################# -# Custom command for CMakeFiles\save-defconfig - -build CMakeFiles/save-defconfig | ${cmake_ninja_workdir}CMakeFiles/save-defconfig: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build && C:\Users\Laurent\.espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe C:/Users/Laurent/esp/v5.5.1/esp-idf/tools/kconfig_new/prepare_kconfig_files.py --list-separator=semicolon --env-file C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config.env && C:\Users\Laurent\.espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe -m kconfgen --list-separator=semicolon --kconfig C:/Users/Laurent/esp/v5.5.1/esp-idf/Kconfig --sdkconfig-rename C:/Users/Laurent/esp/v5.5.1/esp-idf/sdkconfig.rename --config C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/sdkconfig --defaults C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/sdkconfig.defaults --env IDF_MINIMAL_BUILD=y --env-file C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config.env --dont-write-deprecated --output savedefconfig C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/sdkconfig.defaults" - pool = console - - -############################################# -# Phony custom command for CMakeFiles\bootloader - -build CMakeFiles/bootloader | ${cmake_ninja_workdir}CMakeFiles/bootloader: phony CMakeFiles/bootloader-complete || esp-idf/partition_table/partition_table_bin - - -############################################# -# Custom command for CMakeFiles\bootloader-complete - -build CMakeFiles/bootloader-complete bootloader-prefix/src/bootloader-stamp/bootloader-done | ${cmake_ninja_workdir}CMakeFiles/bootloader-complete ${cmake_ninja_workdir}bootloader-prefix/src/bootloader-stamp/bootloader-done: CUSTOM_COMMAND bootloader-prefix/src/bootloader-stamp/bootloader-install bootloader-prefix/src/bootloader-stamp/bootloader-mkdir bootloader-prefix/src/bootloader-stamp/bootloader-download bootloader-prefix/src/bootloader-stamp/bootloader-update bootloader-prefix/src/bootloader-stamp/bootloader-patch bootloader-prefix/src/bootloader-stamp/bootloader-configure bootloader-prefix/src/bootloader-stamp/bootloader-build bootloader-prefix/src/bootloader-stamp/bootloader-install || esp-idf/partition_table/partition_table_bin - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E make_directory C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/CMakeFiles && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E touch C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/CMakeFiles/bootloader-complete && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E touch C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader-prefix/src/bootloader-stamp/bootloader-done" - DESC = Completed 'bootloader' - restat = 1 - - -############################################# -# Custom command for bootloader-prefix\src\bootloader-stamp\bootloader-build - -build bootloader-prefix/src/bootloader-stamp/bootloader-build bootloader/bootloader.elf bootloader/bootloader.bin bootloader/bootloader.map | ${cmake_ninja_workdir}bootloader-prefix/src/bootloader-stamp/bootloader-build ${cmake_ninja_workdir}bootloader/bootloader.elf ${cmake_ninja_workdir}bootloader/bootloader.bin ${cmake_ninja_workdir}bootloader/bootloader.map: CUSTOM_COMMAND bootloader-prefix/src/bootloader-stamp/bootloader-configure || esp-idf/partition_table/partition_table_bin - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --build ." - DESC = Performing build step for 'bootloader' - restat = 1 - - -############################################# -# Custom command for bootloader-prefix\src\bootloader-stamp\bootloader-configure - -build bootloader-prefix/src/bootloader-stamp/bootloader-configure | ${cmake_ninja_workdir}bootloader-prefix/src/bootloader-stamp/bootloader-configure: CUSTOM_COMMAND bootloader-prefix/tmp/bootloader-cfgcmd.txt bootloader-prefix/src/bootloader-stamp/bootloader-patch || esp-idf/partition_table/partition_table_bin - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DSDKCONFIG=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/sdkconfig -DIDF_PATH=C:/Users/Laurent/esp/v5.5.1/esp-idf -DIDF_TARGET=esp32h2 -DPYTHON_DEPS_CHECKED=1 -DPYTHON=C:/Users/Laurent/.espressif/python_env/idf5.5_py3.11_env/Scripts/python.exe -DEXTRA_COMPONENT_DIRS=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader -DPROJECT_SOURCE_DIR=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp -DIGNORE_EXTRA_COMPONENT= -GNinja -S C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject -B C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E touch C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader-prefix/src/bootloader-stamp/bootloader-configure" - DESC = Performing configure step for 'bootloader' - restat = 1 - - -############################################# -# Custom command for bootloader-prefix\src\bootloader-stamp\bootloader-download - -build bootloader-prefix/src/bootloader-stamp/bootloader-download | ${cmake_ninja_workdir}bootloader-prefix/src/bootloader-stamp/bootloader-download: CUSTOM_COMMAND bootloader-prefix/src/bootloader-stamp/bootloader-source_dirinfo.txt bootloader-prefix/src/bootloader-stamp/bootloader-mkdir || esp-idf/partition_table/partition_table_bin - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E echo_append && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E touch C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader-prefix/src/bootloader-stamp/bootloader-download" - DESC = No download step for 'bootloader' - restat = 1 - - -############################################# -# Custom command for bootloader-prefix\src\bootloader-stamp\bootloader-install - -build bootloader-prefix/src/bootloader-stamp/bootloader-install | ${cmake_ninja_workdir}bootloader-prefix/src/bootloader-stamp/bootloader-install: CUSTOM_COMMAND bootloader-prefix/src/bootloader-stamp/bootloader-build || esp-idf/partition_table/partition_table_bin - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\bootloader && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E echo_append" - DESC = No install step for 'bootloader' - - -############################################# -# Custom command for bootloader-prefix\src\bootloader-stamp\bootloader-mkdir - -build bootloader-prefix/src/bootloader-stamp/bootloader-mkdir | ${cmake_ninja_workdir}bootloader-prefix/src/bootloader-stamp/bootloader-mkdir: CUSTOM_COMMAND || esp-idf/partition_table/partition_table_bin - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -Dcfgdir= -P C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader-prefix/tmp/bootloader-mkdirs.cmake && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E touch C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader-prefix/src/bootloader-stamp/bootloader-mkdir" - DESC = Creating directories for 'bootloader' - restat = 1 - - -############################################# -# Custom command for bootloader-prefix\src\bootloader-stamp\bootloader-patch - -build bootloader-prefix/src/bootloader-stamp/bootloader-patch | ${cmake_ninja_workdir}bootloader-prefix/src/bootloader-stamp/bootloader-patch: CUSTOM_COMMAND bootloader-prefix/src/bootloader-stamp/bootloader-patch-info.txt bootloader-prefix/src/bootloader-stamp/bootloader-update || esp-idf/partition_table/partition_table_bin - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E echo_append && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E touch C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch" - DESC = No patch step for 'bootloader' - restat = 1 - - -############################################# -# Custom command for bootloader-prefix\src\bootloader-stamp\bootloader-update - -build bootloader-prefix/src/bootloader-stamp/bootloader-update | ${cmake_ninja_workdir}bootloader-prefix/src/bootloader-stamp/bootloader-update: CUSTOM_COMMAND bootloader-prefix/src/bootloader-stamp/bootloader-update-info.txt bootloader-prefix/src/bootloader-stamp/bootloader-download || esp-idf/partition_table/partition_table_bin - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E echo_append && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E touch C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader-prefix/src/bootloader-stamp/bootloader-update" - DESC = No update step for 'bootloader' - restat = 1 - - -############################################# -# Phony custom command for CMakeFiles\gen_project_binary - -build CMakeFiles/gen_project_binary | ${cmake_ninja_workdir}CMakeFiles/gen_project_binary: phony .bin_timestamp || __ldgen_output_sections.ld _project_elf_src esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_driver_ana_cmpr/libesp_driver_ana_cmpr.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_parlio/libesp_driver_parlio.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_event/libesp_event.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_security/libesp_security.a esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory.ld esp-idf/esp_system/sections.ld.in esp-idf/esp_timer/libesp_timer.a esp-idf/esp_vfs_console/libesp_vfs_console.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/ieee802154/libieee802154.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/openthread/libopenthread.a esp-idf/pthread/libpthread.a esp-idf/riscv/libriscv.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/vfs/libvfs.a open-thread-rcp.elf - - -############################################# -# Custom command for .bin_timestamp - -build .bin_timestamp | ${cmake_ninja_workdir}.bin_timestamp: CUSTOM_COMMAND open-thread-rcp.elf || __ldgen_output_sections.ld _project_elf_src esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_driver_ana_cmpr/libesp_driver_ana_cmpr.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_parlio/libesp_driver_parlio.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_event/libesp_event.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_security/libesp_security.a esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory.ld esp-idf/esp_system/sections.ld.in esp-idf/esp_timer/libesp_timer.a esp-idf/esp_vfs_console/libesp_vfs_console.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/ieee802154/libieee802154.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/openthread/libopenthread.a esp-idf/pthread/libpthread.a esp-idf/riscv/libriscv.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/vfs/libvfs.a open-thread-rcp.elf - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build && C:\Users\Laurent\.espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esptool_py/esptool/esptool.py --chip esp32h2 elf2image --flash_mode dio --flash_freq 48m --flash_size 2MB --elf-sha256-offset 0xb0 --flash-mmu-page-size 32KB --min-rev-full 0 --max-rev-full 199 -o C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/open-thread-rcp.bin C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/open-thread-rcp.elf && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E echo "Generated C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/open-thread-rcp.bin" && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E md5sum C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/open-thread-rcp.bin > C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/.bin_timestamp" - DESC = Generating binary image from built executable - restat = 1 - - -############################################# -# Phony custom command for CMakeFiles\app - -build CMakeFiles/app | ${cmake_ninja_workdir}CMakeFiles/app: phony || __ldgen_output_sections.ld _project_elf_src esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_driver_ana_cmpr/libesp_driver_ana_cmpr.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_parlio/libesp_driver_parlio.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_event/libesp_event.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_security/libesp_security.a esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory.ld esp-idf/esp_system/sections.ld.in esp-idf/esp_timer/libesp_timer.a esp-idf/esp_vfs_console/libesp_vfs_console.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/esptool_py/app_check_size esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/ieee802154/libieee802154.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/openthread/libopenthread.a esp-idf/partition_table/partition_table_bin esp-idf/pthread/libpthread.a esp-idf/riscv/libriscv.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/vfs/libvfs.a gen_project_binary open-thread-rcp.elf - - -############################################# -# Custom command for CMakeFiles\erase_flash - -build CMakeFiles/erase_flash | ${cmake_ninja_workdir}CMakeFiles/erase_flash: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\esp\v5.5.1\esp-idf\components\esptool_py && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -D IDF_PATH=C:/Users/Laurent/esp/v5.5.1/esp-idf -D SERIAL_TOOL=C:/Users/Laurent/.espressif/python_env/idf5.5_py3.11_env/Scripts/python.exe;;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esptool_py/esptool/esptool.py;--chip;esp32h2 -D SERIAL_TOOL_ARGS=erase_flash -P run_serial_tool.cmake" - pool = console - - -############################################# -# Custom command for CMakeFiles\merge-bin - -build CMakeFiles/merge-bin | ${cmake_ninja_workdir}CMakeFiles/merge-bin: CUSTOM_COMMAND || __ldgen_output_sections.ld _project_elf_src bootloader esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_driver_ana_cmpr/libesp_driver_ana_cmpr.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_parlio/libesp_driver_parlio.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_event/libesp_event.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_security/libesp_security.a esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory.ld esp-idf/esp_system/sections.ld.in esp-idf/esp_timer/libesp_timer.a esp-idf/esp_vfs_console/libesp_vfs_console.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/ieee802154/libieee802154.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/openthread/libopenthread.a esp-idf/partition_table/partition_table_bin esp-idf/pthread/libpthread.a esp-idf/riscv/libriscv.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/vfs/libvfs.a gen_project_binary open-thread-rcp.elf - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\esp\v5.5.1\esp-idf\components\esptool_py && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -D IDF_PATH=C:/Users/Laurent/esp/v5.5.1/esp-idf -D SERIAL_TOOL=C:/Users/Laurent/.espressif/python_env/idf5.5_py3.11_env/Scripts/python.exe;;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esptool_py/esptool/esptool.py;--chip;esp32h2 -D SERIAL_TOOL_ARGS=merge_bin;-o;C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/merged-binary.bin;@C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/flash_args -D WORKING_DIRECTORY=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build -P run_serial_tool.cmake" - pool = console - - -############################################# -# Custom command for CMakeFiles\monitor - -build CMakeFiles/monitor | ${cmake_ninja_workdir}CMakeFiles/monitor: CUSTOM_COMMAND || __ldgen_output_sections.ld _project_elf_src esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_driver_ana_cmpr/libesp_driver_ana_cmpr.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_parlio/libesp_driver_parlio.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_event/libesp_event.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_security/libesp_security.a esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory.ld esp-idf/esp_system/sections.ld.in esp-idf/esp_timer/libesp_timer.a esp-idf/esp_vfs_console/libesp_vfs_console.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/ieee802154/libieee802154.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/openthread/libopenthread.a esp-idf/pthread/libpthread.a esp-idf/riscv/libriscv.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/vfs/libvfs.a open-thread-rcp.elf - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\esp\v5.5.1\esp-idf\components\esptool_py && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -D IDF_PATH=C:/Users/Laurent/esp/v5.5.1/esp-idf -D SERIAL_TOOL=C:/Users/Laurent/.espressif/python_env/idf5.5_py3.11_env/Scripts/python.exe;-m;esp_idf_monitor -D SERIAL_TOOL_ARGS=--toolchain-prefix;riscv32-esp-elf-;;--target;esp32h2;;--revision;0;;--decode-panic;backtrace;;C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/open-thread-rcp.elf -D WORKING_DIRECTORY=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build -P run_serial_tool.cmake" - pool = console - - -############################################# -# Custom command for CMakeFiles\flash - -build CMakeFiles/flash | ${cmake_ninja_workdir}CMakeFiles/flash: CUSTOM_COMMAND || __ldgen_output_sections.ld _project_elf_src app bootloader esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_driver_ana_cmpr/libesp_driver_ana_cmpr.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_parlio/libesp_driver_parlio.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_event/libesp_event.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_security/libesp_security.a esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory.ld esp-idf/esp_system/sections.ld.in esp-idf/esp_timer/libesp_timer.a esp-idf/esp_vfs_console/libesp_vfs_console.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/esptool_py/app_check_size esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/ieee802154/libieee802154.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/openthread/libopenthread.a esp-idf/partition_table/partition_table_bin esp-idf/pthread/libpthread.a esp-idf/riscv/libriscv.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/vfs/libvfs.a gen_project_binary open-thread-rcp.elf - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\esp\v5.5.1\esp-idf\components\esptool_py && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -D IDF_PATH=C:/Users/Laurent/esp/v5.5.1/esp-idf -D SERIAL_TOOL=C:/Users/Laurent/.espressif/python_env/idf5.5_py3.11_env/Scripts/python.exe;;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esptool_py/esptool/esptool.py;--chip;esp32h2 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build -P C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esptool_py/run_serial_tool.cmake" - pool = console - - -############################################# -# Custom command for CMakeFiles\encrypted-flash - -build CMakeFiles/encrypted-flash | ${cmake_ninja_workdir}CMakeFiles/encrypted-flash: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E echo "Error: The target encrypted-flash requires" && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E echo "CONFIG_SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT to be enabled." && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E env "FAIL_MESSAGE=Failed executing target (see errors on lines above)" C:/Users/Laurent/.espressif/tools/cmake/3.30.2/bin/cmake.exe -P C:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/scripts/fail.cmake" - - -############################################# -# Phony custom command for CMakeFiles\_project_elf_src - -build CMakeFiles/_project_elf_src | ${cmake_ninja_workdir}CMakeFiles/_project_elf_src: phony project_elf_src_esp32h2.c - - -############################################# -# Custom command for project_elf_src_esp32h2.c - -build project_elf_src_esp32h2.c | ${cmake_ninja_workdir}project_elf_src_esp32h2.c: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E touch C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/project_elf_src_esp32h2.c" - DESC = Generating project_elf_src_esp32h2.c - restat = 1 - - -############################################# -# Custom command for CMakeFiles\size - -build CMakeFiles/size | ${cmake_ninja_workdir}CMakeFiles/size: CUSTOM_COMMAND open-thread-rcp.map - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -D IDF_SIZE_TOOL=C:/Users/Laurent/.espressif/python_env/idf5.5_py3.11_env/Scripts/python.exe;-m;esp_idf_size -D MAP_FILE=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/open-thread-rcp.map -D OUTPUT_JSON= -P C:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/run_size_tool.cmake" - pool = console - - -############################################# -# Custom command for CMakeFiles\size-files - -build CMakeFiles/size-files | ${cmake_ninja_workdir}CMakeFiles/size-files: CUSTOM_COMMAND open-thread-rcp.map - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -D IDF_SIZE_TOOL=C:/Users/Laurent/.espressif/python_env/idf5.5_py3.11_env/Scripts/python.exe;-m;esp_idf_size -D IDF_SIZE_MODE=--files -D MAP_FILE=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/open-thread-rcp.map -D OUTPUT_JSON= -P C:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/run_size_tool.cmake" - pool = console - - -############################################# -# Custom command for CMakeFiles\size-components - -build CMakeFiles/size-components | ${cmake_ninja_workdir}CMakeFiles/size-components: CUSTOM_COMMAND open-thread-rcp.map - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -D IDF_SIZE_TOOL=C:/Users/Laurent/.espressif/python_env/idf5.5_py3.11_env/Scripts/python.exe;-m;esp_idf_size -D IDF_SIZE_MODE=--archives -D MAP_FILE=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/open-thread-rcp.map -D OUTPUT_JSON= -P C:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/run_size_tool.cmake" - pool = console - - -############################################# -# Custom command for CMakeFiles\uf2 - -build CMakeFiles/uf2 | ${cmake_ninja_workdir}CMakeFiles/uf2: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -D IDF_PATH=C:/Users/Laurent/esp/v5.5.1/esp-idf -D UF2_CMD=C:/Users/Laurent/.espressif/python_env/idf5.5_py3.11_env/Scripts/python.exe;C:/Users/Laurent/esp/v5.5.1/esp-idf/tools/mkuf2.py;write;--chip;esp32h2 -D UF2_ARGS=--json;C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/flasher_args.json;-o;C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/uf2.bin -P C:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/run_uf2_cmds.cmake" - pool = console - - -############################################# -# Custom command for CMakeFiles\uf2-app - -build CMakeFiles/uf2-app | ${cmake_ninja_workdir}CMakeFiles/uf2-app: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -D IDF_PATH=C:/Users/Laurent/esp/v5.5.1/esp-idf -D UF2_CMD=C:/Users/Laurent/.espressif/python_env/idf5.5_py3.11_env/Scripts/python.exe;C:/Users/Laurent/esp/v5.5.1/esp-idf/tools/mkuf2.py;write;--chip;esp32h2 -D UF2_ARGS=--json;C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/flasher_args.json;-o;C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/uf2-app.bin;--bin;app -P C:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/run_uf2_cmds.cmake" - pool = console - - -############################################# -# Phony custom command for CMakeFiles\__ldgen_output_sections.ld - -build CMakeFiles/__ldgen_output_sections.ld | ${cmake_ninja_workdir}CMakeFiles/__ldgen_output_sections.ld: phony esp-idf/esp_system/ld/sections.ld || esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_driver_ana_cmpr/libesp_driver_ana_cmpr.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_parlio/libesp_driver_parlio.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_event/libesp_event.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_security/libesp_security.a esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory.ld esp-idf/esp_system/sections.ld.in esp-idf/esp_timer/libesp_timer.a esp-idf/esp_vfs_console/libesp_vfs_console.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/ieee802154/libieee802154.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/openthread/libopenthread.a esp-idf/pthread/libpthread.a esp-idf/riscv/libriscv.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/vfs/libvfs.a - - -############################################# -# Custom command for esp-idf\esp_system\ld\sections.ld - -build esp-idf/esp_system/ld/sections.ld | ${cmake_ninja_workdir}esp-idf/esp_system/ld/sections.ld: CUSTOM_COMMAND esp-idf/esp_system/ld/sections.ld.in C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/linker.lf C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/linker.lf C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/linker.lf C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/linker.lf C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/linker.lf C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/linker.lf C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/app.lf C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/common.lf C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/soc.lf C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/linker.lf C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/linker.lf C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/linker.lf C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/linker.lf C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/linker.lf C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/linker.lf C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/linker.lf C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/linker.lf C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/linker.lf C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/linker_common.lf C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/linker.lf C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/src/newlib.lf C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/src/system_libs.lf C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/linker.lf C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/linker.lf C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/linker.lf C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/linker.lf C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/linker.lf C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/linker.lf C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/linker.lf C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/linker.lf C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/linker.lf C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/linker.lf C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/linker.lf C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/linker.lf C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/linker.lf C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_bitscrambler/linker.lf C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/linker.lf C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/linker.lf C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/linker.lf C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/linker.lf C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/linker.lf C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/linker.lf C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/linker.lf C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/linker.lf C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/linker.lf C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/linker.lf esp-idf/riscv/libriscv.a esp-idf/cxx/libcxx.a esp-idf/newlib/libnewlib.a esp-idf/freertos/libfreertos.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/heap/libheap.a esp-idf/log/liblog.a esp-idf/soc/libsoc.a esp-idf/hal/libhal.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_common/libesp_common.a esp-idf/esp_system/libesp_system.a esp-idf/riscv/libriscv.a esp-idf/spi_flash/libspi_flash.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/mbedtls/libmbedtls.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_timer/libesp_timer.a esp-idf/lwip/liblwip.a esp-idf/vfs/libvfs.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_mm/libesp_mm.a esp-idf/vfs/libvfs.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_vfs_console/libesp_vfs_console.a esp-idf/openthread/libopenthread.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_event/libesp_event.a esp-idf/driver/libdriver.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_ana_cmpr/libesp_driver_ana_cmpr.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/efuse/libefuse.a esp-idf/esp_partition/libesp_partition.a esp-idf/app_update/libapp_update.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_parlio/libesp_driver_parlio.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/console/libconsole.a esp-idf/ieee802154/libieee802154.a esp-idf/esp_phy/libesp_phy.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/esp_security/libesp_security.a esp-idf/esp_mm/libesp_mm.a esp-idf/efuse/libefuse.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/esp_security/libesp_security.a esp-idf/pthread/libpthread.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/app_update/libapp_update.a esp-idf/esp_partition/libesp_partition.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/spi_flash/libspi_flash.a esp-idf/esp_system/libesp_system.a esp-idf/esp_common/libesp_common.a esp-idf/esp_rom/libesp_rom.a esp-idf/hal/libhal.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/soc/libsoc.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/freertos/libfreertos.a esp-idf/newlib/libnewlib.a esp-idf/pthread/libpthread.a esp-idf/cxx/libcxx.a esp-idf/esp_event/libesp_event.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_vfs_console/libesp_vfs_console.a esp-idf/lwip/liblwip.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_ana_cmpr/libesp_driver_ana_cmpr.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_parlio/libesp_driver_parlio.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/driver/libdriver.a esp-idf/console/libconsole.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/esp_phy/libesp_phy.a esp-idf/ieee802154/libieee802154.a esp-idf/openthread/libopenthread.a esp-idf/main/libmain.a C$:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/sdkconfig || esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_driver_ana_cmpr/libesp_driver_ana_cmpr.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_parlio/libesp_driver_parlio.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_event/libesp_event.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_security/libesp_security.a esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory.ld esp-idf/esp_system/sections.ld.in esp-idf/esp_timer/libesp_timer.a esp-idf/esp_vfs_console/libesp_vfs_console.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/ieee802154/libieee802154.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/openthread/libopenthread.a esp-idf/pthread/libpthread.a esp-idf/riscv/libriscv.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/vfs/libvfs.a - COMMAND = CMakeFiles\sections.ld-d65dc84.bat 95425aea1849e986 - DESC = Generating esp-idf/esp_system/ld/sections.ld - restat = 1 - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/CMakeLists.txt -# ============================================================================= - - -############################################# -# Utility command for edit_cache - -build esp-idf/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/edit_cache: phony esp-idf/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/rebuild_cache: phony esp-idf/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/install: phony esp-idf/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/install/local: phony esp-idf/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/install/strip: phony esp-idf/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_riscv - - -############################################# -# Order-only phony target for __idf_riscv - -build cmake_object_order_depends_target___idf_riscv: phony || cmake_object_order_depends_target___idf_esp_driver_gpio - -build esp-idf/riscv/CMakeFiles/__idf_riscv.dir/instruction_decode.c.obj: C_COMPILER____idf_riscv_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/instruction_decode.c || cmake_object_order_depends_target___idf_riscv - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\riscv\CMakeFiles\__idf_riscv.dir\instruction_decode.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\riscv\CMakeFiles\__idf_riscv.dir - OBJECT_FILE_DIR = esp-idf\riscv\CMakeFiles\__idf_riscv.dir - TARGET_COMPILE_PDB = esp-idf\riscv\CMakeFiles\__idf_riscv.dir\__idf_riscv.pdb - TARGET_PDB = esp-idf\riscv\libriscv.pdb - -build esp-idf/riscv/CMakeFiles/__idf_riscv.dir/interrupt.c.obj: C_COMPILER____idf_riscv_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/interrupt.c || cmake_object_order_depends_target___idf_riscv - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\riscv\CMakeFiles\__idf_riscv.dir\interrupt.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\riscv\CMakeFiles\__idf_riscv.dir - OBJECT_FILE_DIR = esp-idf\riscv\CMakeFiles\__idf_riscv.dir - TARGET_COMPILE_PDB = esp-idf\riscv\CMakeFiles\__idf_riscv.dir\__idf_riscv.pdb - TARGET_PDB = esp-idf\riscv\libriscv.pdb - -build esp-idf/riscv/CMakeFiles/__idf_riscv.dir/rv_utils.c.obj: C_COMPILER____idf_riscv_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/rv_utils.c || cmake_object_order_depends_target___idf_riscv - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\riscv\CMakeFiles\__idf_riscv.dir\rv_utils.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\riscv\CMakeFiles\__idf_riscv.dir - OBJECT_FILE_DIR = esp-idf\riscv\CMakeFiles\__idf_riscv.dir - TARGET_COMPILE_PDB = esp-idf\riscv\CMakeFiles\__idf_riscv.dir\__idf_riscv.pdb - TARGET_PDB = esp-idf\riscv\libriscv.pdb - -build esp-idf/riscv/CMakeFiles/__idf_riscv.dir/vectors.S.obj: ASM_COMPILER____idf_riscv_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/vectors.S || cmake_object_order_depends_target___idf_riscv - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\riscv\CMakeFiles\__idf_riscv.dir\vectors.S.obj.d - FLAGS = -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\riscv\CMakeFiles\__idf_riscv.dir - OBJECT_FILE_DIR = esp-idf\riscv\CMakeFiles\__idf_riscv.dir - TARGET_COMPILE_PDB = esp-idf\riscv\CMakeFiles\__idf_riscv.dir\__idf_riscv.pdb - TARGET_PDB = esp-idf\riscv\libriscv.pdb - -build esp-idf/riscv/CMakeFiles/__idf_riscv.dir/interrupt_plic.c.obj: C_COMPILER____idf_riscv_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/interrupt_plic.c || cmake_object_order_depends_target___idf_riscv - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\riscv\CMakeFiles\__idf_riscv.dir\interrupt_plic.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\riscv\CMakeFiles\__idf_riscv.dir - OBJECT_FILE_DIR = esp-idf\riscv\CMakeFiles\__idf_riscv.dir - TARGET_COMPILE_PDB = esp-idf\riscv\CMakeFiles\__idf_riscv.dir\__idf_riscv.pdb - TARGET_PDB = esp-idf\riscv\libriscv.pdb - -build esp-idf/riscv/CMakeFiles/__idf_riscv.dir/vectors_intc.S.obj: ASM_COMPILER____idf_riscv_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/vectors_intc.S || cmake_object_order_depends_target___idf_riscv - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\riscv\CMakeFiles\__idf_riscv.dir\vectors_intc.S.obj.d - FLAGS = -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\riscv\CMakeFiles\__idf_riscv.dir - OBJECT_FILE_DIR = esp-idf\riscv\CMakeFiles\__idf_riscv.dir - TARGET_COMPILE_PDB = esp-idf\riscv\CMakeFiles\__idf_riscv.dir\__idf_riscv.pdb - TARGET_PDB = esp-idf\riscv\libriscv.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_riscv - - -############################################# -# Link the static library esp-idf\riscv\libriscv.a - -build esp-idf/riscv/libriscv.a: C_STATIC_LIBRARY_LINKER____idf_riscv_ esp-idf/riscv/CMakeFiles/__idf_riscv.dir/instruction_decode.c.obj esp-idf/riscv/CMakeFiles/__idf_riscv.dir/interrupt.c.obj esp-idf/riscv/CMakeFiles/__idf_riscv.dir/rv_utils.c.obj esp-idf/riscv/CMakeFiles/__idf_riscv.dir/vectors.S.obj esp-idf/riscv/CMakeFiles/__idf_riscv.dir/interrupt_plic.c.obj esp-idf/riscv/CMakeFiles/__idf_riscv.dir/vectors_intc.S.obj || esp-idf/esp_driver_gpio/libesp_driver_gpio.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei - OBJECT_DIR = esp-idf\riscv\CMakeFiles\__idf_riscv.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = esp-idf\riscv\CMakeFiles\__idf_riscv.dir\__idf_riscv.pdb - TARGET_FILE = esp-idf\riscv\libriscv.a - TARGET_PDB = esp-idf\riscv\libriscv.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/riscv/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\riscv && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/riscv/edit_cache: phony esp-idf/riscv/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/riscv/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\riscv && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/riscv/rebuild_cache: phony esp-idf/riscv/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/riscv/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/riscv/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/riscv/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\riscv && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/riscv/install: phony esp-idf/riscv/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/riscv/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/riscv/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\riscv && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/riscv/install/local: phony esp-idf/riscv/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/riscv/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/riscv/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\riscv && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/riscv/install/strip: phony esp-idf/riscv/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_driver_gpio - - -############################################# -# Order-only phony target for __idf_esp_driver_gpio - -build cmake_object_order_depends_target___idf_esp_driver_gpio: phony || cmake_object_order_depends_target___idf_esp_timer - -build esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio.c.obj: C_COMPILER____idf_esp_driver_gpio_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/src/gpio.c || cmake_object_order_depends_target___idf_esp_driver_gpio - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir\src\gpio.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include - OBJECT_DIR = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir - OBJECT_FILE_DIR = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir\src - TARGET_COMPILE_PDB = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir\__idf_esp_driver_gpio.pdb - TARGET_PDB = esp-idf\esp_driver_gpio\libesp_driver_gpio.pdb - -build esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_glitch_filter_ops.c.obj: C_COMPILER____idf_esp_driver_gpio_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/src/gpio_glitch_filter_ops.c || cmake_object_order_depends_target___idf_esp_driver_gpio - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir\src\gpio_glitch_filter_ops.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include - OBJECT_DIR = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir - OBJECT_FILE_DIR = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir\src - TARGET_COMPILE_PDB = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir\__idf_esp_driver_gpio.pdb - TARGET_PDB = esp-idf\esp_driver_gpio\libesp_driver_gpio.pdb - -build esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/rtc_io.c.obj: C_COMPILER____idf_esp_driver_gpio_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/src/rtc_io.c || cmake_object_order_depends_target___idf_esp_driver_gpio - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir\src\rtc_io.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include - OBJECT_DIR = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir - OBJECT_FILE_DIR = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir\src - TARGET_COMPILE_PDB = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir\__idf_esp_driver_gpio.pdb - TARGET_PDB = esp-idf\esp_driver_gpio\libesp_driver_gpio.pdb - -build esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/dedic_gpio.c.obj: C_COMPILER____idf_esp_driver_gpio_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/src/dedic_gpio.c || cmake_object_order_depends_target___idf_esp_driver_gpio - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir\src\dedic_gpio.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include - OBJECT_DIR = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir - OBJECT_FILE_DIR = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir\src - TARGET_COMPILE_PDB = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir\__idf_esp_driver_gpio.pdb - TARGET_PDB = esp-idf\esp_driver_gpio\libesp_driver_gpio.pdb - -build esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_pin_glitch_filter.c.obj: C_COMPILER____idf_esp_driver_gpio_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/src/gpio_pin_glitch_filter.c || cmake_object_order_depends_target___idf_esp_driver_gpio - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir\src\gpio_pin_glitch_filter.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include - OBJECT_DIR = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir - OBJECT_FILE_DIR = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir\src - TARGET_COMPILE_PDB = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir\__idf_esp_driver_gpio.pdb - TARGET_PDB = esp-idf\esp_driver_gpio\libesp_driver_gpio.pdb - -build esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_flex_glitch_filter.c.obj: C_COMPILER____idf_esp_driver_gpio_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/src/gpio_flex_glitch_filter.c || cmake_object_order_depends_target___idf_esp_driver_gpio - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir\src\gpio_flex_glitch_filter.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include - OBJECT_DIR = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir - OBJECT_FILE_DIR = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir\src - TARGET_COMPILE_PDB = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir\__idf_esp_driver_gpio.pdb - TARGET_PDB = esp-idf\esp_driver_gpio\libesp_driver_gpio.pdb - -build esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_etm.c.obj: C_COMPILER____idf_esp_driver_gpio_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/src/gpio_etm.c || cmake_object_order_depends_target___idf_esp_driver_gpio - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir\src\gpio_etm.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include - OBJECT_DIR = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir - OBJECT_FILE_DIR = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir\src - TARGET_COMPILE_PDB = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir\__idf_esp_driver_gpio.pdb - TARGET_PDB = esp-idf\esp_driver_gpio\libesp_driver_gpio.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_driver_gpio - - -############################################# -# Link the static library esp-idf\esp_driver_gpio\libesp_driver_gpio.a - -build esp-idf/esp_driver_gpio/libesp_driver_gpio.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_gpio_ esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio.c.obj esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_glitch_filter_ops.c.obj esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/rtc_io.c.obj esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/dedic_gpio.c.obj esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_pin_glitch_filter.c.obj esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_flex_glitch_filter.c.obj esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_etm.c.obj || esp-idf/esp_timer/libesp_timer.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei - OBJECT_DIR = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = esp-idf\esp_driver_gpio\CMakeFiles\__idf_esp_driver_gpio.dir\__idf_esp_driver_gpio.pdb - TARGET_FILE = esp-idf\esp_driver_gpio\libesp_driver_gpio.a - TARGET_PDB = esp-idf\esp_driver_gpio\libesp_driver_gpio.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_driver_gpio/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_gpio && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_driver_gpio/edit_cache: phony esp-idf/esp_driver_gpio/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_driver_gpio/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_gpio && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_driver_gpio/rebuild_cache: phony esp-idf/esp_driver_gpio/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_driver_gpio/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_driver_gpio/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_gpio/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_gpio && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_driver_gpio/install: phony esp-idf/esp_driver_gpio/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_driver_gpio/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_gpio/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_gpio && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_driver_gpio/install/local: phony esp-idf/esp_driver_gpio/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_driver_gpio/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_gpio/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_gpio && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_driver_gpio/install/strip: phony esp-idf/esp_driver_gpio/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_timer - - -############################################# -# Order-only phony target for __idf_esp_timer - -build cmake_object_order_depends_target___idf_esp_timer: phony || cmake_object_order_depends_target___idf_esp_pm - -build esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer.c.obj: C_COMPILER____idf_esp_timer_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/src/esp_timer.c || cmake_object_order_depends_target___idf_esp_timer - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\src\esp_timer.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir - OBJECT_FILE_DIR = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\src - TARGET_COMPILE_PDB = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\__idf_esp_timer.pdb - TARGET_PDB = esp-idf\esp_timer\libesp_timer.pdb - -build esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_init.c.obj: C_COMPILER____idf_esp_timer_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/src/esp_timer_init.c || cmake_object_order_depends_target___idf_esp_timer - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\src\esp_timer_init.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir - OBJECT_FILE_DIR = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\src - TARGET_COMPILE_PDB = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\__idf_esp_timer.pdb - TARGET_PDB = esp-idf\esp_timer\libesp_timer.pdb - -build esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/ets_timer_legacy.c.obj: C_COMPILER____idf_esp_timer_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/src/ets_timer_legacy.c || cmake_object_order_depends_target___idf_esp_timer - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\src\ets_timer_legacy.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir - OBJECT_FILE_DIR = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\src - TARGET_COMPILE_PDB = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\__idf_esp_timer.pdb - TARGET_PDB = esp-idf\esp_timer\libesp_timer.pdb - -build esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/system_time.c.obj: C_COMPILER____idf_esp_timer_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/src/system_time.c || cmake_object_order_depends_target___idf_esp_timer - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\src\system_time.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir - OBJECT_FILE_DIR = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\src - TARGET_COMPILE_PDB = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\__idf_esp_timer.pdb - TARGET_PDB = esp-idf\esp_timer\libesp_timer.pdb - -build esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_common.c.obj: C_COMPILER____idf_esp_timer_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/src/esp_timer_impl_common.c || cmake_object_order_depends_target___idf_esp_timer - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\src\esp_timer_impl_common.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir - OBJECT_FILE_DIR = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\src - TARGET_COMPILE_PDB = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\__idf_esp_timer.pdb - TARGET_PDB = esp-idf\esp_timer\libesp_timer.pdb - -build esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_systimer.c.obj: C_COMPILER____idf_esp_timer_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/src/esp_timer_impl_systimer.c || cmake_object_order_depends_target___idf_esp_timer - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\src\esp_timer_impl_systimer.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir - OBJECT_FILE_DIR = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\src - TARGET_COMPILE_PDB = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\__idf_esp_timer.pdb - TARGET_PDB = esp-idf\esp_timer\libesp_timer.pdb - -build esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_etm.c.obj: C_COMPILER____idf_esp_timer_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/src/esp_timer_etm.c || cmake_object_order_depends_target___idf_esp_timer - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\src\esp_timer_etm.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir - OBJECT_FILE_DIR = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\src - TARGET_COMPILE_PDB = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\__idf_esp_timer.pdb - TARGET_PDB = esp-idf\esp_timer\libesp_timer.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_timer - - -############################################# -# Link the static library esp-idf\esp_timer\libesp_timer.a - -build esp-idf/esp_timer/libesp_timer.a: C_STATIC_LIBRARY_LINKER____idf_esp_timer_ esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer.c.obj esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_init.c.obj esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/ets_timer_legacy.c.obj esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/system_time.c.obj esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_common.c.obj esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_systimer.c.obj esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_etm.c.obj || esp-idf/esp_pm/libesp_pm.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei - OBJECT_DIR = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = esp-idf\esp_timer\CMakeFiles\__idf_esp_timer.dir\__idf_esp_timer.pdb - TARGET_FILE = esp-idf\esp_timer\libesp_timer.a - TARGET_PDB = esp-idf\esp_timer\libesp_timer.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_timer/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_timer && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_timer/edit_cache: phony esp-idf/esp_timer/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_timer/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_timer && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_timer/rebuild_cache: phony esp-idf/esp_timer/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_timer/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_timer/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_timer/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_timer && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_timer/install: phony esp-idf/esp_timer/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_timer/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_timer/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_timer && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_timer/install/local: phony esp-idf/esp_timer/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_timer/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_timer/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_timer && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_timer/install/strip: phony esp-idf/esp_timer/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_pm - - -############################################# -# Order-only phony target for __idf_esp_pm - -build cmake_object_order_depends_target___idf_esp_pm: phony || cmake_object_order_depends_target___idf_mbedtls - -build esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_locks.c.obj: C_COMPILER____idf_esp_pm_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/pm_locks.c || cmake_object_order_depends_target___idf_esp_pm - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_pm\CMakeFiles\__idf_esp_pm.dir\pm_locks.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include - OBJECT_DIR = esp-idf\esp_pm\CMakeFiles\__idf_esp_pm.dir - OBJECT_FILE_DIR = esp-idf\esp_pm\CMakeFiles\__idf_esp_pm.dir - TARGET_COMPILE_PDB = esp-idf\esp_pm\CMakeFiles\__idf_esp_pm.dir\__idf_esp_pm.pdb - TARGET_PDB = esp-idf\esp_pm\libesp_pm.pdb - -build esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_trace.c.obj: C_COMPILER____idf_esp_pm_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/pm_trace.c || cmake_object_order_depends_target___idf_esp_pm - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_pm\CMakeFiles\__idf_esp_pm.dir\pm_trace.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include - OBJECT_DIR = esp-idf\esp_pm\CMakeFiles\__idf_esp_pm.dir - OBJECT_FILE_DIR = esp-idf\esp_pm\CMakeFiles\__idf_esp_pm.dir - TARGET_COMPILE_PDB = esp-idf\esp_pm\CMakeFiles\__idf_esp_pm.dir\__idf_esp_pm.pdb - TARGET_PDB = esp-idf\esp_pm\libesp_pm.pdb - -build esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_impl.c.obj: C_COMPILER____idf_esp_pm_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/pm_impl.c || cmake_object_order_depends_target___idf_esp_pm - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_pm\CMakeFiles\__idf_esp_pm.dir\pm_impl.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include - OBJECT_DIR = esp-idf\esp_pm\CMakeFiles\__idf_esp_pm.dir - OBJECT_FILE_DIR = esp-idf\esp_pm\CMakeFiles\__idf_esp_pm.dir - TARGET_COMPILE_PDB = esp-idf\esp_pm\CMakeFiles\__idf_esp_pm.dir\__idf_esp_pm.pdb - TARGET_PDB = esp-idf\esp_pm\libesp_pm.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_pm - - -############################################# -# Link the static library esp-idf\esp_pm\libesp_pm.a - -build esp-idf/esp_pm/libesp_pm.a: C_STATIC_LIBRARY_LINKER____idf_esp_pm_ esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_locks.c.obj esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_trace.c.obj esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_impl.c.obj || esp-idf/mbedtls/libmbedtls.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei - OBJECT_DIR = esp-idf\esp_pm\CMakeFiles\__idf_esp_pm.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = esp-idf\esp_pm\CMakeFiles\__idf_esp_pm.dir\__idf_esp_pm.pdb - TARGET_FILE = esp-idf\esp_pm\libesp_pm.a - TARGET_PDB = esp-idf\esp_pm\libesp_pm.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_pm/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_pm && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_pm/edit_cache: phony esp-idf/esp_pm/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_pm/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_pm && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_pm/rebuild_cache: phony esp-idf/esp_pm/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_pm/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_pm/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_pm/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_pm && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_pm/install: phony esp-idf/esp_pm/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_pm/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_pm/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_pm && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_pm/install/local: phony esp-idf/esp_pm/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_pm/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_pm/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_pm && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_pm/install/strip: phony esp-idf/esp_pm/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_mbedtls - - -############################################# -# Order-only phony target for __idf_mbedtls - -build cmake_object_order_depends_target___idf_mbedtls: phony || cmake_object_order_depends_target_everest esp-idf/mbedtls/x509_crt_bundle x509_crt_bundle.S - -build esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/esp_crt_bundle/esp_crt_bundle.c.obj: C_COMPILER____idf_mbedtls_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/esp_crt_bundle.c || cmake_object_order_depends_target___idf_mbedtls - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\CMakeFiles\__idf_mbedtls.dir\esp_crt_bundle\esp_crt_bundle.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf\mbedtls\CMakeFiles\__idf_mbedtls.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\CMakeFiles\__idf_mbedtls.dir\esp_crt_bundle - TARGET_COMPILE_PDB = esp-idf\mbedtls\CMakeFiles\__idf_mbedtls.dir\__idf_mbedtls.pdb - TARGET_PDB = esp-idf\mbedtls\libmbedtls.pdb - -build esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/__/__/x509_crt_bundle.S.obj: ASM_COMPILER____idf_mbedtls_unscanned_ C$:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/x509_crt_bundle.S || cmake_object_order_depends_target___idf_mbedtls - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\CMakeFiles\__idf_mbedtls.dir\__\__\x509_crt_bundle.S.obj.d - FLAGS = -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf\mbedtls\CMakeFiles\__idf_mbedtls.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\CMakeFiles\__idf_mbedtls.dir\__\__ - TARGET_COMPILE_PDB = esp-idf\mbedtls\CMakeFiles\__idf_mbedtls.dir\__idf_mbedtls.pdb - TARGET_PDB = esp-idf\mbedtls\libmbedtls.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_mbedtls - - -############################################# -# Link the static library esp-idf\mbedtls\libmbedtls.a - -build esp-idf/mbedtls/libmbedtls.a: C_STATIC_LIBRARY_LINKER____idf_mbedtls_ esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/esp_crt_bundle/esp_crt_bundle.c.obj esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/__/__/x509_crt_bundle.S.obj || esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei - OBJECT_DIR = esp-idf\mbedtls\CMakeFiles\__idf_mbedtls.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = esp-idf\mbedtls\CMakeFiles\__idf_mbedtls.dir\__idf_mbedtls.pdb - TARGET_FILE = esp-idf\mbedtls\libmbedtls.a - TARGET_PDB = esp-idf\mbedtls\libmbedtls.pdb - - -############################################# -# Utility command for custom_bundle - -build esp-idf/mbedtls/custom_bundle: phony - - -############################################# -# Utility command for edit_cache - -build esp-idf/mbedtls/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\mbedtls && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/mbedtls/edit_cache: phony esp-idf/mbedtls/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/mbedtls/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\mbedtls && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/mbedtls/rebuild_cache: phony esp-idf/mbedtls/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/mbedtls/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/mbedtls/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/mbedtls/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\mbedtls && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/mbedtls/install: phony esp-idf/mbedtls/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/mbedtls/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/mbedtls/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\mbedtls && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/mbedtls/install/local: phony esp-idf/mbedtls/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/mbedtls/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/mbedtls/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\mbedtls && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/mbedtls/install/strip: phony esp-idf/mbedtls/CMakeFiles/install/strip.util - - -############################################# -# Custom command for x509_crt_bundle.S - -build x509_crt_bundle.S | ${cmake_ninja_workdir}x509_crt_bundle.S: CUSTOM_COMMAND esp-idf/mbedtls/x509_crt_bundle C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/scripts/data_file_embed_asm.cmake || esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_driver_ana_cmpr/libesp_driver_ana_cmpr.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_parlio/libesp_driver_parlio.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_event/libesp_event.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_security/libesp_security.a esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory.ld esp-idf/esp_system/sections.ld.in esp-idf/esp_vfs_console/libesp_vfs_console.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/ieee802154/libieee802154.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/openthread/libopenthread.a esp-idf/pthread/libpthread.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/vfs/libvfs.a - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -D DATA_FILE=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/x509_crt_bundle -D SOURCE_FILE=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/x509_crt_bundle.S -D FILE_TYPE=BINARY -P C:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/scripts/data_file_embed_asm.cmake" - DESC = Generating ../../x509_crt_bundle.S - restat = 1 - - -############################################# -# Custom command for esp-idf\mbedtls\x509_crt_bundle - -build esp-idf/mbedtls/x509_crt_bundle | ${cmake_ninja_workdir}esp-idf/mbedtls/x509_crt_bundle: CUSTOM_COMMAND || esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_driver_ana_cmpr/libesp_driver_ana_cmpr.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_parlio/libesp_driver_parlio.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_event/libesp_event.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_security/libesp_security.a esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory.ld esp-idf/esp_system/sections.ld.in esp-idf/esp_vfs_console/libesp_vfs_console.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/ieee802154/libieee802154.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/openthread/libopenthread.a esp-idf/pthread/libpthread.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/vfs/libvfs.a - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\mbedtls && C:\Users\Laurent\.espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/gen_crt_bundle.py --input C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/cacrt_all.pem C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/cacrt_local.pem -q --max-certs 200" - DESC = Generating x509_crt_bundle - restat = 1 - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/CMakeLists.txt -# ============================================================================= - - -############################################# -# Utility command for apidoc - -build esp-idf/mbedtls/mbedtls/apidoc: phony esp-idf/mbedtls/mbedtls/CMakeFiles/apidoc - - -############################################# -# Utility command for edit_cache - -build esp-idf/mbedtls/mbedtls/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\mbedtls\mbedtls && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/mbedtls/mbedtls/edit_cache: phony esp-idf/mbedtls/mbedtls/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/mbedtls/mbedtls/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\mbedtls\mbedtls && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/mbedtls/mbedtls/rebuild_cache: phony esp-idf/mbedtls/mbedtls/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/mbedtls/mbedtls/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/mbedtls/mbedtls/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\mbedtls\mbedtls && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/mbedtls/mbedtls/install: phony esp-idf/mbedtls/mbedtls/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/mbedtls/mbedtls/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\mbedtls\mbedtls && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/mbedtls/mbedtls/install/local: phony esp-idf/mbedtls/mbedtls/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/mbedtls/mbedtls/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\mbedtls\mbedtls && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/mbedtls/mbedtls/install/strip: phony esp-idf/mbedtls/mbedtls/CMakeFiles/install/strip.util - - -############################################# -# Custom command for esp-idf\mbedtls\mbedtls\CMakeFiles\apidoc - -build esp-idf/mbedtls/mbedtls/CMakeFiles/apidoc | ${cmake_ninja_workdir}esp-idf/mbedtls/mbedtls/CMakeFiles/apidoc: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\esp\v5.5.1\esp-idf\components\mbedtls\mbedtls\doxygen && doxygen mbedtls.doxyfile" - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/CMakeLists.txt -# ============================================================================= - - -############################################# -# Utility command for edit_cache - -build esp-idf/mbedtls/mbedtls/include/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\mbedtls\mbedtls\include && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/mbedtls/mbedtls/include/edit_cache: phony esp-idf/mbedtls/mbedtls/include/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/mbedtls/mbedtls/include/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\mbedtls\mbedtls\include && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/mbedtls/mbedtls/include/rebuild_cache: phony esp-idf/mbedtls/mbedtls/include/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/mbedtls/mbedtls/include/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/mbedtls/mbedtls/include/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/include/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\mbedtls\mbedtls\include && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/mbedtls/mbedtls/include/install: phony esp-idf/mbedtls/mbedtls/include/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/mbedtls/mbedtls/include/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/include/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\mbedtls\mbedtls\include && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/mbedtls/mbedtls/include/install/local: phony esp-idf/mbedtls/mbedtls/include/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/mbedtls/mbedtls/include/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/include/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\mbedtls\mbedtls\include && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/mbedtls/mbedtls/include/install/strip: phony esp-idf/mbedtls/mbedtls/include/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/CMakeLists.txt -# ============================================================================= - - -############################################# -# Utility command for edit_cache - -build esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\mbedtls\mbedtls\3rdparty && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/mbedtls/mbedtls/3rdparty/edit_cache: phony esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\mbedtls\mbedtls\3rdparty && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/mbedtls/mbedtls/3rdparty/rebuild_cache: phony esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/mbedtls/mbedtls/3rdparty/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/3rdparty/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\mbedtls\mbedtls\3rdparty && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/mbedtls/mbedtls/3rdparty/install: phony esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/3rdparty/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\mbedtls\mbedtls\3rdparty && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/mbedtls/mbedtls/3rdparty/install/local: phony esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/3rdparty/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\mbedtls\mbedtls\3rdparty && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/mbedtls/mbedtls/3rdparty/install/strip: phony esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target everest - - -############################################# -# Order-only phony target for everest - -build cmake_object_order_depends_target_everest: phony || cmake_object_order_depends_target_p256m - -build esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/everest.c.obj: C_COMPILER__everest_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/library/everest.c || cmake_object_order_depends_target_everest - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\3rdparty\everest\CMakeFiles\everest.dir\library\everest.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest/kremlib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\mbedtls\mbedtls\3rdparty\everest\CMakeFiles\everest.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\3rdparty\everest\CMakeFiles\everest.dir\library - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\3rdparty\everest\CMakeFiles\everest.dir\everest.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\3rdparty\everest\libeverest.pdb - -build esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/x25519.c.obj: C_COMPILER__everest_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/library/x25519.c || cmake_object_order_depends_target_everest - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\3rdparty\everest\CMakeFiles\everest.dir\library\x25519.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest/kremlib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\mbedtls\mbedtls\3rdparty\everest\CMakeFiles\everest.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\3rdparty\everest\CMakeFiles\everest.dir\library - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\3rdparty\everest\CMakeFiles\everest.dir\everest.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\3rdparty\everest\libeverest.pdb - -build esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/Hacl_Curve25519_joined.c.obj: C_COMPILER__everest_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/library/Hacl_Curve25519_joined.c || cmake_object_order_depends_target_everest - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\3rdparty\everest\CMakeFiles\everest.dir\library\Hacl_Curve25519_joined.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest/kremlib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\mbedtls\mbedtls\3rdparty\everest\CMakeFiles\everest.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\3rdparty\everest\CMakeFiles\everest.dir\library - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\3rdparty\everest\CMakeFiles\everest.dir\everest.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\3rdparty\everest\libeverest.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target everest - - -############################################# -# Link the static library esp-idf\mbedtls\mbedtls\3rdparty\everest\libeverest.a - -build esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a: CXX_STATIC_LIBRARY_LINKER__everest_ esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/everest.c.obj esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/x25519.c.obj esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/Hacl_Curve25519_joined.c.obj || esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei - OBJECT_DIR = esp-idf\mbedtls\mbedtls\3rdparty\everest\CMakeFiles\everest.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\3rdparty\everest\CMakeFiles\everest.dir\everest.pdb - TARGET_FILE = esp-idf\mbedtls\mbedtls\3rdparty\everest\libeverest.a - TARGET_PDB = esp-idf\mbedtls\mbedtls\3rdparty\everest\libeverest.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\mbedtls\mbedtls\3rdparty\everest && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/mbedtls/mbedtls/3rdparty/everest/edit_cache: phony esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\mbedtls\mbedtls\3rdparty\everest && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/mbedtls/mbedtls/3rdparty/everest/rebuild_cache: phony esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/mbedtls/mbedtls/3rdparty/everest/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/3rdparty/everest/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\mbedtls\mbedtls\3rdparty\everest && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/mbedtls/mbedtls/3rdparty/everest/install: phony esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/3rdparty/everest/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\mbedtls\mbedtls\3rdparty\everest && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/mbedtls/mbedtls/3rdparty/everest/install/local: phony esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/3rdparty/everest/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\mbedtls\mbedtls\3rdparty\everest && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/mbedtls/mbedtls/3rdparty/everest/install/strip: phony esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target p256m - - -############################################# -# Order-only phony target for p256m - -build cmake_object_order_depends_target_p256m: phony || cmake_object_order_depends_target_mbedcrypto - -build esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m_driver_entrypoints.c.obj: C_COMPILER__p256m_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m_driver_entrypoints.c || cmake_object_order_depends_target_p256m - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\3rdparty\p256-m\CMakeFiles\p256m.dir\p256-m_driver_entrypoints.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\mbedtls\mbedtls\3rdparty\p256-m\CMakeFiles\p256m.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\3rdparty\p256-m\CMakeFiles\p256m.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\3rdparty\p256-m\CMakeFiles\p256m.dir\p256m.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\3rdparty\p256-m\libp256m.pdb - -build esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m/p256-m.c.obj: C_COMPILER__p256m_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m/p256-m.c || cmake_object_order_depends_target_p256m - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\3rdparty\p256-m\CMakeFiles\p256m.dir\p256-m\p256-m.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\mbedtls\mbedtls\3rdparty\p256-m\CMakeFiles\p256m.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\3rdparty\p256-m\CMakeFiles\p256m.dir\p256-m - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\3rdparty\p256-m\CMakeFiles\p256m.dir\p256m.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\3rdparty\p256-m\libp256m.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target p256m - - -############################################# -# Link the static library esp-idf\mbedtls\mbedtls\3rdparty\p256-m\libp256m.a - -build esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a: CXX_STATIC_LIBRARY_LINKER__p256m_ esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m_driver_entrypoints.c.obj esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m/p256-m.c.obj || esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei - OBJECT_DIR = esp-idf\mbedtls\mbedtls\3rdparty\p256-m\CMakeFiles\p256m.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\3rdparty\p256-m\CMakeFiles\p256m.dir\p256m.pdb - TARGET_FILE = esp-idf\mbedtls\mbedtls\3rdparty\p256-m\libp256m.a - TARGET_PDB = esp-idf\mbedtls\mbedtls\3rdparty\p256-m\libp256m.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\mbedtls\mbedtls\3rdparty\p256-m && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/mbedtls/mbedtls/3rdparty/p256-m/edit_cache: phony esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\mbedtls\mbedtls\3rdparty\p256-m && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/mbedtls/mbedtls/3rdparty/p256-m/rebuild_cache: phony esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/mbedtls/mbedtls/3rdparty/p256-m/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/3rdparty/p256-m/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\mbedtls\mbedtls\3rdparty\p256-m && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/mbedtls/mbedtls/3rdparty/p256-m/install: phony esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/3rdparty/p256-m/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\mbedtls\mbedtls\3rdparty\p256-m && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/mbedtls/mbedtls/3rdparty/p256-m/install/local: phony esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/3rdparty/p256-m/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\mbedtls\mbedtls\3rdparty\p256-m && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/mbedtls/mbedtls/3rdparty/p256-m/install/strip: phony esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target mbedcrypto - - -############################################# -# Order-only phony target for mbedcrypto - -build cmake_object_order_depends_target_mbedcrypto: phony || cmake_object_order_depends_target_mbedx509 - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aes.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/aes.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\aes.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesni.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/aesni.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\aesni.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesce.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/aesce.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\aesce.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aria.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/aria.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\aria.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1parse.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/asn1parse.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\asn1parse.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1write.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/asn1write.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\asn1write.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/base64.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/base64.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\base64.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/bignum.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\bignum.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_core.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/bignum_core.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\bignum_core.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/bignum_mod.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\bignum_mod.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod_raw.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/bignum_mod_raw.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\bignum_mod_raw.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/block_cipher.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/block_cipher.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\block_cipher.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/camellia.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/camellia.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\camellia.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ccm.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ccm.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\ccm.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chacha20.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/chacha20.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\chacha20.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chachapoly.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/chachapoly.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\chachapoly.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/cipher.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\cipher.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher_wrap.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/cipher_wrap.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\cipher_wrap.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/constant_time.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/constant_time.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\constant_time.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cmac.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/cmac.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\cmac.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ctr_drbg.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ctr_drbg.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\ctr_drbg.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/des.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/des.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\des.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/dhm.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/dhm.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\dhm.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdh.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ecdh.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\ecdh.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdsa.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ecdsa.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\ecdsa.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecjpake.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ecjpake.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\ecjpake.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ecp.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\ecp.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ecp_curves.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\ecp_curves.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves_new.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ecp_curves_new.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\ecp_curves_new.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/entropy.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\entropy.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy_poll.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/entropy_poll.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\entropy_poll.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/error.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/error.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\error.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/gcm.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/gcm.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\gcm.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hkdf.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/hkdf.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\hkdf.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hmac_drbg.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/hmac_drbg.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\hmac_drbg.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lmots.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/lmots.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\lmots.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lms.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/lms.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\lms.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/md.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\md.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md5.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/md5.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\md5.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/memory_buffer_alloc.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/memory_buffer_alloc.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\memory_buffer_alloc.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/nist_kw.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/nist_kw.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\nist_kw.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/oid.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/oid.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\oid.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/padlock.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/padlock.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\padlock.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pem.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/pem.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\pem.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/pk.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\pk.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_ecc.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/pk_ecc.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\pk_ecc.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_wrap.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/pk_wrap.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\pk_wrap.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs12.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/pkcs12.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\pkcs12.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs5.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/pkcs5.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\pkcs5.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkparse.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/pkparse.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\pkparse.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkwrite.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/pkwrite.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\pkwrite.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/platform.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\platform.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform_util.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/platform_util.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\platform_util.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/poly1305.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/poly1305.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\poly1305.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\psa_crypto.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_aead.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_aead.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\psa_crypto_aead.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_cipher.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_cipher.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\psa_crypto_cipher.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_client.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_client.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\psa_crypto_client.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_driver_wrappers_no_static.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_driver_wrappers_no_static.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\psa_crypto_driver_wrappers_no_static.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ecp.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_ecp.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\psa_crypto_ecp.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ffdh.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_ffdh.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\psa_crypto_ffdh.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_hash.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_hash.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\psa_crypto_hash.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_mac.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_mac.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\psa_crypto_mac.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_pake.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_pake.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\psa_crypto_pake.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_rsa.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_rsa.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\psa_crypto_rsa.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_se.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_se.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\psa_crypto_se.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_slot_management.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_slot_management.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\psa_crypto_slot_management.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_storage.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_storage.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\psa_crypto_storage.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_its_file.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_its_file.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\psa_its_file.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_util.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_util.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\psa_util.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ripemd160.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ripemd160.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\ripemd160.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/rsa.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\rsa.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa_alt_helpers.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/rsa_alt_helpers.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\rsa_alt_helpers.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha1.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/sha1.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\sha1.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha256.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/sha256.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\sha256.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha512.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/sha512.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\sha512.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha3.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/sha3.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\sha3.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/threading.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/threading.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\threading.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/timing.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/timing.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\timing.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/version.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\version.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version_features.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/version_features.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\version_features.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha_gdma_impl.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha_gdma_impl.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Laurent\esp\v5.5.1\esp-idf\components\mbedtls\port\sha\core\esp_sha_gdma_impl.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Laurent\esp\v5.5.1\esp-idf\components\mbedtls\port\sha\core - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes_gdma_impl.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes_gdma_impl.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Laurent\esp\v5.5.1\esp-idf\components\mbedtls\port\aes\dma\esp_aes_gdma_impl.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Laurent\esp\v5.5.1\esp-idf\components\mbedtls\port\aes\dma - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes_dma_core.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes_dma_core.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Laurent\esp\v5.5.1\esp-idf\components\mbedtls\port\aes\dma\esp_aes_dma_core.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Laurent\esp\v5.5.1\esp-idf\components\mbedtls\port\aes\dma - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/crypto_shared_gdma/esp_crypto_shared_gdma.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/crypto_shared_gdma/esp_crypto_shared_gdma.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Laurent\esp\v5.5.1\esp-idf\components\mbedtls\port\crypto_shared_gdma\esp_crypto_shared_gdma.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Laurent\esp\v5.5.1\esp-idf\components\mbedtls\port\crypto_shared_gdma - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_hardware.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_hardware.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Laurent\esp\v5.5.1\esp-idf\components\mbedtls\port\esp_hardware.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Laurent\esp\v5.5.1\esp-idf\components\mbedtls\port - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_mem.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_mem.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Laurent\esp\v5.5.1\esp-idf\components\mbedtls\port\esp_mem.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Laurent\esp\v5.5.1\esp-idf\components\mbedtls\port - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_timing.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_timing.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Laurent\esp\v5.5.1\esp-idf\components\mbedtls\port\esp_timing.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Laurent\esp\v5.5.1\esp-idf\components\mbedtls\port - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/esp_aes_xts.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/esp_aes_xts.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Laurent\esp\v5.5.1\esp-idf\components\mbedtls\port\aes\esp_aes_xts.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Laurent\esp\v5.5.1\esp-idf\components\mbedtls\port\aes - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/esp_aes_common.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/esp_aes_common.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Laurent\esp\v5.5.1\esp-idf\components\mbedtls\port\aes\esp_aes_common.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Laurent\esp\v5.5.1\esp-idf\components\mbedtls\port\aes - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Laurent\esp\v5.5.1\esp-idf\components\mbedtls\port\aes\dma\esp_aes.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Laurent\esp\v5.5.1\esp-idf\components\mbedtls\port\aes\dma - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/esp_sha.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/esp_sha.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Laurent\esp\v5.5.1\esp-idf\components\mbedtls\port\sha\esp_sha.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Laurent\esp\v5.5.1\esp-idf\components\mbedtls\port\sha - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/sha.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/sha.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Laurent\esp\v5.5.1\esp-idf\components\mbedtls\port\sha\core\sha.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Laurent\esp\v5.5.1\esp-idf\components\mbedtls\port\sha\core - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_ds/esp_rsa_sign_alt.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_ds/esp_rsa_sign_alt.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Laurent\esp\v5.5.1\esp-idf\components\mbedtls\port\esp_ds\esp_rsa_sign_alt.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Laurent\esp\v5.5.1\esp-idf\components\mbedtls\port\esp_ds - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_ds/esp_rsa_dec_alt.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_ds/esp_rsa_dec_alt.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Laurent\esp\v5.5.1\esp-idf\components\mbedtls\port\esp_ds\esp_rsa_dec_alt.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Laurent\esp\v5.5.1\esp-idf\components\mbedtls\port\esp_ds - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_ds/esp_ds_common.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_ds/esp_ds_common.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Laurent\esp\v5.5.1\esp-idf\components\mbedtls\port\esp_ds\esp_ds_common.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Laurent\esp\v5.5.1\esp-idf\components\mbedtls\port\esp_ds - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/bignum/esp_bignum.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/bignum/esp_bignum.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Laurent\esp\v5.5.1\esp-idf\components\mbedtls\port\bignum\esp_bignum.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Laurent\esp\v5.5.1\esp-idf\components\mbedtls\port\bignum - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/bignum/bignum_alt.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/bignum/bignum_alt.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Laurent\esp\v5.5.1\esp-idf\components\mbedtls\port\bignum\bignum_alt.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Laurent\esp\v5.5.1\esp-idf\components\mbedtls\port\bignum - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha1.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha1.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Laurent\esp\v5.5.1\esp-idf\components\mbedtls\port\sha\core\esp_sha1.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Laurent\esp\v5.5.1\esp-idf\components\mbedtls\port\sha\core - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha256.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha256.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Laurent\esp\v5.5.1\esp-idf\components\mbedtls\port\sha\core\esp_sha256.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Laurent\esp\v5.5.1\esp-idf\components\mbedtls\port\sha\core - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha512.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha512.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Laurent\esp\v5.5.1\esp-idf\components\mbedtls\port\sha\core\esp_sha512.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Laurent\esp\v5.5.1\esp-idf\components\mbedtls\port\sha\core - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/esp_aes_gcm.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/esp_aes_gcm.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Laurent\esp\v5.5.1\esp-idf\components\mbedtls\port\aes\esp_aes_gcm.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Laurent\esp\v5.5.1\esp-idf\components\mbedtls\port\aes - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/ecc/esp_ecc.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/ecc/esp_ecc.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Laurent\esp\v5.5.1\esp-idf\components\mbedtls\port\ecc\esp_ecc.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Laurent\esp\v5.5.1\esp-idf\components\mbedtls\port\ecc - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/ecc/ecc_alt.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/ecc/ecc_alt.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Laurent\esp\v5.5.1\esp-idf\components\mbedtls\port\ecc\ecc_alt.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Laurent\esp\v5.5.1\esp-idf\components\mbedtls\port\ecc - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/ecdsa/ecdsa_alt.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/ecdsa/ecdsa_alt.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Laurent\esp\v5.5.1\esp-idf\components\mbedtls\port\ecdsa\ecdsa_alt.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Laurent\esp\v5.5.1\esp-idf\components\mbedtls\port\ecdsa - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/md/esp_md.c.obj: C_COMPILER__mbedcrypto_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/md/esp_md.c || cmake_object_order_depends_target_mbedcrypto - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Laurent\esp\v5.5.1\esp-idf\components\mbedtls\port\md\esp_md.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\C_\Users\Laurent\esp\v5.5.1\esp-idf\components\mbedtls\port\md - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target mbedcrypto - - -############################################# -# Link the static library esp-idf\mbedtls\mbedtls\library\libmbedcrypto.a - -build esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a: CXX_STATIC_LIBRARY_LINKER__mbedcrypto_ esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aes.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesni.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesce.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aria.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1parse.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1write.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/base64.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_core.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod_raw.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/block_cipher.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/camellia.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ccm.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chacha20.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chachapoly.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher_wrap.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/constant_time.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cmac.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ctr_drbg.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/des.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/dhm.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdh.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdsa.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecjpake.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves_new.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy_poll.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/error.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/gcm.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hkdf.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hmac_drbg.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lmots.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lms.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md5.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/memory_buffer_alloc.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/nist_kw.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/oid.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/padlock.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pem.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_ecc.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_wrap.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs12.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs5.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkparse.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkwrite.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform_util.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/poly1305.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_aead.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_cipher.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_client.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_driver_wrappers_no_static.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ecp.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ffdh.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_hash.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_mac.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_pake.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_rsa.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_se.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_slot_management.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_storage.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_its_file.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_util.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ripemd160.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa_alt_helpers.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha1.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha256.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha512.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha3.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/threading.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/timing.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version_features.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha_gdma_impl.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes_gdma_impl.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes_dma_core.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/crypto_shared_gdma/esp_crypto_shared_gdma.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_hardware.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_mem.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_timing.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/esp_aes_xts.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/esp_aes_common.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/esp_sha.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/sha.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_ds/esp_rsa_sign_alt.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_ds/esp_rsa_dec_alt.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_ds/esp_ds_common.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/bignum/esp_bignum.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/bignum/bignum_alt.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha1.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha256.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha512.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/esp_aes_gcm.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/ecc/esp_ecc.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/ecc/ecc_alt.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/ecdsa/ecdsa_alt.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/md/esp_md.c.obj || esp-idf/mbedtls/mbedtls/library/libmbedx509.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedcrypto.dir\mbedcrypto.pdb - TARGET_FILE = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.a - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedcrypto.pdb - RSP_FILE = CMakeFiles\mbedcrypto.rsp - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target mbedx509 - - -############################################# -# Order-only phony target for mbedx509 - -build cmake_object_order_depends_target_mbedx509: phony || cmake_object_order_depends_target_mbedtls - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/pkcs7.c.obj: C_COMPILER__mbedx509_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/pkcs7.c || cmake_object_order_depends_target_mbedx509 - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\pkcs7.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\mbedx509.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedx509.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509.c.obj: C_COMPILER__mbedx509_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/x509.c || cmake_object_order_depends_target_mbedx509 - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\x509.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\mbedx509.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedx509.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_create.c.obj: C_COMPILER__mbedx509_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/x509_create.c || cmake_object_order_depends_target_mbedx509 - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\x509_create.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\mbedx509.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedx509.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crl.c.obj: C_COMPILER__mbedx509_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/x509_crl.c || cmake_object_order_depends_target_mbedx509 - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\x509_crl.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\mbedx509.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedx509.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crt.c.obj: C_COMPILER__mbedx509_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/x509_crt.c || cmake_object_order_depends_target_mbedx509 - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\x509_crt.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\mbedx509.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedx509.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_csr.c.obj: C_COMPILER__mbedx509_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/x509_csr.c || cmake_object_order_depends_target_mbedx509 - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\x509_csr.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\mbedx509.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedx509.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write.c.obj: C_COMPILER__mbedx509_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/x509write.c || cmake_object_order_depends_target_mbedx509 - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\x509write.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\mbedx509.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedx509.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_crt.c.obj: C_COMPILER__mbedx509_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/x509write_crt.c || cmake_object_order_depends_target_mbedx509 - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\x509write_crt.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\mbedx509.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedx509.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_csr.c.obj: C_COMPILER__mbedx509_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/x509write_csr.c || cmake_object_order_depends_target_mbedx509 - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\x509write_csr.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\mbedx509.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedx509.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target mbedx509 - - -############################################# -# Link the static library esp-idf\mbedtls\mbedtls\library\libmbedx509.a - -build esp-idf/mbedtls/mbedtls/library/libmbedx509.a: CXX_STATIC_LIBRARY_LINKER__mbedx509_ esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/pkcs7.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_create.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crl.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crt.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_csr.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_crt.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_csr.c.obj || esp-idf/mbedtls/mbedtls/library/libmbedtls.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedx509.dir\mbedx509.pdb - TARGET_FILE = esp-idf\mbedtls\mbedtls\library\libmbedx509.a - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedx509.pdb - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target mbedtls - - -############################################# -# Order-only phony target for mbedtls - -build cmake_object_order_depends_target_mbedtls: phony || cmake_object_order_depends_target___idf_esp_app_format - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/debug.c.obj: C_COMPILER__mbedtls_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/debug.c || cmake_object_order_depends_target_mbedtls - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\debug.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_reader.c.obj: C_COMPILER__mbedtls_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/mps_reader.c || cmake_object_order_depends_target_mbedtls - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mps_reader.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_trace.c.obj: C_COMPILER__mbedtls_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/mps_trace.c || cmake_object_order_depends_target_mbedtls - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mps_trace.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cache.c.obj: C_COMPILER__mbedtls_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ssl_cache.c || cmake_object_order_depends_target_mbedtls - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\ssl_cache.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ciphersuites.c.obj: C_COMPILER__mbedtls_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ssl_ciphersuites.c || cmake_object_order_depends_target_mbedtls - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\ssl_ciphersuites.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_client.c.obj: C_COMPILER__mbedtls_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ssl_client.c || cmake_object_order_depends_target_mbedtls - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\ssl_client.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cookie.c.obj: C_COMPILER__mbedtls_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ssl_cookie.c || cmake_object_order_depends_target_mbedtls - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\ssl_cookie.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_debug_helpers_generated.c.obj: C_COMPILER__mbedtls_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ssl_debug_helpers_generated.c || cmake_object_order_depends_target_mbedtls - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\ssl_debug_helpers_generated.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_msg.c.obj: C_COMPILER__mbedtls_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ssl_msg.c || cmake_object_order_depends_target_mbedtls - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\ssl_msg.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ticket.c.obj: C_COMPILER__mbedtls_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ssl_ticket.c || cmake_object_order_depends_target_mbedtls - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\ssl_ticket.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls.c.obj: C_COMPILER__mbedtls_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ssl_tls.c || cmake_object_order_depends_target_mbedtls - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\ssl_tls.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_client.c.obj: C_COMPILER__mbedtls_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ssl_tls12_client.c || cmake_object_order_depends_target_mbedtls - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\ssl_tls12_client.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_server.c.obj: C_COMPILER__mbedtls_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ssl_tls12_server.c || cmake_object_order_depends_target_mbedtls - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\ssl_tls12_server.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_keys.c.obj: C_COMPILER__mbedtls_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ssl_tls13_keys.c || cmake_object_order_depends_target_mbedtls - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\ssl_tls13_keys.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_server.c.obj: C_COMPILER__mbedtls_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ssl_tls13_server.c || cmake_object_order_depends_target_mbedtls - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\ssl_tls13_server.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_client.c.obj: C_COMPILER__mbedtls_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ssl_tls13_client.c || cmake_object_order_depends_target_mbedtls - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\ssl_tls13_client.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_generic.c.obj: C_COMPILER__mbedtls_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ssl_tls13_generic.c || cmake_object_order_depends_target_mbedtls - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\ssl_tls13_generic.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/mbedtls_debug.c.obj: C_COMPILER__mbedtls_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/mbedtls_debug.c || cmake_object_order_depends_target_mbedtls - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\C_\Users\Laurent\esp\v5.5.1\esp-idf\components\mbedtls\port\mbedtls_debug.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\C_\Users\Laurent\esp\v5.5.1\esp-idf\components\mbedtls\port - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_platform_time.c.obj: C_COMPILER__mbedtls_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_platform_time.c || cmake_object_order_depends_target_mbedtls - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\C_\Users\Laurent\esp\v5.5.1\esp-idf\components\mbedtls\port\esp_platform_time.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\C_\Users\Laurent\esp\v5.5.1\esp-idf\components\mbedtls\port - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/net_sockets.c.obj: C_COMPILER__mbedtls_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/net_sockets.c || cmake_object_order_depends_target_mbedtls - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\C_\Users\Laurent\esp\v5.5.1\esp-idf\components\mbedtls\port\net_sockets.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir - OBJECT_FILE_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\C_\Users\Laurent\esp\v5.5.1\esp-idf\components\mbedtls\port - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target mbedtls - - -############################################# -# Link the static library esp-idf\mbedtls\mbedtls\library\libmbedtls.a - -build esp-idf/mbedtls/mbedtls/library/libmbedtls.a: CXX_STATIC_LIBRARY_LINKER__mbedtls_ esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/debug.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_reader.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_trace.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cache.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ciphersuites.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_client.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cookie.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_debug_helpers_generated.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_msg.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ticket.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_client.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_server.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_keys.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_server.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_client.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_generic.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/mbedtls_debug.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_platform_time.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/net_sockets.c.obj || esp-idf/esp_app_format/libesp_app_format.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei - OBJECT_DIR = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = esp-idf\mbedtls\mbedtls\library\CMakeFiles\mbedtls.dir\mbedtls.pdb - TARGET_FILE = esp-idf\mbedtls\mbedtls\library\libmbedtls.a - TARGET_PDB = esp-idf\mbedtls\mbedtls\library\libmbedtls.pdb - - -############################################# -# Utility command for lib - -build esp-idf/mbedtls/mbedtls/library/lib: phony esp-idf/mbedtls/mbedtls/library/CMakeFiles/lib esp-idf/riscv/libriscv.a - - -############################################# -# Utility command for edit_cache - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\mbedtls\mbedtls\library && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/mbedtls/mbedtls/library/edit_cache: phony esp-idf/mbedtls/mbedtls/library/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\mbedtls\mbedtls\library && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/mbedtls/mbedtls/library/rebuild_cache: phony esp-idf/mbedtls/mbedtls/library/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/mbedtls/mbedtls/library/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/library/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\mbedtls\mbedtls\library && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/mbedtls/mbedtls/library/install: phony esp-idf/mbedtls/mbedtls/library/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/library/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\mbedtls\mbedtls\library && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/mbedtls/mbedtls/library/install/local: phony esp-idf/mbedtls/mbedtls/library/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/library/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\mbedtls\mbedtls\library && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/mbedtls/mbedtls/library/install/strip: phony esp-idf/mbedtls/mbedtls/library/CMakeFiles/install/strip.util - - -############################################# -# Phony custom command for esp-idf\mbedtls\mbedtls\library\CMakeFiles\lib - -build esp-idf/mbedtls/mbedtls/library/CMakeFiles/lib | ${cmake_ninja_workdir}esp-idf/mbedtls/mbedtls/library/CMakeFiles/lib: phony esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a || esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_driver_ana_cmpr/libesp_driver_ana_cmpr.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_parlio/libesp_driver_parlio.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_event/libesp_event.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_security/libesp_security.a esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory.ld esp-idf/esp_system/sections.ld.in esp-idf/esp_timer/libesp_timer.a esp-idf/esp_vfs_console/libesp_vfs_console.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/ieee802154/libieee802154.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/openthread/libopenthread.a esp-idf/pthread/libpthread.a esp-idf/riscv/libriscv.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/vfs/libvfs.a - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/CMakeLists.txt -# ============================================================================= - - -############################################# -# Utility command for edit_cache - -build esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\mbedtls\mbedtls\pkgconfig && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/mbedtls/mbedtls/pkgconfig/edit_cache: phony esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\mbedtls\mbedtls\pkgconfig && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/mbedtls/mbedtls/pkgconfig/rebuild_cache: phony esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/mbedtls/mbedtls/pkgconfig/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/pkgconfig/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\mbedtls\mbedtls\pkgconfig && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/mbedtls/mbedtls/pkgconfig/install: phony esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/pkgconfig/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\mbedtls\mbedtls\pkgconfig && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/mbedtls/mbedtls/pkgconfig/install/local: phony esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/pkgconfig/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\mbedtls\mbedtls\pkgconfig && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/mbedtls/mbedtls/pkgconfig/install/strip: phony esp-idf/mbedtls/mbedtls/pkgconfig/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - - -############################################# -# Utility command for bootloader-flash - -build esp-idf/bootloader/bootloader-flash: phony esp-idf/bootloader/CMakeFiles/bootloader-flash bootloader - - -############################################# -# Utility command for encrypted-bootloader-flash - -build esp-idf/bootloader/encrypted-bootloader-flash: phony esp-idf/bootloader/CMakeFiles/encrypted-bootloader-flash - - -############################################# -# Utility command for edit_cache - -build esp-idf/bootloader/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\bootloader && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/bootloader/edit_cache: phony esp-idf/bootloader/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/bootloader/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\bootloader && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/bootloader/rebuild_cache: phony esp-idf/bootloader/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/bootloader/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/bootloader/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/bootloader/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\bootloader && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/bootloader/install: phony esp-idf/bootloader/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/bootloader/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/bootloader/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\bootloader && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/bootloader/install/local: phony esp-idf/bootloader/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/bootloader/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/bootloader/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\bootloader && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/bootloader/install/strip: phony esp-idf/bootloader/CMakeFiles/install/strip.util - - -############################################# -# Custom command for esp-idf\bootloader\CMakeFiles\bootloader-flash - -build esp-idf/bootloader/CMakeFiles/bootloader-flash | ${cmake_ninja_workdir}esp-idf/bootloader/CMakeFiles/bootloader-flash: CUSTOM_COMMAND || bootloader esp-idf/partition_table/partition_table_bin - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\esp\v5.5.1\esp-idf\components\bootloader && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -D IDF_PATH=C:/Users/Laurent/esp/v5.5.1/esp-idf -D SERIAL_TOOL=C:/Users/Laurent/.espressif/python_env/idf5.5_py3.11_env/Scripts/python.exe;;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esptool_py/esptool/esptool.py;--chip;esp32h2 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@bootloader-flash_args -D WORKING_DIRECTORY=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build -P C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esptool_py/run_serial_tool.cmake" - pool = console - - -############################################# -# Custom command for esp-idf\bootloader\CMakeFiles\encrypted-bootloader-flash - -build esp-idf/bootloader/CMakeFiles/encrypted-bootloader-flash | ${cmake_ninja_workdir}esp-idf/bootloader/CMakeFiles/encrypted-bootloader-flash: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\bootloader && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E echo "Error: The target encrypted-bootloader-flash requires" && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E echo "CONFIG_SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT to be enabled." && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E env "FAIL_MESSAGE=Failed executing target (see errors on lines above)" C:/Users/Laurent/.espressif/tools/cmake/3.30.2/bin/cmake.exe -P C:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/scripts/fail.cmake" - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - - -############################################# -# Utility command for app-flash - -build esp-idf/esptool_py/app-flash: phony esp-idf/esptool_py/CMakeFiles/app-flash app - - -############################################# -# Utility command for encrypted-app-flash - -build esp-idf/esptool_py/encrypted-app-flash: phony esp-idf/esptool_py/CMakeFiles/encrypted-app-flash - - -############################################# -# Utility command for app_check_size - -build esp-idf/esptool_py/app_check_size: phony esp-idf/esptool_py/CMakeFiles/app_check_size esp-idf/partition_table/partition_table_bin gen_project_binary - - -############################################# -# Utility command for edit_cache - -build esp-idf/esptool_py/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esptool_py && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esptool_py/edit_cache: phony esp-idf/esptool_py/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esptool_py/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esptool_py && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esptool_py/rebuild_cache: phony esp-idf/esptool_py/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esptool_py/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esptool_py/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esptool_py/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esptool_py && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esptool_py/install: phony esp-idf/esptool_py/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esptool_py/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esptool_py/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esptool_py && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esptool_py/install/local: phony esp-idf/esptool_py/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esptool_py/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esptool_py/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esptool_py && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esptool_py/install/strip: phony esp-idf/esptool_py/CMakeFiles/install/strip.util - - -############################################# -# Custom command for esp-idf\esptool_py\CMakeFiles\app-flash - -build esp-idf/esptool_py/CMakeFiles/app-flash | ${cmake_ninja_workdir}esp-idf/esptool_py/CMakeFiles/app-flash: CUSTOM_COMMAND || __ldgen_output_sections.ld _project_elf_src app esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_driver_ana_cmpr/libesp_driver_ana_cmpr.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_parlio/libesp_driver_parlio.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_event/libesp_event.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_security/libesp_security.a esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory.ld esp-idf/esp_system/sections.ld.in esp-idf/esp_timer/libesp_timer.a esp-idf/esp_vfs_console/libesp_vfs_console.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/esptool_py/app_check_size esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/ieee802154/libieee802154.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/openthread/libopenthread.a esp-idf/partition_table/partition_table_bin esp-idf/pthread/libpthread.a esp-idf/riscv/libriscv.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/vfs/libvfs.a gen_project_binary open-thread-rcp.elf - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\esp\v5.5.1\esp-idf\components\esptool_py && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -D IDF_PATH=C:/Users/Laurent/esp/v5.5.1/esp-idf -D SERIAL_TOOL=C:/Users/Laurent/.espressif/python_env/idf5.5_py3.11_env/Scripts/python.exe;;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esptool_py/esptool/esptool.py;--chip;esp32h2 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@app-flash_args -D WORKING_DIRECTORY=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build -P C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esptool_py/run_serial_tool.cmake" - pool = console - - -############################################# -# Custom command for esp-idf\esptool_py\CMakeFiles\encrypted-app-flash - -build esp-idf/esptool_py/CMakeFiles/encrypted-app-flash | ${cmake_ninja_workdir}esp-idf/esptool_py/CMakeFiles/encrypted-app-flash: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esptool_py && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E echo "Error: The target encrypted-app-flash requires" && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E echo "CONFIG_SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT to be enabled." && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E env "FAIL_MESSAGE=Failed executing target (see errors on lines above)" C:/Users/Laurent/.espressif/tools/cmake/3.30.2/bin/cmake.exe -P C:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/scripts/fail.cmake" - - -############################################# -# Custom command for esp-idf\esptool_py\CMakeFiles\app_check_size - -build esp-idf/esptool_py/CMakeFiles/app_check_size | ${cmake_ninja_workdir}esp-idf/esptool_py/CMakeFiles/app_check_size: CUSTOM_COMMAND || __ldgen_output_sections.ld _project_elf_src esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp_app_format/libesp_app_format.a esp-idf/esp_bootloader_format/libesp_bootloader_format.a esp-idf/esp_common/libesp_common.a esp-idf/esp_driver_ana_cmpr/libesp_driver_ana_cmpr.a esp-idf/esp_driver_gpio/libesp_driver_gpio.a esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a esp-idf/esp_driver_i2c/libesp_driver_i2c.a esp-idf/esp_driver_i2s/libesp_driver_i2s.a esp-idf/esp_driver_ledc/libesp_driver_ledc.a esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a esp-idf/esp_driver_parlio/libesp_driver_parlio.a esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a esp-idf/esp_driver_rmt/libesp_driver_rmt.a esp-idf/esp_driver_sdm/libesp_driver_sdm.a esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a esp-idf/esp_driver_spi/libesp_driver_spi.a esp-idf/esp_driver_tsens/libesp_driver_tsens.a esp-idf/esp_driver_twai/libesp_driver_twai.a esp-idf/esp_driver_uart/libesp_driver_uart.a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a esp-idf/esp_event/libesp_event.a esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_mm/libesp_mm.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_partition/libesp_partition.a esp-idf/esp_phy/libesp_phy.a esp-idf/esp_pm/libesp_pm.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_rom/libesp_rom.a esp-idf/esp_security/libesp_security.a esp-idf/esp_system/libesp_system.a esp-idf/esp_system/memory.ld esp-idf/esp_system/sections.ld.in esp-idf/esp_timer/libesp_timer.a esp-idf/esp_vfs_console/libesp_vfs_console.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/freertos/libfreertos.a esp-idf/hal/libhal.a esp-idf/heap/libheap.a esp-idf/ieee802154/libieee802154.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/custom_bundle esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/newlib/libnewlib.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/openthread/libopenthread.a esp-idf/partition_table/partition_table_bin esp-idf/pthread/libpthread.a esp-idf/riscv/libriscv.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a esp-idf/vfs/libvfs.a gen_project_binary open-thread-rcp.elf - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esptool_py && C:\Users\Laurent\.espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe C:/Users/Laurent/esp/v5.5.1/esp-idf/components/partition_table/check_sizes.py --offset 0x8000 partition --type app C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/partition_table/partition-table.bin C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/open-thread-rcp.bin" - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - - -############################################# -# Utility command for partition_table_bin - -build esp-idf/partition_table/partition_table_bin: phony esp-idf/partition_table/CMakeFiles/partition_table_bin partition_table/partition-table.bin - - -############################################# -# Utility command for partition-table - -build esp-idf/partition_table/partition-table: phony esp-idf/partition_table/CMakeFiles/partition-table esp-idf/partition_table/partition_table_bin - - -############################################# -# Utility command for partition_table - -build esp-idf/partition_table/partition_table: phony esp-idf/partition_table/CMakeFiles/partition_table esp-idf/partition_table/partition-table - - -############################################# -# Utility command for partition-table-flash - -build esp-idf/partition_table/partition-table-flash: phony esp-idf/partition_table/CMakeFiles/partition-table-flash - - -############################################# -# Utility command for encrypted-partition-table-flash - -build esp-idf/partition_table/encrypted-partition-table-flash: phony esp-idf/partition_table/CMakeFiles/encrypted-partition-table-flash - - -############################################# -# Utility command for partition_table-flash - -build esp-idf/partition_table/partition_table-flash: phony esp-idf/partition_table/CMakeFiles/partition_table-flash esp-idf/partition_table/partition-table-flash - - -############################################# -# Utility command for edit_cache - -build esp-idf/partition_table/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\partition_table && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/partition_table/edit_cache: phony esp-idf/partition_table/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/partition_table/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\partition_table && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/partition_table/rebuild_cache: phony esp-idf/partition_table/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/partition_table/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/partition_table/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/partition_table/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\partition_table && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/partition_table/install: phony esp-idf/partition_table/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/partition_table/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/partition_table/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\partition_table && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/partition_table/install/local: phony esp-idf/partition_table/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/partition_table/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/partition_table/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\partition_table && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/partition_table/install/strip: phony esp-idf/partition_table/CMakeFiles/install/strip.util - - -############################################# -# Phony custom command for esp-idf\partition_table\CMakeFiles\partition_table_bin - -build esp-idf/partition_table/CMakeFiles/partition_table_bin | ${cmake_ninja_workdir}esp-idf/partition_table/CMakeFiles/partition_table_bin: phony partition_table/partition-table.bin partition_table/partition-table.bin - - -############################################# -# Custom command for partition_table\partition-table.bin - -build partition_table/partition-table.bin | ${cmake_ninja_workdir}partition_table/partition-table.bin: CUSTOM_COMMAND C$:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/partitions.csv C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/partition_table/gen_esp32part.py - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\partition_table && C:\Users\Laurent\.espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe C:/Users/Laurent/esp/v5.5.1/esp-idf/components/partition_table/gen_esp32part.py -q --offset 0x8000 --primary-bootloader-offset 0x0 --flash-size 2MB -- C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/partitions.csv C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/partition_table/partition-table.bin && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E echo "Partition table binary generated. Contents:" && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E echo ******************************************************************************* && C:\Users\Laurent\.espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe C:/Users/Laurent/esp/v5.5.1/esp-idf/components/partition_table/gen_esp32part.py -q --offset 0x8000 --primary-bootloader-offset 0x0 --flash-size 2MB -- C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/partition_table/partition-table.bin && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E echo *******************************************************************************" - DESC = Generating ../../partition_table/partition-table.bin - restat = 1 - - -############################################# -# Custom command for esp-idf\partition_table\CMakeFiles\partition-table - -build esp-idf/partition_table/CMakeFiles/partition-table | ${cmake_ninja_workdir}esp-idf/partition_table/CMakeFiles/partition-table: CUSTOM_COMMAND || esp-idf/partition_table/partition_table_bin - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\partition_table && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E echo "Partition table binary generated. Contents:" && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E echo ******************************************************************************* && C:\Users\Laurent\.espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe C:/Users/Laurent/esp/v5.5.1/esp-idf/components/partition_table/gen_esp32part.py -q --offset 0x8000 --primary-bootloader-offset 0x0 --flash-size 2MB -- C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/partition_table/partition-table.bin && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E echo *******************************************************************************" - - -############################################# -# Custom command for esp-idf\partition_table\CMakeFiles\partition_table - -build esp-idf/partition_table/CMakeFiles/partition_table | ${cmake_ninja_workdir}esp-idf/partition_table/CMakeFiles/partition_table: CUSTOM_COMMAND || esp-idf/partition_table/partition-table esp-idf/partition_table/partition_table_bin - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\partition_table && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E echo " - DESC = Warning: command "partition_table" is deprecated. Have you wanted to run "partition-table" instead? - - -############################################# -# Custom command for esp-idf\partition_table\CMakeFiles\partition-table-flash - -build esp-idf/partition_table/CMakeFiles/partition-table-flash | ${cmake_ninja_workdir}esp-idf/partition_table/CMakeFiles/partition-table-flash: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\esp\v5.5.1\esp-idf\components\partition_table && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -D IDF_PATH=C:/Users/Laurent/esp/v5.5.1/esp-idf -D SERIAL_TOOL=C:/Users/Laurent/.espressif/python_env/idf5.5_py3.11_env/Scripts/python.exe;;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esptool_py/esptool/esptool.py;--chip;esp32h2 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@partition-table-flash_args -D WORKING_DIRECTORY=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build -P C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esptool_py/run_serial_tool.cmake" - pool = console - - -############################################# -# Custom command for esp-idf\partition_table\CMakeFiles\encrypted-partition-table-flash - -build esp-idf/partition_table/CMakeFiles/encrypted-partition-table-flash | ${cmake_ninja_workdir}esp-idf/partition_table/CMakeFiles/encrypted-partition-table-flash: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\partition_table && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E echo "Error: The target encrypted-partition-table-flash requires" && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E echo "CONFIG_SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT to be enabled." && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E env "FAIL_MESSAGE=Failed executing target (see errors on lines above)" C:/Users/Laurent/.espressif/tools/cmake/3.30.2/bin/cmake.exe -P C:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/scripts/fail.cmake" - - -############################################# -# Custom command for esp-idf\partition_table\CMakeFiles\partition_table-flash - -build esp-idf/partition_table/CMakeFiles/partition_table-flash | ${cmake_ninja_workdir}esp-idf/partition_table/CMakeFiles/partition_table-flash: CUSTOM_COMMAND || esp-idf/partition_table/partition-table-flash - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\partition_table && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E echo " - DESC = Warning: command "partition_table-flash" is deprecated. Have you wanted to run "partition-table-flash" instead? - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_app_format - - -############################################# -# Order-only phony target for __idf_esp_app_format - -build cmake_object_order_depends_target___idf_esp_app_format: phony || cmake_object_order_depends_target___idf_esp_bootloader_format - -build esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir/esp_app_desc.c.obj: C_COMPILER____idf_esp_app_format_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/esp_app_desc.c || cmake_object_order_depends_target___idf_esp_app_format - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D PROJECT_NAME=\"open-thread-rcp\" -DPROJECT_VER=\"c9e7aad-dirty\" - DEP_FILE = esp-idf\esp_app_format\CMakeFiles\__idf_esp_app_format.dir\esp_app_desc.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\esp_app_format\CMakeFiles\__idf_esp_app_format.dir - OBJECT_FILE_DIR = esp-idf\esp_app_format\CMakeFiles\__idf_esp_app_format.dir - TARGET_COMPILE_PDB = esp-idf\esp_app_format\CMakeFiles\__idf_esp_app_format.dir\__idf_esp_app_format.pdb - TARGET_PDB = esp-idf\esp_app_format\libesp_app_format.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_app_format - - -############################################# -# Link the static library esp-idf\esp_app_format\libesp_app_format.a - -build esp-idf/esp_app_format/libesp_app_format.a: C_STATIC_LIBRARY_LINKER____idf_esp_app_format_ esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir/esp_app_desc.c.obj || esp-idf/esp_bootloader_format/libesp_bootloader_format.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei - OBJECT_DIR = esp-idf\esp_app_format\CMakeFiles\__idf_esp_app_format.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = esp-idf\esp_app_format\CMakeFiles\__idf_esp_app_format.dir\__idf_esp_app_format.pdb - TARGET_FILE = esp-idf\esp_app_format\libesp_app_format.a - TARGET_PDB = esp-idf\esp_app_format\libesp_app_format.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_app_format/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_app_format && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_app_format/edit_cache: phony esp-idf/esp_app_format/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_app_format/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_app_format && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_app_format/rebuild_cache: phony esp-idf/esp_app_format/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_app_format/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_app_format/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_app_format/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_app_format && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_app_format/install: phony esp-idf/esp_app_format/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_app_format/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_app_format/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_app_format && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_app_format/install/local: phony esp-idf/esp_app_format/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_app_format/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_app_format/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_app_format && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_app_format/install/strip: phony esp-idf/esp_app_format/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_bootloader_format - - -############################################# -# Order-only phony target for __idf_esp_bootloader_format - -build cmake_object_order_depends_target___idf_esp_bootloader_format: phony || cmake_object_order_depends_target___idf_app_update - -build esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj: C_COMPILER____idf_esp_bootloader_format_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/esp_bootloader_desc.c || cmake_object_order_depends_target___idf_esp_bootloader_format - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_bootloader_format\CMakeFiles\__idf_esp_bootloader_format.dir\esp_bootloader_desc.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\esp_bootloader_format\CMakeFiles\__idf_esp_bootloader_format.dir - OBJECT_FILE_DIR = esp-idf\esp_bootloader_format\CMakeFiles\__idf_esp_bootloader_format.dir - TARGET_COMPILE_PDB = esp-idf\esp_bootloader_format\CMakeFiles\__idf_esp_bootloader_format.dir\__idf_esp_bootloader_format.pdb - TARGET_PDB = esp-idf\esp_bootloader_format\libesp_bootloader_format.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_bootloader_format - - -############################################# -# Link the static library esp-idf\esp_bootloader_format\libesp_bootloader_format.a - -build esp-idf/esp_bootloader_format/libesp_bootloader_format.a: C_STATIC_LIBRARY_LINKER____idf_esp_bootloader_format_ esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj || esp-idf/app_update/libapp_update.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei - OBJECT_DIR = esp-idf\esp_bootloader_format\CMakeFiles\__idf_esp_bootloader_format.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = esp-idf\esp_bootloader_format\CMakeFiles\__idf_esp_bootloader_format.dir\__idf_esp_bootloader_format.pdb - TARGET_FILE = esp-idf\esp_bootloader_format\libesp_bootloader_format.a - TARGET_PDB = esp-idf\esp_bootloader_format\libesp_bootloader_format.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_bootloader_format/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_bootloader_format && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_bootloader_format/edit_cache: phony esp-idf/esp_bootloader_format/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_bootloader_format/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_bootloader_format && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_bootloader_format/rebuild_cache: phony esp-idf/esp_bootloader_format/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_bootloader_format/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_bootloader_format/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_bootloader_format/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_bootloader_format && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_bootloader_format/install: phony esp-idf/esp_bootloader_format/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_bootloader_format/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_bootloader_format/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_bootloader_format && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_bootloader_format/install/local: phony esp-idf/esp_bootloader_format/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_bootloader_format/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_bootloader_format/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_bootloader_format && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_bootloader_format/install/strip: phony esp-idf/esp_bootloader_format/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_app_update - - -############################################# -# Order-only phony target for __idf_app_update - -build cmake_object_order_depends_target___idf_app_update: phony || cmake_object_order_depends_target___idf_esp_partition - -build esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_ops.c.obj: C_COMPILER____idf_app_update_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/app_update/esp_ota_ops.c || cmake_object_order_depends_target___idf_app_update - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\app_update\CMakeFiles\__idf_app_update.dir\esp_ota_ops.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf\app_update\CMakeFiles\__idf_app_update.dir - OBJECT_FILE_DIR = esp-idf\app_update\CMakeFiles\__idf_app_update.dir - TARGET_COMPILE_PDB = esp-idf\app_update\CMakeFiles\__idf_app_update.dir\__idf_app_update.pdb - TARGET_PDB = esp-idf\app_update\libapp_update.pdb - -build esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_app_desc.c.obj: C_COMPILER____idf_app_update_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/app_update/esp_ota_app_desc.c || cmake_object_order_depends_target___idf_app_update - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\app_update\CMakeFiles\__idf_app_update.dir\esp_ota_app_desc.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf\app_update\CMakeFiles\__idf_app_update.dir - OBJECT_FILE_DIR = esp-idf\app_update\CMakeFiles\__idf_app_update.dir - TARGET_COMPILE_PDB = esp-idf\app_update\CMakeFiles\__idf_app_update.dir\__idf_app_update.pdb - TARGET_PDB = esp-idf\app_update\libapp_update.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_app_update - - -############################################# -# Link the static library esp-idf\app_update\libapp_update.a - -build esp-idf/app_update/libapp_update.a: C_STATIC_LIBRARY_LINKER____idf_app_update_ esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_ops.c.obj esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_app_desc.c.obj || esp-idf/esp_partition/libesp_partition.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei - OBJECT_DIR = esp-idf\app_update\CMakeFiles\__idf_app_update.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = esp-idf\app_update\CMakeFiles\__idf_app_update.dir\__idf_app_update.pdb - TARGET_FILE = esp-idf\app_update\libapp_update.a - TARGET_PDB = esp-idf\app_update\libapp_update.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/app_update/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\app_update && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/app_update/edit_cache: phony esp-idf/app_update/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/app_update/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\app_update && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/app_update/rebuild_cache: phony esp-idf/app_update/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/app_update/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/app_update/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/app_update/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\app_update && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/app_update/install: phony esp-idf/app_update/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/app_update/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/app_update/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\app_update && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/app_update/install/local: phony esp-idf/app_update/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/app_update/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/app_update/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\app_update && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/app_update/install/strip: phony esp-idf/app_update/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_partition - - -############################################# -# Order-only phony target for __idf_esp_partition - -build cmake_object_order_depends_target___idf_esp_partition: phony || cmake_object_order_depends_target___idf_efuse - -build esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition.c.obj: C_COMPILER____idf_esp_partition_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/partition.c || cmake_object_order_depends_target___idf_esp_partition - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_partition\CMakeFiles\__idf_esp_partition.dir\partition.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include - OBJECT_DIR = esp-idf\esp_partition\CMakeFiles\__idf_esp_partition.dir - OBJECT_FILE_DIR = esp-idf\esp_partition\CMakeFiles\__idf_esp_partition.dir - TARGET_COMPILE_PDB = esp-idf\esp_partition\CMakeFiles\__idf_esp_partition.dir\__idf_esp_partition.pdb - TARGET_PDB = esp-idf\esp_partition\libesp_partition.pdb - -build esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition_target.c.obj: C_COMPILER____idf_esp_partition_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/partition_target.c || cmake_object_order_depends_target___idf_esp_partition - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_partition\CMakeFiles\__idf_esp_partition.dir\partition_target.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include - OBJECT_DIR = esp-idf\esp_partition\CMakeFiles\__idf_esp_partition.dir - OBJECT_FILE_DIR = esp-idf\esp_partition\CMakeFiles\__idf_esp_partition.dir - TARGET_COMPILE_PDB = esp-idf\esp_partition\CMakeFiles\__idf_esp_partition.dir\__idf_esp_partition.pdb - TARGET_PDB = esp-idf\esp_partition\libesp_partition.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_partition - - -############################################# -# Link the static library esp-idf\esp_partition\libesp_partition.a - -build esp-idf/esp_partition/libesp_partition.a: C_STATIC_LIBRARY_LINKER____idf_esp_partition_ esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition.c.obj esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition_target.c.obj || esp-idf/efuse/libefuse.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei - OBJECT_DIR = esp-idf\esp_partition\CMakeFiles\__idf_esp_partition.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = esp-idf\esp_partition\CMakeFiles\__idf_esp_partition.dir\__idf_esp_partition.pdb - TARGET_FILE = esp-idf\esp_partition\libesp_partition.a - TARGET_PDB = esp-idf\esp_partition\libesp_partition.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_partition/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_partition && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_partition/edit_cache: phony esp-idf/esp_partition/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_partition/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_partition && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_partition/rebuild_cache: phony esp-idf/esp_partition/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_partition/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_partition/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_partition/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_partition && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_partition/install: phony esp-idf/esp_partition/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_partition/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_partition/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_partition && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_partition/install/local: phony esp-idf/esp_partition/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_partition/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_partition/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_partition && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_partition/install/strip: phony esp-idf/esp_partition/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_efuse - - -############################################# -# Order-only phony target for __idf_efuse - -build cmake_object_order_depends_target___idf_efuse: phony || cmake_object_order_depends_target___idf_bootloader_support - -build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32h2/esp_efuse_table.c.obj: C_COMPILER____idf_efuse_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/esp_efuse_table.c || cmake_object_order_depends_target___idf_efuse - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32h2\esp_efuse_table.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir - OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32h2 - TARGET_COMPILE_PDB = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\__idf_efuse.pdb - TARGET_PDB = esp-idf\efuse\libefuse.pdb - -build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32h2/esp_efuse_table_v0.0_v1.1.c.obj: C_COMPILER____idf_efuse_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/esp_efuse_table_v0.0_v1.1.c || cmake_object_order_depends_target___idf_efuse - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32h2\esp_efuse_table_v0.0_v1.1.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir - OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32h2 - TARGET_COMPILE_PDB = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\__idf_efuse.pdb - TARGET_PDB = esp-idf\efuse\libefuse.pdb - -build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32h2/esp_efuse_fields.c.obj: C_COMPILER____idf_efuse_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/esp_efuse_fields.c || cmake_object_order_depends_target___idf_efuse - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32h2\esp_efuse_fields.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir - OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32h2 - TARGET_COMPILE_PDB = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\__idf_efuse.pdb - TARGET_PDB = esp-idf\efuse\libefuse.pdb - -build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32h2/esp_efuse_rtc_calib.c.obj: C_COMPILER____idf_efuse_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/esp_efuse_rtc_calib.c || cmake_object_order_depends_target___idf_efuse - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32h2\esp_efuse_rtc_calib.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir - OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32h2 - TARGET_COMPILE_PDB = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\__idf_efuse.pdb - TARGET_PDB = esp-idf\efuse\libefuse.pdb - -build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32h2/esp_efuse_utility.c.obj: C_COMPILER____idf_efuse_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/esp_efuse_utility.c || cmake_object_order_depends_target___idf_efuse - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32h2\esp_efuse_utility.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir - OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\esp32h2 - TARGET_COMPILE_PDB = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\__idf_efuse.pdb - TARGET_PDB = esp-idf\efuse\libefuse.pdb - -build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj: C_COMPILER____idf_efuse_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/src/esp_efuse_api.c || cmake_object_order_depends_target___idf_efuse - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src\esp_efuse_api.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir - OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src - TARGET_COMPILE_PDB = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\__idf_efuse.pdb - TARGET_PDB = esp-idf\efuse\libefuse.pdb - -build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj: C_COMPILER____idf_efuse_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/src/esp_efuse_fields.c || cmake_object_order_depends_target___idf_efuse - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src\esp_efuse_fields.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir - OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src - TARGET_COMPILE_PDB = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\__idf_efuse.pdb - TARGET_PDB = esp-idf\efuse\libefuse.pdb - -build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj: C_COMPILER____idf_efuse_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/src/esp_efuse_utility.c || cmake_object_order_depends_target___idf_efuse - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src\esp_efuse_utility.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir - OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src - TARGET_COMPILE_PDB = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\__idf_efuse.pdb - TARGET_PDB = esp-idf\efuse\libefuse.pdb - -build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c.obj: C_COMPILER____idf_efuse_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c || cmake_object_order_depends_target___idf_efuse - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src\efuse_controller\keys\with_key_purposes\esp_efuse_api_key.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir - OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src\efuse_controller\keys\with_key_purposes - TARGET_COMPILE_PDB = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\__idf_efuse.pdb - TARGET_PDB = esp-idf\efuse\libefuse.pdb - -build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_startup.c.obj: C_COMPILER____idf_efuse_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/src/esp_efuse_startup.c || cmake_object_order_depends_target___idf_efuse - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src\esp_efuse_startup.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir - OBJECT_FILE_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\src - TARGET_COMPILE_PDB = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\__idf_efuse.pdb - TARGET_PDB = esp-idf\efuse\libefuse.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_efuse - - -############################################# -# Link the static library esp-idf\efuse\libefuse.a - -build esp-idf/efuse/libefuse.a: C_STATIC_LIBRARY_LINKER____idf_efuse_ esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32h2/esp_efuse_table.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32h2/esp_efuse_table_v0.0_v1.1.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32h2/esp_efuse_fields.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32h2/esp_efuse_rtc_calib.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32h2/esp_efuse_utility.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_startup.c.obj || esp-idf/bootloader_support/libbootloader_support.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei - OBJECT_DIR = esp-idf\efuse\CMakeFiles\__idf_efuse.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = esp-idf\efuse\CMakeFiles\__idf_efuse.dir\__idf_efuse.pdb - TARGET_FILE = esp-idf\efuse\libefuse.a - TARGET_PDB = esp-idf\efuse\libefuse.pdb - - -############################################# -# Utility command for efuse-common-table - -build esp-idf/efuse/efuse-common-table: phony esp-idf/efuse/CMakeFiles/efuse-common-table - - -############################################# -# Utility command for efuse_common_table - -build esp-idf/efuse/efuse_common_table: phony esp-idf/efuse/CMakeFiles/efuse_common_table esp-idf/efuse/efuse-common-table - - -############################################# -# Utility command for efuse-custom-table - -build esp-idf/efuse/efuse-custom-table: phony - - -############################################# -# Utility command for efuse_custom_table - -build esp-idf/efuse/efuse_custom_table: phony esp-idf/efuse/CMakeFiles/efuse_custom_table esp-idf/efuse/efuse-custom-table - - -############################################# -# Utility command for show-efuse-table - -build esp-idf/efuse/show-efuse-table: phony esp-idf/efuse/CMakeFiles/show-efuse-table - - -############################################# -# Utility command for show_efuse_table - -build esp-idf/efuse/show_efuse_table: phony esp-idf/efuse/CMakeFiles/show_efuse_table esp-idf/efuse/show-efuse-table - - -############################################# -# Utility command for efuse_test_table - -build esp-idf/efuse/efuse_test_table: phony esp-idf/efuse/CMakeFiles/efuse_test_table - - -############################################# -# Utility command for edit_cache - -build esp-idf/efuse/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\efuse && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/efuse/edit_cache: phony esp-idf/efuse/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/efuse/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\efuse && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/efuse/rebuild_cache: phony esp-idf/efuse/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/efuse/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/efuse/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/efuse/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\efuse && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/efuse/install: phony esp-idf/efuse/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/efuse/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/efuse/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\efuse && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/efuse/install/local: phony esp-idf/efuse/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/efuse/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/efuse/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\efuse && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/efuse/install/strip: phony esp-idf/efuse/CMakeFiles/install/strip.util - - -############################################# -# Custom command for esp-idf\efuse\CMakeFiles\efuse-common-table - -build esp-idf/efuse/CMakeFiles/efuse-common-table | ${cmake_ninja_workdir}esp-idf/efuse/CMakeFiles/efuse-common-table: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\efuse && C:\Users\Laurent\.espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe C:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/efuse_table_gen.py C:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/esp_efuse_table.csv -t esp32h2 --max_blk_len 256" - - -############################################# -# Custom command for esp-idf\efuse\CMakeFiles\efuse_common_table - -build esp-idf/efuse/CMakeFiles/efuse_common_table | ${cmake_ninja_workdir}esp-idf/efuse/CMakeFiles/efuse_common_table: CUSTOM_COMMAND || esp-idf/efuse/efuse-common-table - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\efuse && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E echo " - DESC = Warning: command "efuse_common_table" is deprecated. Have you wanted to run "efuse-common-table" instead? - - -############################################# -# Custom command for esp-idf\efuse\CMakeFiles\efuse_custom_table - -build esp-idf/efuse/CMakeFiles/efuse_custom_table | ${cmake_ninja_workdir}esp-idf/efuse/CMakeFiles/efuse_custom_table: CUSTOM_COMMAND || esp-idf/efuse/efuse-custom-table - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\efuse && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E echo " - DESC = Warning: command "efuse_custom_table" is deprecated. Have you wanted to run "efuse-custom-table" instead? - - -############################################# -# Custom command for esp-idf\efuse\CMakeFiles\show-efuse-table - -build esp-idf/efuse/CMakeFiles/show-efuse-table | ${cmake_ninja_workdir}esp-idf/efuse/CMakeFiles/show-efuse-table: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\efuse && C:\Users\Laurent\.espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe C:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/efuse_table_gen.py C:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/esp_efuse_table.csv -t esp32h2 --max_blk_len 256 --info" - - -############################################# -# Custom command for esp-idf\efuse\CMakeFiles\show_efuse_table - -build esp-idf/efuse/CMakeFiles/show_efuse_table | ${cmake_ninja_workdir}esp-idf/efuse/CMakeFiles/show_efuse_table: CUSTOM_COMMAND || esp-idf/efuse/show-efuse-table - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\efuse && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -E echo " - DESC = Warning: command "show_efuse_table" is deprecated. Have you wanted to run "show-efuse-table" instead? - - -############################################# -# Custom command for esp-idf\efuse\CMakeFiles\efuse_test_table - -build esp-idf/efuse/CMakeFiles/efuse_test_table | ${cmake_ninja_workdir}esp-idf/efuse/CMakeFiles/efuse_test_table: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\efuse && C:\Users\Laurent\.espressif\python_env\idf5.5_py3.11_env\Scripts\python.exe C:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/efuse_table_gen.py C:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/test/esp_efuse_test_table.csv -t esp32h2 --max_blk_len 256" - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_bootloader_support - - -############################################# -# Order-only phony target for __idf_bootloader_support - -build cmake_object_order_depends_target___idf_bootloader_support: phony || cmake_object_order_depends_target___idf_esp_mm - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_common.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_common.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src - TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb - TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_common_loader.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_common_loader.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src - TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb - TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_clock_init.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_clock_init.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src - TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb - TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_mem.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_mem.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src - TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb - TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_random.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_random.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src - TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb - TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_efuse.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_efuse.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src - TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb - TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/src/flash_encrypt.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\flash_encrypt.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src - TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb - TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/src/secure_boot.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\secure_boot.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src - TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb - TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32h2.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_random_esp32h2.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_random_esp32h2.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src - TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb - TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/src/bootloader_flash.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\bootloader_flash\src\bootloader_flash.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\bootloader_flash\src - TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb - TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/src/flash_qio_mode.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\bootloader_flash\src\flash_qio_mode.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\bootloader_flash\src - TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb - TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32h2.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/src/bootloader_flash_config_esp32h2.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\bootloader_flash\src\bootloader_flash_config_esp32h2.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\bootloader_flash\src - TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb - TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_utility.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_utility.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src - TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb - TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/src/flash_partitions.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\flash_partitions.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src - TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb - TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/src/esp_image_format.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\esp_image_format.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src - TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb - TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_sha.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_sha.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\bootloader_sha.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src - TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb - TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb - -build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32h2/secure_boot_secure_features.c.obj: C_COMPILER____idf_bootloader_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/src/esp32h2/secure_boot_secure_features.c || cmake_object_order_depends_target___idf_bootloader_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\esp32h2\secure_boot_secure_features.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include - OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir - OBJECT_FILE_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\src\esp32h2 - TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb - TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_bootloader_support - - -############################################# -# Link the static library esp-idf\bootloader_support\libbootloader_support.a - -build esp-idf/bootloader_support/libbootloader_support.a: C_STATIC_LIBRARY_LINKER____idf_bootloader_support_ esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32h2.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32h2.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_sha.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32h2/secure_boot_secure_features.c.obj || esp-idf/esp_mm/libesp_mm.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei - OBJECT_DIR = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = esp-idf\bootloader_support\CMakeFiles\__idf_bootloader_support.dir\__idf_bootloader_support.pdb - TARGET_FILE = esp-idf\bootloader_support\libbootloader_support.a - TARGET_PDB = esp-idf\bootloader_support\libbootloader_support.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/bootloader_support/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\bootloader_support && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/bootloader_support/edit_cache: phony esp-idf/bootloader_support/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/bootloader_support/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\bootloader_support && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/bootloader_support/rebuild_cache: phony esp-idf/bootloader_support/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/bootloader_support/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/bootloader_support/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/bootloader_support/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\bootloader_support && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/bootloader_support/install: phony esp-idf/bootloader_support/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/bootloader_support/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/bootloader_support/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\bootloader_support && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/bootloader_support/install/local: phony esp-idf/bootloader_support/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/bootloader_support/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/bootloader_support/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\bootloader_support && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/bootloader_support/install/strip: phony esp-idf/bootloader_support/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_mm - - -############################################# -# Order-only phony target for __idf_esp_mm - -build cmake_object_order_depends_target___idf_esp_mm: phony || cmake_object_order_depends_target___idf_spi_flash - -build esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_mmu_map.c.obj: C_COMPILER____idf_esp_mm_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/esp_mmu_map.c || cmake_object_order_depends_target___idf_esp_mm - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir\esp_mmu_map.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir - OBJECT_FILE_DIR = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir - TARGET_COMPILE_PDB = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir\__idf_esp_mm.pdb - TARGET_PDB = esp-idf\esp_mm\libesp_mm.pdb - -build esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/port/esp32h2/ext_mem_layout.c.obj: C_COMPILER____idf_esp_mm_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/port/esp32h2/ext_mem_layout.c || cmake_object_order_depends_target___idf_esp_mm - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir\port\esp32h2\ext_mem_layout.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir - OBJECT_FILE_DIR = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir\port\esp32h2 - TARGET_COMPILE_PDB = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir\__idf_esp_mm.pdb - TARGET_PDB = esp-idf\esp_mm\libesp_mm.pdb - -build esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_cache_msync.c.obj: C_COMPILER____idf_esp_mm_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/esp_cache_msync.c || cmake_object_order_depends_target___idf_esp_mm - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir\esp_cache_msync.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir - OBJECT_FILE_DIR = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir - TARGET_COMPILE_PDB = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir\__idf_esp_mm.pdb - TARGET_PDB = esp-idf\esp_mm\libesp_mm.pdb - -build esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_cache_utils.c.obj: C_COMPILER____idf_esp_mm_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/esp_cache_utils.c || cmake_object_order_depends_target___idf_esp_mm - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir\esp_cache_utils.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir - OBJECT_FILE_DIR = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir - TARGET_COMPILE_PDB = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir\__idf_esp_mm.pdb - TARGET_PDB = esp-idf\esp_mm\libesp_mm.pdb - -build esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/heap_align_hw.c.obj: C_COMPILER____idf_esp_mm_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/heap_align_hw.c || cmake_object_order_depends_target___idf_esp_mm - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir\heap_align_hw.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir - OBJECT_FILE_DIR = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir - TARGET_COMPILE_PDB = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir\__idf_esp_mm.pdb - TARGET_PDB = esp-idf\esp_mm\libesp_mm.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_mm - - -############################################# -# Link the static library esp-idf\esp_mm\libesp_mm.a - -build esp-idf/esp_mm/libesp_mm.a: C_STATIC_LIBRARY_LINKER____idf_esp_mm_ esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_mmu_map.c.obj esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/port/esp32h2/ext_mem_layout.c.obj esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_cache_msync.c.obj esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_cache_utils.c.obj esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/heap_align_hw.c.obj || esp-idf/spi_flash/libspi_flash.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei - OBJECT_DIR = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = esp-idf\esp_mm\CMakeFiles\__idf_esp_mm.dir\__idf_esp_mm.pdb - TARGET_FILE = esp-idf\esp_mm\libesp_mm.a - TARGET_PDB = esp-idf\esp_mm\libesp_mm.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_mm/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_mm && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_mm/edit_cache: phony esp-idf/esp_mm/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_mm/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_mm && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_mm/rebuild_cache: phony esp-idf/esp_mm/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_mm/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_mm/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_mm/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_mm && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_mm/install: phony esp-idf/esp_mm/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_mm/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_mm/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_mm && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_mm/install/local: phony esp-idf/esp_mm/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_mm/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_mm/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_mm && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_mm/install/strip: phony esp-idf/esp_mm/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_spi_flash - - -############################################# -# Order-only phony target for __idf_spi_flash - -build cmake_object_order_depends_target___idf_spi_flash: phony || cmake_object_order_depends_target___idf_esp_system - -build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_brownout_hook.c.obj: C_COMPILER____idf_spi_flash_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/flash_brownout_hook.c || cmake_object_order_depends_target___idf_spi_flash - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\flash_brownout_hook.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir - OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir - TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb - TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb - -build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_drivers.c.obj: C_COMPILER____idf_spi_flash_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/spi_flash_chip_drivers.c || cmake_object_order_depends_target___idf_spi_flash - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\spi_flash_chip_drivers.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir - OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir - TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb - TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb - -build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_generic.c.obj: C_COMPILER____idf_spi_flash_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/spi_flash_chip_generic.c || cmake_object_order_depends_target___idf_spi_flash - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\spi_flash_chip_generic.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir - OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir - TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb - TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb - -build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_issi.c.obj: C_COMPILER____idf_spi_flash_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/spi_flash_chip_issi.c || cmake_object_order_depends_target___idf_spi_flash - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\spi_flash_chip_issi.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir - OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir - TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb - TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb - -build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic.c.obj: C_COMPILER____idf_spi_flash_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/spi_flash_chip_mxic.c || cmake_object_order_depends_target___idf_spi_flash - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\spi_flash_chip_mxic.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir - OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir - TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb - TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb - -build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_gd.c.obj: C_COMPILER____idf_spi_flash_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/spi_flash_chip_gd.c || cmake_object_order_depends_target___idf_spi_flash - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\spi_flash_chip_gd.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir - OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir - TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb - TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb - -build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_winbond.c.obj: C_COMPILER____idf_spi_flash_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/spi_flash_chip_winbond.c || cmake_object_order_depends_target___idf_spi_flash - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\spi_flash_chip_winbond.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir - OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir - TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb - TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb - -build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_boya.c.obj: C_COMPILER____idf_spi_flash_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/spi_flash_chip_boya.c || cmake_object_order_depends_target___idf_spi_flash - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\spi_flash_chip_boya.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir - OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir - TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb - TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb - -build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic_opi.c.obj: C_COMPILER____idf_spi_flash_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/spi_flash_chip_mxic_opi.c || cmake_object_order_depends_target___idf_spi_flash - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\spi_flash_chip_mxic_opi.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir - OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir - TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb - TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb - -build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_th.c.obj: C_COMPILER____idf_spi_flash_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/spi_flash_chip_th.c || cmake_object_order_depends_target___idf_spi_flash - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\spi_flash_chip_th.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir - OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir - TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb - TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb - -build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/memspi_host_driver.c.obj: C_COMPILER____idf_spi_flash_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/memspi_host_driver.c || cmake_object_order_depends_target___idf_spi_flash - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\memspi_host_driver.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir - OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir - TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb - TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb - -build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/cache_utils.c.obj: C_COMPILER____idf_spi_flash_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/cache_utils.c || cmake_object_order_depends_target___idf_spi_flash - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\cache_utils.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir - OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir - TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb - TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb - -build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_mmap.c.obj: C_COMPILER____idf_spi_flash_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/flash_mmap.c || cmake_object_order_depends_target___idf_spi_flash - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\flash_mmap.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir - OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir - TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb - TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb - -build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_ops.c.obj: C_COMPILER____idf_spi_flash_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/flash_ops.c || cmake_object_order_depends_target___idf_spi_flash - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\flash_ops.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir - OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir - TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb - TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb - -build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj: C_COMPILER____idf_spi_flash_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/spi_flash_wrap.c || cmake_object_order_depends_target___idf_spi_flash - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\spi_flash_wrap.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir - OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir - TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb - TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb - -build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_api.c.obj: C_COMPILER____idf_spi_flash_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/esp_flash_api.c || cmake_object_order_depends_target___idf_spi_flash - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\esp_flash_api.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir - OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir - TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb - TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb - -build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_spi_init.c.obj: C_COMPILER____idf_spi_flash_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/esp_flash_spi_init.c || cmake_object_order_depends_target___idf_spi_flash - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\esp_flash_spi_init.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir - OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir - TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb - TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb - -build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_app.c.obj: C_COMPILER____idf_spi_flash_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/spi_flash_os_func_app.c || cmake_object_order_depends_target___idf_spi_flash - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\spi_flash_os_func_app.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir - OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir - TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb - TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb - -build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_noos.c.obj: C_COMPILER____idf_spi_flash_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/spi_flash_os_func_noos.c || cmake_object_order_depends_target___idf_spi_flash - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\spi_flash_os_func_noos.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir - OBJECT_FILE_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir - TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb - TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_spi_flash - - -############################################# -# Link the static library esp-idf\spi_flash\libspi_flash.a - -build esp-idf/spi_flash/libspi_flash.a: C_STATIC_LIBRARY_LINKER____idf_spi_flash_ esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_brownout_hook.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_drivers.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_generic.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_issi.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_gd.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_winbond.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_boya.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic_opi.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_th.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/memspi_host_driver.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/cache_utils.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_mmap.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_ops.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_api.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_spi_init.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_app.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_noos.c.obj || esp-idf/esp_system/libesp_system.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei - OBJECT_DIR = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = esp-idf\spi_flash\CMakeFiles\__idf_spi_flash.dir\__idf_spi_flash.pdb - TARGET_FILE = esp-idf\spi_flash\libspi_flash.a - TARGET_PDB = esp-idf\spi_flash\libspi_flash.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/spi_flash/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\spi_flash && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/spi_flash/edit_cache: phony esp-idf/spi_flash/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/spi_flash/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\spi_flash && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/spi_flash/rebuild_cache: phony esp-idf/spi_flash/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/spi_flash/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/spi_flash/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/spi_flash/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\spi_flash && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/spi_flash/install: phony esp-idf/spi_flash/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/spi_flash/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/spi_flash/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\spi_flash && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/spi_flash/install/local: phony esp-idf/spi_flash/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/spi_flash/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/spi_flash/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\spi_flash && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/spi_flash/install/strip: phony esp-idf/spi_flash/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_system - - -############################################# -# Order-only phony target for __idf_esp_system - -build cmake_object_order_depends_target___idf_esp_system: phony || cmake_object_order_depends_target___idf_esp_common - -build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/esp_err.c || cmake_object_order_depends_target___idf_esp_system - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\esp_err.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir - OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir - TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb - TARGET_PDB = esp-idf\esp_system\libesp_system.pdb - -build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/crosscore_int.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/crosscore_int.c || cmake_object_order_depends_target___idf_esp_system - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\crosscore_int.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir - OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir - TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb - TARGET_PDB = esp-idf\esp_system\libesp_system.pdb - -build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_ipc.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/esp_ipc.c || cmake_object_order_depends_target___idf_esp_system - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\esp_ipc.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir - OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir - TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb - TARGET_PDB = esp-idf\esp_system\libesp_system.pdb - -build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_system_console.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/esp_system_console.c || cmake_object_order_depends_target___idf_esp_system - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\esp_system_console.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir - OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir - TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb - TARGET_PDB = esp-idf\esp_system\libesp_system.pdb - -build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/freertos_hooks.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/freertos_hooks.c || cmake_object_order_depends_target___idf_esp_system - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\freertos_hooks.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir - OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir - TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb - TARGET_PDB = esp-idf\esp_system\libesp_system.pdb - -build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/int_wdt.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/int_wdt.c || cmake_object_order_depends_target___idf_esp_system - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\int_wdt.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir - OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir - TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb - TARGET_PDB = esp-idf\esp_system\libesp_system.pdb - -build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/panic.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/panic.c || cmake_object_order_depends_target___idf_esp_system - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\panic.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir - OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir - TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb - TARGET_PDB = esp-idf\esp_system\libesp_system.pdb - -build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_system.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/esp_system.c || cmake_object_order_depends_target___idf_esp_system - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\esp_system.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir - OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir - TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb - TARGET_PDB = esp-idf\esp_system\libesp_system.pdb - -build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/startup.c || cmake_object_order_depends_target___idf_esp_system - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\startup.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-stack-protector - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir - OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir - TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb - TARGET_PDB = esp-idf\esp_system\libesp_system.pdb - -build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup_funcs.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/startup_funcs.c || cmake_object_order_depends_target___idf_esp_system - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\startup_funcs.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir - OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir - TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb - TARGET_PDB = esp-idf\esp_system\libesp_system.pdb - -build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/system_time.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/system_time.c || cmake_object_order_depends_target___idf_esp_system - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\system_time.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir - OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir - TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb - TARGET_PDB = esp-idf\esp_system\libesp_system.pdb - -build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/stack_check.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/stack_check.c || cmake_object_order_depends_target___idf_esp_system - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\stack_check.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-stack-protector - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir - OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir - TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb - TARGET_PDB = esp-idf\esp_system\libesp_system.pdb - -build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/ubsan.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/ubsan.c || cmake_object_order_depends_target___idf_esp_system - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\ubsan.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir - OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir - TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb - TARGET_PDB = esp-idf\esp_system\libesp_system.pdb - -build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/xt_wdt.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/xt_wdt.c || cmake_object_order_depends_target___idf_esp_system - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\xt_wdt.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir - OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir - TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb - TARGET_PDB = esp-idf\esp_system\libesp_system.pdb - -build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/task_wdt/task_wdt.c || cmake_object_order_depends_target___idf_esp_system - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\task_wdt\task_wdt.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir - OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\task_wdt - TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb - TARGET_PDB = esp-idf\esp_system\libesp_system.pdb - -build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt_impl_timergroup.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/task_wdt/task_wdt_impl_timergroup.c || cmake_object_order_depends_target___idf_esp_system - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\task_wdt\task_wdt_impl_timergroup.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir - OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\task_wdt - TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb - TARGET_PDB = esp-idf\esp_system\libesp_system.pdb - -build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/systick_etm.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/systick_etm.c || cmake_object_order_depends_target___idf_esp_system - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\systick_etm.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir - OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir - TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb - TARGET_PDB = esp-idf\esp_system\libesp_system.pdb - -build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/hw_stack_guard.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/hw_stack_guard.c || cmake_object_order_depends_target___idf_esp_system - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\hw_stack_guard.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir - OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir - TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb - TARGET_PDB = esp-idf\esp_system\libesp_system.pdb - -build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/cpu_start.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/cpu_start.c || cmake_object_order_depends_target___idf_esp_system - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\cpu_start.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-stack-protector - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir - OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port - TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb - TARGET_PDB = esp-idf\esp_system\libesp_system.pdb - -build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/panic_handler.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/panic_handler.c || cmake_object_order_depends_target___idf_esp_system - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\panic_handler.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir - OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port - TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb - TARGET_PDB = esp-idf\esp_system\libesp_system.pdb - -build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp_system_chip.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/esp_system_chip.c || cmake_object_order_depends_target___idf_esp_system - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\esp_system_chip.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir - OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port - TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb - TARGET_PDB = esp-idf\esp_system\libesp_system.pdb - -build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/image_process.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/image_process.c || cmake_object_order_depends_target___idf_esp_system - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\image_process.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir - OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port - TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb - TARGET_PDB = esp-idf\esp_system\libesp_system.pdb - -build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/expression_with_stack.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/arch/riscv/expression_with_stack.c || cmake_object_order_depends_target___idf_esp_system - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\arch\riscv\expression_with_stack.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir - OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\arch\riscv - TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb - TARGET_PDB = esp-idf\esp_system\libesp_system.pdb - -build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/panic_arch.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/arch/riscv/panic_arch.c || cmake_object_order_depends_target___idf_esp_system - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\arch\riscv\panic_arch.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir - OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\arch\riscv - TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb - TARGET_PDB = esp-idf\esp_system\libesp_system.pdb - -build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/debug_helpers.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/arch/riscv/debug_helpers.c || cmake_object_order_depends_target___idf_esp_system - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\arch\riscv\debug_helpers.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir - OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\arch\riscv - TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb - TARGET_PDB = esp-idf\esp_system\libesp_system.pdb - -build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/debug_stubs.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/arch/riscv/debug_stubs.c || cmake_object_order_depends_target___idf_esp_system - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\arch\riscv\debug_stubs.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir - OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\arch\riscv - TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb - TARGET_PDB = esp-idf\esp_system\libesp_system.pdb - -build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32h2/clk.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc/esp32h2/clk.c || cmake_object_order_depends_target___idf_esp_system - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\soc\esp32h2\clk.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir - OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\soc\esp32h2 - TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb - TARGET_PDB = esp-idf\esp_system\libesp_system.pdb - -build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32h2/reset_reason.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc/esp32h2/reset_reason.c || cmake_object_order_depends_target___idf_esp_system - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\soc\esp32h2\reset_reason.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir - OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\soc\esp32h2 - TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb - TARGET_PDB = esp-idf\esp_system\libesp_system.pdb - -build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32h2/system_internal.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc/esp32h2/system_internal.c || cmake_object_order_depends_target___idf_esp_system - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\soc\esp32h2\system_internal.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir - OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\soc\esp32h2 - TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb - TARGET_PDB = esp-idf\esp_system\libesp_system.pdb - -build esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32h2/cache_err_int.c.obj: C_COMPILER____idf_esp_system_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc/esp32h2/cache_err_int.c || cmake_object_order_depends_target___idf_esp_system - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\soc\esp32h2\cache_err_int.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir - OBJECT_FILE_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\port\soc\esp32h2 - TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb - TARGET_PDB = esp-idf\esp_system\libesp_system.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_system - - -############################################# -# Link the static library esp-idf\esp_system\libesp_system.a - -build esp-idf/esp_system/libesp_system.a: C_STATIC_LIBRARY_LINKER____idf_esp_system_ esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/crosscore_int.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_ipc.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_system_console.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/freertos_hooks.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/int_wdt.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/panic.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_system.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup_funcs.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/system_time.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/stack_check.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/ubsan.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/xt_wdt.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt_impl_timergroup.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/systick_etm.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/hw_stack_guard.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/cpu_start.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/panic_handler.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp_system_chip.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/image_process.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/expression_with_stack.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/panic_arch.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/debug_helpers.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/debug_stubs.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32h2/clk.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32h2/reset_reason.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32h2/system_internal.c.obj esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32h2/cache_err_int.c.obj || esp-idf/esp_common/libesp_common.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei - OBJECT_DIR = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = esp-idf\esp_system\CMakeFiles\__idf_esp_system.dir\__idf_esp_system.pdb - TARGET_FILE = esp-idf\esp_system\libesp_system.a - TARGET_PDB = esp-idf\esp_system\libesp_system.pdb - - -############################################# -# Utility command for memory.ld - -build esp-idf/esp_system/memory.ld: phony esp-idf/esp_system/CMakeFiles/memory.ld esp-idf/esp_system/ld/memory.ld - - -############################################# -# Utility command for sections.ld.in - -build esp-idf/esp_system/sections.ld.in: phony esp-idf/esp_system/CMakeFiles/sections.ld.in esp-idf/esp_system/ld/sections.ld.in - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_system/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_system && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_system/edit_cache: phony esp-idf/esp_system/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_system/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_system && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_system/rebuild_cache: phony esp-idf/esp_system/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_system/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_system/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_system/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_system && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_system/install: phony esp-idf/esp_system/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_system/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_system/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_system && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_system/install/local: phony esp-idf/esp_system/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_system/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_system/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_system && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_system/install/strip: phony esp-idf/esp_system/CMakeFiles/install/strip.util - - -############################################# -# Phony custom command for esp-idf\esp_system\CMakeFiles\memory.ld - -build esp-idf/esp_system/CMakeFiles/memory.ld | ${cmake_ninja_workdir}esp-idf/esp_system/CMakeFiles/memory.ld: phony esp-idf/esp_system/ld/memory.ld - - -############################################# -# Custom command for esp-idf\esp_system\ld\memory.ld - -build esp-idf/esp_system/ld/memory.ld | ${cmake_ninja_workdir}esp-idf/esp_system/ld/memory.ld: CUSTOM_COMMAND C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/ld/esp32h2/memory.ld.in config/sdkconfig.h - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_system && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCC=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc.exe -DSOURCE=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/ld/esp32h2/memory.ld.in -DTARGET=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/ld/memory.ld -DCONFIG_DIR=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -DLD_DIR=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/ld -P C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/ld/linker_script_generator.cmake" - DESC = Generating C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/ld/memory.ld linker script... - restat = 1 - - -############################################# -# Phony custom command for esp-idf\esp_system\CMakeFiles\sections.ld.in - -build esp-idf/esp_system/CMakeFiles/sections.ld.in | ${cmake_ninja_workdir}esp-idf/esp_system/CMakeFiles/sections.ld.in: phony esp-idf/esp_system/ld/sections.ld.in - - -############################################# -# Custom command for esp-idf\esp_system\ld\sections.ld.in - -build esp-idf/esp_system/ld/sections.ld.in | ${cmake_ninja_workdir}esp-idf/esp_system/ld/sections.ld.in: CUSTOM_COMMAND C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/ld/esp32h2/sections.ld.in config/sdkconfig.h - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_system && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCC=C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc.exe -DSOURCE=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/ld/esp32h2/sections.ld.in -DTARGET=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/ld/sections.ld.in -DCONFIG_DIR=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -DLD_DIR=C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/ld -P C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/ld/linker_script_generator.cmake" - DESC = Generating C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/ld/sections.ld.in linker script... - restat = 1 - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/CMakeLists.txt -# ============================================================================= - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_system/port/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_system\port && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_system/port/edit_cache: phony esp-idf/esp_system/port/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_system/port/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_system\port && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_system/port/rebuild_cache: phony esp-idf/esp_system/port/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_system/port/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_system/port/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_system/port/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_system\port && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_system/port/install: phony esp-idf/esp_system/port/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_system/port/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_system/port/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_system\port && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_system/port/install/local: phony esp-idf/esp_system/port/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_system/port/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_system/port/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_system\port && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_system/port/install/strip: phony esp-idf/esp_system/port/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/CMakeLists.txt -# ============================================================================= - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_system/port/soc/esp32h2/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_system\port\soc\esp32h2 && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_system/port/soc/esp32h2/edit_cache: phony esp-idf/esp_system/port/soc/esp32h2/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_system/port/soc/esp32h2/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_system\port\soc\esp32h2 && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_system/port/soc/esp32h2/rebuild_cache: phony esp-idf/esp_system/port/soc/esp32h2/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_system/port/soc/esp32h2/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_system/port/soc/esp32h2/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_system/port/soc/esp32h2/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_system\port\soc\esp32h2 && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_system/port/soc/esp32h2/install: phony esp-idf/esp_system/port/soc/esp32h2/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_system/port/soc/esp32h2/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_system/port/soc/esp32h2/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_system\port\soc\esp32h2 && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_system/port/soc/esp32h2/install/local: phony esp-idf/esp_system/port/soc/esp32h2/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_system/port/soc/esp32h2/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_system/port/soc/esp32h2/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_system\port\soc\esp32h2 && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_system/port/soc/esp32h2/install/strip: phony esp-idf/esp_system/port/soc/esp32h2/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_common - - -############################################# -# Order-only phony target for __idf_esp_common - -build cmake_object_order_depends_target___idf_esp_common: phony || cmake_object_order_depends_target___idf_esp_rom - -build esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj: C_COMPILER____idf_esp_common_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/src/esp_err_to_name.c || cmake_object_order_depends_target___idf_esp_common - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_common\CMakeFiles\__idf_esp_common.dir\src\esp_err_to_name.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include - OBJECT_DIR = esp-idf\esp_common\CMakeFiles\__idf_esp_common.dir - OBJECT_FILE_DIR = esp-idf\esp_common\CMakeFiles\__idf_esp_common.dir\src - TARGET_COMPILE_PDB = esp-idf\esp_common\CMakeFiles\__idf_esp_common.dir\__idf_esp_common.pdb - TARGET_PDB = esp-idf\esp_common\libesp_common.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_common - - -############################################# -# Link the static library esp-idf\esp_common\libesp_common.a - -build esp-idf/esp_common/libesp_common.a: C_STATIC_LIBRARY_LINKER____idf_esp_common_ esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj || esp-idf/esp_rom/libesp_rom.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei - OBJECT_DIR = esp-idf\esp_common\CMakeFiles\__idf_esp_common.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = esp-idf\esp_common\CMakeFiles\__idf_esp_common.dir\__idf_esp_common.pdb - TARGET_FILE = esp-idf\esp_common\libesp_common.a - TARGET_PDB = esp-idf\esp_common\libesp_common.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_common/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_common && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_common/edit_cache: phony esp-idf/esp_common/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_common/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_common && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_common/rebuild_cache: phony esp-idf/esp_common/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_common/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_common/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_common/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_common && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_common/install: phony esp-idf/esp_common/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_common/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_common/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_common && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_common/install/local: phony esp-idf/esp_common/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_common/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_common/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_common && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_common/install/strip: phony esp-idf/esp_common/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_rom - - -############################################# -# Order-only phony target for __idf_esp_rom - -build cmake_object_order_depends_target___idf_esp_rom: phony || cmake_object_order_depends_target___idf_hal - -build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj: C_COMPILER____idf_esp_rom_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_sys.c || cmake_object_order_depends_target___idf_esp_rom - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_sys.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir - OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches - TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb - TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb - -build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_print.c.obj: C_COMPILER____idf_esp_rom_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_print.c || cmake_object_order_depends_target___idf_esp_rom - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_print.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir - OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches - TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb - TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb - -build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj: C_COMPILER____idf_esp_rom_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_crc.c || cmake_object_order_depends_target___idf_esp_rom - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_crc.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir - OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches - TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb - TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb - -build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj: C_COMPILER____idf_esp_rom_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_uart.c || cmake_object_order_depends_target___idf_esp_rom - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_uart.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir - OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches - TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb - TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb - -build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj: C_COMPILER____idf_esp_rom_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_spiflash.c || cmake_object_order_depends_target___idf_esp_rom - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_spiflash.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir - OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches - TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb - TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb - -build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj: C_COMPILER____idf_esp_rom_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_efuse.c || cmake_object_order_depends_target___idf_esp_rom - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_efuse.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir - OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches - TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb - TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb - -build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_gpio.c.obj: C_COMPILER____idf_esp_rom_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_gpio.c || cmake_object_order_depends_target___idf_esp_rom - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_gpio.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir - OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches - TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb - TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb - -build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_regi2c_esp32h2.c.obj: C_COMPILER____idf_esp_rom_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_regi2c_esp32h2.c || cmake_object_order_depends_target___idf_esp_rom - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_regi2c_esp32h2.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir - OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches - TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb - TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb - -build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_tlsf.c.obj: C_COMPILER____idf_esp_rom_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_tlsf.c || cmake_object_order_depends_target___idf_esp_rom - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_tlsf.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir - OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches - TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb - TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb - -build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_multi_heap.c.obj: C_COMPILER____idf_esp_rom_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_multi_heap.c || cmake_object_order_depends_target___idf_esp_rom - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_multi_heap.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir - OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches - TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb - TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb - -build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj: C_COMPILER____idf_esp_rom_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_systimer.c || cmake_object_order_depends_target___idf_esp_rom - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_systimer.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir - OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches - TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb - TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb - -build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_wdt.c.obj: C_COMPILER____idf_esp_rom_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_wdt.c || cmake_object_order_depends_target___idf_esp_rom - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_wdt.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir - OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches - TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb - TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb - -build esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_usb_serial.c.obj: C_COMPILER____idf_esp_rom_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_usb_serial.c || cmake_object_order_depends_target___idf_esp_rom - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches\esp_rom_usb_serial.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir - OBJECT_FILE_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\patches - TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb - TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_rom - - -############################################# -# Link the static library esp-idf\esp_rom\libesp_rom.a - -build esp-idf/esp_rom/libesp_rom.a: C_STATIC_LIBRARY_LINKER____idf_esp_rom_ esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_print.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_gpio.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_regi2c_esp32h2.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_tlsf.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_multi_heap.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_wdt.c.obj esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_usb_serial.c.obj || esp-idf/hal/libhal.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei - OBJECT_DIR = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = esp-idf\esp_rom\CMakeFiles\__idf_esp_rom.dir\__idf_esp_rom.pdb - TARGET_FILE = esp-idf\esp_rom\libesp_rom.a - TARGET_PDB = esp-idf\esp_rom\libesp_rom.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_rom/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_rom && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_rom/edit_cache: phony esp-idf/esp_rom/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_rom/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_rom && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_rom/rebuild_cache: phony esp-idf/esp_rom/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_rom/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_rom/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_rom/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_rom && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_rom/install: phony esp-idf/esp_rom/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_rom/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_rom/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_rom && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_rom/install/local: phony esp-idf/esp_rom/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_rom/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_rom/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_rom && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_rom/install/strip: phony esp-idf/esp_rom/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_hal - - -############################################# -# Order-only phony target for __idf_hal - -build cmake_object_order_depends_target___idf_hal: phony || cmake_object_order_depends_target___idf_log - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/hal_utils.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\hal_utils.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb - TARGET_PDB = esp-idf\hal\libhal.pdb - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/efuse_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\efuse_hal.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb - TARGET_PDB = esp-idf\hal\libhal.pdb - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32h2/efuse_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/efuse_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\esp32h2\efuse_hal.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir\esp32h2 - TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb - TARGET_PDB = esp-idf\hal\libhal.pdb - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/lp_timer_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/lp_timer_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\lp_timer_hal.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb - TARGET_PDB = esp-idf\hal\libhal.pdb - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/mmu_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\mmu_hal.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb - TARGET_PDB = esp-idf\hal\libhal.pdb - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/cache_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\cache_hal.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb - TARGET_PDB = esp-idf\hal\libhal.pdb - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/color_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/color_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\color_hal.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb - TARGET_PDB = esp-idf\hal\libhal.pdb - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/spi_flash_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\spi_flash_hal.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb - TARGET_PDB = esp-idf\hal\libhal.pdb - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_iram.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/spi_flash_hal_iram.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\spi_flash_hal_iram.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb - TARGET_PDB = esp-idf\hal\libhal.pdb - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_encrypt_hal_iram.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/spi_flash_encrypt_hal_iram.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\spi_flash_encrypt_hal_iram.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb - TARGET_PDB = esp-idf\hal\libhal.pdb - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32h2/clk_tree_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/clk_tree_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\esp32h2\clk_tree_hal.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir\esp32h2 - TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb - TARGET_PDB = esp-idf\hal\libhal.pdb - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/uart_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\uart_hal.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb - TARGET_PDB = esp-idf\hal\libhal.pdb - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal_iram.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/uart_hal_iram.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\uart_hal_iram.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb - TARGET_PDB = esp-idf\hal\libhal.pdb - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/gpio_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/gpio_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\gpio_hal.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb - TARGET_PDB = esp-idf\hal\libhal.pdb - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/rtc_io_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/rtc_io_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\rtc_io_hal.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb - TARGET_PDB = esp-idf\hal\libhal.pdb - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/timer_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/timer_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\timer_hal.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb - TARGET_PDB = esp-idf\hal\libhal.pdb - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/ledc_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\ledc_hal.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb - TARGET_PDB = esp-idf\hal\libhal.pdb - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal_iram.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/ledc_hal_iram.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\ledc_hal_iram.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb - TARGET_PDB = esp-idf\hal\libhal.pdb - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/i2c_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\i2c_hal.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb - TARGET_PDB = esp-idf\hal\libhal.pdb - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal_iram.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/i2c_hal_iram.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\i2c_hal_iram.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb - TARGET_PDB = esp-idf\hal\libhal.pdb - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/rmt_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/rmt_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\rmt_hal.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb - TARGET_PDB = esp-idf\hal\libhal.pdb - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/pcnt_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/pcnt_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\pcnt_hal.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb - TARGET_PDB = esp-idf\hal\libhal.pdb - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/mcpwm_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/mcpwm_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\mcpwm_hal.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb - TARGET_PDB = esp-idf\hal\libhal.pdb - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/uhci_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/uhci_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\uhci_hal.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb - TARGET_PDB = esp-idf\hal\libhal.pdb - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal_sja1000.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/twai_hal_sja1000.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\twai_hal_sja1000.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb - TARGET_PDB = esp-idf\hal\libhal.pdb - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal_top.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/gdma_hal_top.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\gdma_hal_top.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb - TARGET_PDB = esp-idf\hal\libhal.pdb - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal_ahb_v1.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/gdma_hal_ahb_v1.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\gdma_hal_ahb_v1.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb - TARGET_PDB = esp-idf\hal\libhal.pdb - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/i2s_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/i2s_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\i2s_hal.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb - TARGET_PDB = esp-idf\hal\libhal.pdb - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/sdm_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/sdm_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\sdm_hal.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb - TARGET_PDB = esp-idf\hal\libhal.pdb - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/etm_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/etm_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\etm_hal.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb - TARGET_PDB = esp-idf\hal\libhal.pdb - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/parlio_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/parlio_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\parlio_hal.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb - TARGET_PDB = esp-idf\hal\libhal.pdb - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal_common.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/adc_hal_common.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\adc_hal_common.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb - TARGET_PDB = esp-idf\hal\libhal.pdb - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_oneshot_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/adc_oneshot_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\adc_oneshot_hal.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb - TARGET_PDB = esp-idf\hal\libhal.pdb - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/adc_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\adc_hal.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb - TARGET_PDB = esp-idf\hal\libhal.pdb - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/ecc_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/ecc_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\ecc_hal.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb - TARGET_PDB = esp-idf\hal\libhal.pdb - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/ecdsa_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/ecdsa_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\ecdsa_hal.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb - TARGET_PDB = esp-idf\hal\libhal.pdb - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/mpi_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/mpi_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\mpi_hal.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb - TARGET_PDB = esp-idf\hal\libhal.pdb - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/sha_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/sha_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\sha_hal.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb - TARGET_PDB = esp-idf\hal\libhal.pdb - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/aes_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/aes_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\aes_hal.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb - TARGET_PDB = esp-idf\hal\libhal.pdb - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32h2/modem_clock_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/modem_clock_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\esp32h2\modem_clock_hal.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir\esp32h2 - TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb - TARGET_PDB = esp-idf\hal\libhal.pdb - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32h2/pau_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/pau_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\esp32h2\pau_hal.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir\esp32h2 - TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb - TARGET_PDB = esp-idf\hal\libhal.pdb - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/brownout_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/brownout_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\brownout_hal.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb - TARGET_PDB = esp-idf\hal\libhal.pdb - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/vbat_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/vbat_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\vbat_hal.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb - TARGET_PDB = esp-idf\hal\libhal.pdb - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/spi_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\spi_hal.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb - TARGET_PDB = esp-idf\hal\libhal.pdb - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal_iram.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/spi_hal_iram.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\spi_hal_iram.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb - TARGET_PDB = esp-idf\hal\libhal.pdb - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/spi_slave_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\spi_slave_hal.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb - TARGET_PDB = esp-idf\hal\libhal.pdb - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal_iram.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/spi_slave_hal_iram.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\spi_slave_hal_iram.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb - TARGET_PDB = esp-idf\hal\libhal.pdb - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hd_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/spi_slave_hd_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\spi_slave_hd_hal.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb - TARGET_PDB = esp-idf\hal\libhal.pdb - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_gpspi.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/spi_flash_hal_gpspi.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\spi_flash_hal_gpspi.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb - TARGET_PDB = esp-idf\hal\libhal.pdb - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32h2/pmu_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/pmu_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\esp32h2\pmu_hal.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir\esp32h2 - TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb - TARGET_PDB = esp-idf\hal\libhal.pdb - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/apm_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/apm_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\apm_hal.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb - TARGET_PDB = esp-idf\hal\libhal.pdb - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/hmac_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/hmac_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\hmac_hal.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb - TARGET_PDB = esp-idf\hal\libhal.pdb - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/ds_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/ds_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\ds_hal.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb - TARGET_PDB = esp-idf\hal\libhal.pdb - -build esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_serial_jtag_hal.c.obj: C_COMPILER____idf_hal_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/usb_serial_jtag_hal.c || cmake_object_order_depends_target___idf_hal - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\hal\CMakeFiles\__idf_hal.dir\usb_serial_jtag_hal.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - OBJECT_FILE_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb - TARGET_PDB = esp-idf\hal\libhal.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_hal - - -############################################# -# Link the static library esp-idf\hal\libhal.a - -build esp-idf/hal/libhal.a: C_STATIC_LIBRARY_LINKER____idf_hal_ esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32h2/efuse_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/lp_timer_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/color_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_iram.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_encrypt_hal_iram.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32h2/clk_tree_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal_iram.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/gpio_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/rtc_io_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/timer_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal_iram.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal_iram.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/rmt_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/pcnt_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/mcpwm_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/uhci_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal_sja1000.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal_top.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal_ahb_v1.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/i2s_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/sdm_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/etm_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/parlio_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal_common.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_oneshot_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/ecc_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/ecdsa_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/mpi_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/sha_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/aes_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32h2/modem_clock_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32h2/pau_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/brownout_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/vbat_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal_iram.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal_iram.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hd_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_gpspi.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32h2/pmu_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/apm_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/hmac_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/ds_hal.c.obj esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_serial_jtag_hal.c.obj || esp-idf/log/liblog.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei - OBJECT_DIR = esp-idf\hal\CMakeFiles\__idf_hal.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = esp-idf\hal\CMakeFiles\__idf_hal.dir\__idf_hal.pdb - TARGET_FILE = esp-idf\hal\libhal.a - TARGET_PDB = esp-idf\hal\libhal.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/hal/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\hal && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/hal/edit_cache: phony esp-idf/hal/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/hal/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\hal && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/hal/rebuild_cache: phony esp-idf/hal/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/hal/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/hal/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/hal/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\hal && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/hal/install: phony esp-idf/hal/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/hal/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/hal/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\hal && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/hal/install/local: phony esp-idf/hal/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/hal/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/hal/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\hal && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/hal/install/strip: phony esp-idf/hal/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_log - - -############################################# -# Order-only phony target for __idf_log - -build cmake_object_order_depends_target___idf_log: phony || cmake_object_order_depends_target___idf_heap - -build esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_timestamp.c.obj: C_COMPILER____idf_log_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/src/os/log_timestamp.c || cmake_object_order_depends_target___idf_log - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\os\log_timestamp.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir - OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir\src\os - TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb - TARGET_PDB = esp-idf\log\liblog.pdb - -build esp-idf/log/CMakeFiles/__idf_log.dir/src/log_timestamp_common.c.obj: C_COMPILER____idf_log_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/src/log_timestamp_common.c || cmake_object_order_depends_target___idf_log - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\log_timestamp_common.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir - OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir\src - TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb - TARGET_PDB = esp-idf\log\liblog.pdb - -build esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_lock.c.obj: C_COMPILER____idf_log_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/src/os/log_lock.c || cmake_object_order_depends_target___idf_log - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\os\log_lock.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir - OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir\src\os - TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb - TARGET_PDB = esp-idf\log\liblog.pdb - -build esp-idf/log/CMakeFiles/__idf_log.dir/src/buffer/log_buffers.c.obj: C_COMPILER____idf_log_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/src/buffer/log_buffers.c || cmake_object_order_depends_target___idf_log - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\buffer\log_buffers.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir - OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir\src\buffer - TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb - TARGET_PDB = esp-idf\log\liblog.pdb - -build esp-idf/log/CMakeFiles/__idf_log.dir/src/os/util.c.obj: C_COMPILER____idf_log_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/src/os/util.c || cmake_object_order_depends_target___idf_log - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\os\util.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir - OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir\src\os - TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb - TARGET_PDB = esp-idf\log\liblog.pdb - -build esp-idf/log/CMakeFiles/__idf_log.dir/src/util.c.obj: C_COMPILER____idf_log_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/src/util.c || cmake_object_order_depends_target___idf_log - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\util.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir - OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir\src - TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb - TARGET_PDB = esp-idf\log\liblog.pdb - -build esp-idf/log/CMakeFiles/__idf_log.dir/src/log_format_text.c.obj: C_COMPILER____idf_log_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/src/log_format_text.c || cmake_object_order_depends_target___idf_log - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\log_format_text.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir - OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir\src - TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb - TARGET_PDB = esp-idf\log\liblog.pdb - -build esp-idf/log/CMakeFiles/__idf_log.dir/src/log_print.c.obj: C_COMPILER____idf_log_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/src/log_print.c || cmake_object_order_depends_target___idf_log - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\log_print.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir - OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir\src - TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb - TARGET_PDB = esp-idf\log\liblog.pdb - -build esp-idf/log/CMakeFiles/__idf_log.dir/src/log.c.obj: C_COMPILER____idf_log_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/src/log.c || cmake_object_order_depends_target___idf_log - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\log.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir - OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir\src - TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb - TARGET_PDB = esp-idf\log\liblog.pdb - -build esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_write.c.obj: C_COMPILER____idf_log_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/src/os/log_write.c || cmake_object_order_depends_target___idf_log - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\os\log_write.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir - OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir\src\os - TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb - TARGET_PDB = esp-idf\log\liblog.pdb - -build esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/log_level.c.obj: C_COMPILER____idf_log_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/src/log_level/log_level.c || cmake_object_order_depends_target___idf_log - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\log_level\log_level.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir - OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir\src\log_level - TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb - TARGET_PDB = esp-idf\log\liblog.pdb - -build esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/tag_log_level.c.obj: C_COMPILER____idf_log_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/src/log_level/tag_log_level/tag_log_level.c || cmake_object_order_depends_target___idf_log - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\log_level\tag_log_level\tag_log_level.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir - OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir\src\log_level\tag_log_level - TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb - TARGET_PDB = esp-idf\log\liblog.pdb - -build esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/linked_list/log_linked_list.c.obj: C_COMPILER____idf_log_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/src/log_level/tag_log_level/linked_list/log_linked_list.c || cmake_object_order_depends_target___idf_log - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\log_level\tag_log_level\linked_list\log_linked_list.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir - OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir\src\log_level\tag_log_level\linked_list - TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb - TARGET_PDB = esp-idf\log\liblog.pdb - -build esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/cache/log_binary_heap.c.obj: C_COMPILER____idf_log_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/src/log_level/tag_log_level/cache/log_binary_heap.c || cmake_object_order_depends_target___idf_log - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\log\CMakeFiles\__idf_log.dir\src\log_level\tag_log_level\cache\log_binary_heap.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir - OBJECT_FILE_DIR = esp-idf\log\CMakeFiles\__idf_log.dir\src\log_level\tag_log_level\cache - TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb - TARGET_PDB = esp-idf\log\liblog.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_log - - -############################################# -# Link the static library esp-idf\log\liblog.a - -build esp-idf/log/liblog.a: C_STATIC_LIBRARY_LINKER____idf_log_ esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_timestamp.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/log_timestamp_common.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_lock.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/buffer/log_buffers.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/os/util.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/util.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/log_format_text.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/log_print.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/log.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_write.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/log_level.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/tag_log_level.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/linked_list/log_linked_list.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/cache/log_binary_heap.c.obj || esp-idf/heap/libheap.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei - OBJECT_DIR = esp-idf\log\CMakeFiles\__idf_log.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = esp-idf\log\CMakeFiles\__idf_log.dir\__idf_log.pdb - TARGET_FILE = esp-idf\log\liblog.a - TARGET_PDB = esp-idf\log\liblog.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/log/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\log && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/log/edit_cache: phony esp-idf/log/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/log/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\log && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/log/rebuild_cache: phony esp-idf/log/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/log/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/log/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/log/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\log && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/log/install: phony esp-idf/log/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/log/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/log/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\log && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/log/install/local: phony esp-idf/log/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/log/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/log/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\log && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/log/install/strip: phony esp-idf/log/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_heap - - -############################################# -# Order-only phony target for __idf_heap - -build cmake_object_order_depends_target___idf_heap: phony || cmake_object_order_depends_target___idf_soc - -build esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_base.c.obj: C_COMPILER____idf_heap_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/heap_caps_base.c || cmake_object_order_depends_target___idf_heap - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\heap\CMakeFiles\__idf_heap.dir\heap_caps_base.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -DMULTI_HEAP_FREERTOS - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\heap\CMakeFiles\__idf_heap.dir - OBJECT_FILE_DIR = esp-idf\heap\CMakeFiles\__idf_heap.dir - TARGET_COMPILE_PDB = esp-idf\heap\CMakeFiles\__idf_heap.dir\__idf_heap.pdb - TARGET_PDB = esp-idf\heap\libheap.pdb - -build esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps.c.obj: C_COMPILER____idf_heap_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/heap_caps.c || cmake_object_order_depends_target___idf_heap - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\heap\CMakeFiles\__idf_heap.dir\heap_caps.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -DMULTI_HEAP_FREERTOS - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\heap\CMakeFiles\__idf_heap.dir - OBJECT_FILE_DIR = esp-idf\heap\CMakeFiles\__idf_heap.dir - TARGET_COMPILE_PDB = esp-idf\heap\CMakeFiles\__idf_heap.dir\__idf_heap.pdb - TARGET_PDB = esp-idf\heap\libheap.pdb - -build esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_init.c.obj: C_COMPILER____idf_heap_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/heap_caps_init.c || cmake_object_order_depends_target___idf_heap - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\heap\CMakeFiles\__idf_heap.dir\heap_caps_init.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -DMULTI_HEAP_FREERTOS - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\heap\CMakeFiles\__idf_heap.dir - OBJECT_FILE_DIR = esp-idf\heap\CMakeFiles\__idf_heap.dir - TARGET_COMPILE_PDB = esp-idf\heap\CMakeFiles\__idf_heap.dir\__idf_heap.pdb - TARGET_PDB = esp-idf\heap\libheap.pdb - -build esp-idf/heap/CMakeFiles/__idf_heap.dir/multi_heap.c.obj: C_COMPILER____idf_heap_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/multi_heap.c || cmake_object_order_depends_target___idf_heap - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\heap\CMakeFiles\__idf_heap.dir\multi_heap.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -DMULTI_HEAP_FREERTOS - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\heap\CMakeFiles\__idf_heap.dir - OBJECT_FILE_DIR = esp-idf\heap\CMakeFiles\__idf_heap.dir - TARGET_COMPILE_PDB = esp-idf\heap\CMakeFiles\__idf_heap.dir\__idf_heap.pdb - TARGET_PDB = esp-idf\heap\libheap.pdb - -build esp-idf/heap/CMakeFiles/__idf_heap.dir/port/memory_layout_utils.c.obj: C_COMPILER____idf_heap_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/port/memory_layout_utils.c || cmake_object_order_depends_target___idf_heap - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\heap\CMakeFiles\__idf_heap.dir\port\memory_layout_utils.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -DMULTI_HEAP_FREERTOS - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\heap\CMakeFiles\__idf_heap.dir - OBJECT_FILE_DIR = esp-idf\heap\CMakeFiles\__idf_heap.dir\port - TARGET_COMPILE_PDB = esp-idf\heap\CMakeFiles\__idf_heap.dir\__idf_heap.pdb - TARGET_PDB = esp-idf\heap\libheap.pdb - -build esp-idf/heap/CMakeFiles/__idf_heap.dir/port/esp32h2/memory_layout.c.obj: C_COMPILER____idf_heap_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/port/esp32h2/memory_layout.c || cmake_object_order_depends_target___idf_heap - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\heap\CMakeFiles\__idf_heap.dir\port\esp32h2\memory_layout.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -DMULTI_HEAP_FREERTOS - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\heap\CMakeFiles\__idf_heap.dir - OBJECT_FILE_DIR = esp-idf\heap\CMakeFiles\__idf_heap.dir\port\esp32h2 - TARGET_COMPILE_PDB = esp-idf\heap\CMakeFiles\__idf_heap.dir\__idf_heap.pdb - TARGET_PDB = esp-idf\heap\libheap.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_heap - - -############################################# -# Link the static library esp-idf\heap\libheap.a - -build esp-idf/heap/libheap.a: C_STATIC_LIBRARY_LINKER____idf_heap_ esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_base.c.obj esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps.c.obj esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_init.c.obj esp-idf/heap/CMakeFiles/__idf_heap.dir/multi_heap.c.obj esp-idf/heap/CMakeFiles/__idf_heap.dir/port/memory_layout_utils.c.obj esp-idf/heap/CMakeFiles/__idf_heap.dir/port/esp32h2/memory_layout.c.obj || esp-idf/soc/libsoc.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei - OBJECT_DIR = esp-idf\heap\CMakeFiles\__idf_heap.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = esp-idf\heap\CMakeFiles\__idf_heap.dir\__idf_heap.pdb - TARGET_FILE = esp-idf\heap\libheap.a - TARGET_PDB = esp-idf\heap\libheap.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/heap/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\heap && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/heap/edit_cache: phony esp-idf/heap/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/heap/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\heap && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/heap/rebuild_cache: phony esp-idf/heap/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/heap/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/heap/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/heap/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\heap && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/heap/install: phony esp-idf/heap/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/heap/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/heap/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\heap && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/heap/install/local: phony esp-idf/heap/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/heap/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/heap/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\heap && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/heap/install/strip: phony esp-idf/heap/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_soc - - -############################################# -# Order-only phony target for __idf_soc - -build cmake_object_order_depends_target___idf_soc: phony || cmake_object_order_depends_target___idf_esp_security - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/lldesc.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\lldesc.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir - OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir - TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb - TARGET_PDB = esp-idf\soc\libsoc.pdb - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/dport_access_common.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\dport_access_common.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir - OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir - TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb - TARGET_PDB = esp-idf\soc\libsoc.pdb - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/interrupts.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/interrupts.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2\interrupts.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir - OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2 - TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb - TARGET_PDB = esp-idf\soc\libsoc.pdb - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/gpio_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/gpio_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2\gpio_periph.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir - OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2 - TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb - TARGET_PDB = esp-idf\soc\libsoc.pdb - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/uart_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/uart_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2\uart_periph.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir - OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2 - TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb - TARGET_PDB = esp-idf\soc\libsoc.pdb - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/adc_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/adc_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2\adc_periph.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir - OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2 - TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb - TARGET_PDB = esp-idf\soc\libsoc.pdb - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/ana_cmpr_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/ana_cmpr_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2\ana_cmpr_periph.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir - OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2 - TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb - TARGET_PDB = esp-idf\soc\libsoc.pdb - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/dedic_gpio_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/dedic_gpio_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2\dedic_gpio_periph.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir - OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2 - TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb - TARGET_PDB = esp-idf\soc\libsoc.pdb - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/etm_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/etm_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2\etm_periph.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir - OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2 - TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb - TARGET_PDB = esp-idf\soc\libsoc.pdb - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/gdma_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/gdma_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2\gdma_periph.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir - OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2 - TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb - TARGET_PDB = esp-idf\soc\libsoc.pdb - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/spi_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/spi_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2\spi_periph.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir - OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2 - TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb - TARGET_PDB = esp-idf\soc\libsoc.pdb - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/ledc_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/ledc_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2\ledc_periph.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir - OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2 - TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb - TARGET_PDB = esp-idf\soc\libsoc.pdb - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/pcnt_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/pcnt_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2\pcnt_periph.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir - OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2 - TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb - TARGET_PDB = esp-idf\soc\libsoc.pdb - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/rmt_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/rmt_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2\rmt_periph.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir - OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2 - TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb - TARGET_PDB = esp-idf\soc\libsoc.pdb - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/sdm_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/sdm_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2\sdm_periph.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir - OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2 - TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb - TARGET_PDB = esp-idf\soc\libsoc.pdb - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/i2s_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/i2s_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2\i2s_periph.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir - OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2 - TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb - TARGET_PDB = esp-idf\soc\libsoc.pdb - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/i2c_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/i2c_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2\i2c_periph.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir - OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2 - TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb - TARGET_PDB = esp-idf\soc\libsoc.pdb - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/temperature_sensor_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/temperature_sensor_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2\temperature_sensor_periph.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir - OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2 - TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb - TARGET_PDB = esp-idf\soc\libsoc.pdb - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/timer_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/timer_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2\timer_periph.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir - OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2 - TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb - TARGET_PDB = esp-idf\soc\libsoc.pdb - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/parlio_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/parlio_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2\parlio_periph.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir - OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2 - TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb - TARGET_PDB = esp-idf\soc\libsoc.pdb - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/mcpwm_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/mcpwm_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2\mcpwm_periph.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir - OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2 - TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb - TARGET_PDB = esp-idf\soc\libsoc.pdb - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/mpi_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/mpi_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2\mpi_periph.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir - OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2 - TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb - TARGET_PDB = esp-idf\soc\libsoc.pdb - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/twai_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/twai_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2\twai_periph.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir - OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2 - TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb - TARGET_PDB = esp-idf\soc\libsoc.pdb - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/wdt_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/wdt_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2\wdt_periph.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir - OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2 - TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb - TARGET_PDB = esp-idf\soc\libsoc.pdb - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/ieee802154_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/ieee802154_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2\ieee802154_periph.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir - OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2 - TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb - TARGET_PDB = esp-idf\soc\libsoc.pdb - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/rtc_io_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/rtc_io_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2\rtc_io_periph.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir - OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2 - TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb - TARGET_PDB = esp-idf\soc\libsoc.pdb - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/system_retention_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/system_retention_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2\system_retention_periph.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir - OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2 - TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb - TARGET_PDB = esp-idf\soc\libsoc.pdb - -build esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/power_supply_periph.c.obj: C_COMPILER____idf_soc_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/power_supply_periph.c || cmake_object_order_depends_target___idf_soc - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2\power_supply_periph.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir - OBJECT_FILE_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir\esp32h2 - TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb - TARGET_PDB = esp-idf\soc\libsoc.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_soc - - -############################################# -# Link the static library esp-idf\soc\libsoc.a - -build esp-idf/soc/libsoc.a: C_STATIC_LIBRARY_LINKER____idf_soc_ esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/interrupts.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/gpio_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/uart_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/adc_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/ana_cmpr_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/dedic_gpio_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/etm_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/gdma_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/spi_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/ledc_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/pcnt_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/rmt_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/sdm_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/i2s_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/i2c_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/temperature_sensor_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/timer_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/parlio_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/mcpwm_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/mpi_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/twai_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/wdt_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/ieee802154_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/rtc_io_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/system_retention_periph.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/power_supply_periph.c.obj || esp-idf/esp_security/libesp_security.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei - OBJECT_DIR = esp-idf\soc\CMakeFiles\__idf_soc.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = esp-idf\soc\CMakeFiles\__idf_soc.dir\__idf_soc.pdb - TARGET_FILE = esp-idf\soc\libsoc.a - TARGET_PDB = esp-idf\soc\libsoc.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/soc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\soc && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/soc/edit_cache: phony esp-idf/soc/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/soc/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\soc && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/soc/rebuild_cache: phony esp-idf/soc/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/soc/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/soc/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/soc/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\soc && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/soc/install: phony esp-idf/soc/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/soc/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/soc/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\soc && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/soc/install/local: phony esp-idf/soc/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/soc/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/soc/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\soc && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/soc/install/strip: phony esp-idf/soc/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_security - - -############################################# -# Order-only phony target for __idf_esp_security - -build cmake_object_order_depends_target___idf_esp_security: phony || cmake_object_order_depends_target___idf_esp_hw_support - -build esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/init.c.obj: C_COMPILER____idf_esp_security_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/src/init.c || cmake_object_order_depends_target___idf_esp_security - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir\src\init.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/src/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include - OBJECT_DIR = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir - OBJECT_FILE_DIR = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir\src - TARGET_COMPILE_PDB = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir\__idf_esp_security.pdb - TARGET_PDB = esp-idf\esp_security\libesp_security.pdb - -build esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_hmac.c.obj: C_COMPILER____idf_esp_security_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/src/esp_hmac.c || cmake_object_order_depends_target___idf_esp_security - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir\src\esp_hmac.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/src/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include - OBJECT_DIR = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir - OBJECT_FILE_DIR = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir\src - TARGET_COMPILE_PDB = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir\__idf_esp_security.pdb - TARGET_PDB = esp-idf\esp_security\libesp_security.pdb - -build esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_ds.c.obj: C_COMPILER____idf_esp_security_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/src/esp_ds.c || cmake_object_order_depends_target___idf_esp_security - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir\src\esp_ds.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/src/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include - OBJECT_DIR = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir - OBJECT_FILE_DIR = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir\src - TARGET_COMPILE_PDB = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir\__idf_esp_security.pdb - TARGET_PDB = esp-idf\esp_security\libesp_security.pdb - -build esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_dpa_protection.c.obj: C_COMPILER____idf_esp_security_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/src/esp_dpa_protection.c || cmake_object_order_depends_target___idf_esp_security - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir\src\esp_dpa_protection.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/src/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include - OBJECT_DIR = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir - OBJECT_FILE_DIR = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir\src - TARGET_COMPILE_PDB = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir\__idf_esp_security.pdb - TARGET_PDB = esp-idf\esp_security\libesp_security.pdb - -build esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_crypto_lock.c.obj: C_COMPILER____idf_esp_security_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/src/esp_crypto_lock.c || cmake_object_order_depends_target___idf_esp_security - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir\src\esp_crypto_lock.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/src/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include - OBJECT_DIR = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir - OBJECT_FILE_DIR = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir\src - TARGET_COMPILE_PDB = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir\__idf_esp_security.pdb - TARGET_PDB = esp-idf\esp_security\libesp_security.pdb - -build esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_crypto_periph_clk.c.obj: C_COMPILER____idf_esp_security_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/src/esp_crypto_periph_clk.c || cmake_object_order_depends_target___idf_esp_security - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir\src\esp_crypto_periph_clk.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/src/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include - OBJECT_DIR = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir - OBJECT_FILE_DIR = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir\src - TARGET_COMPILE_PDB = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir\__idf_esp_security.pdb - TARGET_PDB = esp-idf\esp_security\libesp_security.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_security - - -############################################# -# Link the static library esp-idf\esp_security\libesp_security.a - -build esp-idf/esp_security/libesp_security.a: C_STATIC_LIBRARY_LINKER____idf_esp_security_ esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/init.c.obj esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_hmac.c.obj esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_ds.c.obj esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_dpa_protection.c.obj esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_crypto_lock.c.obj esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_crypto_periph_clk.c.obj || esp-idf/esp_hw_support/libesp_hw_support.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei - OBJECT_DIR = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = esp-idf\esp_security\CMakeFiles\__idf_esp_security.dir\__idf_esp_security.pdb - TARGET_FILE = esp-idf\esp_security\libesp_security.a - TARGET_PDB = esp-idf\esp_security\libesp_security.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_security/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_security && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_security/edit_cache: phony esp-idf/esp_security/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_security/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_security && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_security/rebuild_cache: phony esp-idf/esp_security/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_security/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_security/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_security/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_security && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_security/install: phony esp-idf/esp_security/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_security/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_security/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_security && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_security/install/local: phony esp-idf/esp_security/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_security/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_security/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_security && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_security/install/strip: phony esp-idf/esp_security/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_hw_support - - -############################################# -# Order-only phony target for __idf_esp_hw_support - -build cmake_object_order_depends_target___idf_esp_hw_support: phony || cmake_object_order_depends_target___idf_freertos - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/cpu.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\cpu.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/esp_cpu_intr.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/esp_cpu_intr.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32h2\esp_cpu_intr.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32h2 - TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/esp_memory_utils.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\esp_memory_utils.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/cpu_region_protect.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/cpu_region_protect.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32h2\cpu_region_protect.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32h2 - TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clk.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/esp_clk.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\esp_clk.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_ctrl_os.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/clk_ctrl_os.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\clk_ctrl_os.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/hw_random.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/hw_random.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\hw_random.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/intr_alloc.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/intr_alloc.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\intr_alloc.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mac_addr.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mac_addr.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\mac_addr.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/periph_ctrl.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/periph_ctrl.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\periph_ctrl.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/revision.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/revision.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\revision.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/rtc_module.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/rtc_module.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\rtc_module.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/regi2c_ctrl.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/regi2c_ctrl.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\regi2c_ctrl.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_gpio_reserve.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/esp_gpio_reserve.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\esp_gpio_reserve.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sar_periph_ctrl_common.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/sar_periph_ctrl_common.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\sar_periph_ctrl_common.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/io_mux.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/io_mux.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32h2\io_mux.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32h2 - TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/esp_clk_tree.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/esp_clk_tree.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32h2\esp_clk_tree.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32h2 - TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/esp_dma_utils.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/esp_dma_utils.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\dma\esp_dma_utils.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\dma - TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma_link.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/gdma_link.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\dma\gdma_link.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\dma - TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/spi_bus_lock.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/spi_bus_lock.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\spi_bus_lock.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_utils.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/clk_utils.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\clk_utils.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp_clk_tree_common.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp_clk_tree_common.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp_clk_tree_common.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port - TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/spi_share_hw_ctrl.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/spi_share_hw_ctrl.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\spi_share_hw_ctrl.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/adc_share_hw_ctrl.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/adc_share_hw_ctrl.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\adc_share_hw_ctrl.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_retention.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/sleep_retention.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\sleep_retention.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modem.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/sleep_modem.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\sleep_modem.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modes.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/sleep_modes.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\sleep_modes.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_console.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/sleep_console.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\sleep_console.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_usb.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/sleep_usb.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\sleep_usb.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_gpio.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/sleep_gpio.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\sleep_gpio.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_event.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/sleep_event.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\sleep_event.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_system_peripheral.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/sleep_system_peripheral.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\sleep_system_peripheral.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/gdma.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\dma\gdma.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\dma - TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/deprecated/gdma_legacy.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/deprecated/gdma_legacy.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\deprecated\gdma_legacy.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\deprecated - TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma_sleep_retention.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/gdma_sleep_retention.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\dma\gdma_sleep_retention.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\dma - TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma_etm.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/gdma_etm.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\dma\gdma_etm.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\dma - TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/esp_async_memcpy.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/esp_async_memcpy.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\dma\esp_async_memcpy.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\dma - TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/async_memcpy_gdma.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/async_memcpy_gdma.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\dma\async_memcpy_gdma.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\dma - TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/systimer.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/systimer.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32h2\systimer.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32h2 - TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_etm.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/esp_etm.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\esp_etm.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/pau_regdma.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/pau_regdma.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\pau_regdma.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port - TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/regdma_link.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/regdma_link.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\regdma_link.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port - TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/modem_clock.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/modem_clock.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\modem_clock.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mspi_timing_tuning/mspi_timing_tuning.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/mspi_timing_tuning.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\mspi_timing_tuning\mspi_timing_tuning.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\mspi_timing_tuning - TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_wake_stub.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/sleep_wake_stub.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\sleep_wake_stub.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clock_output.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/esp_clock_output.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\esp_clock_output.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/power_supply/brownout.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/brownout.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\power_supply\brownout.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\power_supply - TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/power_supply/vbat.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/vbat.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\power_supply\vbat.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\power_supply - TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/rtc_clk_init.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/rtc_clk_init.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32h2\rtc_clk_init.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32h2 - TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/rtc_clk.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/rtc_clk.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32h2\rtc_clk.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32h2 - TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/pmu_param.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/pmu_param.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32h2\pmu_param.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32h2 - TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/pmu_init.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/pmu_init.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32h2\pmu_init.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32h2 - TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/pmu_sleep.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/pmu_sleep.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32h2\pmu_sleep.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32h2 - TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/rtc_time.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/rtc_time.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32h2\rtc_time.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32h2 - TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/chip_info.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/chip_info.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32h2\chip_info.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32h2 - TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/sar_periph_ctrl.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/sar_periph_ctrl.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32h2\sar_periph_ctrl.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\port\esp32h2 - TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/lowpower/port/esp32h2/sleep_cpu.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/lowpower/port/esp32h2/sleep_cpu.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\lowpower\port\esp32h2\sleep_cpu.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\lowpower\port\esp32h2 - TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/lowpower/port/esp32h2/sleep_cpu_asm.S.obj: ASM_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/lowpower/port/esp32h2/sleep_cpu_asm.S || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\lowpower\port\esp32h2\sleep_cpu_asm.S.obj.d - FLAGS = -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\lowpower\port\esp32h2 - TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb - -build esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/lowpower/port/esp32h2/sleep_clock.c.obj: C_COMPILER____idf_esp_hw_support_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/lowpower/port/esp32h2/sleep_clock.c || cmake_object_order_depends_target___idf_esp_hw_support - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\lowpower\port\esp32h2\sleep_clock.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - OBJECT_FILE_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\lowpower\port\esp32h2 - TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb - TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_hw_support - - -############################################# -# Link the static library esp-idf\esp_hw_support\libesp_hw_support.a - -build esp-idf/esp_hw_support/libesp_hw_support.a: C_STATIC_LIBRARY_LINKER____idf_esp_hw_support_ esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/esp_cpu_intr.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/cpu_region_protect.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clk.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_ctrl_os.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/hw_random.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/intr_alloc.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mac_addr.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/periph_ctrl.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/revision.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/rtc_module.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/regi2c_ctrl.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_gpio_reserve.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sar_periph_ctrl_common.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/io_mux.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/esp_clk_tree.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/esp_dma_utils.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma_link.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/spi_bus_lock.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_utils.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp_clk_tree_common.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/spi_share_hw_ctrl.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/adc_share_hw_ctrl.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_retention.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modem.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modes.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_console.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_usb.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_gpio.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_event.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_system_peripheral.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/deprecated/gdma_legacy.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma_sleep_retention.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma_etm.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/esp_async_memcpy.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/async_memcpy_gdma.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/systimer.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_etm.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/pau_regdma.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/regdma_link.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/modem_clock.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mspi_timing_tuning/mspi_timing_tuning.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_wake_stub.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clock_output.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/power_supply/brownout.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/power_supply/vbat.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/rtc_clk_init.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/rtc_clk.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/pmu_param.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/pmu_init.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/pmu_sleep.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/rtc_time.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/chip_info.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/sar_periph_ctrl.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/lowpower/port/esp32h2/sleep_cpu.c.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/lowpower/port/esp32h2/sleep_cpu_asm.S.obj esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/lowpower/port/esp32h2/sleep_clock.c.obj || esp-idf/freertos/libfreertos.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei - OBJECT_DIR = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = esp-idf\esp_hw_support\CMakeFiles\__idf_esp_hw_support.dir\__idf_esp_hw_support.pdb - TARGET_FILE = esp-idf\esp_hw_support\libesp_hw_support.a - TARGET_PDB = esp-idf\esp_hw_support\libesp_hw_support.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_hw_support/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_hw_support && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_hw_support/edit_cache: phony esp-idf/esp_hw_support/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_hw_support/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_hw_support && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_hw_support/rebuild_cache: phony esp-idf/esp_hw_support/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_hw_support/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_hw_support/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_hw_support/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_hw_support && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_hw_support/install: phony esp-idf/esp_hw_support/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_hw_support/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_hw_support/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_hw_support && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_hw_support/install/local: phony esp-idf/esp_hw_support/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_hw_support/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_hw_support/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_hw_support && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_hw_support/install/strip: phony esp-idf/esp_hw_support/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/CMakeLists.txt -# ============================================================================= - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_hw_support/port/esp32h2/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_hw_support\port\esp32h2 && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_hw_support/port/esp32h2/edit_cache: phony esp-idf/esp_hw_support/port/esp32h2/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_hw_support/port/esp32h2/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_hw_support\port\esp32h2 && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_hw_support/port/esp32h2/rebuild_cache: phony esp-idf/esp_hw_support/port/esp32h2/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_hw_support/port/esp32h2/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_hw_support/port/esp32h2/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_hw_support/port/esp32h2/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_hw_support\port\esp32h2 && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_hw_support/port/esp32h2/install: phony esp-idf/esp_hw_support/port/esp32h2/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_hw_support/port/esp32h2/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_hw_support/port/esp32h2/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_hw_support\port\esp32h2 && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_hw_support/port/esp32h2/install/local: phony esp-idf/esp_hw_support/port/esp32h2/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_hw_support/port/esp32h2/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_hw_support/port/esp32h2/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_hw_support\port\esp32h2 && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_hw_support/port/esp32h2/install/strip: phony esp-idf/esp_hw_support/port/esp32h2/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/CMakeLists.txt -# ============================================================================= - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_hw_support/lowpower/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_hw_support\lowpower && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_hw_support/lowpower/edit_cache: phony esp-idf/esp_hw_support/lowpower/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_hw_support/lowpower/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_hw_support\lowpower && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_hw_support/lowpower/rebuild_cache: phony esp-idf/esp_hw_support/lowpower/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_hw_support/lowpower/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_hw_support/lowpower/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_hw_support/lowpower/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_hw_support\lowpower && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_hw_support/lowpower/install: phony esp-idf/esp_hw_support/lowpower/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_hw_support/lowpower/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_hw_support/lowpower/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_hw_support\lowpower && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_hw_support/lowpower/install/local: phony esp-idf/esp_hw_support/lowpower/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_hw_support/lowpower/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_hw_support/lowpower/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_hw_support\lowpower && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_hw_support/lowpower/install/strip: phony esp-idf/esp_hw_support/lowpower/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_freertos - - -############################################# -# Order-only phony target for __idf_freertos - -build cmake_object_order_depends_target___idf_freertos: phony || cmake_object_order_depends_target___idf_newlib - -build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/heap_idf.c.obj: C_COMPILER____idf_freertos_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/heap_idf.c || cmake_object_order_depends_target___idf_freertos - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\heap_idf.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir - OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir - TARGET_COMPILE_PDB = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\__idf_freertos.pdb - TARGET_PDB = esp-idf\freertos\libfreertos.pdb - -build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/app_startup.c.obj: C_COMPILER____idf_freertos_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/app_startup.c || cmake_object_order_depends_target___idf_freertos - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\app_startup.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir - OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir - TARGET_COMPILE_PDB = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\__idf_freertos.pdb - TARGET_PDB = esp-idf\freertos\libfreertos.pdb - -build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_common.c.obj: C_COMPILER____idf_freertos_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/port_common.c || cmake_object_order_depends_target___idf_freertos - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\port_common.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir - OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir - TARGET_COMPILE_PDB = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\__idf_freertos.pdb - TARGET_PDB = esp-idf\freertos\libfreertos.pdb - -build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_systick.c.obj: C_COMPILER____idf_freertos_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/port_systick.c || cmake_object_order_depends_target___idf_freertos - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\port_systick.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir - OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir - TARGET_COMPILE_PDB = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\__idf_freertos.pdb - TARGET_PDB = esp-idf\freertos\libfreertos.pdb - -build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/list.c.obj: C_COMPILER____idf_freertos_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/list.c || cmake_object_order_depends_target___idf_freertos - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel\list.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir - OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel - TARGET_COMPILE_PDB = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\__idf_freertos.pdb - TARGET_PDB = esp-idf\freertos\libfreertos.pdb - -build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/queue.c.obj: C_COMPILER____idf_freertos_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/queue.c || cmake_object_order_depends_target___idf_freertos - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel\queue.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir - OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel - TARGET_COMPILE_PDB = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\__idf_freertos.pdb - TARGET_PDB = esp-idf\freertos\libfreertos.pdb - -build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/tasks.c.obj: C_COMPILER____idf_freertos_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/tasks.c || cmake_object_order_depends_target___idf_freertos - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel\tasks.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir - OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel - TARGET_COMPILE_PDB = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\__idf_freertos.pdb - TARGET_PDB = esp-idf\freertos\libfreertos.pdb - -build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/timers.c.obj: C_COMPILER____idf_freertos_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/timers.c || cmake_object_order_depends_target___idf_freertos - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel\timers.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir - OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel - TARGET_COMPILE_PDB = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\__idf_freertos.pdb - TARGET_PDB = esp-idf\freertos\libfreertos.pdb - -build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/event_groups.c.obj: C_COMPILER____idf_freertos_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/event_groups.c || cmake_object_order_depends_target___idf_freertos - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel\event_groups.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir - OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel - TARGET_COMPILE_PDB = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\__idf_freertos.pdb - TARGET_PDB = esp-idf\freertos\libfreertos.pdb - -build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/stream_buffer.c.obj: C_COMPILER____idf_freertos_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/stream_buffer.c || cmake_object_order_depends_target___idf_freertos - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel\stream_buffer.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir - OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel - TARGET_COMPILE_PDB = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\__idf_freertos.pdb - TARGET_PDB = esp-idf\freertos\libfreertos.pdb - -build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/riscv/port.c.obj: C_COMPILER____idf_freertos_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/port.c || cmake_object_order_depends_target___idf_freertos - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel\portable\riscv\port.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir - OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel\portable\riscv - TARGET_COMPILE_PDB = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\__idf_freertos.pdb - TARGET_PDB = esp-idf\freertos\libfreertos.pdb - -build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/riscv/portasm.S.obj: ASM_COMPILER____idf_freertos_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/portasm.S || cmake_object_order_depends_target___idf_freertos - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel\portable\riscv\portasm.S.obj.d - FLAGS = -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir - OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\FreeRTOS-Kernel\portable\riscv - TARGET_COMPILE_PDB = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\__idf_freertos.pdb - TARGET_PDB = esp-idf\freertos\libfreertos.pdb - -build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/freertos_compatibility.c.obj: C_COMPILER____idf_freertos_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/freertos_compatibility.c || cmake_object_order_depends_target___idf_freertos - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\esp_additions\freertos_compatibility.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir - OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\esp_additions - TARGET_COMPILE_PDB = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\__idf_freertos.pdb - TARGET_PDB = esp-idf\freertos\libfreertos.pdb - -build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions_event_groups.c.obj: C_COMPILER____idf_freertos_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/idf_additions_event_groups.c || cmake_object_order_depends_target___idf_freertos - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\esp_additions\idf_additions_event_groups.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir - OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\esp_additions - TARGET_COMPILE_PDB = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\__idf_freertos.pdb - TARGET_PDB = esp-idf\freertos\libfreertos.pdb - -build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions.c.obj: C_COMPILER____idf_freertos_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/idf_additions.c || cmake_object_order_depends_target___idf_freertos - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\esp_additions\idf_additions.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir - OBJECT_FILE_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\esp_additions - TARGET_COMPILE_PDB = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\__idf_freertos.pdb - TARGET_PDB = esp-idf\freertos\libfreertos.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_freertos - - -############################################# -# Link the static library esp-idf\freertos\libfreertos.a - -build esp-idf/freertos/libfreertos.a: C_STATIC_LIBRARY_LINKER____idf_freertos_ esp-idf/freertos/CMakeFiles/__idf_freertos.dir/heap_idf.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/app_startup.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_common.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_systick.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/list.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/queue.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/tasks.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/timers.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/event_groups.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/stream_buffer.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/riscv/port.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/riscv/portasm.S.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/freertos_compatibility.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions_event_groups.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions.c.obj || esp-idf/newlib/libnewlib.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei - OBJECT_DIR = esp-idf\freertos\CMakeFiles\__idf_freertos.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = esp-idf\freertos\CMakeFiles\__idf_freertos.dir\__idf_freertos.pdb - TARGET_FILE = esp-idf\freertos\libfreertos.a - TARGET_PDB = esp-idf\freertos\libfreertos.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/freertos/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\freertos && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/freertos/edit_cache: phony esp-idf/freertos/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/freertos/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\freertos && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/freertos/rebuild_cache: phony esp-idf/freertos/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/freertos/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/freertos/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/freertos/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\freertos && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/freertos/install: phony esp-idf/freertos/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/freertos/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/freertos/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\freertos && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/freertos/install/local: phony esp-idf/freertos/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/freertos/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/freertos/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\freertos && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/freertos/install/strip: phony esp-idf/freertos/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_newlib - - -############################################# -# Order-only phony target for __idf_newlib - -build cmake_object_order_depends_target___idf_newlib: phony || cmake_object_order_depends_target___idf_pthread - -build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/init.c.obj: C_COMPILER____idf_newlib_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/src/init.c || cmake_object_order_depends_target___idf_newlib - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src\init.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir - OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src - TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb - TARGET_PDB = esp-idf\newlib\libnewlib.pdb - -build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/abort.c.obj: C_COMPILER____idf_newlib_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/src/abort.c || cmake_object_order_depends_target___idf_newlib - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src\abort.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir - OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src - TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb - TARGET_PDB = esp-idf\newlib\libnewlib.pdb - -build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/assert.c.obj: C_COMPILER____idf_newlib_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/src/assert.c || cmake_object_order_depends_target___idf_newlib - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src\assert.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir - OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src - TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb - TARGET_PDB = esp-idf\newlib\libnewlib.pdb - -build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/heap.c.obj: C_COMPILER____idf_newlib_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/src/heap.c || cmake_object_order_depends_target___idf_newlib - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src\heap.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir - OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src - TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb - TARGET_PDB = esp-idf\newlib\libnewlib.pdb - -build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/locks.c.obj: C_COMPILER____idf_newlib_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/src/locks.c || cmake_object_order_depends_target___idf_newlib - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src\locks.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir - OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src - TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb - TARGET_PDB = esp-idf\newlib\libnewlib.pdb - -build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/poll.c.obj: C_COMPILER____idf_newlib_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/src/poll.c || cmake_object_order_depends_target___idf_newlib - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src\poll.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir - OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src - TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb - TARGET_PDB = esp-idf\newlib\libnewlib.pdb - -build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/pthread.c.obj: C_COMPILER____idf_newlib_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/src/pthread.c || cmake_object_order_depends_target___idf_newlib - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src\pthread.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir - OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src - TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb - TARGET_PDB = esp-idf\newlib\libnewlib.pdb - -build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/random.c.obj: C_COMPILER____idf_newlib_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/src/random.c || cmake_object_order_depends_target___idf_newlib - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src\random.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir - OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src - TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb - TARGET_PDB = esp-idf\newlib\libnewlib.pdb - -build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/getentropy.c.obj: C_COMPILER____idf_newlib_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/src/getentropy.c || cmake_object_order_depends_target___idf_newlib - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src\getentropy.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir - OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src - TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb - TARGET_PDB = esp-idf\newlib\libnewlib.pdb - -build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/termios.c.obj: C_COMPILER____idf_newlib_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/src/termios.c || cmake_object_order_depends_target___idf_newlib - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src\termios.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir - OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src - TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb - TARGET_PDB = esp-idf\newlib\libnewlib.pdb - -build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/stdatomic.c.obj: C_COMPILER____idf_newlib_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/src/stdatomic.c || cmake_object_order_depends_target___idf_newlib - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src\stdatomic.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir - OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src - TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb - TARGET_PDB = esp-idf\newlib\libnewlib.pdb - -build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/time.c.obj: C_COMPILER____idf_newlib_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/src/time.c || cmake_object_order_depends_target___idf_newlib - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src\time.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir - OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src - TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb - TARGET_PDB = esp-idf\newlib\libnewlib.pdb - -build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/sysconf.c.obj: C_COMPILER____idf_newlib_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/src/sysconf.c || cmake_object_order_depends_target___idf_newlib - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src\sysconf.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir - OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src - TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb - TARGET_PDB = esp-idf\newlib\libnewlib.pdb - -build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/realpath.c.obj: C_COMPILER____idf_newlib_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/src/realpath.c || cmake_object_order_depends_target___idf_newlib - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src\realpath.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir - OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src - TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb - TARGET_PDB = esp-idf\newlib\libnewlib.pdb - -build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/scandir.c.obj: C_COMPILER____idf_newlib_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/src/scandir.c || cmake_object_order_depends_target___idf_newlib - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src\scandir.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir - OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src - TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb - TARGET_PDB = esp-idf\newlib\libnewlib.pdb - -build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/syscalls.c.obj: C_COMPILER____idf_newlib_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/src/syscalls.c || cmake_object_order_depends_target___idf_newlib - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src\syscalls.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir - OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src - TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb - TARGET_PDB = esp-idf\newlib\libnewlib.pdb - -build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/reent_syscalls.c.obj: C_COMPILER____idf_newlib_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/src/reent_syscalls.c || cmake_object_order_depends_target___idf_newlib - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src\reent_syscalls.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir - OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src - TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb - TARGET_PDB = esp-idf\newlib\libnewlib.pdb - -build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/port/esp_time_impl.c.obj: C_COMPILER____idf_newlib_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/src/port/esp_time_impl.c || cmake_object_order_depends_target___idf_newlib - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src\port\esp_time_impl.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir - OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src\port - TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb - TARGET_PDB = esp-idf\newlib\libnewlib.pdb - -build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/flockfile.c.obj: C_COMPILER____idf_newlib_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/src/flockfile.c || cmake_object_order_depends_target___idf_newlib - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src\flockfile.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir - OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src - TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb - TARGET_PDB = esp-idf\newlib\libnewlib.pdb - -build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/reent_init.c.obj: C_COMPILER____idf_newlib_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/src/reent_init.c || cmake_object_order_depends_target___idf_newlib - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src\reent_init.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir - OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src - TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb - TARGET_PDB = esp-idf\newlib\libnewlib.pdb - -build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/newlib_init.c.obj: C_COMPILER____idf_newlib_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/src/newlib_init.c || cmake_object_order_depends_target___idf_newlib - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src\newlib_init.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include - OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir - OBJECT_FILE_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\src - TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb - TARGET_PDB = esp-idf\newlib\libnewlib.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_newlib - - -############################################# -# Link the static library esp-idf\newlib\libnewlib.a - -build esp-idf/newlib/libnewlib.a: C_STATIC_LIBRARY_LINKER____idf_newlib_ esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/init.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/abort.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/assert.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/heap.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/locks.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/poll.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/pthread.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/random.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/getentropy.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/termios.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/stdatomic.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/time.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/sysconf.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/realpath.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/scandir.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/syscalls.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/reent_syscalls.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/port/esp_time_impl.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/flockfile.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/reent_init.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/newlib_init.c.obj || esp-idf/pthread/libpthread.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei - OBJECT_DIR = esp-idf\newlib\CMakeFiles\__idf_newlib.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = esp-idf\newlib\CMakeFiles\__idf_newlib.dir\__idf_newlib.pdb - TARGET_FILE = esp-idf\newlib\libnewlib.a - TARGET_PDB = esp-idf\newlib\libnewlib.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/newlib/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\newlib && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/newlib/edit_cache: phony esp-idf/newlib/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/newlib/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\newlib && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/newlib/rebuild_cache: phony esp-idf/newlib/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/newlib/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/newlib/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/newlib/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\newlib && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/newlib/install: phony esp-idf/newlib/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/newlib/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/newlib/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\newlib && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/newlib/install/local: phony esp-idf/newlib/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/newlib/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/newlib/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\newlib && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/newlib/install/strip: phony esp-idf/newlib/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/CMakeLists.txt -# ============================================================================= - - -############################################# -# Utility command for edit_cache - -build esp-idf/newlib/src/port/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\newlib\src\port && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/newlib/src/port/edit_cache: phony esp-idf/newlib/src/port/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/newlib/src/port/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\newlib\src\port && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/newlib/src/port/rebuild_cache: phony esp-idf/newlib/src/port/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/newlib/src/port/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/newlib/src/port/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/newlib/src/port/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\newlib\src\port && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/newlib/src/port/install: phony esp-idf/newlib/src/port/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/newlib/src/port/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/newlib/src/port/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\newlib\src\port && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/newlib/src/port/install/local: phony esp-idf/newlib/src/port/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/newlib/src/port/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/newlib/src/port/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\newlib\src\port && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/newlib/src/port/install/strip: phony esp-idf/newlib/src/port/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_pthread - - -############################################# -# Order-only phony target for __idf_pthread - -build cmake_object_order_depends_target___idf_pthread: phony || cmake_object_order_depends_target___idf_cxx - -build esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread.c.obj: C_COMPILER____idf_pthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/pthread/pthread.c || cmake_object_order_depends_target___idf_pthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\pthread\CMakeFiles\__idf_pthread.dir\pthread.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/pthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\pthread\CMakeFiles\__idf_pthread.dir - OBJECT_FILE_DIR = esp-idf\pthread\CMakeFiles\__idf_pthread.dir - TARGET_COMPILE_PDB = esp-idf\pthread\CMakeFiles\__idf_pthread.dir\__idf_pthread.pdb - TARGET_PDB = esp-idf\pthread\libpthread.pdb - -build esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_cond_var.c.obj: C_COMPILER____idf_pthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/pthread/pthread_cond_var.c || cmake_object_order_depends_target___idf_pthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\pthread\CMakeFiles\__idf_pthread.dir\pthread_cond_var.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/pthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\pthread\CMakeFiles\__idf_pthread.dir - OBJECT_FILE_DIR = esp-idf\pthread\CMakeFiles\__idf_pthread.dir - TARGET_COMPILE_PDB = esp-idf\pthread\CMakeFiles\__idf_pthread.dir\__idf_pthread.pdb - TARGET_PDB = esp-idf\pthread\libpthread.pdb - -build esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_local_storage.c.obj: C_COMPILER____idf_pthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/pthread/pthread_local_storage.c || cmake_object_order_depends_target___idf_pthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\pthread\CMakeFiles\__idf_pthread.dir\pthread_local_storage.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/pthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\pthread\CMakeFiles\__idf_pthread.dir - OBJECT_FILE_DIR = esp-idf\pthread\CMakeFiles\__idf_pthread.dir - TARGET_COMPILE_PDB = esp-idf\pthread\CMakeFiles\__idf_pthread.dir\__idf_pthread.pdb - TARGET_PDB = esp-idf\pthread\libpthread.pdb - -build esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_rwlock.c.obj: C_COMPILER____idf_pthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/pthread/pthread_rwlock.c || cmake_object_order_depends_target___idf_pthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\pthread\CMakeFiles\__idf_pthread.dir\pthread_rwlock.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/pthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\pthread\CMakeFiles\__idf_pthread.dir - OBJECT_FILE_DIR = esp-idf\pthread\CMakeFiles\__idf_pthread.dir - TARGET_COMPILE_PDB = esp-idf\pthread\CMakeFiles\__idf_pthread.dir\__idf_pthread.pdb - TARGET_PDB = esp-idf\pthread\libpthread.pdb - -build esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_semaphore.c.obj: C_COMPILER____idf_pthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/pthread/pthread_semaphore.c || cmake_object_order_depends_target___idf_pthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\pthread\CMakeFiles\__idf_pthread.dir\pthread_semaphore.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/pthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\pthread\CMakeFiles\__idf_pthread.dir - OBJECT_FILE_DIR = esp-idf\pthread\CMakeFiles\__idf_pthread.dir - TARGET_COMPILE_PDB = esp-idf\pthread\CMakeFiles\__idf_pthread.dir\__idf_pthread.pdb - TARGET_PDB = esp-idf\pthread\libpthread.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_pthread - - -############################################# -# Link the static library esp-idf\pthread\libpthread.a - -build esp-idf/pthread/libpthread.a: C_STATIC_LIBRARY_LINKER____idf_pthread_ esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread.c.obj esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_cond_var.c.obj esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_local_storage.c.obj esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_rwlock.c.obj esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_semaphore.c.obj || esp-idf/cxx/libcxx.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei - OBJECT_DIR = esp-idf\pthread\CMakeFiles\__idf_pthread.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = esp-idf\pthread\CMakeFiles\__idf_pthread.dir\__idf_pthread.pdb - TARGET_FILE = esp-idf\pthread\libpthread.a - TARGET_PDB = esp-idf\pthread\libpthread.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/pthread/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\pthread && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/pthread/edit_cache: phony esp-idf/pthread/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/pthread/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\pthread && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/pthread/rebuild_cache: phony esp-idf/pthread/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/pthread/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/pthread/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/pthread/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\pthread && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/pthread/install: phony esp-idf/pthread/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/pthread/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/pthread/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\pthread && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/pthread/install/local: phony esp-idf/pthread/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/pthread/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/pthread/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\pthread && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/pthread/install/strip: phony esp-idf/pthread/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_cxx - - -############################################# -# Order-only phony target for __idf_cxx - -build cmake_object_order_depends_target___idf_cxx: phony || cmake_object_order_depends_target___idf_esp_event - -build esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_exception_stubs.cpp.obj: CXX_COMPILER____idf_cxx_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/cxx/cxx_exception_stubs.cpp || cmake_object_order_depends_target___idf_cxx - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\cxx\CMakeFiles\__idf_cxx.dir\cxx_exception_stubs.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/pthread/include - OBJECT_DIR = esp-idf\cxx\CMakeFiles\__idf_cxx.dir - OBJECT_FILE_DIR = esp-idf\cxx\CMakeFiles\__idf_cxx.dir - TARGET_COMPILE_PDB = esp-idf\cxx\CMakeFiles\__idf_cxx.dir\__idf_cxx.pdb - TARGET_PDB = esp-idf\cxx\libcxx.pdb - -build esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_guards.cpp.obj: CXX_COMPILER____idf_cxx_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/cxx/cxx_guards.cpp || cmake_object_order_depends_target___idf_cxx - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\cxx\CMakeFiles\__idf_cxx.dir\cxx_guards.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/pthread/include - OBJECT_DIR = esp-idf\cxx\CMakeFiles\__idf_cxx.dir - OBJECT_FILE_DIR = esp-idf\cxx\CMakeFiles\__idf_cxx.dir - TARGET_COMPILE_PDB = esp-idf\cxx\CMakeFiles\__idf_cxx.dir\__idf_cxx.pdb - TARGET_PDB = esp-idf\cxx\libcxx.pdb - -build esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_init.cpp.obj: CXX_COMPILER____idf_cxx_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/cxx/cxx_init.cpp || cmake_object_order_depends_target___idf_cxx - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\cxx\CMakeFiles\__idf_cxx.dir\cxx_init.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/pthread/include - OBJECT_DIR = esp-idf\cxx\CMakeFiles\__idf_cxx.dir - OBJECT_FILE_DIR = esp-idf\cxx\CMakeFiles\__idf_cxx.dir - TARGET_COMPILE_PDB = esp-idf\cxx\CMakeFiles\__idf_cxx.dir\__idf_cxx.pdb - TARGET_PDB = esp-idf\cxx\libcxx.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_cxx - - -############################################# -# Link the static library esp-idf\cxx\libcxx.a - -build esp-idf/cxx/libcxx.a: C_STATIC_LIBRARY_LINKER____idf_cxx_ esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_exception_stubs.cpp.obj esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_guards.cpp.obj esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_init.cpp.obj || esp-idf/esp_event/libesp_event.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei - OBJECT_DIR = esp-idf\cxx\CMakeFiles\__idf_cxx.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = esp-idf\cxx\CMakeFiles\__idf_cxx.dir\__idf_cxx.pdb - TARGET_FILE = esp-idf\cxx\libcxx.a - TARGET_PDB = esp-idf\cxx\libcxx.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/cxx/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\cxx && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/cxx/edit_cache: phony esp-idf/cxx/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/cxx/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\cxx && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/cxx/rebuild_cache: phony esp-idf/cxx/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/cxx/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/cxx/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/cxx/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\cxx && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/cxx/install: phony esp-idf/cxx/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/cxx/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/cxx/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\cxx && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/cxx/install/local: phony esp-idf/cxx/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/cxx/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/cxx/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\cxx && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/cxx/install/strip: phony esp-idf/cxx/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_coex/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_coex && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_coex/edit_cache: phony esp-idf/esp_coex/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_coex/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_coex && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_coex/rebuild_cache: phony esp-idf/esp_coex/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_coex/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_coex/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_coex/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_coex && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_coex/install: phony esp-idf/esp_coex/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_coex/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_coex/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_coex && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_coex/install/local: phony esp-idf/esp_coex/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_coex/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_coex/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_coex && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_coex/install/strip: phony esp-idf/esp_coex/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_event - - -############################################# -# Order-only phony target for __idf_esp_event - -build cmake_object_order_depends_target___idf_esp_event: phony || cmake_object_order_depends_target___idf_nvs_flash - -build esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/default_event_loop.c.obj: C_COMPILER____idf_esp_event_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/default_event_loop.c || cmake_object_order_depends_target___idf_esp_event - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_event\CMakeFiles\__idf_esp_event.dir\default_event_loop.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include - OBJECT_DIR = esp-idf\esp_event\CMakeFiles\__idf_esp_event.dir - OBJECT_FILE_DIR = esp-idf\esp_event\CMakeFiles\__idf_esp_event.dir - TARGET_COMPILE_PDB = esp-idf\esp_event\CMakeFiles\__idf_esp_event.dir\__idf_esp_event.pdb - TARGET_PDB = esp-idf\esp_event\libesp_event.pdb - -build esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event.c.obj: C_COMPILER____idf_esp_event_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/esp_event.c || cmake_object_order_depends_target___idf_esp_event - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_event\CMakeFiles\__idf_esp_event.dir\esp_event.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include - OBJECT_DIR = esp-idf\esp_event\CMakeFiles\__idf_esp_event.dir - OBJECT_FILE_DIR = esp-idf\esp_event\CMakeFiles\__idf_esp_event.dir - TARGET_COMPILE_PDB = esp-idf\esp_event\CMakeFiles\__idf_esp_event.dir\__idf_esp_event.pdb - TARGET_PDB = esp-idf\esp_event\libesp_event.pdb - -build esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event_private.c.obj: C_COMPILER____idf_esp_event_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/esp_event_private.c || cmake_object_order_depends_target___idf_esp_event - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_event\CMakeFiles\__idf_esp_event.dir\esp_event_private.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include - OBJECT_DIR = esp-idf\esp_event\CMakeFiles\__idf_esp_event.dir - OBJECT_FILE_DIR = esp-idf\esp_event\CMakeFiles\__idf_esp_event.dir - TARGET_COMPILE_PDB = esp-idf\esp_event\CMakeFiles\__idf_esp_event.dir\__idf_esp_event.pdb - TARGET_PDB = esp-idf\esp_event\libesp_event.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_event - - -############################################# -# Link the static library esp-idf\esp_event\libesp_event.a - -build esp-idf/esp_event/libesp_event.a: C_STATIC_LIBRARY_LINKER____idf_esp_event_ esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/default_event_loop.c.obj esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event.c.obj esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event_private.c.obj || esp-idf/nvs_flash/libnvs_flash.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei - OBJECT_DIR = esp-idf\esp_event\CMakeFiles\__idf_esp_event.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = esp-idf\esp_event\CMakeFiles\__idf_esp_event.dir\__idf_esp_event.pdb - TARGET_FILE = esp-idf\esp_event\libesp_event.a - TARGET_PDB = esp-idf\esp_event\libesp_event.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_event/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_event && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_event/edit_cache: phony esp-idf/esp_event/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_event/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_event && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_event/rebuild_cache: phony esp-idf/esp_event/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_event/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_event/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_event/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_event && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_event/install: phony esp-idf/esp_event/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_event/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_event/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_event && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_event/install/local: phony esp-idf/esp_event/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_event/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_event/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_event && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_event/install/strip: phony esp-idf/esp_event/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_nvs_flash - - -############################################# -# Order-only phony target for __idf_nvs_flash - -build cmake_object_order_depends_target___idf_nvs_flash: phony || cmake_object_order_depends_target___idf_esp_ringbuf - -build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_api.cpp.obj: CXX_COMPILER____idf_nvs_flash_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_api.cpp || cmake_object_order_depends_target___idf_nvs_flash - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src\nvs_api.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir - OBJECT_FILE_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src - TARGET_COMPILE_PDB = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\__idf_nvs_flash.pdb - TARGET_PDB = esp-idf\nvs_flash\libnvs_flash.pdb - -build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_cxx_api.cpp.obj: CXX_COMPILER____idf_nvs_flash_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_cxx_api.cpp || cmake_object_order_depends_target___idf_nvs_flash - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src\nvs_cxx_api.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir - OBJECT_FILE_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src - TARGET_COMPILE_PDB = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\__idf_nvs_flash.pdb - TARGET_PDB = esp-idf\nvs_flash\libnvs_flash.pdb - -build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_item_hash_list.cpp.obj: CXX_COMPILER____idf_nvs_flash_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_item_hash_list.cpp || cmake_object_order_depends_target___idf_nvs_flash - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src\nvs_item_hash_list.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir - OBJECT_FILE_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src - TARGET_COMPILE_PDB = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\__idf_nvs_flash.pdb - TARGET_PDB = esp-idf\nvs_flash\libnvs_flash.pdb - -build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_page.cpp.obj: CXX_COMPILER____idf_nvs_flash_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_page.cpp || cmake_object_order_depends_target___idf_nvs_flash - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src\nvs_page.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir - OBJECT_FILE_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src - TARGET_COMPILE_PDB = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\__idf_nvs_flash.pdb - TARGET_PDB = esp-idf\nvs_flash\libnvs_flash.pdb - -build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_pagemanager.cpp.obj: CXX_COMPILER____idf_nvs_flash_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_pagemanager.cpp || cmake_object_order_depends_target___idf_nvs_flash - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src\nvs_pagemanager.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir - OBJECT_FILE_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src - TARGET_COMPILE_PDB = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\__idf_nvs_flash.pdb - TARGET_PDB = esp-idf\nvs_flash\libnvs_flash.pdb - -build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_storage.cpp.obj: CXX_COMPILER____idf_nvs_flash_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_storage.cpp || cmake_object_order_depends_target___idf_nvs_flash - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src\nvs_storage.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir - OBJECT_FILE_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src - TARGET_COMPILE_PDB = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\__idf_nvs_flash.pdb - TARGET_PDB = esp-idf\nvs_flash\libnvs_flash.pdb - -build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_simple.cpp.obj: CXX_COMPILER____idf_nvs_flash_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_handle_simple.cpp || cmake_object_order_depends_target___idf_nvs_flash - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src\nvs_handle_simple.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir - OBJECT_FILE_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src - TARGET_COMPILE_PDB = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\__idf_nvs_flash.pdb - TARGET_PDB = esp-idf\nvs_flash\libnvs_flash.pdb - -build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_locked.cpp.obj: CXX_COMPILER____idf_nvs_flash_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_handle_locked.cpp || cmake_object_order_depends_target___idf_nvs_flash - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src\nvs_handle_locked.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir - OBJECT_FILE_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src - TARGET_COMPILE_PDB = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\__idf_nvs_flash.pdb - TARGET_PDB = esp-idf\nvs_flash\libnvs_flash.pdb - -build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition.cpp.obj: CXX_COMPILER____idf_nvs_flash_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_partition.cpp || cmake_object_order_depends_target___idf_nvs_flash - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src\nvs_partition.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir - OBJECT_FILE_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src - TARGET_COMPILE_PDB = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\__idf_nvs_flash.pdb - TARGET_PDB = esp-idf\nvs_flash\libnvs_flash.pdb - -build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_lookup.cpp.obj: CXX_COMPILER____idf_nvs_flash_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_partition_lookup.cpp || cmake_object_order_depends_target___idf_nvs_flash - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src\nvs_partition_lookup.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir - OBJECT_FILE_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src - TARGET_COMPILE_PDB = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\__idf_nvs_flash.pdb - TARGET_PDB = esp-idf\nvs_flash\libnvs_flash.pdb - -build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_manager.cpp.obj: CXX_COMPILER____idf_nvs_flash_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_partition_manager.cpp || cmake_object_order_depends_target___idf_nvs_flash - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src\nvs_partition_manager.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir - OBJECT_FILE_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src - TARGET_COMPILE_PDB = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\__idf_nvs_flash.pdb - TARGET_PDB = esp-idf\nvs_flash\libnvs_flash.pdb - -build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_types.cpp.obj: CXX_COMPILER____idf_nvs_flash_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_types.cpp || cmake_object_order_depends_target___idf_nvs_flash - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src\nvs_types.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir - OBJECT_FILE_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src - TARGET_COMPILE_PDB = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\__idf_nvs_flash.pdb - TARGET_PDB = esp-idf\nvs_flash\libnvs_flash.pdb - -build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_platform.cpp.obj: CXX_COMPILER____idf_nvs_flash_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_platform.cpp || cmake_object_order_depends_target___idf_nvs_flash - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src\nvs_platform.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir - OBJECT_FILE_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src - TARGET_COMPILE_PDB = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\__idf_nvs_flash.pdb - TARGET_PDB = esp-idf\nvs_flash\libnvs_flash.pdb - -build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_bootloader.c.obj: C_COMPILER____idf_nvs_flash_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_bootloader.c || cmake_object_order_depends_target___idf_nvs_flash - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src\nvs_bootloader.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir - OBJECT_FILE_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src - TARGET_COMPILE_PDB = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\__idf_nvs_flash.pdb - TARGET_PDB = esp-idf\nvs_flash\libnvs_flash.pdb - -build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_encrypted_partition.cpp.obj: CXX_COMPILER____idf_nvs_flash_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_encrypted_partition.cpp || cmake_object_order_depends_target___idf_nvs_flash - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src\nvs_encrypted_partition.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir - OBJECT_FILE_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src - TARGET_COMPILE_PDB = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\__idf_nvs_flash.pdb - TARGET_PDB = esp-idf\nvs_flash\libnvs_flash.pdb - -build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_bootloader_aes.c.obj: C_COMPILER____idf_nvs_flash_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_bootloader_aes.c || cmake_object_order_depends_target___idf_nvs_flash - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src\nvs_bootloader_aes.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir - OBJECT_FILE_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src - TARGET_COMPILE_PDB = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\__idf_nvs_flash.pdb - TARGET_PDB = esp-idf\nvs_flash\libnvs_flash.pdb - -build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_bootloader_xts_aes.c.obj: C_COMPILER____idf_nvs_flash_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_bootloader_xts_aes.c || cmake_object_order_depends_target___idf_nvs_flash - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src\nvs_bootloader_xts_aes.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m - OBJECT_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir - OBJECT_FILE_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\src - TARGET_COMPILE_PDB = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\__idf_nvs_flash.pdb - TARGET_PDB = esp-idf\nvs_flash\libnvs_flash.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_nvs_flash - - -############################################# -# Link the static library esp-idf\nvs_flash\libnvs_flash.a - -build esp-idf/nvs_flash/libnvs_flash.a: C_STATIC_LIBRARY_LINKER____idf_nvs_flash_ esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_api.cpp.obj esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_cxx_api.cpp.obj esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_item_hash_list.cpp.obj esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_page.cpp.obj esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_pagemanager.cpp.obj esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_storage.cpp.obj esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_simple.cpp.obj esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_locked.cpp.obj esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition.cpp.obj esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_lookup.cpp.obj esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_manager.cpp.obj esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_types.cpp.obj esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_platform.cpp.obj esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_bootloader.c.obj esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_encrypted_partition.cpp.obj esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_bootloader_aes.c.obj esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_bootloader_xts_aes.c.obj || esp-idf/esp_ringbuf/libesp_ringbuf.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei - OBJECT_DIR = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = esp-idf\nvs_flash\CMakeFiles\__idf_nvs_flash.dir\__idf_nvs_flash.pdb - TARGET_FILE = esp-idf\nvs_flash\libnvs_flash.a - TARGET_PDB = esp-idf\nvs_flash\libnvs_flash.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/nvs_flash/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\nvs_flash && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/nvs_flash/edit_cache: phony esp-idf/nvs_flash/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/nvs_flash/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\nvs_flash && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/nvs_flash/rebuild_cache: phony esp-idf/nvs_flash/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/nvs_flash/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/nvs_flash/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/nvs_flash/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\nvs_flash && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/nvs_flash/install: phony esp-idf/nvs_flash/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/nvs_flash/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/nvs_flash/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\nvs_flash && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/nvs_flash/install/local: phony esp-idf/nvs_flash/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/nvs_flash/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/nvs_flash/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\nvs_flash && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/nvs_flash/install/strip: phony esp-idf/nvs_flash/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_ringbuf - - -############################################# -# Order-only phony target for __idf_esp_ringbuf - -build cmake_object_order_depends_target___idf_esp_ringbuf: phony || cmake_object_order_depends_target___idf_esp_driver_uart - -build esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir/ringbuf.c.obj: C_COMPILER____idf_esp_ringbuf_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/ringbuf.c || cmake_object_order_depends_target___idf_esp_ringbuf - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_ringbuf\CMakeFiles\__idf_esp_ringbuf.dir\ringbuf.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys - OBJECT_DIR = esp-idf\esp_ringbuf\CMakeFiles\__idf_esp_ringbuf.dir - OBJECT_FILE_DIR = esp-idf\esp_ringbuf\CMakeFiles\__idf_esp_ringbuf.dir - TARGET_COMPILE_PDB = esp-idf\esp_ringbuf\CMakeFiles\__idf_esp_ringbuf.dir\__idf_esp_ringbuf.pdb - TARGET_PDB = esp-idf\esp_ringbuf\libesp_ringbuf.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_ringbuf - - -############################################# -# Link the static library esp-idf\esp_ringbuf\libesp_ringbuf.a - -build esp-idf/esp_ringbuf/libesp_ringbuf.a: C_STATIC_LIBRARY_LINKER____idf_esp_ringbuf_ esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir/ringbuf.c.obj || esp-idf/esp_driver_uart/libesp_driver_uart.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei - OBJECT_DIR = esp-idf\esp_ringbuf\CMakeFiles\__idf_esp_ringbuf.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = esp-idf\esp_ringbuf\CMakeFiles\__idf_esp_ringbuf.dir\__idf_esp_ringbuf.pdb - TARGET_FILE = esp-idf\esp_ringbuf\libesp_ringbuf.a - TARGET_PDB = esp-idf\esp_ringbuf\libesp_ringbuf.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_ringbuf/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_ringbuf && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_ringbuf/edit_cache: phony esp-idf/esp_ringbuf/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_ringbuf/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_ringbuf && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_ringbuf/rebuild_cache: phony esp-idf/esp_ringbuf/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_ringbuf/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_ringbuf/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_ringbuf/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_ringbuf && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_ringbuf/install: phony esp-idf/esp_ringbuf/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_ringbuf/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_ringbuf/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_ringbuf && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_ringbuf/install/local: phony esp-idf/esp_ringbuf/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_ringbuf/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_ringbuf/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_ringbuf && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_ringbuf/install/strip: phony esp-idf/esp_ringbuf/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_driver_uart - - -############################################# -# Order-only phony target for __idf_esp_driver_uart - -build cmake_object_order_depends_target___idf_esp_driver_uart: phony || cmake_object_order_depends_target___idf_esp_driver_usb_serial_jtag - -build esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart.c.obj: C_COMPILER____idf_esp_driver_uart_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/src/uart.c || cmake_object_order_depends_target___idf_esp_driver_uart - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_driver_uart\CMakeFiles\__idf_esp_driver_uart.dir\src\uart.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf\esp_driver_uart\CMakeFiles\__idf_esp_driver_uart.dir - OBJECT_FILE_DIR = esp-idf\esp_driver_uart\CMakeFiles\__idf_esp_driver_uart.dir\src - TARGET_COMPILE_PDB = esp-idf\esp_driver_uart\CMakeFiles\__idf_esp_driver_uart.dir\__idf_esp_driver_uart.pdb - TARGET_PDB = esp-idf\esp_driver_uart\libesp_driver_uart.pdb - -build esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart_wakeup.c.obj: C_COMPILER____idf_esp_driver_uart_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/src/uart_wakeup.c || cmake_object_order_depends_target___idf_esp_driver_uart - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_driver_uart\CMakeFiles\__idf_esp_driver_uart.dir\src\uart_wakeup.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf\esp_driver_uart\CMakeFiles\__idf_esp_driver_uart.dir - OBJECT_FILE_DIR = esp-idf\esp_driver_uart\CMakeFiles\__idf_esp_driver_uart.dir\src - TARGET_COMPILE_PDB = esp-idf\esp_driver_uart\CMakeFiles\__idf_esp_driver_uart.dir\__idf_esp_driver_uart.pdb - TARGET_PDB = esp-idf\esp_driver_uart\libesp_driver_uart.pdb - -build esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uhci.c.obj: C_COMPILER____idf_esp_driver_uart_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/src/uhci.c || cmake_object_order_depends_target___idf_esp_driver_uart - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_driver_uart\CMakeFiles\__idf_esp_driver_uart.dir\src\uhci.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf\esp_driver_uart\CMakeFiles\__idf_esp_driver_uart.dir - OBJECT_FILE_DIR = esp-idf\esp_driver_uart\CMakeFiles\__idf_esp_driver_uart.dir\src - TARGET_COMPILE_PDB = esp-idf\esp_driver_uart\CMakeFiles\__idf_esp_driver_uart.dir\__idf_esp_driver_uart.pdb - TARGET_PDB = esp-idf\esp_driver_uart\libesp_driver_uart.pdb - -build esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart_vfs.c.obj: C_COMPILER____idf_esp_driver_uart_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/src/uart_vfs.c || cmake_object_order_depends_target___idf_esp_driver_uart - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_driver_uart\CMakeFiles\__idf_esp_driver_uart.dir\src\uart_vfs.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf\esp_driver_uart\CMakeFiles\__idf_esp_driver_uart.dir - OBJECT_FILE_DIR = esp-idf\esp_driver_uart\CMakeFiles\__idf_esp_driver_uart.dir\src - TARGET_COMPILE_PDB = esp-idf\esp_driver_uart\CMakeFiles\__idf_esp_driver_uart.dir\__idf_esp_driver_uart.pdb - TARGET_PDB = esp-idf\esp_driver_uart\libesp_driver_uart.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_driver_uart - - -############################################# -# Link the static library esp-idf\esp_driver_uart\libesp_driver_uart.a - -build esp-idf/esp_driver_uart/libesp_driver_uart.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_uart_ esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart.c.obj esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart_wakeup.c.obj esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uhci.c.obj esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart_vfs.c.obj || esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei - OBJECT_DIR = esp-idf\esp_driver_uart\CMakeFiles\__idf_esp_driver_uart.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = esp-idf\esp_driver_uart\CMakeFiles\__idf_esp_driver_uart.dir\__idf_esp_driver_uart.pdb - TARGET_FILE = esp-idf\esp_driver_uart\libesp_driver_uart.a - TARGET_PDB = esp-idf\esp_driver_uart\libesp_driver_uart.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_driver_uart/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_uart && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_driver_uart/edit_cache: phony esp-idf/esp_driver_uart/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_driver_uart/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_uart && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_driver_uart/rebuild_cache: phony esp-idf/esp_driver_uart/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_driver_uart/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_driver_uart/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_uart/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_uart && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_driver_uart/install: phony esp-idf/esp_driver_uart/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_driver_uart/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_uart/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_uart && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_driver_uart/install/local: phony esp-idf/esp_driver_uart/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_driver_uart/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_uart/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_uart && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_driver_uart/install/strip: phony esp-idf/esp_driver_uart/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_driver_usb_serial_jtag - - -############################################# -# Order-only phony target for __idf_esp_driver_usb_serial_jtag - -build cmake_object_order_depends_target___idf_esp_driver_usb_serial_jtag: phony || cmake_object_order_depends_target___idf_esp_vfs_console - -build esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag.c.obj: C_COMPILER____idf_esp_driver_usb_serial_jtag_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/src/usb_serial_jtag.c || cmake_object_order_depends_target___idf_esp_driver_usb_serial_jtag - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_driver_usb_serial_jtag\CMakeFiles\__idf_esp_driver_usb_serial_jtag.dir\src\usb_serial_jtag.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf\esp_driver_usb_serial_jtag\CMakeFiles\__idf_esp_driver_usb_serial_jtag.dir - OBJECT_FILE_DIR = esp-idf\esp_driver_usb_serial_jtag\CMakeFiles\__idf_esp_driver_usb_serial_jtag.dir\src - TARGET_COMPILE_PDB = esp-idf\esp_driver_usb_serial_jtag\CMakeFiles\__idf_esp_driver_usb_serial_jtag.dir\__idf_esp_driver_usb_serial_jtag.pdb - TARGET_PDB = esp-idf\esp_driver_usb_serial_jtag\libesp_driver_usb_serial_jtag.pdb - -build esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag_connection_monitor.c.obj: C_COMPILER____idf_esp_driver_usb_serial_jtag_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/src/usb_serial_jtag_connection_monitor.c || cmake_object_order_depends_target___idf_esp_driver_usb_serial_jtag - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_driver_usb_serial_jtag\CMakeFiles\__idf_esp_driver_usb_serial_jtag.dir\src\usb_serial_jtag_connection_monitor.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf\esp_driver_usb_serial_jtag\CMakeFiles\__idf_esp_driver_usb_serial_jtag.dir - OBJECT_FILE_DIR = esp-idf\esp_driver_usb_serial_jtag\CMakeFiles\__idf_esp_driver_usb_serial_jtag.dir\src - TARGET_COMPILE_PDB = esp-idf\esp_driver_usb_serial_jtag\CMakeFiles\__idf_esp_driver_usb_serial_jtag.dir\__idf_esp_driver_usb_serial_jtag.pdb - TARGET_PDB = esp-idf\esp_driver_usb_serial_jtag\libesp_driver_usb_serial_jtag.pdb - -build esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag_vfs.c.obj: C_COMPILER____idf_esp_driver_usb_serial_jtag_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/src/usb_serial_jtag_vfs.c || cmake_object_order_depends_target___idf_esp_driver_usb_serial_jtag - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_driver_usb_serial_jtag\CMakeFiles\__idf_esp_driver_usb_serial_jtag.dir\src\usb_serial_jtag_vfs.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include - OBJECT_DIR = esp-idf\esp_driver_usb_serial_jtag\CMakeFiles\__idf_esp_driver_usb_serial_jtag.dir - OBJECT_FILE_DIR = esp-idf\esp_driver_usb_serial_jtag\CMakeFiles\__idf_esp_driver_usb_serial_jtag.dir\src - TARGET_COMPILE_PDB = esp-idf\esp_driver_usb_serial_jtag\CMakeFiles\__idf_esp_driver_usb_serial_jtag.dir\__idf_esp_driver_usb_serial_jtag.pdb - TARGET_PDB = esp-idf\esp_driver_usb_serial_jtag\libesp_driver_usb_serial_jtag.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_driver_usb_serial_jtag - - -############################################# -# Link the static library esp-idf\esp_driver_usb_serial_jtag\libesp_driver_usb_serial_jtag.a - -build esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_usb_serial_jtag_ esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag.c.obj esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag_connection_monitor.c.obj esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag_vfs.c.obj || esp-idf/esp_vfs_console/libesp_vfs_console.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei - OBJECT_DIR = esp-idf\esp_driver_usb_serial_jtag\CMakeFiles\__idf_esp_driver_usb_serial_jtag.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = esp-idf\esp_driver_usb_serial_jtag\CMakeFiles\__idf_esp_driver_usb_serial_jtag.dir\__idf_esp_driver_usb_serial_jtag.pdb - TARGET_FILE = esp-idf\esp_driver_usb_serial_jtag\libesp_driver_usb_serial_jtag.a - TARGET_PDB = esp-idf\esp_driver_usb_serial_jtag\libesp_driver_usb_serial_jtag.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_usb_serial_jtag && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_driver_usb_serial_jtag/edit_cache: phony esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_usb_serial_jtag && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_driver_usb_serial_jtag/rebuild_cache: phony esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_driver_usb_serial_jtag/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_usb_serial_jtag/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_usb_serial_jtag && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_driver_usb_serial_jtag/install: phony esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_usb_serial_jtag/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_usb_serial_jtag && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_driver_usb_serial_jtag/install/local: phony esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_usb_serial_jtag/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_usb_serial_jtag && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_driver_usb_serial_jtag/install/strip: phony esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_vfs_console - - -############################################# -# Order-only phony target for __idf_esp_vfs_console - -build cmake_object_order_depends_target___idf_esp_vfs_console: phony || cmake_object_order_depends_target___idf_vfs - -build esp-idf/esp_vfs_console/CMakeFiles/__idf_esp_vfs_console.dir/vfs_console.c.obj: C_COMPILER____idf_esp_vfs_console_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/vfs_console.c || cmake_object_order_depends_target___idf_esp_vfs_console - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_vfs_console\CMakeFiles\__idf_esp_vfs_console.dir\vfs_console.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf\esp_vfs_console\CMakeFiles\__idf_esp_vfs_console.dir - OBJECT_FILE_DIR = esp-idf\esp_vfs_console\CMakeFiles\__idf_esp_vfs_console.dir - TARGET_COMPILE_PDB = esp-idf\esp_vfs_console\CMakeFiles\__idf_esp_vfs_console.dir\__idf_esp_vfs_console.pdb - TARGET_PDB = esp-idf\esp_vfs_console\libesp_vfs_console.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_vfs_console - - -############################################# -# Link the static library esp-idf\esp_vfs_console\libesp_vfs_console.a - -build esp-idf/esp_vfs_console/libesp_vfs_console.a: C_STATIC_LIBRARY_LINKER____idf_esp_vfs_console_ esp-idf/esp_vfs_console/CMakeFiles/__idf_esp_vfs_console.dir/vfs_console.c.obj || esp-idf/vfs/libvfs.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei - OBJECT_DIR = esp-idf\esp_vfs_console\CMakeFiles\__idf_esp_vfs_console.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = esp-idf\esp_vfs_console\CMakeFiles\__idf_esp_vfs_console.dir\__idf_esp_vfs_console.pdb - TARGET_FILE = esp-idf\esp_vfs_console\libesp_vfs_console.a - TARGET_PDB = esp-idf\esp_vfs_console\libesp_vfs_console.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_vfs_console/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_vfs_console && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_vfs_console/edit_cache: phony esp-idf/esp_vfs_console/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_vfs_console/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_vfs_console && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_vfs_console/rebuild_cache: phony esp-idf/esp_vfs_console/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_vfs_console/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_vfs_console/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_vfs_console/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_vfs_console && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_vfs_console/install: phony esp-idf/esp_vfs_console/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_vfs_console/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_vfs_console/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_vfs_console && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_vfs_console/install/local: phony esp-idf/esp_vfs_console/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_vfs_console/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_vfs_console/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_vfs_console && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_vfs_console/install/strip: phony esp-idf/esp_vfs_console/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_vfs - - -############################################# -# Order-only phony target for __idf_vfs - -build cmake_object_order_depends_target___idf_vfs: phony || cmake_object_order_depends_target___idf_lwip - -build esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs.c.obj: C_COMPILER____idf_vfs_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/vfs.c || cmake_object_order_depends_target___idf_vfs - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\vfs\CMakeFiles\__idf_vfs.dir\vfs.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include - OBJECT_DIR = esp-idf\vfs\CMakeFiles\__idf_vfs.dir - OBJECT_FILE_DIR = esp-idf\vfs\CMakeFiles\__idf_vfs.dir - TARGET_COMPILE_PDB = esp-idf\vfs\CMakeFiles\__idf_vfs.dir\__idf_vfs.pdb - TARGET_PDB = esp-idf\vfs\libvfs.pdb - -build esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_eventfd.c.obj: C_COMPILER____idf_vfs_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/vfs_eventfd.c || cmake_object_order_depends_target___idf_vfs - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\vfs\CMakeFiles\__idf_vfs.dir\vfs_eventfd.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include - OBJECT_DIR = esp-idf\vfs\CMakeFiles\__idf_vfs.dir - OBJECT_FILE_DIR = esp-idf\vfs\CMakeFiles\__idf_vfs.dir - TARGET_COMPILE_PDB = esp-idf\vfs\CMakeFiles\__idf_vfs.dir\__idf_vfs.pdb - TARGET_PDB = esp-idf\vfs\libvfs.pdb - -build esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_semihost.c.obj: C_COMPILER____idf_vfs_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/vfs_semihost.c || cmake_object_order_depends_target___idf_vfs - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\vfs\CMakeFiles\__idf_vfs.dir\vfs_semihost.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include - OBJECT_DIR = esp-idf\vfs\CMakeFiles\__idf_vfs.dir - OBJECT_FILE_DIR = esp-idf\vfs\CMakeFiles\__idf_vfs.dir - TARGET_COMPILE_PDB = esp-idf\vfs\CMakeFiles\__idf_vfs.dir\__idf_vfs.pdb - TARGET_PDB = esp-idf\vfs\libvfs.pdb - -build esp-idf/vfs/CMakeFiles/__idf_vfs.dir/nullfs.c.obj: C_COMPILER____idf_vfs_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/nullfs.c || cmake_object_order_depends_target___idf_vfs - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\vfs\CMakeFiles\__idf_vfs.dir\nullfs.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include - OBJECT_DIR = esp-idf\vfs\CMakeFiles\__idf_vfs.dir - OBJECT_FILE_DIR = esp-idf\vfs\CMakeFiles\__idf_vfs.dir - TARGET_COMPILE_PDB = esp-idf\vfs\CMakeFiles\__idf_vfs.dir\__idf_vfs.pdb - TARGET_PDB = esp-idf\vfs\libvfs.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_vfs - - -############################################# -# Link the static library esp-idf\vfs\libvfs.a - -build esp-idf/vfs/libvfs.a: C_STATIC_LIBRARY_LINKER____idf_vfs_ esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs.c.obj esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_eventfd.c.obj esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_semihost.c.obj esp-idf/vfs/CMakeFiles/__idf_vfs.dir/nullfs.c.obj || esp-idf/lwip/liblwip.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei - OBJECT_DIR = esp-idf\vfs\CMakeFiles\__idf_vfs.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = esp-idf\vfs\CMakeFiles\__idf_vfs.dir\__idf_vfs.pdb - TARGET_FILE = esp-idf\vfs\libvfs.a - TARGET_PDB = esp-idf\vfs\libvfs.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/vfs/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\vfs && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/vfs/edit_cache: phony esp-idf/vfs/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/vfs/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\vfs && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/vfs/rebuild_cache: phony esp-idf/vfs/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/vfs/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/vfs/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/vfs/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\vfs && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/vfs/install: phony esp-idf/vfs/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/vfs/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/vfs/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\vfs && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/vfs/install/local: phony esp-idf/vfs/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/vfs/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/vfs/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\vfs && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/vfs/install/strip: phony esp-idf/vfs/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_lwip - - -############################################# -# Order-only phony target for __idf_lwip - -build cmake_object_order_depends_target___idf_lwip: phony || cmake_object_order_depends_target___idf_esp_netif - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/sntp/sntp.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/apps/sntp/sntp.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\apps\sntp\sntp.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\apps\sntp - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_lib.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/api/api_lib.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api\api_lib.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_msg.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/api/api_msg.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api\api_msg.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/err.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/api/err.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api\err.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/if_api.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/api/if_api.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api\if_api.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netbuf.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/api/netbuf.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api\netbuf.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netdb.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/api/netdb.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api\netdb.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netifapi.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/api/netifapi.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api\netifapi.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/sockets.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/api/sockets.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api\sockets.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/tcpip.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/api/tcpip.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api\tcpip.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\api - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/sntp/sntp.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/apps/sntp/sntp.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\apps\sntp\sntp.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\apps\sntp - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/netbiosns/netbiosns.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/apps/netbiosns/netbiosns.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\apps\netbiosns\netbiosns.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\apps\netbiosns - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/def.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/def.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\def.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/dns.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/dns.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\dns.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/inet_chksum.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/inet_chksum.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\inet_chksum.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/init.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/init.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\init.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ip.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/ip.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ip.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/mem.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/mem.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\mem.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/memp.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/memp.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\memp.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/netif.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/netif.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\netif.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/pbuf.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/pbuf.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\pbuf.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/raw.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/raw.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\raw.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/stats.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/stats.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\stats.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/sys.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/sys.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\sys.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/tcp.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\tcp.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-type-limits - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_in.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/tcp_in.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\tcp_in.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_out.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/tcp_out.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\tcp_out.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/timeouts.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/timeouts.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\timeouts.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/udp.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/udp.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\udp.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/autoip.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/ipv4/autoip.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4\autoip.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4 - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/dhcp.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/ipv4/dhcp.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4\dhcp.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4 - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/etharp.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/ipv4/etharp.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4\etharp.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4 - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/icmp.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/ipv4/icmp.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4\icmp.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4 - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/igmp.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/ipv4/igmp.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4\igmp.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4 - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/ipv4/ip4.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4\ip4.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4 - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_napt.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/ipv4/ip4_napt.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4\ip4_napt.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4 - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_addr.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/ipv4/ip4_addr.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4\ip4_addr.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4 - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_frag.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/ipv4/ip4_frag.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4\ip4_frag.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv4 - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/dhcp6.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/ipv6/dhcp6.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6\dhcp6.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6 - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ethip6.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/ipv6/ethip6.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6\ethip6.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6 - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/icmp6.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/ipv6/icmp6.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6\icmp6.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6 - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/inet6.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/ipv6/inet6.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6\inet6.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6 - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/ipv6/ip6.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6\ip6.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6 - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_addr.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/ipv6/ip6_addr.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6\ip6_addr.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6 - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_frag.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/ipv6/ip6_frag.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6\ip6_frag.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6 - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/mld6.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/ipv6/mld6.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6\mld6.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6 - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/nd6.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/ipv6/nd6.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6\nd6.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\core\ipv6 - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ethernet.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ethernet.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ethernet.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/bridgeif.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\bridgeif.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif_fdb.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/bridgeif_fdb.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\bridgeif_fdb.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/slipif.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/slipif.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\slipif.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/auth.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/auth.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\auth.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ccp.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/ccp.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\ccp.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-md5.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/chap-md5.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\chap-md5.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-new.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/chap-new.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\chap-new.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap_ms.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/chap_ms.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\chap_ms.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-array-parameter - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/demand.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/demand.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\demand.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eap.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/eap.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\eap.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ecp.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/ecp.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\ecp.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eui64.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/eui64.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\eui64.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/fsm.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/fsm.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\fsm.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipcp.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/ipcp.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\ipcp.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipv6cp.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/ipv6cp.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\ipv6cp.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/lcp.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/lcp.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\lcp.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/magic.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/magic.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\magic.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/mppe.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/mppe.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\mppe.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/multilink.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/multilink.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\multilink.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ppp.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/ppp.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\ppp.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppapi.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/pppapi.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\pppapi.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppcrypt.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/pppcrypt.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\pppcrypt.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppoe.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/pppoe.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\pppoe.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppol2tp.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/pppol2tp.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\pppol2tp.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppos.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/pppos.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\pppos.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-type-limits - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/upap.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/upap.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\upap.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/utils.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/utils.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\utils.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/vj.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/vj.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\vj.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks/tcp_isn_default.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/hooks/tcp_isn_default.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\port\hooks\tcp_isn_default.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\port\hooks - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks/lwip_default_hooks.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/hooks/lwip_default_hooks.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\port\hooks\lwip_default_hooks.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\port\hooks - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/debug/lwip_debug.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/debug/lwip_debug.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\port\debug\lwip_debug.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\port\debug - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/sockets_ext.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/sockets_ext.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\port\sockets_ext.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\port - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/freertos/sys_arch.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/sys_arch.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\port\freertos\sys_arch.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\port\freertos - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/if_index.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/if_index.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\port\if_index.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\port - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/acd_dhcp_check.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/acd_dhcp_check.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\port\acd_dhcp_check.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\port - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32xx/vfs_lwip.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/vfs_lwip.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\port\esp32xx\vfs_lwip.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\port\esp32xx - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/esp_ping.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/apps/ping/esp_ping.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\apps\ping\esp_ping.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\apps\ping - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/apps/ping/ping.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\apps\ping\ping.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\apps\ping - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping_sock.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/apps/ping/ping_sock.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\apps\ping\ping_sock.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\apps\ping - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/arc4.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/polarssl/arc4.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\polarssl\arc4.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\polarssl - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/des.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/polarssl/des.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\polarssl\des.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\polarssl - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/md4.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/polarssl/md4.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\polarssl\md4.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\polarssl - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/md5.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/polarssl/md5.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\polarssl\md5.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\polarssl - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/sha1.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/polarssl/sha1.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\polarssl\sha1.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\lwip\src\netif\ppp\polarssl - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - -build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/dhcpserver/dhcpserver.c.obj: C_COMPILER____idf_lwip_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/apps/dhcpserver/dhcpserver.c || cmake_object_order_depends_target___idf_lwip - DEFINES = -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\apps\dhcpserver\dhcpserver.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - OBJECT_FILE_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\apps\dhcpserver - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_PDB = esp-idf\lwip\liblwip.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_lwip - - -############################################# -# Link the static library esp-idf\lwip\liblwip.a - -build esp-idf/lwip/liblwip.a: C_STATIC_LIBRARY_LINKER____idf_lwip_ esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/sntp/sntp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_lib.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_msg.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/err.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/if_api.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netbuf.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netdb.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netifapi.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/sockets.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/tcpip.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/sntp/sntp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/netbiosns/netbiosns.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/def.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/dns.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/inet_chksum.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/init.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ip.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/mem.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/memp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/netif.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/pbuf.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/raw.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/stats.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/sys.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_in.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_out.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/timeouts.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/udp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/autoip.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/dhcp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/etharp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/icmp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/igmp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_napt.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_addr.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_frag.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/dhcp6.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ethip6.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/icmp6.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/inet6.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_addr.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_frag.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/mld6.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/nd6.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ethernet.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif_fdb.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/slipif.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/auth.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ccp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-md5.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-new.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap_ms.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/demand.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eap.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ecp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eui64.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/fsm.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipcp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipv6cp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/lcp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/magic.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/mppe.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/multilink.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ppp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppapi.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppcrypt.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppoe.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppol2tp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppos.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/upap.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/utils.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/vj.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks/tcp_isn_default.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks/lwip_default_hooks.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/debug/lwip_debug.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/sockets_ext.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/freertos/sys_arch.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/if_index.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/acd_dhcp_check.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32xx/vfs_lwip.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/esp_ping.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping_sock.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/arc4.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/des.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/md4.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/md5.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/sha1.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/dhcpserver/dhcpserver.c.obj || esp-idf/esp_netif/libesp_netif.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei - OBJECT_DIR = esp-idf\lwip\CMakeFiles\__idf_lwip.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = esp-idf\lwip\CMakeFiles\__idf_lwip.dir\__idf_lwip.pdb - TARGET_FILE = esp-idf\lwip\liblwip.a - TARGET_PDB = esp-idf\lwip\liblwip.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/lwip/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\lwip && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/lwip/edit_cache: phony esp-idf/lwip/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/lwip/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\lwip && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/lwip/rebuild_cache: phony esp-idf/lwip/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/lwip/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/lwip/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/lwip/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\lwip && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/lwip/install: phony esp-idf/lwip/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/lwip/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/lwip/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\lwip && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/lwip/install/local: phony esp-idf/lwip/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/lwip/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/lwip/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\lwip && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/lwip/install/strip: phony esp-idf/lwip/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_netif_stack/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_netif_stack && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_netif_stack/edit_cache: phony esp-idf/esp_netif_stack/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_netif_stack/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_netif_stack && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_netif_stack/rebuild_cache: phony esp-idf/esp_netif_stack/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_netif_stack/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_netif_stack/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_netif_stack/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_netif_stack && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_netif_stack/install: phony esp-idf/esp_netif_stack/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_netif_stack/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_netif_stack/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_netif_stack && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_netif_stack/install/local: phony esp-idf/esp_netif_stack/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_netif_stack/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_netif_stack/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_netif_stack && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_netif_stack/install/strip: phony esp-idf/esp_netif_stack/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_netif - - -############################################# -# Order-only phony target for __idf_esp_netif - -build cmake_object_order_depends_target___idf_esp_netif: phony || cmake_object_order_depends_target___idf_esp_driver_pcnt - -build esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_handlers.c.obj: C_COMPILER____idf_esp_netif_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/esp_netif_handlers.c || cmake_object_order_depends_target___idf_esp_netif - DEFINES = -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\esp_netif_handlers.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/lwip -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include - OBJECT_DIR = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir - OBJECT_FILE_DIR = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir - TARGET_COMPILE_PDB = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\__idf_esp_netif.pdb - TARGET_PDB = esp-idf\esp_netif\libesp_netif.pdb - -build esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_objects.c.obj: C_COMPILER____idf_esp_netif_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/esp_netif_objects.c || cmake_object_order_depends_target___idf_esp_netif - DEFINES = -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\esp_netif_objects.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/lwip -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include - OBJECT_DIR = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir - OBJECT_FILE_DIR = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir - TARGET_COMPILE_PDB = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\__idf_esp_netif.pdb - TARGET_PDB = esp-idf\esp_netif\libesp_netif.pdb - -build esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_defaults.c.obj: C_COMPILER____idf_esp_netif_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/esp_netif_defaults.c || cmake_object_order_depends_target___idf_esp_netif - DEFINES = -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\esp_netif_defaults.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/lwip -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include - OBJECT_DIR = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir - OBJECT_FILE_DIR = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir - TARGET_COMPILE_PDB = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\__idf_esp_netif.pdb - TARGET_PDB = esp-idf\esp_netif\libesp_netif.pdb - -build esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip.c.obj: C_COMPILER____idf_esp_netif_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/lwip/esp_netif_lwip.c || cmake_object_order_depends_target___idf_esp_netif - DEFINES = -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\lwip\esp_netif_lwip.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/lwip -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include - OBJECT_DIR = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir - OBJECT_FILE_DIR = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\lwip - TARGET_COMPILE_PDB = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\__idf_esp_netif.pdb - TARGET_PDB = esp-idf\esp_netif\libesp_netif.pdb - -build esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_sntp.c.obj: C_COMPILER____idf_esp_netif_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/lwip/esp_netif_sntp.c || cmake_object_order_depends_target___idf_esp_netif - DEFINES = -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\lwip\esp_netif_sntp.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/lwip -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include - OBJECT_DIR = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir - OBJECT_FILE_DIR = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\lwip - TARGET_COMPILE_PDB = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\__idf_esp_netif.pdb - TARGET_PDB = esp-idf\esp_netif\libesp_netif.pdb - -build esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip_defaults.c.obj: C_COMPILER____idf_esp_netif_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/lwip/esp_netif_lwip_defaults.c || cmake_object_order_depends_target___idf_esp_netif - DEFINES = -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\lwip\esp_netif_lwip_defaults.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/lwip -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include - OBJECT_DIR = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir - OBJECT_FILE_DIR = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\lwip - TARGET_COMPILE_PDB = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\__idf_esp_netif.pdb - TARGET_PDB = esp-idf\esp_netif\libesp_netif.pdb - -build esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/wlanif.c.obj: C_COMPILER____idf_esp_netif_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/lwip/netif/wlanif.c || cmake_object_order_depends_target___idf_esp_netif - DEFINES = -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\lwip\netif\wlanif.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/lwip -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include - OBJECT_DIR = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir - OBJECT_FILE_DIR = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\lwip\netif - TARGET_COMPILE_PDB = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\__idf_esp_netif.pdb - TARGET_PDB = esp-idf\esp_netif\libesp_netif.pdb - -build esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/ethernetif.c.obj: C_COMPILER____idf_esp_netif_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/lwip/netif/ethernetif.c || cmake_object_order_depends_target___idf_esp_netif - DEFINES = -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\lwip\netif\ethernetif.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/lwip -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include - OBJECT_DIR = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir - OBJECT_FILE_DIR = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\lwip\netif - TARGET_COMPILE_PDB = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\__idf_esp_netif.pdb - TARGET_PDB = esp-idf\esp_netif\libesp_netif.pdb - -build esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/esp_pbuf_ref.c.obj: C_COMPILER____idf_esp_netif_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/lwip/netif/esp_pbuf_ref.c || cmake_object_order_depends_target___idf_esp_netif - DEFINES = -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\lwip\netif\esp_pbuf_ref.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/lwip -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include - OBJECT_DIR = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir - OBJECT_FILE_DIR = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\lwip\netif - TARGET_COMPILE_PDB = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\__idf_esp_netif.pdb - TARGET_PDB = esp-idf\esp_netif\libesp_netif.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_netif - - -############################################# -# Link the static library esp-idf\esp_netif\libesp_netif.a - -build esp-idf/esp_netif/libesp_netif.a: C_STATIC_LIBRARY_LINKER____idf_esp_netif_ esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_handlers.c.obj esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_objects.c.obj esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_defaults.c.obj esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip.c.obj esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_sntp.c.obj esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip_defaults.c.obj esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/wlanif.c.obj esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/ethernetif.c.obj esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/esp_pbuf_ref.c.obj || esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei - OBJECT_DIR = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = esp-idf\esp_netif\CMakeFiles\__idf_esp_netif.dir\__idf_esp_netif.pdb - TARGET_FILE = esp-idf\esp_netif\libesp_netif.a - TARGET_PDB = esp-idf\esp_netif\libesp_netif.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_netif/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_netif && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_netif/edit_cache: phony esp-idf/esp_netif/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_netif/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_netif && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_netif/rebuild_cache: phony esp-idf/esp_netif/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_netif/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_netif/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_netif/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_netif && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_netif/install: phony esp-idf/esp_netif/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_netif/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_netif/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_netif && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_netif/install/local: phony esp-idf/esp_netif/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_netif/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_netif/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_netif && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_netif/install/strip: phony esp-idf/esp_netif/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_driver_pcnt - - -############################################# -# Order-only phony target for __idf_esp_driver_pcnt - -build cmake_object_order_depends_target___idf_esp_driver_pcnt: phony || cmake_object_order_depends_target___idf_esp_driver_gptimer - -build esp-idf/esp_driver_pcnt/CMakeFiles/__idf_esp_driver_pcnt.dir/src/pulse_cnt.c.obj: C_COMPILER____idf_esp_driver_pcnt_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/src/pulse_cnt.c || cmake_object_order_depends_target___idf_esp_driver_pcnt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_driver_pcnt\CMakeFiles\__idf_esp_driver_pcnt.dir\src\pulse_cnt.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf\esp_driver_pcnt\CMakeFiles\__idf_esp_driver_pcnt.dir - OBJECT_FILE_DIR = esp-idf\esp_driver_pcnt\CMakeFiles\__idf_esp_driver_pcnt.dir\src - TARGET_COMPILE_PDB = esp-idf\esp_driver_pcnt\CMakeFiles\__idf_esp_driver_pcnt.dir\__idf_esp_driver_pcnt.pdb - TARGET_PDB = esp-idf\esp_driver_pcnt\libesp_driver_pcnt.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_driver_pcnt - - -############################################# -# Link the static library esp-idf\esp_driver_pcnt\libesp_driver_pcnt.a - -build esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_pcnt_ esp-idf/esp_driver_pcnt/CMakeFiles/__idf_esp_driver_pcnt.dir/src/pulse_cnt.c.obj || esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei - OBJECT_DIR = esp-idf\esp_driver_pcnt\CMakeFiles\__idf_esp_driver_pcnt.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = esp-idf\esp_driver_pcnt\CMakeFiles\__idf_esp_driver_pcnt.dir\__idf_esp_driver_pcnt.pdb - TARGET_FILE = esp-idf\esp_driver_pcnt\libesp_driver_pcnt.a - TARGET_PDB = esp-idf\esp_driver_pcnt\libesp_driver_pcnt.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_driver_pcnt/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_pcnt && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_driver_pcnt/edit_cache: phony esp-idf/esp_driver_pcnt/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_driver_pcnt/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_pcnt && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_driver_pcnt/rebuild_cache: phony esp-idf/esp_driver_pcnt/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_driver_pcnt/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_driver_pcnt/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_pcnt/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_pcnt && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_driver_pcnt/install: phony esp-idf/esp_driver_pcnt/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_driver_pcnt/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_pcnt/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_pcnt && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_driver_pcnt/install/local: phony esp-idf/esp_driver_pcnt/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_driver_pcnt/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_pcnt/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_pcnt && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_driver_pcnt/install/strip: phony esp-idf/esp_driver_pcnt/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_driver_gptimer - - -############################################# -# Order-only phony target for __idf_esp_driver_gptimer - -build cmake_object_order_depends_target___idf_esp_driver_gptimer: phony || cmake_object_order_depends_target___idf_esp_driver_spi - -build esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer.c.obj: C_COMPILER____idf_esp_driver_gptimer_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/src/gptimer.c || cmake_object_order_depends_target___idf_esp_driver_gptimer - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_driver_gptimer\CMakeFiles\__idf_esp_driver_gptimer.dir\src\gptimer.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include - OBJECT_DIR = esp-idf\esp_driver_gptimer\CMakeFiles\__idf_esp_driver_gptimer.dir - OBJECT_FILE_DIR = esp-idf\esp_driver_gptimer\CMakeFiles\__idf_esp_driver_gptimer.dir\src - TARGET_COMPILE_PDB = esp-idf\esp_driver_gptimer\CMakeFiles\__idf_esp_driver_gptimer.dir\__idf_esp_driver_gptimer.pdb - TARGET_PDB = esp-idf\esp_driver_gptimer\libesp_driver_gptimer.pdb - -build esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer_common.c.obj: C_COMPILER____idf_esp_driver_gptimer_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/src/gptimer_common.c || cmake_object_order_depends_target___idf_esp_driver_gptimer - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_driver_gptimer\CMakeFiles\__idf_esp_driver_gptimer.dir\src\gptimer_common.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include - OBJECT_DIR = esp-idf\esp_driver_gptimer\CMakeFiles\__idf_esp_driver_gptimer.dir - OBJECT_FILE_DIR = esp-idf\esp_driver_gptimer\CMakeFiles\__idf_esp_driver_gptimer.dir\src - TARGET_COMPILE_PDB = esp-idf\esp_driver_gptimer\CMakeFiles\__idf_esp_driver_gptimer.dir\__idf_esp_driver_gptimer.pdb - TARGET_PDB = esp-idf\esp_driver_gptimer\libesp_driver_gptimer.pdb - -build esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer_etm.c.obj: C_COMPILER____idf_esp_driver_gptimer_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/src/gptimer_etm.c || cmake_object_order_depends_target___idf_esp_driver_gptimer - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_driver_gptimer\CMakeFiles\__idf_esp_driver_gptimer.dir\src\gptimer_etm.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include - OBJECT_DIR = esp-idf\esp_driver_gptimer\CMakeFiles\__idf_esp_driver_gptimer.dir - OBJECT_FILE_DIR = esp-idf\esp_driver_gptimer\CMakeFiles\__idf_esp_driver_gptimer.dir\src - TARGET_COMPILE_PDB = esp-idf\esp_driver_gptimer\CMakeFiles\__idf_esp_driver_gptimer.dir\__idf_esp_driver_gptimer.pdb - TARGET_PDB = esp-idf\esp_driver_gptimer\libesp_driver_gptimer.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_driver_gptimer - - -############################################# -# Link the static library esp-idf\esp_driver_gptimer\libesp_driver_gptimer.a - -build esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_gptimer_ esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer.c.obj esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer_common.c.obj esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer_etm.c.obj || esp-idf/esp_driver_spi/libesp_driver_spi.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei - OBJECT_DIR = esp-idf\esp_driver_gptimer\CMakeFiles\__idf_esp_driver_gptimer.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = esp-idf\esp_driver_gptimer\CMakeFiles\__idf_esp_driver_gptimer.dir\__idf_esp_driver_gptimer.pdb - TARGET_FILE = esp-idf\esp_driver_gptimer\libesp_driver_gptimer.a - TARGET_PDB = esp-idf\esp_driver_gptimer\libesp_driver_gptimer.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_driver_gptimer/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_gptimer && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_driver_gptimer/edit_cache: phony esp-idf/esp_driver_gptimer/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_driver_gptimer/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_gptimer && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_driver_gptimer/rebuild_cache: phony esp-idf/esp_driver_gptimer/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_driver_gptimer/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_driver_gptimer/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_gptimer/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_gptimer && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_driver_gptimer/install: phony esp-idf/esp_driver_gptimer/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_driver_gptimer/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_gptimer/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_gptimer && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_driver_gptimer/install/local: phony esp-idf/esp_driver_gptimer/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_driver_gptimer/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_gptimer/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_gptimer && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_driver_gptimer/install/strip: phony esp-idf/esp_driver_gptimer/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_driver_spi - - -############################################# -# Order-only phony target for __idf_esp_driver_spi - -build cmake_object_order_depends_target___idf_esp_driver_spi: phony || cmake_object_order_depends_target___idf_esp_driver_mcpwm - -build esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_common.c.obj: C_COMPILER____idf_esp_driver_spi_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/src/gpspi/spi_common.c || cmake_object_order_depends_target___idf_esp_driver_spi - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_driver_spi\CMakeFiles\__idf_esp_driver_spi.dir\src\gpspi\spi_common.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf\esp_driver_spi\CMakeFiles\__idf_esp_driver_spi.dir - OBJECT_FILE_DIR = esp-idf\esp_driver_spi\CMakeFiles\__idf_esp_driver_spi.dir\src\gpspi - TARGET_COMPILE_PDB = esp-idf\esp_driver_spi\CMakeFiles\__idf_esp_driver_spi.dir\__idf_esp_driver_spi.pdb - TARGET_PDB = esp-idf\esp_driver_spi\libesp_driver_spi.pdb - -build esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_master.c.obj: C_COMPILER____idf_esp_driver_spi_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/src/gpspi/spi_master.c || cmake_object_order_depends_target___idf_esp_driver_spi - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_driver_spi\CMakeFiles\__idf_esp_driver_spi.dir\src\gpspi\spi_master.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf\esp_driver_spi\CMakeFiles\__idf_esp_driver_spi.dir - OBJECT_FILE_DIR = esp-idf\esp_driver_spi\CMakeFiles\__idf_esp_driver_spi.dir\src\gpspi - TARGET_COMPILE_PDB = esp-idf\esp_driver_spi\CMakeFiles\__idf_esp_driver_spi.dir\__idf_esp_driver_spi.pdb - TARGET_PDB = esp-idf\esp_driver_spi\libesp_driver_spi.pdb - -build esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_slave.c.obj: C_COMPILER____idf_esp_driver_spi_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/src/gpspi/spi_slave.c || cmake_object_order_depends_target___idf_esp_driver_spi - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_driver_spi\CMakeFiles\__idf_esp_driver_spi.dir\src\gpspi\spi_slave.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf\esp_driver_spi\CMakeFiles\__idf_esp_driver_spi.dir - OBJECT_FILE_DIR = esp-idf\esp_driver_spi\CMakeFiles\__idf_esp_driver_spi.dir\src\gpspi - TARGET_COMPILE_PDB = esp-idf\esp_driver_spi\CMakeFiles\__idf_esp_driver_spi.dir\__idf_esp_driver_spi.pdb - TARGET_PDB = esp-idf\esp_driver_spi\libesp_driver_spi.pdb - -build esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_slave_hd.c.obj: C_COMPILER____idf_esp_driver_spi_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/src/gpspi/spi_slave_hd.c || cmake_object_order_depends_target___idf_esp_driver_spi - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_driver_spi\CMakeFiles\__idf_esp_driver_spi.dir\src\gpspi\spi_slave_hd.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf\esp_driver_spi\CMakeFiles\__idf_esp_driver_spi.dir - OBJECT_FILE_DIR = esp-idf\esp_driver_spi\CMakeFiles\__idf_esp_driver_spi.dir\src\gpspi - TARGET_COMPILE_PDB = esp-idf\esp_driver_spi\CMakeFiles\__idf_esp_driver_spi.dir\__idf_esp_driver_spi.pdb - TARGET_PDB = esp-idf\esp_driver_spi\libesp_driver_spi.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_driver_spi - - -############################################# -# Link the static library esp-idf\esp_driver_spi\libesp_driver_spi.a - -build esp-idf/esp_driver_spi/libesp_driver_spi.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_spi_ esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_common.c.obj esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_master.c.obj esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_slave.c.obj esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_slave_hd.c.obj || esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei - OBJECT_DIR = esp-idf\esp_driver_spi\CMakeFiles\__idf_esp_driver_spi.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = esp-idf\esp_driver_spi\CMakeFiles\__idf_esp_driver_spi.dir\__idf_esp_driver_spi.pdb - TARGET_FILE = esp-idf\esp_driver_spi\libesp_driver_spi.a - TARGET_PDB = esp-idf\esp_driver_spi\libesp_driver_spi.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_driver_spi/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_spi && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_driver_spi/edit_cache: phony esp-idf/esp_driver_spi/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_driver_spi/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_spi && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_driver_spi/rebuild_cache: phony esp-idf/esp_driver_spi/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_driver_spi/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_driver_spi/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_spi/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_spi && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_driver_spi/install: phony esp-idf/esp_driver_spi/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_driver_spi/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_spi/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_spi && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_driver_spi/install/local: phony esp-idf/esp_driver_spi/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_driver_spi/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_spi/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_spi && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_driver_spi/install/strip: phony esp-idf/esp_driver_spi/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_driver_mcpwm - - -############################################# -# Order-only phony target for __idf_esp_driver_mcpwm - -build cmake_object_order_depends_target___idf_esp_driver_mcpwm: phony || cmake_object_order_depends_target___idf_esp_driver_ana_cmpr - -build esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_cap.c.obj: C_COMPILER____idf_esp_driver_mcpwm_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/src/mcpwm_cap.c || cmake_object_order_depends_target___idf_esp_driver_mcpwm - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\src\mcpwm_cap.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir - OBJECT_FILE_DIR = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\src - TARGET_COMPILE_PDB = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\__idf_esp_driver_mcpwm.pdb - TARGET_PDB = esp-idf\esp_driver_mcpwm\libesp_driver_mcpwm.pdb - -build esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_cmpr.c.obj: C_COMPILER____idf_esp_driver_mcpwm_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/src/mcpwm_cmpr.c || cmake_object_order_depends_target___idf_esp_driver_mcpwm - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\src\mcpwm_cmpr.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir - OBJECT_FILE_DIR = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\src - TARGET_COMPILE_PDB = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\__idf_esp_driver_mcpwm.pdb - TARGET_PDB = esp-idf\esp_driver_mcpwm\libesp_driver_mcpwm.pdb - -build esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_com.c.obj: C_COMPILER____idf_esp_driver_mcpwm_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/src/mcpwm_com.c || cmake_object_order_depends_target___idf_esp_driver_mcpwm - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\src\mcpwm_com.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir - OBJECT_FILE_DIR = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\src - TARGET_COMPILE_PDB = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\__idf_esp_driver_mcpwm.pdb - TARGET_PDB = esp-idf\esp_driver_mcpwm\libesp_driver_mcpwm.pdb - -build esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_fault.c.obj: C_COMPILER____idf_esp_driver_mcpwm_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/src/mcpwm_fault.c || cmake_object_order_depends_target___idf_esp_driver_mcpwm - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\src\mcpwm_fault.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir - OBJECT_FILE_DIR = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\src - TARGET_COMPILE_PDB = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\__idf_esp_driver_mcpwm.pdb - TARGET_PDB = esp-idf\esp_driver_mcpwm\libesp_driver_mcpwm.pdb - -build esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_gen.c.obj: C_COMPILER____idf_esp_driver_mcpwm_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/src/mcpwm_gen.c || cmake_object_order_depends_target___idf_esp_driver_mcpwm - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\src\mcpwm_gen.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir - OBJECT_FILE_DIR = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\src - TARGET_COMPILE_PDB = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\__idf_esp_driver_mcpwm.pdb - TARGET_PDB = esp-idf\esp_driver_mcpwm\libesp_driver_mcpwm.pdb - -build esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_oper.c.obj: C_COMPILER____idf_esp_driver_mcpwm_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/src/mcpwm_oper.c || cmake_object_order_depends_target___idf_esp_driver_mcpwm - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\src\mcpwm_oper.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir - OBJECT_FILE_DIR = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\src - TARGET_COMPILE_PDB = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\__idf_esp_driver_mcpwm.pdb - TARGET_PDB = esp-idf\esp_driver_mcpwm\libesp_driver_mcpwm.pdb - -build esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_sync.c.obj: C_COMPILER____idf_esp_driver_mcpwm_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/src/mcpwm_sync.c || cmake_object_order_depends_target___idf_esp_driver_mcpwm - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\src\mcpwm_sync.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir - OBJECT_FILE_DIR = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\src - TARGET_COMPILE_PDB = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\__idf_esp_driver_mcpwm.pdb - TARGET_PDB = esp-idf\esp_driver_mcpwm\libesp_driver_mcpwm.pdb - -build esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_timer.c.obj: C_COMPILER____idf_esp_driver_mcpwm_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/src/mcpwm_timer.c || cmake_object_order_depends_target___idf_esp_driver_mcpwm - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\src\mcpwm_timer.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir - OBJECT_FILE_DIR = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\src - TARGET_COMPILE_PDB = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\__idf_esp_driver_mcpwm.pdb - TARGET_PDB = esp-idf\esp_driver_mcpwm\libesp_driver_mcpwm.pdb - -build esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_etm.c.obj: C_COMPILER____idf_esp_driver_mcpwm_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/src/mcpwm_etm.c || cmake_object_order_depends_target___idf_esp_driver_mcpwm - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\src\mcpwm_etm.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir - OBJECT_FILE_DIR = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\src - TARGET_COMPILE_PDB = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\__idf_esp_driver_mcpwm.pdb - TARGET_PDB = esp-idf\esp_driver_mcpwm\libesp_driver_mcpwm.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_driver_mcpwm - - -############################################# -# Link the static library esp-idf\esp_driver_mcpwm\libesp_driver_mcpwm.a - -build esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_mcpwm_ esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_cap.c.obj esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_cmpr.c.obj esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_com.c.obj esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_fault.c.obj esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_gen.c.obj esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_oper.c.obj esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_sync.c.obj esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_timer.c.obj esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_etm.c.obj || esp-idf/esp_driver_ana_cmpr/libesp_driver_ana_cmpr.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei - OBJECT_DIR = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = esp-idf\esp_driver_mcpwm\CMakeFiles\__idf_esp_driver_mcpwm.dir\__idf_esp_driver_mcpwm.pdb - TARGET_FILE = esp-idf\esp_driver_mcpwm\libesp_driver_mcpwm.a - TARGET_PDB = esp-idf\esp_driver_mcpwm\libesp_driver_mcpwm.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_driver_mcpwm/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_mcpwm && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_driver_mcpwm/edit_cache: phony esp-idf/esp_driver_mcpwm/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_driver_mcpwm/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_mcpwm && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_driver_mcpwm/rebuild_cache: phony esp-idf/esp_driver_mcpwm/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_driver_mcpwm/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_driver_mcpwm/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_mcpwm/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_mcpwm && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_driver_mcpwm/install: phony esp-idf/esp_driver_mcpwm/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_driver_mcpwm/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_mcpwm/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_mcpwm && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_driver_mcpwm/install/local: phony esp-idf/esp_driver_mcpwm/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_driver_mcpwm/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_mcpwm/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_mcpwm && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_driver_mcpwm/install/strip: phony esp-idf/esp_driver_mcpwm/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_driver_ana_cmpr - - -############################################# -# Order-only phony target for __idf_esp_driver_ana_cmpr - -build cmake_object_order_depends_target___idf_esp_driver_ana_cmpr: phony || cmake_object_order_depends_target___idf_esp_driver_i2s - -build esp-idf/esp_driver_ana_cmpr/CMakeFiles/__idf_esp_driver_ana_cmpr.dir/ana_cmpr.c.obj: C_COMPILER____idf_esp_driver_ana_cmpr_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/ana_cmpr.c || cmake_object_order_depends_target___idf_esp_driver_ana_cmpr - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_driver_ana_cmpr\CMakeFiles\__idf_esp_driver_ana_cmpr.dir\ana_cmpr.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf\esp_driver_ana_cmpr\CMakeFiles\__idf_esp_driver_ana_cmpr.dir - OBJECT_FILE_DIR = esp-idf\esp_driver_ana_cmpr\CMakeFiles\__idf_esp_driver_ana_cmpr.dir - TARGET_COMPILE_PDB = esp-idf\esp_driver_ana_cmpr\CMakeFiles\__idf_esp_driver_ana_cmpr.dir\__idf_esp_driver_ana_cmpr.pdb - TARGET_PDB = esp-idf\esp_driver_ana_cmpr\libesp_driver_ana_cmpr.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_driver_ana_cmpr - - -############################################# -# Link the static library esp-idf\esp_driver_ana_cmpr\libesp_driver_ana_cmpr.a - -build esp-idf/esp_driver_ana_cmpr/libesp_driver_ana_cmpr.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_ana_cmpr_ esp-idf/esp_driver_ana_cmpr/CMakeFiles/__idf_esp_driver_ana_cmpr.dir/ana_cmpr.c.obj || esp-idf/esp_driver_i2s/libesp_driver_i2s.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei - OBJECT_DIR = esp-idf\esp_driver_ana_cmpr\CMakeFiles\__idf_esp_driver_ana_cmpr.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = esp-idf\esp_driver_ana_cmpr\CMakeFiles\__idf_esp_driver_ana_cmpr.dir\__idf_esp_driver_ana_cmpr.pdb - TARGET_FILE = esp-idf\esp_driver_ana_cmpr\libesp_driver_ana_cmpr.a - TARGET_PDB = esp-idf\esp_driver_ana_cmpr\libesp_driver_ana_cmpr.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_driver_ana_cmpr/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_ana_cmpr && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_driver_ana_cmpr/edit_cache: phony esp-idf/esp_driver_ana_cmpr/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_driver_ana_cmpr/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_ana_cmpr && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_driver_ana_cmpr/rebuild_cache: phony esp-idf/esp_driver_ana_cmpr/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_driver_ana_cmpr/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_driver_ana_cmpr/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_ana_cmpr/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_ana_cmpr && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_driver_ana_cmpr/install: phony esp-idf/esp_driver_ana_cmpr/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_driver_ana_cmpr/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_ana_cmpr/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_ana_cmpr && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_driver_ana_cmpr/install/local: phony esp-idf/esp_driver_ana_cmpr/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_driver_ana_cmpr/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_ana_cmpr/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_ana_cmpr && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_driver_ana_cmpr/install/strip: phony esp-idf/esp_driver_ana_cmpr/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_driver_i2s - - -############################################# -# Order-only phony target for __idf_esp_driver_i2s - -build cmake_object_order_depends_target___idf_esp_driver_i2s: phony || cmake_object_order_depends_target___idf_sdmmc - -build esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_common.c.obj: C_COMPILER____idf_esp_driver_i2s_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/i2s_common.c || cmake_object_order_depends_target___idf_esp_driver_i2s - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir\i2s_common.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir - OBJECT_FILE_DIR = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir - TARGET_COMPILE_PDB = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir\__idf_esp_driver_i2s.pdb - TARGET_PDB = esp-idf\esp_driver_i2s\libesp_driver_i2s.pdb - -build esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_std.c.obj: C_COMPILER____idf_esp_driver_i2s_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/i2s_std.c || cmake_object_order_depends_target___idf_esp_driver_i2s - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir\i2s_std.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir - OBJECT_FILE_DIR = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir - TARGET_COMPILE_PDB = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir\__idf_esp_driver_i2s.pdb - TARGET_PDB = esp-idf\esp_driver_i2s\libesp_driver_i2s.pdb - -build esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_pdm.c.obj: C_COMPILER____idf_esp_driver_i2s_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/i2s_pdm.c || cmake_object_order_depends_target___idf_esp_driver_i2s - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir\i2s_pdm.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir - OBJECT_FILE_DIR = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir - TARGET_COMPILE_PDB = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir\__idf_esp_driver_i2s.pdb - TARGET_PDB = esp-idf\esp_driver_i2s\libesp_driver_i2s.pdb - -build esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_tdm.c.obj: C_COMPILER____idf_esp_driver_i2s_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/i2s_tdm.c || cmake_object_order_depends_target___idf_esp_driver_i2s - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir\i2s_tdm.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir - OBJECT_FILE_DIR = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir - TARGET_COMPILE_PDB = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir\__idf_esp_driver_i2s.pdb - TARGET_PDB = esp-idf\esp_driver_i2s\libesp_driver_i2s.pdb - -build esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_etm.c.obj: C_COMPILER____idf_esp_driver_i2s_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/i2s_etm.c || cmake_object_order_depends_target___idf_esp_driver_i2s - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir\i2s_etm.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir - OBJECT_FILE_DIR = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir - TARGET_COMPILE_PDB = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir\__idf_esp_driver_i2s.pdb - TARGET_PDB = esp-idf\esp_driver_i2s\libesp_driver_i2s.pdb - -build esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_platform.c.obj: C_COMPILER____idf_esp_driver_i2s_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/i2s_platform.c || cmake_object_order_depends_target___idf_esp_driver_i2s - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir\i2s_platform.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir - OBJECT_FILE_DIR = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir - TARGET_COMPILE_PDB = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir\__idf_esp_driver_i2s.pdb - TARGET_PDB = esp-idf\esp_driver_i2s\libesp_driver_i2s.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_driver_i2s - - -############################################# -# Link the static library esp-idf\esp_driver_i2s\libesp_driver_i2s.a - -build esp-idf/esp_driver_i2s/libesp_driver_i2s.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_i2s_ esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_common.c.obj esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_std.c.obj esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_pdm.c.obj esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_tdm.c.obj esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_etm.c.obj esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_platform.c.obj || esp-idf/sdmmc/libsdmmc.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei - OBJECT_DIR = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = esp-idf\esp_driver_i2s\CMakeFiles\__idf_esp_driver_i2s.dir\__idf_esp_driver_i2s.pdb - TARGET_FILE = esp-idf\esp_driver_i2s\libesp_driver_i2s.a - TARGET_PDB = esp-idf\esp_driver_i2s\libesp_driver_i2s.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_driver_i2s/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_i2s && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_driver_i2s/edit_cache: phony esp-idf/esp_driver_i2s/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_driver_i2s/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_i2s && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_driver_i2s/rebuild_cache: phony esp-idf/esp_driver_i2s/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_driver_i2s/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_driver_i2s/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_i2s/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_i2s && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_driver_i2s/install: phony esp-idf/esp_driver_i2s/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_driver_i2s/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_i2s/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_i2s && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_driver_i2s/install/local: phony esp-idf/esp_driver_i2s/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_driver_i2s/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_i2s/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_i2s && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_driver_i2s/install/strip: phony esp-idf/esp_driver_i2s/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_sdmmc - - -############################################# -# Order-only phony target for __idf_sdmmc - -build cmake_object_order_depends_target___idf_sdmmc: phony || cmake_object_order_depends_target___idf_esp_driver_sdspi - -build esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_cmd.c.obj: C_COMPILER____idf_sdmmc_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/sdmmc_cmd.c || cmake_object_order_depends_target___idf_sdmmc - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir\sdmmc_cmd.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir - OBJECT_FILE_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir - TARGET_COMPILE_PDB = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir\__idf_sdmmc.pdb - TARGET_PDB = esp-idf\sdmmc\libsdmmc.pdb - -build esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_common.c.obj: C_COMPILER____idf_sdmmc_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/sdmmc_common.c || cmake_object_order_depends_target___idf_sdmmc - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir\sdmmc_common.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir - OBJECT_FILE_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir - TARGET_COMPILE_PDB = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir\__idf_sdmmc.pdb - TARGET_PDB = esp-idf\sdmmc\libsdmmc.pdb - -build esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_init.c.obj: C_COMPILER____idf_sdmmc_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/sdmmc_init.c || cmake_object_order_depends_target___idf_sdmmc - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir\sdmmc_init.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir - OBJECT_FILE_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir - TARGET_COMPILE_PDB = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir\__idf_sdmmc.pdb - TARGET_PDB = esp-idf\sdmmc\libsdmmc.pdb - -build esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_io.c.obj: C_COMPILER____idf_sdmmc_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/sdmmc_io.c || cmake_object_order_depends_target___idf_sdmmc - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir\sdmmc_io.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir - OBJECT_FILE_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir - TARGET_COMPILE_PDB = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir\__idf_sdmmc.pdb - TARGET_PDB = esp-idf\sdmmc\libsdmmc.pdb - -build esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_mmc.c.obj: C_COMPILER____idf_sdmmc_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/sdmmc_mmc.c || cmake_object_order_depends_target___idf_sdmmc - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir\sdmmc_mmc.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir - OBJECT_FILE_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir - TARGET_COMPILE_PDB = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir\__idf_sdmmc.pdb - TARGET_PDB = esp-idf\sdmmc\libsdmmc.pdb - -build esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_sd.c.obj: C_COMPILER____idf_sdmmc_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/sdmmc_sd.c || cmake_object_order_depends_target___idf_sdmmc - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir\sdmmc_sd.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir - OBJECT_FILE_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir - TARGET_COMPILE_PDB = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir\__idf_sdmmc.pdb - TARGET_PDB = esp-idf\sdmmc\libsdmmc.pdb - -build esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sd_pwr_ctrl/sd_pwr_ctrl.c.obj: C_COMPILER____idf_sdmmc_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/sd_pwr_ctrl/sd_pwr_ctrl.c || cmake_object_order_depends_target___idf_sdmmc - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir\sd_pwr_ctrl\sd_pwr_ctrl.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir - OBJECT_FILE_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir\sd_pwr_ctrl - TARGET_COMPILE_PDB = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir\__idf_sdmmc.pdb - TARGET_PDB = esp-idf\sdmmc\libsdmmc.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_sdmmc - - -############################################# -# Link the static library esp-idf\sdmmc\libsdmmc.a - -build esp-idf/sdmmc/libsdmmc.a: C_STATIC_LIBRARY_LINKER____idf_sdmmc_ esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_cmd.c.obj esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_common.c.obj esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_init.c.obj esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_io.c.obj esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_mmc.c.obj esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_sd.c.obj esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sd_pwr_ctrl/sd_pwr_ctrl.c.obj || esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei - OBJECT_DIR = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = esp-idf\sdmmc\CMakeFiles\__idf_sdmmc.dir\__idf_sdmmc.pdb - TARGET_FILE = esp-idf\sdmmc\libsdmmc.a - TARGET_PDB = esp-idf\sdmmc\libsdmmc.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/sdmmc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\sdmmc && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/sdmmc/edit_cache: phony esp-idf/sdmmc/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/sdmmc/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\sdmmc && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/sdmmc/rebuild_cache: phony esp-idf/sdmmc/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/sdmmc/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/sdmmc/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/sdmmc/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\sdmmc && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/sdmmc/install: phony esp-idf/sdmmc/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/sdmmc/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/sdmmc/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\sdmmc && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/sdmmc/install/local: phony esp-idf/sdmmc/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/sdmmc/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/sdmmc/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\sdmmc && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/sdmmc/install/strip: phony esp-idf/sdmmc/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_driver_sdmmc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_sdmmc && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_driver_sdmmc/edit_cache: phony esp-idf/esp_driver_sdmmc/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_driver_sdmmc/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_sdmmc && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_driver_sdmmc/rebuild_cache: phony esp-idf/esp_driver_sdmmc/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_driver_sdmmc/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_driver_sdmmc/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_sdmmc/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_sdmmc && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_driver_sdmmc/install: phony esp-idf/esp_driver_sdmmc/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_driver_sdmmc/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_sdmmc/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_sdmmc && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_driver_sdmmc/install/local: phony esp-idf/esp_driver_sdmmc/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_driver_sdmmc/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_sdmmc/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_sdmmc && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_driver_sdmmc/install/strip: phony esp-idf/esp_driver_sdmmc/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_driver_sdspi - - -############################################# -# Order-only phony target for __idf_esp_driver_sdspi - -build cmake_object_order_depends_target___idf_esp_driver_sdspi: phony || cmake_object_order_depends_target___idf_esp_driver_rmt - -build esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_crc.c.obj: C_COMPILER____idf_esp_driver_sdspi_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/src/sdspi_crc.c || cmake_object_order_depends_target___idf_esp_driver_sdspi - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_driver_sdspi\CMakeFiles\__idf_esp_driver_sdspi.dir\src\sdspi_crc.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\esp_driver_sdspi\CMakeFiles\__idf_esp_driver_sdspi.dir - OBJECT_FILE_DIR = esp-idf\esp_driver_sdspi\CMakeFiles\__idf_esp_driver_sdspi.dir\src - TARGET_COMPILE_PDB = esp-idf\esp_driver_sdspi\CMakeFiles\__idf_esp_driver_sdspi.dir\__idf_esp_driver_sdspi.pdb - TARGET_PDB = esp-idf\esp_driver_sdspi\libesp_driver_sdspi.pdb - -build esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_host.c.obj: C_COMPILER____idf_esp_driver_sdspi_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/src/sdspi_host.c || cmake_object_order_depends_target___idf_esp_driver_sdspi - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_driver_sdspi\CMakeFiles\__idf_esp_driver_sdspi.dir\src\sdspi_host.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\esp_driver_sdspi\CMakeFiles\__idf_esp_driver_sdspi.dir - OBJECT_FILE_DIR = esp-idf\esp_driver_sdspi\CMakeFiles\__idf_esp_driver_sdspi.dir\src - TARGET_COMPILE_PDB = esp-idf\esp_driver_sdspi\CMakeFiles\__idf_esp_driver_sdspi.dir\__idf_esp_driver_sdspi.pdb - TARGET_PDB = esp-idf\esp_driver_sdspi\libesp_driver_sdspi.pdb - -build esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_transaction.c.obj: C_COMPILER____idf_esp_driver_sdspi_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/src/sdspi_transaction.c || cmake_object_order_depends_target___idf_esp_driver_sdspi - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_driver_sdspi\CMakeFiles\__idf_esp_driver_sdspi.dir\src\sdspi_transaction.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\esp_driver_sdspi\CMakeFiles\__idf_esp_driver_sdspi.dir - OBJECT_FILE_DIR = esp-idf\esp_driver_sdspi\CMakeFiles\__idf_esp_driver_sdspi.dir\src - TARGET_COMPILE_PDB = esp-idf\esp_driver_sdspi\CMakeFiles\__idf_esp_driver_sdspi.dir\__idf_esp_driver_sdspi.pdb - TARGET_PDB = esp-idf\esp_driver_sdspi\libesp_driver_sdspi.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_driver_sdspi - - -############################################# -# Link the static library esp-idf\esp_driver_sdspi\libesp_driver_sdspi.a - -build esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_sdspi_ esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_crc.c.obj esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_host.c.obj esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_transaction.c.obj || esp-idf/esp_driver_rmt/libesp_driver_rmt.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei - OBJECT_DIR = esp-idf\esp_driver_sdspi\CMakeFiles\__idf_esp_driver_sdspi.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = esp-idf\esp_driver_sdspi\CMakeFiles\__idf_esp_driver_sdspi.dir\__idf_esp_driver_sdspi.pdb - TARGET_FILE = esp-idf\esp_driver_sdspi\libesp_driver_sdspi.a - TARGET_PDB = esp-idf\esp_driver_sdspi\libesp_driver_sdspi.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_driver_sdspi/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_sdspi && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_driver_sdspi/edit_cache: phony esp-idf/esp_driver_sdspi/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_driver_sdspi/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_sdspi && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_driver_sdspi/rebuild_cache: phony esp-idf/esp_driver_sdspi/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_driver_sdspi/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_driver_sdspi/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_sdspi/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_sdspi && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_driver_sdspi/install: phony esp-idf/esp_driver_sdspi/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_driver_sdspi/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_sdspi/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_sdspi && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_driver_sdspi/install/local: phony esp-idf/esp_driver_sdspi/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_driver_sdspi/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_sdspi/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_sdspi && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_driver_sdspi/install/strip: phony esp-idf/esp_driver_sdspi/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_driver_sdio/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_sdio && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_driver_sdio/edit_cache: phony esp-idf/esp_driver_sdio/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_driver_sdio/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_sdio && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_driver_sdio/rebuild_cache: phony esp-idf/esp_driver_sdio/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_driver_sdio/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_driver_sdio/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_sdio/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_sdio && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_driver_sdio/install: phony esp-idf/esp_driver_sdio/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_driver_sdio/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_sdio/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_sdio && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_driver_sdio/install/local: phony esp-idf/esp_driver_sdio/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_driver_sdio/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_sdio/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_sdio && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_driver_sdio/install/strip: phony esp-idf/esp_driver_sdio/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_driver_dac/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_dac && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_driver_dac/edit_cache: phony esp-idf/esp_driver_dac/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_driver_dac/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_dac && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_driver_dac/rebuild_cache: phony esp-idf/esp_driver_dac/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_driver_dac/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_driver_dac/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_dac/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_dac && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_driver_dac/install: phony esp-idf/esp_driver_dac/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_driver_dac/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_dac/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_dac && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_driver_dac/install/local: phony esp-idf/esp_driver_dac/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_driver_dac/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_dac/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_dac && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_driver_dac/install/strip: phony esp-idf/esp_driver_dac/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_driver_bitscrambler/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_bitscrambler && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_driver_bitscrambler/edit_cache: phony esp-idf/esp_driver_bitscrambler/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_driver_bitscrambler/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_bitscrambler && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_driver_bitscrambler/rebuild_cache: phony esp-idf/esp_driver_bitscrambler/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_driver_bitscrambler/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_driver_bitscrambler/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_bitscrambler/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_bitscrambler && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_driver_bitscrambler/install: phony esp-idf/esp_driver_bitscrambler/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_driver_bitscrambler/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_bitscrambler/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_bitscrambler && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_driver_bitscrambler/install/local: phony esp-idf/esp_driver_bitscrambler/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_driver_bitscrambler/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_bitscrambler/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_bitscrambler && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_driver_bitscrambler/install/strip: phony esp-idf/esp_driver_bitscrambler/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_driver_rmt - - -############################################# -# Order-only phony target for __idf_esp_driver_rmt - -build cmake_object_order_depends_target___idf_esp_driver_rmt: phony || cmake_object_order_depends_target___idf_esp_driver_tsens - -build esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_common.c.obj: C_COMPILER____idf_esp_driver_rmt_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/src/rmt_common.c || cmake_object_order_depends_target___idf_esp_driver_rmt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\src\rmt_common.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_bitscrambler/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir - OBJECT_FILE_DIR = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\src - TARGET_COMPILE_PDB = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\__idf_esp_driver_rmt.pdb - TARGET_PDB = esp-idf\esp_driver_rmt\libesp_driver_rmt.pdb - -build esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder.c.obj: C_COMPILER____idf_esp_driver_rmt_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/src/rmt_encoder.c || cmake_object_order_depends_target___idf_esp_driver_rmt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\src\rmt_encoder.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_bitscrambler/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir - OBJECT_FILE_DIR = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\src - TARGET_COMPILE_PDB = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\__idf_esp_driver_rmt.pdb - TARGET_PDB = esp-idf\esp_driver_rmt\libesp_driver_rmt.pdb - -build esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder_bytes.c.obj: C_COMPILER____idf_esp_driver_rmt_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/src/rmt_encoder_bytes.c || cmake_object_order_depends_target___idf_esp_driver_rmt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\src\rmt_encoder_bytes.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_bitscrambler/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir - OBJECT_FILE_DIR = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\src - TARGET_COMPILE_PDB = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\__idf_esp_driver_rmt.pdb - TARGET_PDB = esp-idf\esp_driver_rmt\libesp_driver_rmt.pdb - -build esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder_copy.c.obj: C_COMPILER____idf_esp_driver_rmt_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/src/rmt_encoder_copy.c || cmake_object_order_depends_target___idf_esp_driver_rmt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\src\rmt_encoder_copy.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_bitscrambler/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir - OBJECT_FILE_DIR = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\src - TARGET_COMPILE_PDB = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\__idf_esp_driver_rmt.pdb - TARGET_PDB = esp-idf\esp_driver_rmt\libesp_driver_rmt.pdb - -build esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder_simple.c.obj: C_COMPILER____idf_esp_driver_rmt_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/src/rmt_encoder_simple.c || cmake_object_order_depends_target___idf_esp_driver_rmt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\src\rmt_encoder_simple.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_bitscrambler/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir - OBJECT_FILE_DIR = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\src - TARGET_COMPILE_PDB = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\__idf_esp_driver_rmt.pdb - TARGET_PDB = esp-idf\esp_driver_rmt\libesp_driver_rmt.pdb - -build esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_rx.c.obj: C_COMPILER____idf_esp_driver_rmt_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/src/rmt_rx.c || cmake_object_order_depends_target___idf_esp_driver_rmt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\src\rmt_rx.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_bitscrambler/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir - OBJECT_FILE_DIR = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\src - TARGET_COMPILE_PDB = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\__idf_esp_driver_rmt.pdb - TARGET_PDB = esp-idf\esp_driver_rmt\libesp_driver_rmt.pdb - -build esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_tx.c.obj: C_COMPILER____idf_esp_driver_rmt_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/src/rmt_tx.c || cmake_object_order_depends_target___idf_esp_driver_rmt - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\src\rmt_tx.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_bitscrambler/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir - OBJECT_FILE_DIR = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\src - TARGET_COMPILE_PDB = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\__idf_esp_driver_rmt.pdb - TARGET_PDB = esp-idf\esp_driver_rmt\libesp_driver_rmt.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_driver_rmt - - -############################################# -# Link the static library esp-idf\esp_driver_rmt\libesp_driver_rmt.a - -build esp-idf/esp_driver_rmt/libesp_driver_rmt.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_rmt_ esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_common.c.obj esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder.c.obj esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder_bytes.c.obj esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder_copy.c.obj esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder_simple.c.obj esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_rx.c.obj esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_tx.c.obj || esp-idf/esp_driver_tsens/libesp_driver_tsens.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei - OBJECT_DIR = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = esp-idf\esp_driver_rmt\CMakeFiles\__idf_esp_driver_rmt.dir\__idf_esp_driver_rmt.pdb - TARGET_FILE = esp-idf\esp_driver_rmt\libesp_driver_rmt.a - TARGET_PDB = esp-idf\esp_driver_rmt\libesp_driver_rmt.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_driver_rmt/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_rmt && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_driver_rmt/edit_cache: phony esp-idf/esp_driver_rmt/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_driver_rmt/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_rmt && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_driver_rmt/rebuild_cache: phony esp-idf/esp_driver_rmt/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_driver_rmt/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_driver_rmt/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_rmt/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_rmt && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_driver_rmt/install: phony esp-idf/esp_driver_rmt/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_driver_rmt/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_rmt/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_rmt && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_driver_rmt/install/local: phony esp-idf/esp_driver_rmt/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_driver_rmt/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_rmt/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_rmt && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_driver_rmt/install/strip: phony esp-idf/esp_driver_rmt/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_driver_tsens - - -############################################# -# Order-only phony target for __idf_esp_driver_tsens - -build cmake_object_order_depends_target___idf_esp_driver_tsens: phony || cmake_object_order_depends_target___idf_esp_driver_sdm - -build esp-idf/esp_driver_tsens/CMakeFiles/__idf_esp_driver_tsens.dir/src/temperature_sensor.c.obj: C_COMPILER____idf_esp_driver_tsens_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/src/temperature_sensor.c || cmake_object_order_depends_target___idf_esp_driver_tsens - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_driver_tsens\CMakeFiles\__idf_esp_driver_tsens.dir\src\temperature_sensor.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\esp_driver_tsens\CMakeFiles\__idf_esp_driver_tsens.dir - OBJECT_FILE_DIR = esp-idf\esp_driver_tsens\CMakeFiles\__idf_esp_driver_tsens.dir\src - TARGET_COMPILE_PDB = esp-idf\esp_driver_tsens\CMakeFiles\__idf_esp_driver_tsens.dir\__idf_esp_driver_tsens.pdb - TARGET_PDB = esp-idf\esp_driver_tsens\libesp_driver_tsens.pdb - -build esp-idf/esp_driver_tsens/CMakeFiles/__idf_esp_driver_tsens.dir/src/temperature_sensor_etm.c.obj: C_COMPILER____idf_esp_driver_tsens_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/src/temperature_sensor_etm.c || cmake_object_order_depends_target___idf_esp_driver_tsens - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_driver_tsens\CMakeFiles\__idf_esp_driver_tsens.dir\src\temperature_sensor_etm.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include - OBJECT_DIR = esp-idf\esp_driver_tsens\CMakeFiles\__idf_esp_driver_tsens.dir - OBJECT_FILE_DIR = esp-idf\esp_driver_tsens\CMakeFiles\__idf_esp_driver_tsens.dir\src - TARGET_COMPILE_PDB = esp-idf\esp_driver_tsens\CMakeFiles\__idf_esp_driver_tsens.dir\__idf_esp_driver_tsens.pdb - TARGET_PDB = esp-idf\esp_driver_tsens\libesp_driver_tsens.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_driver_tsens - - -############################################# -# Link the static library esp-idf\esp_driver_tsens\libesp_driver_tsens.a - -build esp-idf/esp_driver_tsens/libesp_driver_tsens.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_tsens_ esp-idf/esp_driver_tsens/CMakeFiles/__idf_esp_driver_tsens.dir/src/temperature_sensor.c.obj esp-idf/esp_driver_tsens/CMakeFiles/__idf_esp_driver_tsens.dir/src/temperature_sensor_etm.c.obj || esp-idf/esp_driver_sdm/libesp_driver_sdm.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei - OBJECT_DIR = esp-idf\esp_driver_tsens\CMakeFiles\__idf_esp_driver_tsens.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = esp-idf\esp_driver_tsens\CMakeFiles\__idf_esp_driver_tsens.dir\__idf_esp_driver_tsens.pdb - TARGET_FILE = esp-idf\esp_driver_tsens\libesp_driver_tsens.a - TARGET_PDB = esp-idf\esp_driver_tsens\libesp_driver_tsens.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_driver_tsens/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_tsens && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_driver_tsens/edit_cache: phony esp-idf/esp_driver_tsens/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_driver_tsens/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_tsens && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_driver_tsens/rebuild_cache: phony esp-idf/esp_driver_tsens/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_driver_tsens/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_driver_tsens/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_tsens/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_tsens && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_driver_tsens/install: phony esp-idf/esp_driver_tsens/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_driver_tsens/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_tsens/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_tsens && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_driver_tsens/install/local: phony esp-idf/esp_driver_tsens/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_driver_tsens/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_tsens/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_tsens && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_driver_tsens/install/strip: phony esp-idf/esp_driver_tsens/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_driver_sdm - - -############################################# -# Order-only phony target for __idf_esp_driver_sdm - -build cmake_object_order_depends_target___idf_esp_driver_sdm: phony || cmake_object_order_depends_target___idf_esp_driver_i2c - -build esp-idf/esp_driver_sdm/CMakeFiles/__idf_esp_driver_sdm.dir/src/sdm.c.obj: C_COMPILER____idf_esp_driver_sdm_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/src/sdm.c || cmake_object_order_depends_target___idf_esp_driver_sdm - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_driver_sdm\CMakeFiles\__idf_esp_driver_sdm.dir\src\sdm.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include - OBJECT_DIR = esp-idf\esp_driver_sdm\CMakeFiles\__idf_esp_driver_sdm.dir - OBJECT_FILE_DIR = esp-idf\esp_driver_sdm\CMakeFiles\__idf_esp_driver_sdm.dir\src - TARGET_COMPILE_PDB = esp-idf\esp_driver_sdm\CMakeFiles\__idf_esp_driver_sdm.dir\__idf_esp_driver_sdm.pdb - TARGET_PDB = esp-idf\esp_driver_sdm\libesp_driver_sdm.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_driver_sdm - - -############################################# -# Link the static library esp-idf\esp_driver_sdm\libesp_driver_sdm.a - -build esp-idf/esp_driver_sdm/libesp_driver_sdm.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_sdm_ esp-idf/esp_driver_sdm/CMakeFiles/__idf_esp_driver_sdm.dir/src/sdm.c.obj || esp-idf/esp_driver_i2c/libesp_driver_i2c.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei - OBJECT_DIR = esp-idf\esp_driver_sdm\CMakeFiles\__idf_esp_driver_sdm.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = esp-idf\esp_driver_sdm\CMakeFiles\__idf_esp_driver_sdm.dir\__idf_esp_driver_sdm.pdb - TARGET_FILE = esp-idf\esp_driver_sdm\libesp_driver_sdm.a - TARGET_PDB = esp-idf\esp_driver_sdm\libesp_driver_sdm.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_driver_sdm/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_sdm && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_driver_sdm/edit_cache: phony esp-idf/esp_driver_sdm/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_driver_sdm/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_sdm && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_driver_sdm/rebuild_cache: phony esp-idf/esp_driver_sdm/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_driver_sdm/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_driver_sdm/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_sdm/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_sdm && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_driver_sdm/install: phony esp-idf/esp_driver_sdm/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_driver_sdm/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_sdm/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_sdm && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_driver_sdm/install/local: phony esp-idf/esp_driver_sdm/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_driver_sdm/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_sdm/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_sdm && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_driver_sdm/install/strip: phony esp-idf/esp_driver_sdm/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_driver_i2c - - -############################################# -# Order-only phony target for __idf_esp_driver_i2c - -build cmake_object_order_depends_target___idf_esp_driver_i2c: phony || cmake_object_order_depends_target___idf_esp_driver_ledc - -build esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_master.c.obj: C_COMPILER____idf_esp_driver_i2c_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/i2c_master.c || cmake_object_order_depends_target___idf_esp_driver_i2c - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_driver_i2c\CMakeFiles\__idf_esp_driver_i2c.dir\i2c_master.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include - OBJECT_DIR = esp-idf\esp_driver_i2c\CMakeFiles\__idf_esp_driver_i2c.dir - OBJECT_FILE_DIR = esp-idf\esp_driver_i2c\CMakeFiles\__idf_esp_driver_i2c.dir - TARGET_COMPILE_PDB = esp-idf\esp_driver_i2c\CMakeFiles\__idf_esp_driver_i2c.dir\__idf_esp_driver_i2c.pdb - TARGET_PDB = esp-idf\esp_driver_i2c\libesp_driver_i2c.pdb - -build esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_common.c.obj: C_COMPILER____idf_esp_driver_i2c_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/i2c_common.c || cmake_object_order_depends_target___idf_esp_driver_i2c - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_driver_i2c\CMakeFiles\__idf_esp_driver_i2c.dir\i2c_common.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include - OBJECT_DIR = esp-idf\esp_driver_i2c\CMakeFiles\__idf_esp_driver_i2c.dir - OBJECT_FILE_DIR = esp-idf\esp_driver_i2c\CMakeFiles\__idf_esp_driver_i2c.dir - TARGET_COMPILE_PDB = esp-idf\esp_driver_i2c\CMakeFiles\__idf_esp_driver_i2c.dir\__idf_esp_driver_i2c.pdb - TARGET_PDB = esp-idf\esp_driver_i2c\libesp_driver_i2c.pdb - -build esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_slave.c.obj: C_COMPILER____idf_esp_driver_i2c_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/i2c_slave.c || cmake_object_order_depends_target___idf_esp_driver_i2c - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_driver_i2c\CMakeFiles\__idf_esp_driver_i2c.dir\i2c_slave.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include - OBJECT_DIR = esp-idf\esp_driver_i2c\CMakeFiles\__idf_esp_driver_i2c.dir - OBJECT_FILE_DIR = esp-idf\esp_driver_i2c\CMakeFiles\__idf_esp_driver_i2c.dir - TARGET_COMPILE_PDB = esp-idf\esp_driver_i2c\CMakeFiles\__idf_esp_driver_i2c.dir\__idf_esp_driver_i2c.pdb - TARGET_PDB = esp-idf\esp_driver_i2c\libesp_driver_i2c.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_driver_i2c - - -############################################# -# Link the static library esp-idf\esp_driver_i2c\libesp_driver_i2c.a - -build esp-idf/esp_driver_i2c/libesp_driver_i2c.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_i2c_ esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_master.c.obj esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_common.c.obj esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_slave.c.obj || esp-idf/esp_driver_ledc/libesp_driver_ledc.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei - OBJECT_DIR = esp-idf\esp_driver_i2c\CMakeFiles\__idf_esp_driver_i2c.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = esp-idf\esp_driver_i2c\CMakeFiles\__idf_esp_driver_i2c.dir\__idf_esp_driver_i2c.pdb - TARGET_FILE = esp-idf\esp_driver_i2c\libesp_driver_i2c.a - TARGET_PDB = esp-idf\esp_driver_i2c\libesp_driver_i2c.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_driver_i2c/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_i2c && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_driver_i2c/edit_cache: phony esp-idf/esp_driver_i2c/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_driver_i2c/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_i2c && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_driver_i2c/rebuild_cache: phony esp-idf/esp_driver_i2c/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_driver_i2c/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_driver_i2c/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_i2c/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_i2c && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_driver_i2c/install: phony esp-idf/esp_driver_i2c/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_driver_i2c/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_i2c/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_i2c && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_driver_i2c/install/local: phony esp-idf/esp_driver_i2c/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_driver_i2c/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_i2c/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_i2c && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_driver_i2c/install/strip: phony esp-idf/esp_driver_i2c/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_driver_ledc - - -############################################# -# Order-only phony target for __idf_esp_driver_ledc - -build cmake_object_order_depends_target___idf_esp_driver_ledc: phony || cmake_object_order_depends_target___idf_esp_driver_parlio - -build esp-idf/esp_driver_ledc/CMakeFiles/__idf_esp_driver_ledc.dir/src/ledc.c.obj: C_COMPILER____idf_esp_driver_ledc_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/src/ledc.c || cmake_object_order_depends_target___idf_esp_driver_ledc - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_driver_ledc\CMakeFiles\__idf_esp_driver_ledc.dir\src\ledc.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include - OBJECT_DIR = esp-idf\esp_driver_ledc\CMakeFiles\__idf_esp_driver_ledc.dir - OBJECT_FILE_DIR = esp-idf\esp_driver_ledc\CMakeFiles\__idf_esp_driver_ledc.dir\src - TARGET_COMPILE_PDB = esp-idf\esp_driver_ledc\CMakeFiles\__idf_esp_driver_ledc.dir\__idf_esp_driver_ledc.pdb - TARGET_PDB = esp-idf\esp_driver_ledc\libesp_driver_ledc.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_driver_ledc - - -############################################# -# Link the static library esp-idf\esp_driver_ledc\libesp_driver_ledc.a - -build esp-idf/esp_driver_ledc/libesp_driver_ledc.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_ledc_ esp-idf/esp_driver_ledc/CMakeFiles/__idf_esp_driver_ledc.dir/src/ledc.c.obj || esp-idf/esp_driver_parlio/libesp_driver_parlio.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei - OBJECT_DIR = esp-idf\esp_driver_ledc\CMakeFiles\__idf_esp_driver_ledc.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = esp-idf\esp_driver_ledc\CMakeFiles\__idf_esp_driver_ledc.dir\__idf_esp_driver_ledc.pdb - TARGET_FILE = esp-idf\esp_driver_ledc\libesp_driver_ledc.a - TARGET_PDB = esp-idf\esp_driver_ledc\libesp_driver_ledc.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_driver_ledc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_ledc && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_driver_ledc/edit_cache: phony esp-idf/esp_driver_ledc/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_driver_ledc/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_ledc && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_driver_ledc/rebuild_cache: phony esp-idf/esp_driver_ledc/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_driver_ledc/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_driver_ledc/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_ledc/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_ledc && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_driver_ledc/install: phony esp-idf/esp_driver_ledc/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_driver_ledc/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_ledc/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_ledc && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_driver_ledc/install/local: phony esp-idf/esp_driver_ledc/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_driver_ledc/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_ledc/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_ledc && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_driver_ledc/install/strip: phony esp-idf/esp_driver_ledc/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_driver_parlio - - -############################################# -# Order-only phony target for __idf_esp_driver_parlio - -build cmake_object_order_depends_target___idf_esp_driver_parlio: phony || cmake_object_order_depends_target___idf_esp_driver_twai - -build esp-idf/esp_driver_parlio/CMakeFiles/__idf_esp_driver_parlio.dir/src/parlio_common.c.obj: C_COMPILER____idf_esp_driver_parlio_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/src/parlio_common.c || cmake_object_order_depends_target___idf_esp_driver_parlio - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_driver_parlio\CMakeFiles\__idf_esp_driver_parlio.dir\src\parlio_common.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_bitscrambler/include - OBJECT_DIR = esp-idf\esp_driver_parlio\CMakeFiles\__idf_esp_driver_parlio.dir - OBJECT_FILE_DIR = esp-idf\esp_driver_parlio\CMakeFiles\__idf_esp_driver_parlio.dir\src - TARGET_COMPILE_PDB = esp-idf\esp_driver_parlio\CMakeFiles\__idf_esp_driver_parlio.dir\__idf_esp_driver_parlio.pdb - TARGET_PDB = esp-idf\esp_driver_parlio\libesp_driver_parlio.pdb - -build esp-idf/esp_driver_parlio/CMakeFiles/__idf_esp_driver_parlio.dir/src/parlio_tx.c.obj: C_COMPILER____idf_esp_driver_parlio_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/src/parlio_tx.c || cmake_object_order_depends_target___idf_esp_driver_parlio - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_driver_parlio\CMakeFiles\__idf_esp_driver_parlio.dir\src\parlio_tx.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_bitscrambler/include - OBJECT_DIR = esp-idf\esp_driver_parlio\CMakeFiles\__idf_esp_driver_parlio.dir - OBJECT_FILE_DIR = esp-idf\esp_driver_parlio\CMakeFiles\__idf_esp_driver_parlio.dir\src - TARGET_COMPILE_PDB = esp-idf\esp_driver_parlio\CMakeFiles\__idf_esp_driver_parlio.dir\__idf_esp_driver_parlio.pdb - TARGET_PDB = esp-idf\esp_driver_parlio\libesp_driver_parlio.pdb - -build esp-idf/esp_driver_parlio/CMakeFiles/__idf_esp_driver_parlio.dir/src/parlio_rx.c.obj: C_COMPILER____idf_esp_driver_parlio_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/src/parlio_rx.c || cmake_object_order_depends_target___idf_esp_driver_parlio - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_driver_parlio\CMakeFiles\__idf_esp_driver_parlio.dir\src\parlio_rx.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_bitscrambler/include - OBJECT_DIR = esp-idf\esp_driver_parlio\CMakeFiles\__idf_esp_driver_parlio.dir - OBJECT_FILE_DIR = esp-idf\esp_driver_parlio\CMakeFiles\__idf_esp_driver_parlio.dir\src - TARGET_COMPILE_PDB = esp-idf\esp_driver_parlio\CMakeFiles\__idf_esp_driver_parlio.dir\__idf_esp_driver_parlio.pdb - TARGET_PDB = esp-idf\esp_driver_parlio\libesp_driver_parlio.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_driver_parlio - - -############################################# -# Link the static library esp-idf\esp_driver_parlio\libesp_driver_parlio.a - -build esp-idf/esp_driver_parlio/libesp_driver_parlio.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_parlio_ esp-idf/esp_driver_parlio/CMakeFiles/__idf_esp_driver_parlio.dir/src/parlio_common.c.obj esp-idf/esp_driver_parlio/CMakeFiles/__idf_esp_driver_parlio.dir/src/parlio_tx.c.obj esp-idf/esp_driver_parlio/CMakeFiles/__idf_esp_driver_parlio.dir/src/parlio_rx.c.obj || esp-idf/esp_driver_twai/libesp_driver_twai.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei - OBJECT_DIR = esp-idf\esp_driver_parlio\CMakeFiles\__idf_esp_driver_parlio.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = esp-idf\esp_driver_parlio\CMakeFiles\__idf_esp_driver_parlio.dir\__idf_esp_driver_parlio.pdb - TARGET_FILE = esp-idf\esp_driver_parlio\libesp_driver_parlio.a - TARGET_PDB = esp-idf\esp_driver_parlio\libesp_driver_parlio.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_driver_parlio/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_parlio && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_driver_parlio/edit_cache: phony esp-idf/esp_driver_parlio/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_driver_parlio/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_parlio && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_driver_parlio/rebuild_cache: phony esp-idf/esp_driver_parlio/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_driver_parlio/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_driver_parlio/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_parlio/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_parlio && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_driver_parlio/install: phony esp-idf/esp_driver_parlio/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_driver_parlio/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_parlio/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_parlio && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_driver_parlio/install/local: phony esp-idf/esp_driver_parlio/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_driver_parlio/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_parlio/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_parlio && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_driver_parlio/install/strip: phony esp-idf/esp_driver_parlio/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_driver_twai - - -############################################# -# Order-only phony target for __idf_esp_driver_twai - -build cmake_object_order_depends_target___idf_esp_driver_twai: phony || cmake_object_order_depends_target___idf_driver - -build esp-idf/esp_driver_twai/CMakeFiles/__idf_esp_driver_twai.dir/esp_twai.c.obj: C_COMPILER____idf_esp_driver_twai_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/esp_twai.c || cmake_object_order_depends_target___idf_esp_driver_twai - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_driver_twai\CMakeFiles\__idf_esp_driver_twai.dir\esp_twai.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include - OBJECT_DIR = esp-idf\esp_driver_twai\CMakeFiles\__idf_esp_driver_twai.dir - OBJECT_FILE_DIR = esp-idf\esp_driver_twai\CMakeFiles\__idf_esp_driver_twai.dir - TARGET_COMPILE_PDB = esp-idf\esp_driver_twai\CMakeFiles\__idf_esp_driver_twai.dir\__idf_esp_driver_twai.pdb - TARGET_PDB = esp-idf\esp_driver_twai\libesp_driver_twai.pdb - -build esp-idf/esp_driver_twai/CMakeFiles/__idf_esp_driver_twai.dir/esp_twai_onchip.c.obj: C_COMPILER____idf_esp_driver_twai_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/esp_twai_onchip.c || cmake_object_order_depends_target___idf_esp_driver_twai - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_driver_twai\CMakeFiles\__idf_esp_driver_twai.dir\esp_twai_onchip.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include - OBJECT_DIR = esp-idf\esp_driver_twai\CMakeFiles\__idf_esp_driver_twai.dir - OBJECT_FILE_DIR = esp-idf\esp_driver_twai\CMakeFiles\__idf_esp_driver_twai.dir - TARGET_COMPILE_PDB = esp-idf\esp_driver_twai\CMakeFiles\__idf_esp_driver_twai.dir\__idf_esp_driver_twai.pdb - TARGET_PDB = esp-idf\esp_driver_twai\libesp_driver_twai.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_driver_twai - - -############################################# -# Link the static library esp-idf\esp_driver_twai\libesp_driver_twai.a - -build esp-idf/esp_driver_twai/libesp_driver_twai.a: C_STATIC_LIBRARY_LINKER____idf_esp_driver_twai_ esp-idf/esp_driver_twai/CMakeFiles/__idf_esp_driver_twai.dir/esp_twai.c.obj esp-idf/esp_driver_twai/CMakeFiles/__idf_esp_driver_twai.dir/esp_twai_onchip.c.obj || esp-idf/driver/libdriver.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei - OBJECT_DIR = esp-idf\esp_driver_twai\CMakeFiles\__idf_esp_driver_twai.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = esp-idf\esp_driver_twai\CMakeFiles\__idf_esp_driver_twai.dir\__idf_esp_driver_twai.pdb - TARGET_FILE = esp-idf\esp_driver_twai\libesp_driver_twai.a - TARGET_PDB = esp-idf\esp_driver_twai\libesp_driver_twai.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_driver_twai/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_twai && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_driver_twai/edit_cache: phony esp-idf/esp_driver_twai/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_driver_twai/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_twai && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_driver_twai/rebuild_cache: phony esp-idf/esp_driver_twai/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_driver_twai/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_driver_twai/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_driver_twai/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_twai && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_driver_twai/install: phony esp-idf/esp_driver_twai/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_driver_twai/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_driver_twai/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_twai && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_driver_twai/install/local: phony esp-idf/esp_driver_twai/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_driver_twai/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_driver_twai/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_driver_twai && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_driver_twai/install/strip: phony esp-idf/esp_driver_twai/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_driver - - -############################################# -# Order-only phony target for __idf_driver - -build cmake_object_order_depends_target___idf_driver: phony || cmake_object_order_depends_target___idf_console - -build esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_legacy.c.obj: C_COMPILER____idf_driver_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated/adc_legacy.c || cmake_object_order_depends_target___idf_driver - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated\adc_legacy.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir - OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated - TARGET_COMPILE_PDB = esp-idf\driver\CMakeFiles\__idf_driver.dir\__idf_driver.pdb - TARGET_PDB = esp-idf\driver\libdriver.pdb - -build esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_dma_legacy.c.obj: C_COMPILER____idf_driver_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated/adc_dma_legacy.c || cmake_object_order_depends_target___idf_driver - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated\adc_dma_legacy.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir - OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated - TARGET_COMPILE_PDB = esp-idf\driver\CMakeFiles\__idf_driver.dir\__idf_driver.pdb - TARGET_PDB = esp-idf\driver\libdriver.pdb - -build esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/timer_legacy.c.obj: C_COMPILER____idf_driver_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated/timer_legacy.c || cmake_object_order_depends_target___idf_driver - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated\timer_legacy.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir - OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated - TARGET_COMPILE_PDB = esp-idf\driver\CMakeFiles\__idf_driver.dir\__idf_driver.pdb - TARGET_PDB = esp-idf\driver\libdriver.pdb - -build esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c/i2c.c.obj: C_COMPILER____idf_driver_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/i2c.c || cmake_object_order_depends_target___idf_driver - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\i2c\i2c.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir - OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir\i2c - TARGET_COMPILE_PDB = esp-idf\driver\CMakeFiles\__idf_driver.dir\__idf_driver.pdb - TARGET_PDB = esp-idf\driver\libdriver.pdb - -build esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/i2s_legacy.c.obj: C_COMPILER____idf_driver_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated/i2s_legacy.c || cmake_object_order_depends_target___idf_driver - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated\i2s_legacy.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir - OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated - TARGET_COMPILE_PDB = esp-idf\driver\CMakeFiles\__idf_driver.dir\__idf_driver.pdb - TARGET_PDB = esp-idf\driver\libdriver.pdb - -build esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/mcpwm_legacy.c.obj: C_COMPILER____idf_driver_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated/mcpwm_legacy.c || cmake_object_order_depends_target___idf_driver - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated\mcpwm_legacy.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir - OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated - TARGET_COMPILE_PDB = esp-idf\driver\CMakeFiles\__idf_driver.dir\__idf_driver.pdb - TARGET_PDB = esp-idf\driver\libdriver.pdb - -build esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/pcnt_legacy.c.obj: C_COMPILER____idf_driver_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated/pcnt_legacy.c || cmake_object_order_depends_target___idf_driver - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated\pcnt_legacy.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir - OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated - TARGET_COMPILE_PDB = esp-idf\driver\CMakeFiles\__idf_driver.dir\__idf_driver.pdb - TARGET_PDB = esp-idf\driver\libdriver.pdb - -build esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rmt_legacy.c.obj: C_COMPILER____idf_driver_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated/rmt_legacy.c || cmake_object_order_depends_target___idf_driver - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated\rmt_legacy.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir - OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated - TARGET_COMPILE_PDB = esp-idf\driver\CMakeFiles\__idf_driver.dir\__idf_driver.pdb - TARGET_PDB = esp-idf\driver\libdriver.pdb - -build esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/sigma_delta_legacy.c.obj: C_COMPILER____idf_driver_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated/sigma_delta_legacy.c || cmake_object_order_depends_target___idf_driver - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated\sigma_delta_legacy.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir - OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated - TARGET_COMPILE_PDB = esp-idf\driver\CMakeFiles\__idf_driver.dir\__idf_driver.pdb - TARGET_PDB = esp-idf\driver\libdriver.pdb - -build esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rtc_temperature_legacy.c.obj: C_COMPILER____idf_driver_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated/rtc_temperature_legacy.c || cmake_object_order_depends_target___idf_driver - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated\rtc_temperature_legacy.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir - OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir\deprecated - TARGET_COMPILE_PDB = esp-idf\driver\CMakeFiles\__idf_driver.dir\__idf_driver.pdb - TARGET_PDB = esp-idf\driver\libdriver.pdb - -build esp-idf/driver/CMakeFiles/__idf_driver.dir/twai/twai.c.obj: C_COMPILER____idf_driver_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/twai.c || cmake_object_order_depends_target___idf_driver - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\driver\CMakeFiles\__idf_driver.dir\twai\twai.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include - OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir - OBJECT_FILE_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir\twai - TARGET_COMPILE_PDB = esp-idf\driver\CMakeFiles\__idf_driver.dir\__idf_driver.pdb - TARGET_PDB = esp-idf\driver\libdriver.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_driver - - -############################################# -# Link the static library esp-idf\driver\libdriver.a - -build esp-idf/driver/libdriver.a: C_STATIC_LIBRARY_LINKER____idf_driver_ esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_legacy.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_dma_legacy.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/timer_legacy.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c/i2c.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/i2s_legacy.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/mcpwm_legacy.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/pcnt_legacy.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rmt_legacy.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/sigma_delta_legacy.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rtc_temperature_legacy.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/twai/twai.c.obj || esp-idf/console/libconsole.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei - OBJECT_DIR = esp-idf\driver\CMakeFiles\__idf_driver.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = esp-idf\driver\CMakeFiles\__idf_driver.dir\__idf_driver.pdb - TARGET_FILE = esp-idf\driver\libdriver.a - TARGET_PDB = esp-idf\driver\libdriver.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/driver/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\driver && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/driver/edit_cache: phony esp-idf/driver/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/driver/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\driver && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/driver/rebuild_cache: phony esp-idf/driver/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/driver/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/driver/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/driver/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\driver && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/driver/install: phony esp-idf/driver/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/driver/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/driver/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\driver && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/driver/install/local: phony esp-idf/driver/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/driver/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/driver/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\driver && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/driver/install/strip: phony esp-idf/driver/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_console - - -############################################# -# Order-only phony target for __idf_console - -build cmake_object_order_depends_target___idf_console: phony || cmake_object_order_depends_target___idf_esp_wifi - -build esp-idf/console/CMakeFiles/__idf_console.dir/commands.c.obj: C_COMPILER____idf_console_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/commands.c || cmake_object_order_depends_target___idf_console - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\commands.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir - OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir - TARGET_COMPILE_PDB = esp-idf\console\CMakeFiles\__idf_console.dir\__idf_console.pdb - TARGET_PDB = esp-idf\console\libconsole.pdb - -build esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_common.c.obj: C_COMPILER____idf_console_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/esp_console_common.c || cmake_object_order_depends_target___idf_console - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\esp_console_common.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir - OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir - TARGET_COMPILE_PDB = esp-idf\console\CMakeFiles\__idf_console.dir\__idf_console.pdb - TARGET_PDB = esp-idf\console\libconsole.pdb - -build esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_repl_internal.c.obj: C_COMPILER____idf_console_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/esp_console_repl_internal.c || cmake_object_order_depends_target___idf_console - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\esp_console_repl_internal.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir - OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir - TARGET_COMPILE_PDB = esp-idf\console\CMakeFiles\__idf_console.dir\__idf_console.pdb - TARGET_PDB = esp-idf\console\libconsole.pdb - -build esp-idf/console/CMakeFiles/__idf_console.dir/split_argv.c.obj: C_COMPILER____idf_console_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/split_argv.c || cmake_object_order_depends_target___idf_console - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\split_argv.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir - OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir - TARGET_COMPILE_PDB = esp-idf\console\CMakeFiles\__idf_console.dir\__idf_console.pdb - TARGET_PDB = esp-idf\console\libconsole.pdb - -build esp-idf/console/CMakeFiles/__idf_console.dir/linenoise/linenoise.c.obj: C_COMPILER____idf_console_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/linenoise/linenoise.c || cmake_object_order_depends_target___idf_console - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\linenoise\linenoise.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir - OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir\linenoise - TARGET_COMPILE_PDB = esp-idf\console\CMakeFiles\__idf_console.dir\__idf_console.pdb - TARGET_PDB = esp-idf\console\libconsole.pdb - -build esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_repl_chip.c.obj: C_COMPILER____idf_console_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/esp_console_repl_chip.c || cmake_object_order_depends_target___idf_console - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\esp_console_repl_chip.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir - OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir - TARGET_COMPILE_PDB = esp-idf\console\CMakeFiles\__idf_console.dir\__idf_console.pdb - TARGET_PDB = esp-idf\console\libconsole.pdb - -build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_cmd.c.obj: C_COMPILER____idf_console_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/argtable3/arg_cmd.c || cmake_object_order_depends_target___idf_console - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3\arg_cmd.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir - OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3 - TARGET_COMPILE_PDB = esp-idf\console\CMakeFiles\__idf_console.dir\__idf_console.pdb - TARGET_PDB = esp-idf\console\libconsole.pdb - -build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_date.c.obj: C_COMPILER____idf_console_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/argtable3/arg_date.c || cmake_object_order_depends_target___idf_console - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3\arg_date.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir - OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3 - TARGET_COMPILE_PDB = esp-idf\console\CMakeFiles\__idf_console.dir\__idf_console.pdb - TARGET_PDB = esp-idf\console\libconsole.pdb - -build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dbl.c.obj: C_COMPILER____idf_console_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/argtable3/arg_dbl.c || cmake_object_order_depends_target___idf_console - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3\arg_dbl.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir - OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3 - TARGET_COMPILE_PDB = esp-idf\console\CMakeFiles\__idf_console.dir\__idf_console.pdb - TARGET_PDB = esp-idf\console\libconsole.pdb - -build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dstr.c.obj: C_COMPILER____idf_console_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/argtable3/arg_dstr.c || cmake_object_order_depends_target___idf_console - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3\arg_dstr.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir - OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3 - TARGET_COMPILE_PDB = esp-idf\console\CMakeFiles\__idf_console.dir\__idf_console.pdb - TARGET_PDB = esp-idf\console\libconsole.pdb - -build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_end.c.obj: C_COMPILER____idf_console_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/argtable3/arg_end.c || cmake_object_order_depends_target___idf_console - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3\arg_end.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir - OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3 - TARGET_COMPILE_PDB = esp-idf\console\CMakeFiles\__idf_console.dir\__idf_console.pdb - TARGET_PDB = esp-idf\console\libconsole.pdb - -build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_file.c.obj: C_COMPILER____idf_console_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/argtable3/arg_file.c || cmake_object_order_depends_target___idf_console - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3\arg_file.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir - OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3 - TARGET_COMPILE_PDB = esp-idf\console\CMakeFiles\__idf_console.dir\__idf_console.pdb - TARGET_PDB = esp-idf\console\libconsole.pdb - -build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_hashtable.c.obj: C_COMPILER____idf_console_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/argtable3/arg_hashtable.c || cmake_object_order_depends_target___idf_console - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3\arg_hashtable.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir - OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3 - TARGET_COMPILE_PDB = esp-idf\console\CMakeFiles\__idf_console.dir\__idf_console.pdb - TARGET_PDB = esp-idf\console\libconsole.pdb - -build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_int.c.obj: C_COMPILER____idf_console_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/argtable3/arg_int.c || cmake_object_order_depends_target___idf_console - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3\arg_int.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir - OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3 - TARGET_COMPILE_PDB = esp-idf\console\CMakeFiles\__idf_console.dir\__idf_console.pdb - TARGET_PDB = esp-idf\console\libconsole.pdb - -build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_lit.c.obj: C_COMPILER____idf_console_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/argtable3/arg_lit.c || cmake_object_order_depends_target___idf_console - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3\arg_lit.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir - OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3 - TARGET_COMPILE_PDB = esp-idf\console\CMakeFiles\__idf_console.dir\__idf_console.pdb - TARGET_PDB = esp-idf\console\libconsole.pdb - -build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rem.c.obj: C_COMPILER____idf_console_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/argtable3/arg_rem.c || cmake_object_order_depends_target___idf_console - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3\arg_rem.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir - OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3 - TARGET_COMPILE_PDB = esp-idf\console\CMakeFiles\__idf_console.dir\__idf_console.pdb - TARGET_PDB = esp-idf\console\libconsole.pdb - -build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rex.c.obj: C_COMPILER____idf_console_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/argtable3/arg_rex.c || cmake_object_order_depends_target___idf_console - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3\arg_rex.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir - OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3 - TARGET_COMPILE_PDB = esp-idf\console\CMakeFiles\__idf_console.dir\__idf_console.pdb - TARGET_PDB = esp-idf\console\libconsole.pdb - -build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_str.c.obj: C_COMPILER____idf_console_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/argtable3/arg_str.c || cmake_object_order_depends_target___idf_console - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3\arg_str.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir - OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3 - TARGET_COMPILE_PDB = esp-idf\console\CMakeFiles\__idf_console.dir\__idf_console.pdb - TARGET_PDB = esp-idf\console\libconsole.pdb - -build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_utils.c.obj: C_COMPILER____idf_console_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/argtable3/arg_utils.c || cmake_object_order_depends_target___idf_console - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3\arg_utils.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir - OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3 - TARGET_COMPILE_PDB = esp-idf\console\CMakeFiles\__idf_console.dir\__idf_console.pdb - TARGET_PDB = esp-idf\console\libconsole.pdb - -build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/argtable3.c.obj: C_COMPILER____idf_console_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/argtable3/argtable3.c || cmake_object_order_depends_target___idf_console - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3\argtable3.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include - OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir - OBJECT_FILE_DIR = esp-idf\console\CMakeFiles\__idf_console.dir\argtable3 - TARGET_COMPILE_PDB = esp-idf\console\CMakeFiles\__idf_console.dir\__idf_console.pdb - TARGET_PDB = esp-idf\console\libconsole.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_console - - -############################################# -# Link the static library esp-idf\console\libconsole.a - -build esp-idf/console/libconsole.a: C_STATIC_LIBRARY_LINKER____idf_console_ esp-idf/console/CMakeFiles/__idf_console.dir/commands.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_common.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_repl_internal.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/split_argv.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/linenoise/linenoise.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_repl_chip.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_cmd.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_date.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dbl.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dstr.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_end.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_file.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_hashtable.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_int.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_lit.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rem.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rex.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_str.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_utils.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/argtable3.c.obj || esp-idf/esp_wifi/libesp_wifi.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei - OBJECT_DIR = esp-idf\console\CMakeFiles\__idf_console.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = esp-idf\console\CMakeFiles\__idf_console.dir\__idf_console.pdb - TARGET_FILE = esp-idf\console\libconsole.a - TARGET_PDB = esp-idf\console\libconsole.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/console/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\console && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/console/edit_cache: phony esp-idf/console/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/console/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\console && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/console/rebuild_cache: phony esp-idf/console/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/console/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/console/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/console/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\console && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/console/install: phony esp-idf/console/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/console/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/console/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\console && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/console/install/local: phony esp-idf/console/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/console/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/console/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\console && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/console/install/strip: phony esp-idf/console/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - - -############################################# -# Utility command for edit_cache - -build esp-idf/wpa_supplicant/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\wpa_supplicant && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/wpa_supplicant/edit_cache: phony esp-idf/wpa_supplicant/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/wpa_supplicant/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\wpa_supplicant && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/wpa_supplicant/rebuild_cache: phony esp-idf/wpa_supplicant/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/wpa_supplicant/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/wpa_supplicant/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/wpa_supplicant/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\wpa_supplicant && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/wpa_supplicant/install: phony esp-idf/wpa_supplicant/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/wpa_supplicant/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/wpa_supplicant/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\wpa_supplicant && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/wpa_supplicant/install/local: phony esp-idf/wpa_supplicant/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/wpa_supplicant/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/wpa_supplicant/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\wpa_supplicant && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/wpa_supplicant/install/strip: phony esp-idf/wpa_supplicant/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_wifi - - -############################################# -# Order-only phony target for __idf_esp_wifi - -build cmake_object_order_depends_target___idf_esp_wifi: phony || cmake_object_order_depends_target___idf_esp_phy - -build esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default.c.obj: C_COMPILER____idf_esp_wifi_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_wifi/src/wifi_default.c || cmake_object_order_depends_target___idf_esp_wifi - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir\src\wifi_default.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include - OBJECT_DIR = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir - OBJECT_FILE_DIR = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir\src - TARGET_COMPILE_PDB = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir\__idf_esp_wifi.pdb - TARGET_PDB = esp-idf\esp_wifi\libesp_wifi.pdb - -build esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_netif.c.obj: C_COMPILER____idf_esp_wifi_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_wifi/src/wifi_netif.c || cmake_object_order_depends_target___idf_esp_wifi - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir\src\wifi_netif.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include - OBJECT_DIR = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir - OBJECT_FILE_DIR = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir\src - TARGET_COMPILE_PDB = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir\__idf_esp_wifi.pdb - TARGET_PDB = esp-idf\esp_wifi\libesp_wifi.pdb - -build esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default_ap.c.obj: C_COMPILER____idf_esp_wifi_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_wifi/src/wifi_default_ap.c || cmake_object_order_depends_target___idf_esp_wifi - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir\src\wifi_default_ap.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include - OBJECT_DIR = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir - OBJECT_FILE_DIR = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir\src - TARGET_COMPILE_PDB = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir\__idf_esp_wifi.pdb - TARGET_PDB = esp-idf\esp_wifi\libesp_wifi.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_wifi - - -############################################# -# Link the static library esp-idf\esp_wifi\libesp_wifi.a - -build esp-idf/esp_wifi/libesp_wifi.a: C_STATIC_LIBRARY_LINKER____idf_esp_wifi_ esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default.c.obj esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_netif.c.obj esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default_ap.c.obj || esp-idf/esp_phy/libesp_phy.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei - OBJECT_DIR = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = esp-idf\esp_wifi\CMakeFiles\__idf_esp_wifi.dir\__idf_esp_wifi.pdb - TARGET_FILE = esp-idf\esp_wifi\libesp_wifi.a - TARGET_PDB = esp-idf\esp_wifi\libesp_wifi.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_wifi/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_wifi && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_wifi/edit_cache: phony esp-idf/esp_wifi/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_wifi/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_wifi && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_wifi/rebuild_cache: phony esp-idf/esp_wifi/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_wifi/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_wifi/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_wifi/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_wifi && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_wifi/install: phony esp-idf/esp_wifi/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_wifi/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_wifi/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_wifi && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_wifi/install/local: phony esp-idf/esp_wifi/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_wifi/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_wifi/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_wifi && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_wifi/install/strip: phony esp-idf/esp_wifi/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_esp_phy - - -############################################# -# Order-only phony target for __idf_esp_phy - -build cmake_object_order_depends_target___idf_esp_phy: phony || cmake_object_order_depends_target___idf_ieee802154 - -build esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_override.c.obj: C_COMPILER____idf_esp_phy_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/src/phy_override.c || cmake_object_order_depends_target___idf_esp_phy - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_phy\CMakeFiles\__idf_esp_phy.dir\src\phy_override.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf\esp_phy\CMakeFiles\__idf_esp_phy.dir - OBJECT_FILE_DIR = esp-idf\esp_phy\CMakeFiles\__idf_esp_phy.dir\src - TARGET_COMPILE_PDB = esp-idf\esp_phy\CMakeFiles\__idf_esp_phy.dir\__idf_esp_phy.pdb - TARGET_PDB = esp-idf\esp_phy\libesp_phy.pdb - -build esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/lib_printf.c.obj: C_COMPILER____idf_esp_phy_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/src/lib_printf.c || cmake_object_order_depends_target___idf_esp_phy - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_phy\CMakeFiles\__idf_esp_phy.dir\src\lib_printf.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf\esp_phy\CMakeFiles\__idf_esp_phy.dir - OBJECT_FILE_DIR = esp-idf\esp_phy\CMakeFiles\__idf_esp_phy.dir\src - TARGET_COMPILE_PDB = esp-idf\esp_phy\CMakeFiles\__idf_esp_phy.dir\__idf_esp_phy.pdb - TARGET_PDB = esp-idf\esp_phy\libesp_phy.pdb - -build esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_common.c.obj: C_COMPILER____idf_esp_phy_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/src/phy_common.c || cmake_object_order_depends_target___idf_esp_phy - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_phy\CMakeFiles\__idf_esp_phy.dir\src\phy_common.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf\esp_phy\CMakeFiles\__idf_esp_phy.dir - OBJECT_FILE_DIR = esp-idf\esp_phy\CMakeFiles\__idf_esp_phy.dir\src - TARGET_COMPILE_PDB = esp-idf\esp_phy\CMakeFiles\__idf_esp_phy.dir\__idf_esp_phy.pdb - TARGET_PDB = esp-idf\esp_phy\libesp_phy.pdb - -build esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_init_esp32hxx.c.obj: C_COMPILER____idf_esp_phy_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/src/phy_init_esp32hxx.c || cmake_object_order_depends_target___idf_esp_phy - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_phy\CMakeFiles\__idf_esp_phy.dir\src\phy_init_esp32hxx.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf\esp_phy\CMakeFiles\__idf_esp_phy.dir - OBJECT_FILE_DIR = esp-idf\esp_phy\CMakeFiles\__idf_esp_phy.dir\src - TARGET_COMPILE_PDB = esp-idf\esp_phy\CMakeFiles\__idf_esp_phy.dir\__idf_esp_phy.pdb - TARGET_PDB = esp-idf\esp_phy\libesp_phy.pdb - -build esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/btbb_init.c.obj: C_COMPILER____idf_esp_phy_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/src/btbb_init.c || cmake_object_order_depends_target___idf_esp_phy - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\esp_phy\CMakeFiles\__idf_esp_phy.dir\src\btbb_init.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include - OBJECT_DIR = esp-idf\esp_phy\CMakeFiles\__idf_esp_phy.dir - OBJECT_FILE_DIR = esp-idf\esp_phy\CMakeFiles\__idf_esp_phy.dir\src - TARGET_COMPILE_PDB = esp-idf\esp_phy\CMakeFiles\__idf_esp_phy.dir\__idf_esp_phy.pdb - TARGET_PDB = esp-idf\esp_phy\libesp_phy.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_esp_phy - - -############################################# -# Link the static library esp-idf\esp_phy\libesp_phy.a - -build esp-idf/esp_phy/libesp_phy.a: C_STATIC_LIBRARY_LINKER____idf_esp_phy_ esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_override.c.obj esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/lib_printf.c.obj esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_common.c.obj esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_init_esp32hxx.c.obj esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/btbb_init.c.obj || esp-idf/ieee802154/libieee802154.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei - OBJECT_DIR = esp-idf\esp_phy\CMakeFiles\__idf_esp_phy.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = esp-idf\esp_phy\CMakeFiles\__idf_esp_phy.dir\__idf_esp_phy.pdb - TARGET_FILE = esp-idf\esp_phy\libesp_phy.a - TARGET_PDB = esp-idf\esp_phy\libesp_phy.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/esp_phy/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_phy && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/esp_phy/edit_cache: phony esp-idf/esp_phy/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/esp_phy/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_phy && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/esp_phy/rebuild_cache: phony esp-idf/esp_phy/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/esp_phy/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/esp_phy/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_phy/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_phy && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/esp_phy/install: phony esp-idf/esp_phy/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/esp_phy/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_phy/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_phy && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/esp_phy/install/local: phony esp-idf/esp_phy/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/esp_phy/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_phy/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_phy && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/esp_phy/install/strip: phony esp-idf/esp_phy/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_ieee802154 - - -############################################# -# Order-only phony target for __idf_ieee802154 - -build cmake_object_order_depends_target___idf_ieee802154: phony || cmake_object_order_depends_target___idf_openthread - -build esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/esp_ieee802154.c.obj: C_COMPILER____idf_ieee802154_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/esp_ieee802154.c || cmake_object_order_depends_target___idf_ieee802154 - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\ieee802154\CMakeFiles\__idf_ieee802154.dir\esp_ieee802154.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include - OBJECT_DIR = esp-idf\ieee802154\CMakeFiles\__idf_ieee802154.dir - OBJECT_FILE_DIR = esp-idf\ieee802154\CMakeFiles\__idf_ieee802154.dir - TARGET_COMPILE_PDB = esp-idf\ieee802154\CMakeFiles\__idf_ieee802154.dir\__idf_ieee802154.pdb - TARGET_PDB = esp-idf\ieee802154\libieee802154.pdb - -build esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_ack.c.obj: C_COMPILER____idf_ieee802154_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/driver/esp_ieee802154_ack.c || cmake_object_order_depends_target___idf_ieee802154 - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\ieee802154\CMakeFiles\__idf_ieee802154.dir\driver\esp_ieee802154_ack.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include - OBJECT_DIR = esp-idf\ieee802154\CMakeFiles\__idf_ieee802154.dir - OBJECT_FILE_DIR = esp-idf\ieee802154\CMakeFiles\__idf_ieee802154.dir\driver - TARGET_COMPILE_PDB = esp-idf\ieee802154\CMakeFiles\__idf_ieee802154.dir\__idf_ieee802154.pdb - TARGET_PDB = esp-idf\ieee802154\libieee802154.pdb - -build esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_dev.c.obj: C_COMPILER____idf_ieee802154_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/driver/esp_ieee802154_dev.c || cmake_object_order_depends_target___idf_ieee802154 - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\ieee802154\CMakeFiles\__idf_ieee802154.dir\driver\esp_ieee802154_dev.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include - OBJECT_DIR = esp-idf\ieee802154\CMakeFiles\__idf_ieee802154.dir - OBJECT_FILE_DIR = esp-idf\ieee802154\CMakeFiles\__idf_ieee802154.dir\driver - TARGET_COMPILE_PDB = esp-idf\ieee802154\CMakeFiles\__idf_ieee802154.dir\__idf_ieee802154.pdb - TARGET_PDB = esp-idf\ieee802154\libieee802154.pdb - -build esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_event.c.obj: C_COMPILER____idf_ieee802154_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/driver/esp_ieee802154_event.c || cmake_object_order_depends_target___idf_ieee802154 - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\ieee802154\CMakeFiles\__idf_ieee802154.dir\driver\esp_ieee802154_event.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include - OBJECT_DIR = esp-idf\ieee802154\CMakeFiles\__idf_ieee802154.dir - OBJECT_FILE_DIR = esp-idf\ieee802154\CMakeFiles\__idf_ieee802154.dir\driver - TARGET_COMPILE_PDB = esp-idf\ieee802154\CMakeFiles\__idf_ieee802154.dir\__idf_ieee802154.pdb - TARGET_PDB = esp-idf\ieee802154\libieee802154.pdb - -build esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_frame.c.obj: C_COMPILER____idf_ieee802154_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/driver/esp_ieee802154_frame.c || cmake_object_order_depends_target___idf_ieee802154 - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\ieee802154\CMakeFiles\__idf_ieee802154.dir\driver\esp_ieee802154_frame.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include - OBJECT_DIR = esp-idf\ieee802154\CMakeFiles\__idf_ieee802154.dir - OBJECT_FILE_DIR = esp-idf\ieee802154\CMakeFiles\__idf_ieee802154.dir\driver - TARGET_COMPILE_PDB = esp-idf\ieee802154\CMakeFiles\__idf_ieee802154.dir\__idf_ieee802154.pdb - TARGET_PDB = esp-idf\ieee802154\libieee802154.pdb - -build esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_pib.c.obj: C_COMPILER____idf_ieee802154_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/driver/esp_ieee802154_pib.c || cmake_object_order_depends_target___idf_ieee802154 - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\ieee802154\CMakeFiles\__idf_ieee802154.dir\driver\esp_ieee802154_pib.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include - OBJECT_DIR = esp-idf\ieee802154\CMakeFiles\__idf_ieee802154.dir - OBJECT_FILE_DIR = esp-idf\ieee802154\CMakeFiles\__idf_ieee802154.dir\driver - TARGET_COMPILE_PDB = esp-idf\ieee802154\CMakeFiles\__idf_ieee802154.dir\__idf_ieee802154.pdb - TARGET_PDB = esp-idf\ieee802154\libieee802154.pdb - -build esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_util.c.obj: C_COMPILER____idf_ieee802154_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/driver/esp_ieee802154_util.c || cmake_object_order_depends_target___idf_ieee802154 - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\ieee802154\CMakeFiles\__idf_ieee802154.dir\driver\esp_ieee802154_util.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include - OBJECT_DIR = esp-idf\ieee802154\CMakeFiles\__idf_ieee802154.dir - OBJECT_FILE_DIR = esp-idf\ieee802154\CMakeFiles\__idf_ieee802154.dir\driver - TARGET_COMPILE_PDB = esp-idf\ieee802154\CMakeFiles\__idf_ieee802154.dir\__idf_ieee802154.pdb - TARGET_PDB = esp-idf\ieee802154\libieee802154.pdb - -build esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_sec.c.obj: C_COMPILER____idf_ieee802154_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/driver/esp_ieee802154_sec.c || cmake_object_order_depends_target___idf_ieee802154 - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\ieee802154\CMakeFiles\__idf_ieee802154.dir\driver\esp_ieee802154_sec.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include - OBJECT_DIR = esp-idf\ieee802154\CMakeFiles\__idf_ieee802154.dir - OBJECT_FILE_DIR = esp-idf\ieee802154\CMakeFiles\__idf_ieee802154.dir\driver - TARGET_COMPILE_PDB = esp-idf\ieee802154\CMakeFiles\__idf_ieee802154.dir\__idf_ieee802154.pdb - TARGET_PDB = esp-idf\ieee802154\libieee802154.pdb - -build esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_timer.c.obj: C_COMPILER____idf_ieee802154_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/driver/esp_ieee802154_timer.c || cmake_object_order_depends_target___idf_ieee802154 - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\ieee802154\CMakeFiles\__idf_ieee802154.dir\driver\esp_ieee802154_timer.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include - OBJECT_DIR = esp-idf\ieee802154\CMakeFiles\__idf_ieee802154.dir - OBJECT_FILE_DIR = esp-idf\ieee802154\CMakeFiles\__idf_ieee802154.dir\driver - TARGET_COMPILE_PDB = esp-idf\ieee802154\CMakeFiles\__idf_ieee802154.dir\__idf_ieee802154.pdb - TARGET_PDB = esp-idf\ieee802154\libieee802154.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_ieee802154 - - -############################################# -# Link the static library esp-idf\ieee802154\libieee802154.a - -build esp-idf/ieee802154/libieee802154.a: C_STATIC_LIBRARY_LINKER____idf_ieee802154_ esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/esp_ieee802154.c.obj esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_ack.c.obj esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_dev.c.obj esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_event.c.obj esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_frame.c.obj esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_pib.c.obj esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_util.c.obj esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_sec.c.obj esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_timer.c.obj || esp-idf/openthread/libopenthread.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei - OBJECT_DIR = esp-idf\ieee802154\CMakeFiles\__idf_ieee802154.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = esp-idf\ieee802154\CMakeFiles\__idf_ieee802154.dir\__idf_ieee802154.pdb - TARGET_FILE = esp-idf\ieee802154\libieee802154.a - TARGET_PDB = esp-idf\ieee802154\libieee802154.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/ieee802154/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\ieee802154 && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/ieee802154/edit_cache: phony esp-idf/ieee802154/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/ieee802154/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\ieee802154 && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/ieee802154/rebuild_cache: phony esp-idf/ieee802154/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/ieee802154/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/ieee802154/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/ieee802154/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\ieee802154 && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/ieee802154/install: phony esp-idf/ieee802154/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/ieee802154/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/ieee802154/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\ieee802154 && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/ieee802154/install/local: phony esp-idf/ieee802154/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/ieee802154/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/ieee802154/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\ieee802154 && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/ieee802154/install/strip: phony esp-idf/ieee802154/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_openthread - - -############################################# -# Order-only phony target for __idf_openthread - -build cmake_object_order_depends_target___idf_openthread: phony || esp-idf/esp_system/memory.ld esp-idf/esp_system/sections.ld.in esp-idf/mbedtls/custom_bundle - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/esp_openthread.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/src/esp_openthread.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\src\esp_openthread.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\src - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/esp_openthread_cli.c.obj: C_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/src/esp_openthread_cli.c || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\src\esp_openthread_cli.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\src - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/esp_openthread_lock.c.obj: C_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/src/esp_openthread_lock.c || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\src\esp_openthread_lock.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\src - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/esp_openthread_lwip_netif.c.obj: C_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/src/esp_openthread_lwip_netif.c || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\src\esp_openthread_lwip_netif.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\src - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/esp_openthread_netif_glue.c.obj: C_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/src/esp_openthread_netif_glue.c || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\src\esp_openthread_netif_glue.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\src - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/esp_openthread_platform.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/src/esp_openthread_platform.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\src\esp_openthread_platform.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\src - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/esp_openthread_task_queue.c.obj: C_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/src/esp_openthread_task_queue.c || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\src\esp_openthread_task_queue.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\src - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/port/esp_openthread_alarm.c.obj: C_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/src/port/esp_openthread_alarm.c || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\src\port\esp_openthread_alarm.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\src\port - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/port/esp_openthread_logging.c.obj: C_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/src/port/esp_openthread_logging.c || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\src\port\esp_openthread_logging.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\src\port - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/port/esp_openthread_memory.c.obj: C_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/src/port/esp_openthread_memory.c || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\src\port\esp_openthread_memory.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\src\port - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/port/esp_openthread_misc.c.obj: C_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/src/port/esp_openthread_misc.c || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\src\port\esp_openthread_misc.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\src\port - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/port/esp_openthread_radio.c.obj: C_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/src/port/esp_openthread_radio.c || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\src\port\esp_openthread_radio.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\src\port - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/port/esp_openthread_settings.c.obj: C_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/src/port/esp_openthread_settings.c || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\src\port\esp_openthread_settings.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\src\port - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/port/esp_openthread_spi_slave.c.obj: C_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/src/port/esp_openthread_spi_slave.c || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\src\port\esp_openthread_spi_slave.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\src\port - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/port/esp_openthread_uart.c.obj: C_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/src/port/esp_openthread_uart.c || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\src\port\esp_openthread_uart.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\src\port - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/port/esp_openthread_udp.c.obj: C_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/src/port/esp_openthread_udp.c || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\src\port\esp_openthread_udp.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\src\port - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/examples/platforms/utils/debug_uart.c.obj: C_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms/utils/debug_uart.c || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\examples\platforms\utils\debug_uart.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\examples\platforms\utils - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/examples/platforms/utils/link_metrics.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms/utils/link_metrics.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\examples\platforms\utils\link_metrics.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\examples\platforms\utils - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/examples/platforms/utils/mac_frame.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms/utils/mac_frame.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\examples\platforms\utils\mac_frame.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\examples\platforms\utils - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/examples/platforms/utils/otns_utils.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms/utils/otns_utils.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\examples\platforms\utils\otns_utils.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\examples\platforms\utils - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/examples/platforms/utils/settings_ram.c.obj: C_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms/utils/settings_ram.c || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\examples\platforms\utils\settings_ram.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\examples\platforms\utils - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/examples/platforms/utils/uart_rtt.c.obj: C_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms/utils/uart_rtt.c || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\examples\platforms\utils\uart_rtt.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\examples\platforms\utils - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/backbone_router_ftd_api.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/backbone_router_ftd_api.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api\backbone_router_ftd_api.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/ble_secure_api.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/ble_secure_api.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api\ble_secure_api.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/border_agent_api.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/border_agent_api.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api\border_agent_api.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/border_router_api.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/border_router_api.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api\border_router_api.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/border_routing_api.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/border_routing_api.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api\border_routing_api.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/channel_manager_api.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/channel_manager_api.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api\channel_manager_api.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/channel_monitor_api.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/channel_monitor_api.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api\channel_monitor_api.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/coap_api.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/coap_api.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api\coap_api.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/coap_secure_api.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/coap_secure_api.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api\coap_secure_api.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/commissioner_api.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/commissioner_api.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api\commissioner_api.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/crypto_api.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/crypto_api.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api\crypto_api.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/dataset_ftd_api.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/dataset_ftd_api.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api\dataset_ftd_api.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/dataset_updater_api.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/dataset_updater_api.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api\dataset_updater_api.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/diags_api.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/diags_api.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api\diags_api.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/dns_server_api.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/dns_server_api.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api\dns_server_api.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/error_api.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/error_api.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api\error_api.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/history_tracker_api.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/history_tracker_api.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api\history_tracker_api.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/instance_api.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/instance_api.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api\instance_api.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/jam_detection_api.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/jam_detection_api.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api\jam_detection_api.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/joiner_api.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/joiner_api.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api\joiner_api.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/link_raw_api.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/link_raw_api.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api\link_raw_api.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/logging_api.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/logging_api.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api\logging_api.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/mdns_api.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/mdns_api.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api\mdns_api.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/mesh_diag_api.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/mesh_diag_api.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api\mesh_diag_api.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/multi_radio_api.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/multi_radio_api.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api\multi_radio_api.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/netdata_publisher_api.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/netdata_publisher_api.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api\netdata_publisher_api.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/ping_sender_api.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/ping_sender_api.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api\ping_sender_api.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/radio_stats_api.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/radio_stats_api.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api\radio_stats_api.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/random_noncrypto_api.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/random_noncrypto_api.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api\random_noncrypto_api.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/server_api.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/server_api.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api\server_api.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/sntp_api.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/sntp_api.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api\sntp_api.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/srp_client_api.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/srp_client_api.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api\srp_client_api.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/srp_client_buffers_api.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/srp_client_buffers_api.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api\srp_client_buffers_api.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/srp_server_api.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/srp_server_api.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api\srp_server_api.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/tasklet_api.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/tasklet_api.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api\tasklet_api.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/tcp_ext_api.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/tcp_ext_api.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api\tcp_ext_api.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/thread_api.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/thread_api.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api\thread_api.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/thread_ftd_api.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/thread_ftd_api.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api\thread_ftd_api.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/trel_api.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/trel_api.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api\trel_api.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/verhoeff_checksum_api.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/verhoeff_checksum_api.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api\verhoeff_checksum_api.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\api - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/appender.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/common/appender.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\common\appender.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\common - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/binary_search.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/common/binary_search.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\common\binary_search.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\common - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/crc.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/common/crc.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\common\crc.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\common - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/data.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/common/data.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\common\data.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\common - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/error.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/common/error.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\common\error.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\common - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/frame_builder.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/common/frame_builder.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\common\frame_builder.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\common - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/frame_data.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/common/frame_data.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\common\frame_data.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\common - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/heap_data.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/common/heap_data.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\common\heap_data.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\common - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/log.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/common/log.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\common\log.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\common - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/message.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/common/message.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\common\message.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\common - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/offset_range.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/common/offset_range.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\common\offset_range.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\common - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/preference.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/common/preference.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\common\preference.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\common - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/random.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/common/random.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\common\random.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\common - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/string.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/common/string.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\common\string.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\common - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/tasklet.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/common/tasklet.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\common\tasklet.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\common - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/timer.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/common/timer.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\common\timer.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\common - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/tlvs.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/common/tlvs.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\common\tlvs.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\common - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/trickle_timer.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/common/trickle_timer.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\common\trickle_timer.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\common - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/uptime.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/common/uptime.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\common\uptime.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\common - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/crypto/aes_ccm.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/crypto/aes_ccm.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\crypto\aes_ccm.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\crypto - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/crypto/aes_ecb.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/crypto/aes_ecb.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\crypto\aes_ecb.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\crypto - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/crypto/crypto_platform.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/crypto/crypto_platform.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\crypto\crypto_platform.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\crypto - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/crypto/hkdf_sha256.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/crypto/hkdf_sha256.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\crypto\hkdf_sha256.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\crypto - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/crypto/hmac_sha256.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/crypto/hmac_sha256.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\crypto\hmac_sha256.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\crypto - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/crypto/mbedtls.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/crypto/mbedtls.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\crypto\mbedtls.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\crypto - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/crypto/sha256.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/crypto/sha256.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\crypto\sha256.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\crypto - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/crypto/storage.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/crypto/storage.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\crypto\storage.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\crypto - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/diags/factory_diags.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/diags/factory_diags.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\diags\factory_diags.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\diags - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/instance/instance.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/instance/instance.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\instance\instance.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\instance - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/mac/link_raw.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/mac/link_raw.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\mac\link_raw.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\mac - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/mac/mac_frame.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/mac/mac_frame.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\mac\mac_frame.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\mac - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/mac/mac_header_ie.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/mac/mac_header_ie.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\mac\mac_header_ie.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\mac - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/mac/mac_types.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/mac/mac_types.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\mac\mac_types.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\mac - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/mac/sub_mac.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/mac/sub_mac.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\mac\sub_mac.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\mac - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/mac/sub_mac_callbacks.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/mac/sub_mac_callbacks.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\mac\sub_mac_callbacks.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\mac - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/mac/sub_mac_csl_receiver.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/mac/sub_mac_csl_receiver.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\mac\sub_mac_csl_receiver.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\mac - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/mac/sub_mac_wed.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/mac/sub_mac_wed.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\mac\sub_mac_wed.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\mac - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/mac/wakeup_tx_scheduler.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/mac/wakeup_tx_scheduler.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\mac\wakeup_tx_scheduler.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\mac - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/radio/ble_secure.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/radio/ble_secure.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\radio\ble_secure.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\radio - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/radio/radio.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/radio/radio.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\radio\radio.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\radio - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/radio/radio_callbacks.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/radio/radio_callbacks.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\radio\radio_callbacks.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\radio - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/radio/radio_platform.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/radio/radio_platform.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\radio\radio_platform.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\radio - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/radio/trel_interface.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/radio/trel_interface.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\radio\trel_interface.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\radio - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/radio/trel_link.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/radio/trel_link.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\radio\trel_link.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\radio - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/radio/trel_packet.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/radio/trel_packet.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\radio\trel_packet.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\radio - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/radio/trel_peer.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/radio/trel_peer.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\radio\trel_peer.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\radio - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/radio/trel_peer_discoverer.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/radio/trel_peer_discoverer.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\radio\trel_peer_discoverer.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\radio - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/anycast_locator.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/thread/anycast_locator.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\thread\anycast_locator.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\thread - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/child.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/thread/child.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\thread\child.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\thread - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/child_table.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/thread/child_table.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\thread\child_table.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\thread - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/dua_manager.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/thread/dua_manager.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\thread\dua_manager.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\thread - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/link_metrics_types.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/thread/link_metrics_types.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\thread\link_metrics_types.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\thread - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/link_quality.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/thread/link_quality.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\thread\link_quality.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\thread - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/mle_ftd.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/thread/mle_ftd.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\thread\mle_ftd.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\thread - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/mle_tlvs.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/thread/mle_tlvs.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\thread\mle_tlvs.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\thread - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/mlr_manager.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/thread/mlr_manager.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\thread\mlr_manager.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\thread - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/network_data_local.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/thread/network_data_local.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\thread\network_data_local.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\thread - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/network_data_notifier.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/thread/network_data_notifier.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\thread\network_data_notifier.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\thread - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/network_data_publisher.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/thread/network_data_publisher.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\thread\network_data_publisher.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\thread - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/network_data_tlvs.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/thread/network_data_tlvs.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\thread\network_data_tlvs.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\thread - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/network_diagnostic_tlvs.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/thread/network_diagnostic_tlvs.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\thread\network_diagnostic_tlvs.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\thread - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/radio_selector.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/thread/radio_selector.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\thread\radio_selector.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\thread - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/router.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/thread/router.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\thread\router.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\thread - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/router_table.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/thread/router_table.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\thread\router_table.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\thread - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/src_match_controller.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/thread/src_match_controller.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\thread\src_match_controller.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\thread - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/thread_link_info.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/thread/thread_link_info.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\thread\thread_link_info.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\thread - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/uri_paths.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/thread/uri_paths.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\thread\uri_paths.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\thread - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/version.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/thread/version.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\thread\version.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\thread - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/channel_manager.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/utils/channel_manager.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\utils\channel_manager.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\utils - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/channel_monitor.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/utils/channel_monitor.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\utils\channel_monitor.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\utils - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/flash.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/utils/flash.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\utils\flash.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\utils - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/heap.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/utils/heap.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\utils\heap.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\utils - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/history_tracker.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/utils/history_tracker.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\utils\history_tracker.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\utils - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/jam_detector.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/utils/jam_detector.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\utils\jam_detector.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\utils - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/link_metrics_manager.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/utils/link_metrics_manager.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\utils\link_metrics_manager.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\utils - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/mesh_diag.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/utils/mesh_diag.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\utils\mesh_diag.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\utils - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/otns.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/utils/otns.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\utils\otns.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\utils - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/parse_cmdline.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/utils/parse_cmdline.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\utils\parse_cmdline.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\utils - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/ping_sender.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/utils/ping_sender.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\utils\ping_sender.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\utils - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/power_calibration.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/utils/power_calibration.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\utils\power_calibration.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\utils - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/slaac_address.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/utils/slaac_address.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\utils\slaac_address.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\utils - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/srp_client_buffers.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/utils/srp_client_buffers.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\utils\srp_client_buffers.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\utils - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/verhoeff_checksum.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/utils/verhoeff_checksum.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\utils\verhoeff_checksum.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\core\utils - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/lib/hdlc/hdlc.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc/hdlc.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\lib\hdlc\hdlc.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\lib\hdlc - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/lib/spinel/example_vendor_hook.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel/example_vendor_hook.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\lib\spinel\example_vendor_hook.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\lib\spinel - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/lib/spinel/logger.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel/logger.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\lib\spinel\logger.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\lib\spinel - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/lib/spinel/radio_spinel.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel/radio_spinel.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\lib\spinel\radio_spinel.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\lib\spinel - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/lib/spinel/spinel.c.obj: C_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel/spinel.c || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\lib\spinel\spinel.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\lib\spinel - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/lib/spinel/spinel_buffer.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel/spinel_buffer.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\lib\spinel\spinel_buffer.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\lib\spinel - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/lib/spinel/spinel_decoder.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel/spinel_decoder.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\lib\spinel\spinel_decoder.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\lib\spinel - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/lib/spinel/spinel_driver.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel/spinel_driver.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\lib\spinel\spinel_driver.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\lib\spinel - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/lib/spinel/spinel_encoder.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel/spinel_encoder.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\lib\spinel\spinel_encoder.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\lib\spinel - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/lib/spinel/spinel_helper.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel/spinel_helper.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\lib\spinel\spinel_helper.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\lib\spinel - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/lib/spinel/spinel_prop_codec.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel/spinel_prop_codec.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\lib\spinel\spinel_prop_codec.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\lib\spinel - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/ncp/changed_props_set.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp/changed_props_set.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\ncp\changed_props_set.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\ncp - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/ncp/example_vendor_hook.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp/example_vendor_hook.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\ncp\example_vendor_hook.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\ncp - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/ncp/multipan_platform.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp/multipan_platform.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\ncp\multipan_platform.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\ncp - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/ncp/ncp_base.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp/ncp_base.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\ncp\ncp_base.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\ncp - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/ncp/ncp_base_dispatcher.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp/ncp_base_dispatcher.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\ncp\ncp_base_dispatcher.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\ncp - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/ncp/ncp_base_ftd.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp/ncp_base_ftd.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\ncp\ncp_base_ftd.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\ncp - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/ncp/ncp_base_mtd.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp/ncp_base_mtd.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\ncp\ncp_base_mtd.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\ncp - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/ncp/ncp_base_radio.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp/ncp_base_radio.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\ncp\ncp_base_radio.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\ncp - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/ncp/ncp_hdlc.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp/ncp_hdlc.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\ncp\ncp_hdlc.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\ncp - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/ncp/ncp_spi.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp/ncp_spi.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\ncp\ncp_spi.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\src\ncp - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/examples/apps/ncp/ncp.c.obj: C_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/apps/ncp/ncp.c || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\examples\apps\ncp\ncp.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\openthread\examples\apps\ncp - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/ncp/esp_openthread_ncp.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/src/ncp/esp_openthread_ncp.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\src\ncp\esp_openthread_ncp.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\src\ncp - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - -build esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/ncp/esp_openthread_ncp_hdlc.cpp.obj: CXX_COMPILER____idf_openthread_unscanned_ C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/src/ncp/esp_openthread_ncp_hdlc.cpp || cmake_object_order_depends_target___idf_openthread - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DOPENTHREAD_BUILD_DATETIME="\" 2025-12-23 18:33:51 UTC\"" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\"fcae32885-b945928d7\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\src\ncp\esp_openthread_ncp_hdlc.cpp.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - OBJECT_FILE_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\src\ncp - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_openthread - - -############################################# -# Link the static library esp-idf\openthread\libopenthread.a - -build esp-idf/openthread/libopenthread.a: C_STATIC_LIBRARY_LINKER____idf_openthread_ esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/esp_openthread.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/esp_openthread_cli.c.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/esp_openthread_lock.c.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/esp_openthread_lwip_netif.c.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/esp_openthread_netif_glue.c.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/esp_openthread_platform.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/esp_openthread_task_queue.c.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/port/esp_openthread_alarm.c.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/port/esp_openthread_logging.c.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/port/esp_openthread_memory.c.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/port/esp_openthread_misc.c.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/port/esp_openthread_radio.c.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/port/esp_openthread_settings.c.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/port/esp_openthread_spi_slave.c.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/port/esp_openthread_uart.c.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/port/esp_openthread_udp.c.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/examples/platforms/utils/debug_uart.c.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/examples/platforms/utils/link_metrics.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/examples/platforms/utils/mac_frame.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/examples/platforms/utils/otns_utils.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/examples/platforms/utils/settings_ram.c.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/examples/platforms/utils/uart_rtt.c.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/backbone_router_ftd_api.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/ble_secure_api.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/border_agent_api.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/border_router_api.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/border_routing_api.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/channel_manager_api.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/channel_monitor_api.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/coap_api.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/coap_secure_api.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/commissioner_api.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/crypto_api.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/dataset_ftd_api.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/dataset_updater_api.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/diags_api.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/dns_server_api.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/error_api.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/history_tracker_api.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/instance_api.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/jam_detection_api.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/joiner_api.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/link_raw_api.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/logging_api.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/mdns_api.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/mesh_diag_api.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/multi_radio_api.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/netdata_publisher_api.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/ping_sender_api.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/radio_stats_api.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/random_noncrypto_api.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/server_api.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/sntp_api.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/srp_client_api.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/srp_client_buffers_api.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/srp_server_api.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/tasklet_api.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/tcp_ext_api.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/thread_api.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/thread_ftd_api.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/trel_api.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/verhoeff_checksum_api.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/appender.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/binary_search.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/crc.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/data.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/error.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/frame_builder.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/frame_data.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/heap_data.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/log.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/message.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/offset_range.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/preference.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/random.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/string.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/tasklet.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/timer.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/tlvs.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/trickle_timer.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/uptime.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/crypto/aes_ccm.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/crypto/aes_ecb.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/crypto/crypto_platform.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/crypto/hkdf_sha256.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/crypto/hmac_sha256.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/crypto/mbedtls.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/crypto/sha256.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/crypto/storage.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/diags/factory_diags.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/instance/instance.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/mac/link_raw.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/mac/mac_frame.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/mac/mac_header_ie.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/mac/mac_types.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/mac/sub_mac.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/mac/sub_mac_callbacks.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/mac/sub_mac_csl_receiver.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/mac/sub_mac_wed.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/mac/wakeup_tx_scheduler.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/radio/ble_secure.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/radio/radio.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/radio/radio_callbacks.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/radio/radio_platform.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/radio/trel_interface.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/radio/trel_link.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/radio/trel_packet.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/radio/trel_peer.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/radio/trel_peer_discoverer.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/anycast_locator.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/child.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/child_table.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/dua_manager.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/link_metrics_types.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/link_quality.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/mle_ftd.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/mle_tlvs.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/mlr_manager.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/network_data_local.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/network_data_notifier.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/network_data_publisher.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/network_data_tlvs.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/network_diagnostic_tlvs.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/radio_selector.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/router.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/router_table.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/src_match_controller.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/thread_link_info.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/uri_paths.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/version.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/channel_manager.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/channel_monitor.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/flash.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/heap.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/history_tracker.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/jam_detector.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/link_metrics_manager.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/mesh_diag.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/otns.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/parse_cmdline.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/ping_sender.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/power_calibration.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/slaac_address.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/srp_client_buffers.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/verhoeff_checksum.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/lib/hdlc/hdlc.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/lib/spinel/example_vendor_hook.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/lib/spinel/logger.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/lib/spinel/radio_spinel.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/lib/spinel/spinel.c.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/lib/spinel/spinel_buffer.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/lib/spinel/spinel_decoder.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/lib/spinel/spinel_driver.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/lib/spinel/spinel_encoder.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/lib/spinel/spinel_helper.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/lib/spinel/spinel_prop_codec.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/ncp/changed_props_set.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/ncp/example_vendor_hook.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/ncp/multipan_platform.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/ncp/ncp_base.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/ncp/ncp_base_dispatcher.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/ncp/ncp_base_ftd.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/ncp/ncp_base_mtd.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/ncp/ncp_base_radio.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/ncp/ncp_hdlc.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/ncp/ncp_spi.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/examples/apps/ncp/ncp.c.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/ncp/esp_openthread_ncp.cpp.obj esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/ncp/esp_openthread_ncp_hdlc.cpp.obj || esp-idf/esp_system/memory.ld esp-idf/esp_system/sections.ld.in esp-idf/mbedtls/custom_bundle - LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei - OBJECT_DIR = esp-idf\openthread\CMakeFiles\__idf_openthread.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = esp-idf\openthread\CMakeFiles\__idf_openthread.dir\__idf_openthread.pdb - TARGET_FILE = esp-idf\openthread\libopenthread.a - TARGET_PDB = esp-idf\openthread\libopenthread.pdb - RSP_FILE = CMakeFiles\__idf_openthread.rsp - - -############################################# -# Utility command for edit_cache - -build esp-idf/openthread/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\openthread && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/openthread/edit_cache: phony esp-idf/openthread/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/openthread/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\openthread && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/openthread/rebuild_cache: phony esp-idf/openthread/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/openthread/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/openthread/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/openthread/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\openthread && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/openthread/install: phony esp-idf/openthread/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/openthread/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/openthread/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\openthread && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/openthread/install/local: phony esp-idf/openthread/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/openthread/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/openthread/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\openthread && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/openthread/install/strip: phony esp-idf/openthread/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# C:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for STATIC_LIBRARY target __idf_main - - -############################################# -# Order-only phony target for __idf_main - -build cmake_object_order_depends_target___idf_main: phony || cmake_object_order_depends_target___idf_riscv - -build esp-idf/main/CMakeFiles/__idf_main.dir/esp_ot_rcp.c.obj: C_COMPILER____idf_main_unscanned_ C$:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/main/esp_ot_rcp.c || cmake_object_order_depends_target___idf_main - DEFINES = -DESP_PLATFORM -DIDF_VER=\"v5.5.1\" -DOPENTHREAD_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\"openthread-core-esp32x-radio-config.h\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS - DEP_FILE = esp-idf\main\CMakeFiles\__idf_main.dir\esp_ot_rcp.c.obj.d - FLAGS = -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration - INCLUDES = -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/main -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include - OBJECT_DIR = esp-idf\main\CMakeFiles\__idf_main.dir - OBJECT_FILE_DIR = esp-idf\main\CMakeFiles\__idf_main.dir - TARGET_COMPILE_PDB = esp-idf\main\CMakeFiles\__idf_main.dir\__idf_main.pdb - TARGET_PDB = esp-idf\main\libmain.pdb - - -# ============================================================================= -# Link build statements for STATIC_LIBRARY target __idf_main - - -############################################# -# Link the static library esp-idf\main\libmain.a - -build esp-idf/main/libmain.a: C_STATIC_LIBRARY_LINKER____idf_main_ esp-idf/main/CMakeFiles/__idf_main.dir/esp_ot_rcp.c.obj || esp-idf/riscv/libriscv.a - LANGUAGE_COMPILE_FLAGS = -march=rv32imac_zicsr_zifencei - OBJECT_DIR = esp-idf\main\CMakeFiles\__idf_main.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = esp-idf\main\CMakeFiles\__idf_main.dir\__idf_main.pdb - TARGET_FILE = esp-idf\main\libmain.a - TARGET_PDB = esp-idf\main\libmain.pdb - - -############################################# -# Utility command for edit_cache - -build esp-idf/main/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\main && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake-gui.exe -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake cache editor... - pool = console - restat = 1 - -build esp-idf/main/edit_cache: phony esp-idf/main/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build esp-idf/main/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\main && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe --regenerate-during-build -SC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp -BC:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build esp-idf/main/rebuild_cache: phony esp-idf/main/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build esp-idf/main/list_install_components: phony - - -############################################# -# Utility command for install - -build esp-idf/main/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/main/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\main && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -P cmake_install.cmake" - DESC = Install the project... - pool = console - restat = 1 - -build esp-idf/main/install: phony esp-idf/main/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build esp-idf/main/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/main/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\main && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" - DESC = Installing only the local directory... - pool = console - restat = 1 - -build esp-idf/main/install/local: phony esp-idf/main/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build esp-idf/main/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/main/all - COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\main && C:\Users\Laurent\.espressif\tools\cmake\3.30.2\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" - DESC = Installing the project stripped... - pool = console - restat = 1 - -build esp-idf/main/install/strip: phony esp-idf/main/CMakeFiles/install/strip.util - -# ============================================================================= -# Target aliases. - -build __idf_app_update: phony esp-idf/app_update/libapp_update.a - -build __idf_bootloader_support: phony esp-idf/bootloader_support/libbootloader_support.a - -build __idf_console: phony esp-idf/console/libconsole.a - -build __idf_cxx: phony esp-idf/cxx/libcxx.a - -build __idf_driver: phony esp-idf/driver/libdriver.a - -build __idf_efuse: phony esp-idf/efuse/libefuse.a - -build __idf_esp_app_format: phony esp-idf/esp_app_format/libesp_app_format.a - -build __idf_esp_bootloader_format: phony esp-idf/esp_bootloader_format/libesp_bootloader_format.a - -build __idf_esp_common: phony esp-idf/esp_common/libesp_common.a - -build __idf_esp_driver_ana_cmpr: phony esp-idf/esp_driver_ana_cmpr/libesp_driver_ana_cmpr.a - -build __idf_esp_driver_gpio: phony esp-idf/esp_driver_gpio/libesp_driver_gpio.a - -build __idf_esp_driver_gptimer: phony esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a - -build __idf_esp_driver_i2c: phony esp-idf/esp_driver_i2c/libesp_driver_i2c.a - -build __idf_esp_driver_i2s: phony esp-idf/esp_driver_i2s/libesp_driver_i2s.a - -build __idf_esp_driver_ledc: phony esp-idf/esp_driver_ledc/libesp_driver_ledc.a - -build __idf_esp_driver_mcpwm: phony esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a - -build __idf_esp_driver_parlio: phony esp-idf/esp_driver_parlio/libesp_driver_parlio.a - -build __idf_esp_driver_pcnt: phony esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a - -build __idf_esp_driver_rmt: phony esp-idf/esp_driver_rmt/libesp_driver_rmt.a - -build __idf_esp_driver_sdm: phony esp-idf/esp_driver_sdm/libesp_driver_sdm.a - -build __idf_esp_driver_sdspi: phony esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a - -build __idf_esp_driver_spi: phony esp-idf/esp_driver_spi/libesp_driver_spi.a - -build __idf_esp_driver_tsens: phony esp-idf/esp_driver_tsens/libesp_driver_tsens.a - -build __idf_esp_driver_twai: phony esp-idf/esp_driver_twai/libesp_driver_twai.a - -build __idf_esp_driver_uart: phony esp-idf/esp_driver_uart/libesp_driver_uart.a - -build __idf_esp_driver_usb_serial_jtag: phony esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a - -build __idf_esp_event: phony esp-idf/esp_event/libesp_event.a - -build __idf_esp_hw_support: phony esp-idf/esp_hw_support/libesp_hw_support.a - -build __idf_esp_mm: phony esp-idf/esp_mm/libesp_mm.a - -build __idf_esp_netif: phony esp-idf/esp_netif/libesp_netif.a - -build __idf_esp_partition: phony esp-idf/esp_partition/libesp_partition.a - -build __idf_esp_phy: phony esp-idf/esp_phy/libesp_phy.a - -build __idf_esp_pm: phony esp-idf/esp_pm/libesp_pm.a - -build __idf_esp_ringbuf: phony esp-idf/esp_ringbuf/libesp_ringbuf.a - -build __idf_esp_rom: phony esp-idf/esp_rom/libesp_rom.a - -build __idf_esp_security: phony esp-idf/esp_security/libesp_security.a - -build __idf_esp_system: phony esp-idf/esp_system/libesp_system.a - -build __idf_esp_timer: phony esp-idf/esp_timer/libesp_timer.a - -build __idf_esp_vfs_console: phony esp-idf/esp_vfs_console/libesp_vfs_console.a - -build __idf_esp_wifi: phony esp-idf/esp_wifi/libesp_wifi.a - -build __idf_freertos: phony esp-idf/freertos/libfreertos.a - -build __idf_hal: phony esp-idf/hal/libhal.a - -build __idf_heap: phony esp-idf/heap/libheap.a - -build __idf_ieee802154: phony esp-idf/ieee802154/libieee802154.a - -build __idf_log: phony esp-idf/log/liblog.a - -build __idf_lwip: phony esp-idf/lwip/liblwip.a - -build __idf_main: phony esp-idf/main/libmain.a - -build __idf_mbedtls: phony esp-idf/mbedtls/libmbedtls.a - -build __idf_newlib: phony esp-idf/newlib/libnewlib.a - -build __idf_nvs_flash: phony esp-idf/nvs_flash/libnvs_flash.a - -build __idf_openthread: phony esp-idf/openthread/libopenthread.a - -build __idf_pthread: phony esp-idf/pthread/libpthread.a - -build __idf_riscv: phony esp-idf/riscv/libriscv.a - -build __idf_sdmmc: phony esp-idf/sdmmc/libsdmmc.a - -build __idf_soc: phony esp-idf/soc/libsoc.a - -build __idf_spi_flash: phony esp-idf/spi_flash/libspi_flash.a - -build __idf_vfs: phony esp-idf/vfs/libvfs.a - -build apidoc: phony esp-idf/mbedtls/mbedtls/apidoc - -build app-flash: phony esp-idf/esptool_py/app-flash - -build app_check_size: phony esp-idf/esptool_py/app_check_size - -build bootloader-flash: phony esp-idf/bootloader/bootloader-flash - -build custom_bundle: phony esp-idf/mbedtls/custom_bundle - -build efuse-common-table: phony esp-idf/efuse/efuse-common-table - -build efuse-custom-table: phony esp-idf/efuse/efuse-custom-table - -build efuse_common_table: phony esp-idf/efuse/efuse_common_table - -build efuse_custom_table: phony esp-idf/efuse/efuse_custom_table - -build efuse_test_table: phony esp-idf/efuse/efuse_test_table - -build encrypted-app-flash: phony esp-idf/esptool_py/encrypted-app-flash - -build encrypted-bootloader-flash: phony esp-idf/bootloader/encrypted-bootloader-flash - -build encrypted-partition-table-flash: phony esp-idf/partition_table/encrypted-partition-table-flash - -build everest: phony esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a - -build lib: phony esp-idf/mbedtls/mbedtls/library/lib - -build libapp_update.a: phony esp-idf/app_update/libapp_update.a - -build libbootloader_support.a: phony esp-idf/bootloader_support/libbootloader_support.a - -build libconsole.a: phony esp-idf/console/libconsole.a - -build libcxx.a: phony esp-idf/cxx/libcxx.a - -build libdriver.a: phony esp-idf/driver/libdriver.a - -build libefuse.a: phony esp-idf/efuse/libefuse.a - -build libesp_app_format.a: phony esp-idf/esp_app_format/libesp_app_format.a - -build libesp_bootloader_format.a: phony esp-idf/esp_bootloader_format/libesp_bootloader_format.a - -build libesp_common.a: phony esp-idf/esp_common/libesp_common.a - -build libesp_driver_ana_cmpr.a: phony esp-idf/esp_driver_ana_cmpr/libesp_driver_ana_cmpr.a - -build libesp_driver_gpio.a: phony esp-idf/esp_driver_gpio/libesp_driver_gpio.a - -build libesp_driver_gptimer.a: phony esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a - -build libesp_driver_i2c.a: phony esp-idf/esp_driver_i2c/libesp_driver_i2c.a - -build libesp_driver_i2s.a: phony esp-idf/esp_driver_i2s/libesp_driver_i2s.a - -build libesp_driver_ledc.a: phony esp-idf/esp_driver_ledc/libesp_driver_ledc.a - -build libesp_driver_mcpwm.a: phony esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a - -build libesp_driver_parlio.a: phony esp-idf/esp_driver_parlio/libesp_driver_parlio.a - -build libesp_driver_pcnt.a: phony esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a - -build libesp_driver_rmt.a: phony esp-idf/esp_driver_rmt/libesp_driver_rmt.a - -build libesp_driver_sdm.a: phony esp-idf/esp_driver_sdm/libesp_driver_sdm.a - -build libesp_driver_sdspi.a: phony esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a - -build libesp_driver_spi.a: phony esp-idf/esp_driver_spi/libesp_driver_spi.a - -build libesp_driver_tsens.a: phony esp-idf/esp_driver_tsens/libesp_driver_tsens.a - -build libesp_driver_twai.a: phony esp-idf/esp_driver_twai/libesp_driver_twai.a - -build libesp_driver_uart.a: phony esp-idf/esp_driver_uart/libesp_driver_uart.a - -build libesp_driver_usb_serial_jtag.a: phony esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a - -build libesp_event.a: phony esp-idf/esp_event/libesp_event.a - -build libesp_hw_support.a: phony esp-idf/esp_hw_support/libesp_hw_support.a - -build libesp_mm.a: phony esp-idf/esp_mm/libesp_mm.a - -build libesp_netif.a: phony esp-idf/esp_netif/libesp_netif.a - -build libesp_partition.a: phony esp-idf/esp_partition/libesp_partition.a - -build libesp_phy.a: phony esp-idf/esp_phy/libesp_phy.a - -build libesp_pm.a: phony esp-idf/esp_pm/libesp_pm.a - -build libesp_ringbuf.a: phony esp-idf/esp_ringbuf/libesp_ringbuf.a - -build libesp_rom.a: phony esp-idf/esp_rom/libesp_rom.a - -build libesp_security.a: phony esp-idf/esp_security/libesp_security.a - -build libesp_system.a: phony esp-idf/esp_system/libesp_system.a - -build libesp_timer.a: phony esp-idf/esp_timer/libesp_timer.a - -build libesp_vfs_console.a: phony esp-idf/esp_vfs_console/libesp_vfs_console.a - -build libesp_wifi.a: phony esp-idf/esp_wifi/libesp_wifi.a - -build libeverest.a: phony esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a - -build libfreertos.a: phony esp-idf/freertos/libfreertos.a - -build libhal.a: phony esp-idf/hal/libhal.a - -build libheap.a: phony esp-idf/heap/libheap.a - -build libieee802154.a: phony esp-idf/ieee802154/libieee802154.a - -build liblog.a: phony esp-idf/log/liblog.a - -build liblwip.a: phony esp-idf/lwip/liblwip.a - -build libmain.a: phony esp-idf/main/libmain.a - -build libmbedcrypto.a: phony esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a - -build libmbedtls.a: phony esp-idf/mbedtls/libmbedtls.a - -build libmbedx509.a: phony esp-idf/mbedtls/mbedtls/library/libmbedx509.a - -build libnewlib.a: phony esp-idf/newlib/libnewlib.a - -build libnvs_flash.a: phony esp-idf/nvs_flash/libnvs_flash.a - -build libopenthread.a: phony esp-idf/openthread/libopenthread.a - -build libp256m.a: phony esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a - -build libpthread.a: phony esp-idf/pthread/libpthread.a - -build libriscv.a: phony esp-idf/riscv/libriscv.a - -build libsdmmc.a: phony esp-idf/sdmmc/libsdmmc.a - -build libsoc.a: phony esp-idf/soc/libsoc.a - -build libspi_flash.a: phony esp-idf/spi_flash/libspi_flash.a - -build libvfs.a: phony esp-idf/vfs/libvfs.a - -build mbedcrypto: phony esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a - -build mbedtls: phony esp-idf/mbedtls/mbedtls/library/libmbedtls.a - -build mbedx509: phony esp-idf/mbedtls/mbedtls/library/libmbedx509.a - -build memory.ld: phony esp-idf/esp_system/memory.ld - -build p256m: phony esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a - -build partition-table: phony esp-idf/partition_table/partition-table - -build partition-table-flash: phony esp-idf/partition_table/partition-table-flash - -build partition_table: phony esp-idf/partition_table/partition_table - -build partition_table-flash: phony esp-idf/partition_table/partition_table-flash - -build partition_table_bin: phony esp-idf/partition_table/partition_table_bin - -build sections.ld.in: phony esp-idf/esp_system/sections.ld.in - -build show-efuse-table: phony esp-idf/efuse/show-efuse-table - -build show_efuse_table: phony esp-idf/efuse/show_efuse_table - -# ============================================================================= -# Folder targets. - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build - -build all: phony bootloader app open-thread-rcp.elf esp-idf/all - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf - -build esp-idf/all: phony esp-idf/riscv/all esp-idf/esp_driver_gpio/all esp-idf/esp_timer/all esp-idf/esp_pm/all esp-idf/mbedtls/all esp-idf/bootloader/all esp-idf/esptool_py/all esp-idf/partition_table/all esp-idf/esp_app_format/all esp-idf/esp_bootloader_format/all esp-idf/app_update/all esp-idf/esp_partition/all esp-idf/efuse/all esp-idf/bootloader_support/all esp-idf/esp_mm/all esp-idf/spi_flash/all esp-idf/esp_system/all esp-idf/esp_common/all esp-idf/esp_rom/all esp-idf/hal/all esp-idf/log/all esp-idf/heap/all esp-idf/soc/all esp-idf/esp_security/all esp-idf/esp_hw_support/all esp-idf/freertos/all esp-idf/newlib/all esp-idf/pthread/all esp-idf/cxx/all esp-idf/esp_coex/all esp-idf/esp_event/all esp-idf/nvs_flash/all esp-idf/esp_ringbuf/all esp-idf/esp_driver_uart/all esp-idf/esp_driver_usb_serial_jtag/all esp-idf/esp_vfs_console/all esp-idf/vfs/all esp-idf/lwip/all esp-idf/esp_netif_stack/all esp-idf/esp_netif/all esp-idf/esp_driver_pcnt/all esp-idf/esp_driver_gptimer/all esp-idf/esp_driver_spi/all esp-idf/esp_driver_mcpwm/all esp-idf/esp_driver_ana_cmpr/all esp-idf/esp_driver_i2s/all esp-idf/sdmmc/all esp-idf/esp_driver_sdmmc/all esp-idf/esp_driver_sdspi/all esp-idf/esp_driver_sdio/all esp-idf/esp_driver_dac/all esp-idf/esp_driver_bitscrambler/all esp-idf/esp_driver_rmt/all esp-idf/esp_driver_tsens/all esp-idf/esp_driver_sdm/all esp-idf/esp_driver_i2c/all esp-idf/esp_driver_ledc/all esp-idf/esp_driver_parlio/all esp-idf/esp_driver_twai/all esp-idf/driver/all esp-idf/console/all esp-idf/wpa_supplicant/all esp-idf/esp_wifi/all esp-idf/esp_phy/all esp-idf/ieee802154/all esp-idf/openthread/all esp-idf/main/all - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/app_update - -build esp-idf/app_update/all: phony esp-idf/app_update/libapp_update.a - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/bootloader - -build esp-idf/bootloader/all: phony - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/bootloader_support - -build esp-idf/bootloader_support/all: phony esp-idf/bootloader_support/libbootloader_support.a - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/console - -build esp-idf/console/all: phony esp-idf/console/libconsole.a - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/cxx - -build esp-idf/cxx/all: phony esp-idf/cxx/libcxx.a - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/driver - -build esp-idf/driver/all: phony esp-idf/driver/libdriver.a - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/efuse - -build esp-idf/efuse/all: phony esp-idf/efuse/libefuse.a - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_app_format - -build esp-idf/esp_app_format/all: phony esp-idf/esp_app_format/libesp_app_format.a - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_bootloader_format - -build esp-idf/esp_bootloader_format/all: phony esp-idf/esp_bootloader_format/libesp_bootloader_format.a - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_coex - -build esp-idf/esp_coex/all: phony - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_common - -build esp-idf/esp_common/all: phony esp-idf/esp_common/libesp_common.a - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_ana_cmpr - -build esp-idf/esp_driver_ana_cmpr/all: phony esp-idf/esp_driver_ana_cmpr/libesp_driver_ana_cmpr.a - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_bitscrambler - -build esp-idf/esp_driver_bitscrambler/all: phony - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_dac - -build esp-idf/esp_driver_dac/all: phony - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_gpio - -build esp-idf/esp_driver_gpio/all: phony esp-idf/esp_driver_gpio/libesp_driver_gpio.a - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_gptimer - -build esp-idf/esp_driver_gptimer/all: phony esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_i2c - -build esp-idf/esp_driver_i2c/all: phony esp-idf/esp_driver_i2c/libesp_driver_i2c.a - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_i2s - -build esp-idf/esp_driver_i2s/all: phony esp-idf/esp_driver_i2s/libesp_driver_i2s.a - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_ledc - -build esp-idf/esp_driver_ledc/all: phony esp-idf/esp_driver_ledc/libesp_driver_ledc.a - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_mcpwm - -build esp-idf/esp_driver_mcpwm/all: phony esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_parlio - -build esp-idf/esp_driver_parlio/all: phony esp-idf/esp_driver_parlio/libesp_driver_parlio.a - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_pcnt - -build esp-idf/esp_driver_pcnt/all: phony esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_rmt - -build esp-idf/esp_driver_rmt/all: phony esp-idf/esp_driver_rmt/libesp_driver_rmt.a - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_sdio - -build esp-idf/esp_driver_sdio/all: phony - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_sdm - -build esp-idf/esp_driver_sdm/all: phony esp-idf/esp_driver_sdm/libesp_driver_sdm.a - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_sdmmc - -build esp-idf/esp_driver_sdmmc/all: phony - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_sdspi - -build esp-idf/esp_driver_sdspi/all: phony esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_spi - -build esp-idf/esp_driver_spi/all: phony esp-idf/esp_driver_spi/libesp_driver_spi.a - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_tsens - -build esp-idf/esp_driver_tsens/all: phony esp-idf/esp_driver_tsens/libesp_driver_tsens.a - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_twai - -build esp-idf/esp_driver_twai/all: phony esp-idf/esp_driver_twai/libesp_driver_twai.a - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_uart - -build esp-idf/esp_driver_uart/all: phony esp-idf/esp_driver_uart/libesp_driver_uart.a - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_usb_serial_jtag - -build esp-idf/esp_driver_usb_serial_jtag/all: phony esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_event - -build esp-idf/esp_event/all: phony esp-idf/esp_event/libesp_event.a - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support - -build esp-idf/esp_hw_support/all: phony esp-idf/esp_hw_support/libesp_hw_support.a esp-idf/esp_hw_support/port/esp32h2/all esp-idf/esp_hw_support/lowpower/all - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/lowpower - -build esp-idf/esp_hw_support/lowpower/all: phony - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/port/esp32h2 - -build esp-idf/esp_hw_support/port/esp32h2/all: phony - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_mm - -build esp-idf/esp_mm/all: phony esp-idf/esp_mm/libesp_mm.a - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_netif - -build esp-idf/esp_netif/all: phony esp-idf/esp_netif/libesp_netif.a - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_netif_stack - -build esp-idf/esp_netif_stack/all: phony - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_partition - -build esp-idf/esp_partition/all: phony esp-idf/esp_partition/libesp_partition.a - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_phy - -build esp-idf/esp_phy/all: phony esp-idf/esp_phy/libesp_phy.a - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_pm - -build esp-idf/esp_pm/all: phony esp-idf/esp_pm/libesp_pm.a - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_ringbuf - -build esp-idf/esp_ringbuf/all: phony esp-idf/esp_ringbuf/libesp_ringbuf.a - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_rom - -build esp-idf/esp_rom/all: phony esp-idf/esp_rom/libesp_rom.a - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_security - -build esp-idf/esp_security/all: phony esp-idf/esp_security/libesp_security.a - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_system - -build esp-idf/esp_system/all: phony esp-idf/esp_system/libesp_system.a esp-idf/esp_system/port/all - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/port - -build esp-idf/esp_system/port/all: phony esp-idf/esp_system/port/soc/esp32h2/all - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/port/soc/esp32h2 - -build esp-idf/esp_system/port/soc/esp32h2/all: phony - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_timer - -build esp-idf/esp_timer/all: phony esp-idf/esp_timer/libesp_timer.a - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_vfs_console - -build esp-idf/esp_vfs_console/all: phony esp-idf/esp_vfs_console/libesp_vfs_console.a - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_wifi - -build esp-idf/esp_wifi/all: phony esp-idf/esp_wifi/libesp_wifi.a - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esptool_py - -build esp-idf/esptool_py/all: phony - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/freertos - -build esp-idf/freertos/all: phony esp-idf/freertos/libfreertos.a - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/hal - -build esp-idf/hal/all: phony esp-idf/hal/libhal.a - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/heap - -build esp-idf/heap/all: phony esp-idf/heap/libheap.a - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/ieee802154 - -build esp-idf/ieee802154/all: phony esp-idf/ieee802154/libieee802154.a - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/log - -build esp-idf/log/all: phony esp-idf/log/liblog.a - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/lwip - -build esp-idf/lwip/all: phony esp-idf/lwip/liblwip.a - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/main - -build esp-idf/main/all: phony esp-idf/main/libmain.a - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls - -build esp-idf/mbedtls/all: phony esp-idf/mbedtls/libmbedtls.a esp-idf/mbedtls/mbedtls/all - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls - -build esp-idf/mbedtls/mbedtls/all: phony esp-idf/mbedtls/mbedtls/include/all esp-idf/mbedtls/mbedtls/3rdparty/all esp-idf/mbedtls/mbedtls/library/all esp-idf/mbedtls/mbedtls/pkgconfig/all - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/3rdparty - -build esp-idf/mbedtls/mbedtls/3rdparty/all: phony esp-idf/mbedtls/mbedtls/3rdparty/everest/all esp-idf/mbedtls/mbedtls/3rdparty/p256-m/all - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/3rdparty/everest - -build esp-idf/mbedtls/mbedtls/3rdparty/everest/all: phony esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m - -build esp-idf/mbedtls/mbedtls/3rdparty/p256-m/all: phony esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/include - -build esp-idf/mbedtls/mbedtls/include/all: phony - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library - -build esp-idf/mbedtls/mbedtls/library/all: phony esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/pkgconfig - -build esp-idf/mbedtls/mbedtls/pkgconfig/all: phony - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/newlib - -build esp-idf/newlib/all: phony esp-idf/newlib/libnewlib.a esp-idf/newlib/src/port/all - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/newlib/src/port - -build esp-idf/newlib/src/port/all: phony - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/nvs_flash - -build esp-idf/nvs_flash/all: phony esp-idf/nvs_flash/libnvs_flash.a - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/openthread - -build esp-idf/openthread/all: phony esp-idf/openthread/libopenthread.a - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/partition_table - -build esp-idf/partition_table/all: phony - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/pthread - -build esp-idf/pthread/all: phony esp-idf/pthread/libpthread.a - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/riscv - -build esp-idf/riscv/all: phony esp-idf/riscv/libriscv.a - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/sdmmc - -build esp-idf/sdmmc/all: phony esp-idf/sdmmc/libsdmmc.a - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/soc - -build esp-idf/soc/all: phony esp-idf/soc/libsoc.a - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/spi_flash - -build esp-idf/spi_flash/all: phony esp-idf/spi_flash/libspi_flash.a - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/vfs - -build esp-idf/vfs/all: phony esp-idf/vfs/libvfs.a - -# ============================================================================= - -############################################# -# Folder: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/wpa_supplicant - -build esp-idf/wpa_supplicant/all: phony - -# ============================================================================= -# Built-in targets - - -############################################# -# Re-run CMake if any of its inputs changed. - -build build.ninja: RERUN_CMAKE | C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeASMCompiler.cmake.in C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeASMInformation.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompiler.cmake.in C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCInformation.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompiler.cmake.in C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXInformation.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCommonLanguageInclude.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCompilerIdDetection.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineASMCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCXXCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerSupport.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineSystem.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeFindBinUtils.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeGenericSystem.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeInitializeConfigs.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeLanguageInformation.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeNinjaFindMake.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakePackageConfigHelpers.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeParseImplicitIncludeInfo.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeParseImplicitLinkInfo.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeParseLibraryArchitecture.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakePrintHelpers.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeSystem.cmake.in C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeSystemSpecificInformation.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeSystemSpecificInitialize.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestASMCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCompilerCommon.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCCompilerFlag.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCSourceCompiles.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCXXCompilerFlag.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCXXSourceCompiles.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckIncludeFile.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckLibraryExists.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/ADSP-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/ARMCC-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/ARMClang-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/AppleClang-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Borland-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Bruce-C-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/CMakeCommonCompilerMacros.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Clang-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Clang-DetermineCompilerInternal.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Compaq-C-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Cray-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/CrayClang-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Embarcadero-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Fujitsu-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GHS-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-ASM.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-C-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-C.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-CXX.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-FindBinUtils.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/HP-C-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/HP-CXX-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IAR-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IBMClang-C-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Intel-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/LCC-C-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/MSVC-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/NVHPC-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/NVIDIA-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/OrangeC-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/PGI-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/PathScale-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/SCO-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/SDCC-C-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/SunPro-C-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/TI-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/TIClang-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Tasking-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Watcom-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/XL-C-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/XL-CXX-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/XLClang-C-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/zOS-C-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/PatchInfo.txt.in C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/RepositoryInfo.txt.in C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/UpdateInfo.txt.in C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/cfgcmd.txt.in C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/mkdirs.cmake.in C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/shared_internal_commands.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindGit.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindPackageHandleStandardArgs.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindPackageMessage.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindPython3.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindPython/Support.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindThreads.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/GNUInstallDirs.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CMakeDetermineLinkerId.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckCompilerFlag.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckFlagCommonConfig.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckSourceCompiles.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/FeatureTesting.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Platform/Generic.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/WriteBasicConfigVersionFile.cmake C$:/Users/Laurent/Desktop/board-mate/.git/HEAD C$:/Users/Laurent/Desktop/board-mate/.git/refs/heads/main C$:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/CMakeLists.txt C$:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/main/CMakeLists.txt C$:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/partitions.csv C$:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/sdkconfig C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/bootloader/subproject/components/micro-ecc/micro-ecc/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/bt/controller/lib_esp32/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/bt/controller/lib_esp32c3_family/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/bt/controller/lib_esp32c5/esp32c5-bt-lib/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/bt/controller/lib_esp32c6/esp32c6-bt-lib/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/bt/esp_ble_mesh/lib/lib/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/bt/host/nimble/nimble/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/cmock/CMock/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/esp_coex/lib/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/esp_phy/lib/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/esp_wifi/lib/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/heap/tlsf/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/json/cJSON/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/lwip/lwip/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/mbedtls/mbedtls/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/mqtt/esp-mqtt/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/openthread/lib/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/openthread/openthread/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/protobuf-c/protobuf-c/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/spiffs/spiffs/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/unity/unity/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/app_update/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/project_include.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bt/controller/lib_esp32/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bt/controller/lib_esp32c3_family/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bt/controller/lib_esp32c5/esp32c5-bt-lib/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bt/controller/lib_esp32c6/esp32c6-bt-lib/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bt/esp_ble_mesh/lib/lib/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bt/host/nimble/nimble/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/cmock/CMock/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/cxx/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/sources.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/lib/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/project_include.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_bitscrambler/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_bitscrambler/project_include.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/lowpower/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif_stack/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/ld/ld.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc/esp32h2/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_wifi/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_wifi/lib/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esptool_py/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esptool_py/espefuse.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esptool_py/project_include.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/json/cJSON/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/error.c C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_driver_wrappers_no_static.c C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ssl_debug_helpers_generated.c C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/version_features.c C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/pkgconfig/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mqtt/esp-mqtt/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/project_include.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/src/port/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/project_include.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/lib/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/partition_table/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/partition_table/project_include.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/protobuf-c/protobuf-c/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/pthread/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/project_include.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/spiffs/spiffs/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/unity/unity/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/wpa_supplicant/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/build.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/component.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/depgraph.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/dfu.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/gdbinit.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/git_submodules.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/idf.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/kconfig.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/ldgen.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/openocd.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/prefix_map.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/project.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/project_description.json.in C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/symbols.gdbinit.in C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/targets.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake.in C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/tool_version_check.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/toolchain-esp32h2.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/utilities.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/version.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/kconfig_new/confgen.py C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/kconfig_new/config.env.in CMakeCache.txt CMakeFiles/3.30.2/CMakeASMCompiler.cmake CMakeFiles/3.30.2/CMakeCCompiler.cmake CMakeFiles/3.30.2/CMakeCXXCompiler.cmake CMakeFiles/3.30.2/CMakeSystem.cmake CMakeFiles/git-data/grabRef.cmake app-flash_args bootloader-flash_args bootloader-prefix/tmp/bootloader-mkdirs.cmake config/sdkconfig.cmake config/sdkconfig.h esp-idf/bootloader/bootloader-flash_args.in esp-idf/esptool_py/app-flash_args.in esp-idf/esptool_py/flasher_args.json.in esp-idf/partition_table/partition-table-flash_args.in flash_args flash_args.in ldgen_libraries.in - pool = console - - -############################################# -# A missing CMake input file is not an error. - -build C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeASMCompiler.cmake.in C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeASMInformation.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompiler.cmake.in C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCCompilerABI.c C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCInformation.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompiler.cmake.in C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCXXInformation.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCommonLanguageInclude.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeCompilerIdDetection.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineASMCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCXXCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineCompilerSupport.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeDetermineSystem.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeFindBinUtils.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeGenericSystem.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeInitializeConfigs.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeLanguageInformation.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeNinjaFindMake.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakePackageConfigHelpers.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeParseImplicitIncludeInfo.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeParseImplicitLinkInfo.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeParseLibraryArchitecture.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakePrintHelpers.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeSystem.cmake.in C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeSystemSpecificInformation.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeSystemSpecificInitialize.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestASMCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CMakeTestCompilerCommon.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCCompilerFlag.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCSourceCompiles.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCXXCompilerFlag.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckCXXSourceCompiles.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckIncludeFile.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/CheckLibraryExists.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/ADSP-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/ARMCC-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/ARMClang-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/AppleClang-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Borland-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Bruce-C-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/CMakeCommonCompilerMacros.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Clang-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Clang-DetermineCompilerInternal.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Compaq-C-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Cray-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/CrayClang-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Embarcadero-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Fujitsu-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GHS-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-ASM.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-C-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-C.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-CXX.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU-FindBinUtils.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/GNU.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/HP-C-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/HP-CXX-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IAR-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IBMClang-C-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Intel-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/LCC-C-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/MSVC-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/NVHPC-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/NVIDIA-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/OrangeC-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/PGI-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/PathScale-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/SCO-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/SDCC-C-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/SunPro-C-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/TI-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/TIClang-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Tasking-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/Watcom-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/XL-C-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/XL-CXX-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/XLClang-C-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/zOS-C-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/PatchInfo.txt.in C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/RepositoryInfo.txt.in C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/UpdateInfo.txt.in C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/cfgcmd.txt.in C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/mkdirs.cmake.in C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/ExternalProject/shared_internal_commands.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindGit.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindPackageHandleStandardArgs.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindPackageMessage.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindPython3.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindPython/Support.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/FindThreads.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/GNUInstallDirs.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CMakeDetermineLinkerId.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckCompilerFlag.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckFlagCommonConfig.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/CheckSourceCompiles.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Internal/FeatureTesting.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/Platform/Generic.cmake C$:/Users/Laurent/.espressif/tools/cmake/3.30.2/share/cmake-3.30/Modules/WriteBasicConfigVersionFile.cmake C$:/Users/Laurent/Desktop/board-mate/.git/HEAD C$:/Users/Laurent/Desktop/board-mate/.git/refs/heads/main C$:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/CMakeLists.txt C$:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/main/CMakeLists.txt C$:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/partitions.csv C$:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/sdkconfig C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/bootloader/subproject/components/micro-ecc/micro-ecc/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/bt/controller/lib_esp32/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/bt/controller/lib_esp32c3_family/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/bt/controller/lib_esp32c5/esp32c5-bt-lib/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/bt/controller/lib_esp32c6/esp32c6-bt-lib/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/bt/esp_ble_mesh/lib/lib/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/bt/host/nimble/nimble/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/cmock/CMock/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/esp_coex/lib/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/esp_phy/lib/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/esp_wifi/lib/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/heap/tlsf/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/json/cJSON/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/lwip/lwip/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/mbedtls/mbedtls/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/mqtt/esp-mqtt/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/openthread/lib/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/openthread/openthread/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/protobuf-c/protobuf-c/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/spiffs/spiffs/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/.git/modules/components/unity/unity/HEAD C$:/Users/Laurent/esp/v5.5.1/esp-idf/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/app_update/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/project_include.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bt/controller/lib_esp32/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bt/controller/lib_esp32c2/esp32c2-bt-lib/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bt/controller/lib_esp32c3_family/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bt/controller/lib_esp32c5/esp32c5-bt-lib/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bt/controller/lib_esp32c6/esp32c6-bt-lib/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bt/controller/lib_esp32h2/esp32h2-bt-lib/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bt/esp_ble_mesh/lib/lib/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/bt/host/nimble/nimble/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/cmock/CMock/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/cxx/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/sources.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/lib/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/project_include.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_bitscrambler/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_bitscrambler/project_include.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/lowpower/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif_stack/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/ld/ld.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc/esp32h2/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_wifi/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_wifi/lib/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esptool_py/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esptool_py/espefuse.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/esptool_py/project_include.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/json/cJSON/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/error.c C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_driver_wrappers_no_static.c C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ssl_debug_helpers_generated.c C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/version_features.c C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/pkgconfig/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/mqtt/esp-mqtt/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/project_include.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/src/port/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/project_include.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/lib/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/partition_table/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/partition_table/project_include.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/protobuf-c/protobuf-c/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/pthread/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/project_include.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/spiffs/spiffs/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/unity/unity/.git C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/components/wpa_supplicant/CMakeLists.txt C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/build.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/component.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/depgraph.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/dfu.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/gdbinit.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/git_submodules.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/idf.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/kconfig.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/ldgen.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/openocd.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/prefix_map.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/project.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/project_description.json.in C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/symbols.gdbinit.in C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/targets.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake.in C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/tool_version_check.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/toolchain-esp32h2.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/utilities.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/cmake/version.cmake C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/kconfig_new/confgen.py C$:/Users/Laurent/esp/v5.5.1/esp-idf/tools/kconfig_new/config.env.in CMakeCache.txt CMakeFiles/3.30.2/CMakeASMCompiler.cmake CMakeFiles/3.30.2/CMakeCCompiler.cmake CMakeFiles/3.30.2/CMakeCXXCompiler.cmake CMakeFiles/3.30.2/CMakeSystem.cmake CMakeFiles/git-data/grabRef.cmake app-flash_args bootloader-flash_args bootloader-prefix/tmp/bootloader-mkdirs.cmake config/sdkconfig.cmake config/sdkconfig.h esp-idf/bootloader/bootloader-flash_args.in esp-idf/esptool_py/app-flash_args.in esp-idf/esptool_py/flasher_args.json.in esp-idf/partition_table/partition-table-flash_args.in flash_args flash_args.in ldgen_libraries.in: phony - - -############################################# -# Clean additional files. - -build CMakeFiles/clean.additional: CLEAN_ADDITIONAL - - -############################################# -# Clean all the built files. - -build clean: CLEAN CMakeFiles/clean.additional - - -############################################# -# Print all primary targets available. - -build help: HELP - - -############################################# -# Make the all target the default. - -default all diff --git a/esp32-thread/open-thread-rcp/build/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/cmake_install.cmake deleted file mode 100644 index ae5c2c0b..00000000 --- a/esp32-thread/open-thread-rcp/build/cmake_install.cmake +++ /dev/null @@ -1,62 +0,0 @@ -# Install script for directory: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/cmake_install.cmake") -endif() - -if(CMAKE_INSTALL_COMPONENT) - if(CMAKE_INSTALL_COMPONENT MATCHES "^[a-zA-Z0-9_.+-]+$") - set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") - else() - string(MD5 CMAKE_INST_COMP_HASH "${CMAKE_INSTALL_COMPONENT}") - set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INST_COMP_HASH}.txt") - unset(CMAKE_INST_COMP_HASH) - endif() -else() - set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT - "${CMAKE_INSTALL_MANIFEST_FILES}") - file(WRITE "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/${CMAKE_INSTALL_MANIFEST}" - "${CMAKE_INSTALL_MANIFEST_CONTENT}") -endif() diff --git a/esp32-thread/open-thread-rcp/build/compile_commands.json b/esp32-thread/open-thread-rcp/build/compile_commands.json deleted file mode 100644 index 4c2dcf44..00000000 --- a/esp32-thread/open-thread-rcp/build/compile_commands.json +++ /dev/null @@ -1,5306 +0,0 @@ -[ -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/pthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_bitscrambler/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/main -march=rv32imac_zicsr_zifencei -fdiagnostics-color=always -o CMakeFiles\\open-thread-rcp.elf.dir\\project_elf_src_esp32h2.c.obj -c C:\\Users\\Laurent\\Desktop\\board-mate\\esp32-thread\\open-thread-rcp\\build\\project_elf_src_esp32h2.c", - "file": "C:\\Users\\Laurent\\Desktop\\board-mate\\esp32-thread\\open-thread-rcp\\build\\project_elf_src_esp32h2.c", - "output": "CMakeFiles\\open-thread-rcp.elf.dir\\project_elf_src_esp32h2.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\riscv\\CMakeFiles\\__idf_riscv.dir\\instruction_decode.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\riscv\\instruction_decode.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\riscv\\instruction_decode.c", - "output": "esp-idf\\riscv\\CMakeFiles\\__idf_riscv.dir\\instruction_decode.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\riscv\\CMakeFiles\\__idf_riscv.dir\\interrupt.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\riscv\\interrupt.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\riscv\\interrupt.c", - "output": "esp-idf\\riscv\\CMakeFiles\\__idf_riscv.dir\\interrupt.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\riscv\\CMakeFiles\\__idf_riscv.dir\\rv_utils.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\riscv\\rv_utils.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\riscv\\rv_utils.c", - "output": "esp-idf\\riscv\\CMakeFiles\\__idf_riscv.dir\\rv_utils.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\riscv\\CMakeFiles\\__idf_riscv.dir\\vectors.S.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\riscv\\vectors.S", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\riscv\\vectors.S", - "output": "esp-idf\\riscv\\CMakeFiles\\__idf_riscv.dir\\vectors.S.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\riscv\\CMakeFiles\\__idf_riscv.dir\\interrupt_plic.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\riscv\\interrupt_plic.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\riscv\\interrupt_plic.c", - "output": "esp-idf\\riscv\\CMakeFiles\\__idf_riscv.dir\\interrupt_plic.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\riscv\\CMakeFiles\\__idf_riscv.dir\\vectors_intc.S.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\riscv\\vectors_intc.S", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\riscv\\vectors_intc.S", - "output": "esp-idf\\riscv\\CMakeFiles\\__idf_riscv.dir\\vectors_intc.S.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_gpio\\CMakeFiles\\__idf_esp_driver_gpio.dir\\src\\gpio.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_gpio\\src\\gpio.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_gpio\\src\\gpio.c", - "output": "esp-idf\\esp_driver_gpio\\CMakeFiles\\__idf_esp_driver_gpio.dir\\src\\gpio.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_gpio\\CMakeFiles\\__idf_esp_driver_gpio.dir\\src\\gpio_glitch_filter_ops.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_gpio\\src\\gpio_glitch_filter_ops.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_gpio\\src\\gpio_glitch_filter_ops.c", - "output": "esp-idf\\esp_driver_gpio\\CMakeFiles\\__idf_esp_driver_gpio.dir\\src\\gpio_glitch_filter_ops.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_gpio\\CMakeFiles\\__idf_esp_driver_gpio.dir\\src\\rtc_io.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_gpio\\src\\rtc_io.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_gpio\\src\\rtc_io.c", - "output": "esp-idf\\esp_driver_gpio\\CMakeFiles\\__idf_esp_driver_gpio.dir\\src\\rtc_io.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_gpio\\CMakeFiles\\__idf_esp_driver_gpio.dir\\src\\dedic_gpio.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_gpio\\src\\dedic_gpio.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_gpio\\src\\dedic_gpio.c", - "output": "esp-idf\\esp_driver_gpio\\CMakeFiles\\__idf_esp_driver_gpio.dir\\src\\dedic_gpio.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_gpio\\CMakeFiles\\__idf_esp_driver_gpio.dir\\src\\gpio_pin_glitch_filter.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_gpio\\src\\gpio_pin_glitch_filter.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_gpio\\src\\gpio_pin_glitch_filter.c", - "output": "esp-idf\\esp_driver_gpio\\CMakeFiles\\__idf_esp_driver_gpio.dir\\src\\gpio_pin_glitch_filter.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_gpio\\CMakeFiles\\__idf_esp_driver_gpio.dir\\src\\gpio_flex_glitch_filter.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_gpio\\src\\gpio_flex_glitch_filter.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_gpio\\src\\gpio_flex_glitch_filter.c", - "output": "esp-idf\\esp_driver_gpio\\CMakeFiles\\__idf_esp_driver_gpio.dir\\src\\gpio_flex_glitch_filter.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_gpio\\CMakeFiles\\__idf_esp_driver_gpio.dir\\src\\gpio_etm.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_gpio\\src\\gpio_etm.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_gpio\\src\\gpio_etm.c", - "output": "esp-idf\\esp_driver_gpio\\CMakeFiles\\__idf_esp_driver_gpio.dir\\src\\gpio_etm.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\\src\\esp_timer.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_timer\\src\\esp_timer.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_timer\\src\\esp_timer.c", - "output": "esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\\src\\esp_timer.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\\src\\esp_timer_init.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_timer\\src\\esp_timer_init.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_timer\\src\\esp_timer_init.c", - "output": "esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\\src\\esp_timer_init.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\\src\\ets_timer_legacy.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_timer\\src\\ets_timer_legacy.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_timer\\src\\ets_timer_legacy.c", - "output": "esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\\src\\ets_timer_legacy.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\\src\\system_time.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_timer\\src\\system_time.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_timer\\src\\system_time.c", - "output": "esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\\src\\system_time.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\\src\\esp_timer_impl_common.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_timer\\src\\esp_timer_impl_common.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_timer\\src\\esp_timer_impl_common.c", - "output": "esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\\src\\esp_timer_impl_common.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\\src\\esp_timer_impl_systimer.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_timer\\src\\esp_timer_impl_systimer.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_timer\\src\\esp_timer_impl_systimer.c", - "output": "esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\\src\\esp_timer_impl_systimer.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\\src\\esp_timer_etm.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_timer\\src\\esp_timer_etm.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_timer\\src\\esp_timer_etm.c", - "output": "esp-idf\\esp_timer\\CMakeFiles\\__idf_esp_timer.dir\\src\\esp_timer_etm.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_pm\\CMakeFiles\\__idf_esp_pm.dir\\pm_locks.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_pm\\pm_locks.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_pm\\pm_locks.c", - "output": "esp-idf\\esp_pm\\CMakeFiles\\__idf_esp_pm.dir\\pm_locks.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_pm\\CMakeFiles\\__idf_esp_pm.dir\\pm_trace.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_pm\\pm_trace.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_pm\\pm_trace.c", - "output": "esp-idf\\esp_pm\\CMakeFiles\\__idf_esp_pm.dir\\pm_trace.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_pm\\CMakeFiles\\__idf_esp_pm.dir\\pm_impl.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_pm\\pm_impl.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_pm\\pm_impl.c", - "output": "esp-idf\\esp_pm\\CMakeFiles\\__idf_esp_pm.dir\\pm_impl.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\CMakeFiles\\__idf_mbedtls.dir\\esp_crt_bundle\\esp_crt_bundle.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\esp_crt_bundle\\esp_crt_bundle.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\esp_crt_bundle\\esp_crt_bundle.c", - "output": "esp-idf\\mbedtls\\CMakeFiles\\__idf_mbedtls.dir\\esp_crt_bundle\\esp_crt_bundle.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\mbedtls\\CMakeFiles\\__idf_mbedtls.dir\\__\\__\\x509_crt_bundle.S.obj -c C:\\Users\\Laurent\\Desktop\\board-mate\\esp32-thread\\open-thread-rcp\\build\\x509_crt_bundle.S", - "file": "C:\\Users\\Laurent\\Desktop\\board-mate\\esp32-thread\\open-thread-rcp\\build\\x509_crt_bundle.S", - "output": "esp-idf\\mbedtls\\CMakeFiles\\__idf_mbedtls.dir\\__\\__\\x509_crt_bundle.S.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest/kremlib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\3rdparty\\everest\\CMakeFiles\\everest.dir\\library\\everest.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\3rdparty\\everest\\library\\everest.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\3rdparty\\everest\\library\\everest.c", - "output": "esp-idf\\mbedtls\\mbedtls\\3rdparty\\everest\\CMakeFiles\\everest.dir\\library\\everest.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest/kremlib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\3rdparty\\everest\\CMakeFiles\\everest.dir\\library\\x25519.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\3rdparty\\everest\\library\\x25519.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\3rdparty\\everest\\library\\x25519.c", - "output": "esp-idf\\mbedtls\\mbedtls\\3rdparty\\everest\\CMakeFiles\\everest.dir\\library\\x25519.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest/kremlib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\3rdparty\\everest\\CMakeFiles\\everest.dir\\library\\Hacl_Curve25519_joined.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\3rdparty\\everest\\library\\Hacl_Curve25519_joined.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\3rdparty\\everest\\library\\Hacl_Curve25519_joined.c", - "output": "esp-idf\\mbedtls\\mbedtls\\3rdparty\\everest\\CMakeFiles\\everest.dir\\library\\Hacl_Curve25519_joined.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\3rdparty\\p256-m\\CMakeFiles\\p256m.dir\\p256-m_driver_entrypoints.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\3rdparty\\p256-m\\p256-m_driver_entrypoints.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\3rdparty\\p256-m\\p256-m_driver_entrypoints.c", - "output": "esp-idf\\mbedtls\\mbedtls\\3rdparty\\p256-m\\CMakeFiles\\p256m.dir\\p256-m_driver_entrypoints.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\3rdparty\\p256-m\\CMakeFiles\\p256m.dir\\p256-m\\p256-m.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\3rdparty\\p256-m\\p256-m\\p256-m.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\3rdparty\\p256-m\\p256-m\\p256-m.c", - "output": "esp-idf\\mbedtls\\mbedtls\\3rdparty\\p256-m\\CMakeFiles\\p256m.dir\\p256-m\\p256-m.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\aes.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\aes.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\aes.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\aes.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\aesni.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\aesni.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\aesni.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\aesni.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\aesce.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\aesce.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\aesce.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\aesce.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\aria.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\aria.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\aria.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\aria.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\asn1parse.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\asn1parse.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\asn1parse.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\asn1parse.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\asn1write.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\asn1write.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\asn1write.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\asn1write.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\base64.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\base64.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\base64.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\base64.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\bignum.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\bignum.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\bignum.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\bignum.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\bignum_core.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\bignum_core.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\bignum_core.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\bignum_core.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\bignum_mod.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\bignum_mod.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\bignum_mod.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\bignum_mod.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\bignum_mod_raw.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\bignum_mod_raw.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\bignum_mod_raw.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\bignum_mod_raw.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\block_cipher.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\block_cipher.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\block_cipher.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\block_cipher.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\camellia.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\camellia.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\camellia.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\camellia.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ccm.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ccm.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ccm.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ccm.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\chacha20.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\chacha20.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\chacha20.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\chacha20.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\chachapoly.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\chachapoly.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\chachapoly.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\chachapoly.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\cipher.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\cipher.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\cipher.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\cipher.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\cipher_wrap.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\cipher_wrap.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\cipher_wrap.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\cipher_wrap.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\constant_time.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\constant_time.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\constant_time.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\constant_time.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\cmac.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\cmac.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\cmac.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\cmac.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ctr_drbg.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ctr_drbg.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ctr_drbg.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ctr_drbg.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\des.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\des.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\des.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\des.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\dhm.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\dhm.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\dhm.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\dhm.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ecdh.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ecdh.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ecdh.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ecdh.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ecdsa.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ecdsa.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ecdsa.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ecdsa.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ecjpake.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ecjpake.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ecjpake.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ecjpake.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ecp.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ecp.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ecp.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ecp.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ecp_curves.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ecp_curves.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ecp_curves.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ecp_curves.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ecp_curves_new.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ecp_curves_new.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ecp_curves_new.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ecp_curves_new.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\entropy.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\entropy.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\entropy.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\entropy.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\entropy_poll.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\entropy_poll.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\entropy_poll.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\entropy_poll.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\error.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\error.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\error.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\error.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\gcm.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\gcm.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\gcm.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\gcm.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\hkdf.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\hkdf.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\hkdf.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\hkdf.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\hmac_drbg.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\hmac_drbg.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\hmac_drbg.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\hmac_drbg.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\lmots.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\lmots.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\lmots.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\lmots.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\lms.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\lms.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\lms.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\lms.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\md.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\md.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\md.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\md.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\md5.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\md5.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\md5.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\md5.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\memory_buffer_alloc.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\memory_buffer_alloc.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\memory_buffer_alloc.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\memory_buffer_alloc.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\nist_kw.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\nist_kw.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\nist_kw.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\nist_kw.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\oid.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\oid.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\oid.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\oid.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\padlock.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\padlock.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\padlock.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\padlock.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\pem.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pem.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pem.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\pem.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\pk.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pk.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pk.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\pk.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\pk_ecc.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pk_ecc.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pk_ecc.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\pk_ecc.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\pk_wrap.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pk_wrap.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pk_wrap.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\pk_wrap.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\pkcs12.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pkcs12.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pkcs12.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\pkcs12.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\pkcs5.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pkcs5.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pkcs5.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\pkcs5.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\pkparse.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pkparse.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pkparse.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\pkparse.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\pkwrite.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pkwrite.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pkwrite.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\pkwrite.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\platform.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\platform.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\platform.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\platform.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\platform_util.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\platform_util.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\platform_util.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\platform_util.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\poly1305.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\poly1305.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\poly1305.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\poly1305.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_aead.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_aead.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_aead.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_aead.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_cipher.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_cipher.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_cipher.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_cipher.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_client.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_client.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_client.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_client.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_driver_wrappers_no_static.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_driver_wrappers_no_static.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_driver_wrappers_no_static.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_driver_wrappers_no_static.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_ecp.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_ecp.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_ecp.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_ecp.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_ffdh.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_ffdh.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_ffdh.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_ffdh.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_hash.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_hash.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_hash.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_hash.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_mac.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_mac.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_mac.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_mac.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_pake.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_pake.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_pake.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_pake.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_rsa.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_rsa.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_rsa.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_rsa.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_se.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_se.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_se.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_se.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_slot_management.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_slot_management.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_slot_management.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_slot_management.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_storage.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_storage.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_crypto_storage.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_crypto_storage.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_its_file.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_its_file.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_its_file.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_its_file.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_util.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_util.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\psa_util.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\psa_util.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ripemd160.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ripemd160.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ripemd160.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\ripemd160.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\rsa.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\rsa.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\rsa.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\rsa.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\rsa_alt_helpers.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\rsa_alt_helpers.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\rsa_alt_helpers.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\rsa_alt_helpers.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\sha1.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\sha1.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\sha1.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\sha1.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\sha256.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\sha256.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\sha256.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\sha256.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\sha512.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\sha512.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\sha512.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\sha512.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\sha3.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\sha3.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\sha3.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\sha3.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\threading.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\threading.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\threading.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\threading.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\timing.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\timing.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\timing.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\timing.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\version.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\version.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\version.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\version.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\version_features.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\version_features.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\version_features.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\version_features.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\sha\\core\\esp_sha_gdma_impl.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\sha\\core\\esp_sha_gdma_impl.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\sha\\core\\esp_sha_gdma_impl.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\sha\\core\\esp_sha_gdma_impl.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\aes\\dma\\esp_aes_gdma_impl.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\aes\\dma\\esp_aes_gdma_impl.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\aes\\dma\\esp_aes_gdma_impl.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\aes\\dma\\esp_aes_gdma_impl.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\aes\\dma\\esp_aes_dma_core.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\aes\\dma\\esp_aes_dma_core.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\aes\\dma\\esp_aes_dma_core.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\aes\\dma\\esp_aes_dma_core.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\crypto_shared_gdma\\esp_crypto_shared_gdma.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\crypto_shared_gdma\\esp_crypto_shared_gdma.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\crypto_shared_gdma\\esp_crypto_shared_gdma.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\crypto_shared_gdma\\esp_crypto_shared_gdma.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_hardware.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_hardware.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_hardware.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_hardware.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_mem.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_mem.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_mem.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_mem.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_timing.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_timing.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_timing.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_timing.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\aes\\esp_aes_xts.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\aes\\esp_aes_xts.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\aes\\esp_aes_xts.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\aes\\esp_aes_xts.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\aes\\esp_aes_common.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\aes\\esp_aes_common.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\aes\\esp_aes_common.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\aes\\esp_aes_common.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\aes\\dma\\esp_aes.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\aes\\dma\\esp_aes.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\aes\\dma\\esp_aes.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\aes\\dma\\esp_aes.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\sha\\esp_sha.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\sha\\esp_sha.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\sha\\esp_sha.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\sha\\esp_sha.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\sha\\core\\sha.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\sha\\core\\sha.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\sha\\core\\sha.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\sha\\core\\sha.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_ds\\esp_rsa_sign_alt.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_ds\\esp_rsa_sign_alt.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_ds\\esp_rsa_sign_alt.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_ds\\esp_rsa_sign_alt.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_ds\\esp_rsa_dec_alt.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_ds\\esp_rsa_dec_alt.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_ds\\esp_rsa_dec_alt.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_ds\\esp_rsa_dec_alt.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_ds\\esp_ds_common.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_ds\\esp_ds_common.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_ds\\esp_ds_common.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_ds\\esp_ds_common.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\bignum\\esp_bignum.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\bignum\\esp_bignum.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\bignum\\esp_bignum.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\bignum\\esp_bignum.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\bignum\\bignum_alt.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\bignum\\bignum_alt.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\bignum\\bignum_alt.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\bignum\\bignum_alt.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\sha\\core\\esp_sha1.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\sha\\core\\esp_sha1.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\sha\\core\\esp_sha1.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\sha\\core\\esp_sha1.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\sha\\core\\esp_sha256.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\sha\\core\\esp_sha256.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\sha\\core\\esp_sha256.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\sha\\core\\esp_sha256.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\sha\\core\\esp_sha512.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\sha\\core\\esp_sha512.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\sha\\core\\esp_sha512.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\sha\\core\\esp_sha512.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\aes\\esp_aes_gcm.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\aes\\esp_aes_gcm.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\aes\\esp_aes_gcm.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\aes\\esp_aes_gcm.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\ecc\\esp_ecc.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\ecc\\esp_ecc.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\ecc\\esp_ecc.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\ecc\\esp_ecc.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\ecc\\ecc_alt.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\ecc\\ecc_alt.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\ecc\\ecc_alt.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\ecc\\ecc_alt.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\ecdsa\\ecdsa_alt.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\ecdsa\\ecdsa_alt.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\ecdsa\\ecdsa_alt.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\ecdsa\\ecdsa_alt.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\md\\esp_md.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\md\\esp_md.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\md\\esp_md.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedcrypto.dir\\C_\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\md\\esp_md.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\pkcs7.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pkcs7.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\pkcs7.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\pkcs7.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509_create.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509_create.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509_create.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509_create.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509_crl.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509_crl.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509_crl.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509_crl.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509_crt.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509_crt.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509_crt.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509_crt.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509_csr.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509_csr.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509_csr.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509_csr.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509write.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509write.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509write.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509write.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509write_crt.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509write_crt.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509write_crt.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509write_crt.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509write_csr.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509write_csr.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\x509write_csr.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedx509.dir\\x509write_csr.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\debug.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\debug.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\debug.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\debug.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\mps_reader.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\mps_reader.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\mps_reader.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\mps_reader.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\mps_trace.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\mps_trace.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\mps_trace.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\mps_trace.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_cache.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_cache.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_cache.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_cache.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_ciphersuites.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_ciphersuites.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_ciphersuites.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_ciphersuites.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_client.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_client.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_client.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_client.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_cookie.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_cookie.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_cookie.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_cookie.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_debug_helpers_generated.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_debug_helpers_generated.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_debug_helpers_generated.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_debug_helpers_generated.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_msg.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_msg.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_msg.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_msg.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_ticket.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_ticket.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_ticket.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_ticket.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_tls.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_tls.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_tls.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_tls.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_tls12_client.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_tls12_client.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_tls12_client.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_tls12_client.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_tls12_server.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_tls12_server.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_tls12_server.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_tls12_server.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_tls13_keys.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_tls13_keys.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_tls13_keys.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_tls13_keys.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_tls13_server.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_tls13_server.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_tls13_server.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_tls13_server.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_tls13_client.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_tls13_client.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_tls13_client.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_tls13_client.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_tls13_generic.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_tls13_generic.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\mbedtls\\library\\ssl_tls13_generic.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\ssl_tls13_generic.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\C_\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\mbedtls_debug.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\mbedtls_debug.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\mbedtls_debug.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\C_\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\mbedtls_debug.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\C_\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_platform_time.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_platform_time.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_platform_time.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\C_\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\esp_platform_time.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\C_\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\net_sockets.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\net_sockets.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\net_sockets.c", - "output": "esp-idf\\mbedtls\\mbedtls\\library\\CMakeFiles\\mbedtls.dir\\C_\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\mbedtls\\port\\net_sockets.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -D PROJECT_NAME=\\\"open-thread-rcp\\\" -DPROJECT_VER=\\\"c9e7aad-dirty\\\" -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -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\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_app_format\\esp_app_desc.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_app_format\\esp_app_desc.c", - "output": "esp-idf\\esp_app_format\\CMakeFiles\\__idf_esp_app_format.dir\\esp_app_desc.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_bootloader_format\\CMakeFiles\\__idf_esp_bootloader_format.dir\\esp_bootloader_desc.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_bootloader_format\\esp_bootloader_desc.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_bootloader_format\\esp_bootloader_desc.c", - "output": "esp-idf\\esp_bootloader_format\\CMakeFiles\\__idf_esp_bootloader_format.dir\\esp_bootloader_desc.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\app_update\\CMakeFiles\\__idf_app_update.dir\\esp_ota_ops.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\app_update\\esp_ota_ops.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\app_update\\esp_ota_ops.c", - "output": "esp-idf\\app_update\\CMakeFiles\\__idf_app_update.dir\\esp_ota_ops.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\app_update\\CMakeFiles\\__idf_app_update.dir\\esp_ota_app_desc.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\app_update\\esp_ota_app_desc.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\app_update\\esp_ota_app_desc.c", - "output": "esp-idf\\app_update\\CMakeFiles\\__idf_app_update.dir\\esp_ota_app_desc.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_partition\\CMakeFiles\\__idf_esp_partition.dir\\partition.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_partition\\partition.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_partition\\partition.c", - "output": "esp-idf\\esp_partition\\CMakeFiles\\__idf_esp_partition.dir\\partition.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_partition\\CMakeFiles\\__idf_esp_partition.dir\\partition_target.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_partition\\partition_target.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_partition\\partition_target.c", - "output": "esp-idf\\esp_partition\\CMakeFiles\\__idf_esp_partition.dir\\partition_target.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32h2\\esp_efuse_table.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\efuse\\esp32h2\\esp_efuse_table.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\efuse\\esp32h2\\esp_efuse_table.c", - "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32h2\\esp_efuse_table.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32h2\\esp_efuse_table_v0.0_v1.1.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\efuse\\esp32h2\\esp_efuse_table_v0.0_v1.1.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\efuse\\esp32h2\\esp_efuse_table_v0.0_v1.1.c", - "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32h2\\esp_efuse_table_v0.0_v1.1.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32h2\\esp_efuse_fields.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\efuse\\esp32h2\\esp_efuse_fields.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\efuse\\esp32h2\\esp_efuse_fields.c", - "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32h2\\esp_efuse_fields.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32h2\\esp_efuse_rtc_calib.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\efuse\\esp32h2\\esp_efuse_rtc_calib.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\efuse\\esp32h2\\esp_efuse_rtc_calib.c", - "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32h2\\esp_efuse_rtc_calib.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32h2\\esp_efuse_utility.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\efuse\\esp32h2\\esp_efuse_utility.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\efuse\\esp32h2\\esp_efuse_utility.c", - "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32h2\\esp_efuse_utility.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_api.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\efuse\\src\\esp_efuse_api.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\efuse\\src\\esp_efuse_api.c", - "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_api.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_fields.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\efuse\\src\\esp_efuse_fields.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\efuse\\src\\esp_efuse_fields.c", - "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_fields.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_utility.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\efuse\\src\\esp_efuse_utility.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\efuse\\src\\esp_efuse_utility.c", - "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_utility.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\efuse_controller\\keys\\with_key_purposes\\esp_efuse_api_key.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\efuse\\src\\efuse_controller\\keys\\with_key_purposes\\esp_efuse_api_key.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\efuse\\src\\efuse_controller\\keys\\with_key_purposes\\esp_efuse_api_key.c", - "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\efuse_controller\\keys\\with_key_purposes\\esp_efuse_api_key.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_startup.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\efuse\\src\\esp_efuse_startup.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\efuse\\src\\esp_efuse_startup.c", - "output": "esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_startup.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_common.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_common.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_common.c", - "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_common.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -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\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_common_loader.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_common_loader.c", - "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_common_loader.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -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\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_clock_init.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_clock_init.c", - "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_clock_init.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_mem.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_mem.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_mem.c", - "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_mem.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_random.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_random.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_random.c", - "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_random.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_efuse.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_efuse.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_efuse.c", - "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_efuse.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\flash_encrypt.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\flash_encrypt.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\flash_encrypt.c", - "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\flash_encrypt.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\secure_boot.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\secure_boot.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\secure_boot.c", - "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\secure_boot.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_random_esp32h2.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_random_esp32h2.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_random_esp32h2.c", - "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_random_esp32h2.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -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\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\bootloader_flash.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\bootloader_flash.c", - "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\bootloader_flash\\src\\bootloader_flash.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -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\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\flash_qio_mode.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\flash_qio_mode.c", - "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\bootloader_flash\\src\\flash_qio_mode.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\bootloader_flash\\src\\bootloader_flash_config_esp32h2.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\bootloader_flash_config_esp32h2.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\bootloader_flash_config_esp32h2.c", - "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\bootloader_flash\\src\\bootloader_flash_config_esp32h2.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_utility.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_utility.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_utility.c", - "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_utility.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\flash_partitions.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\flash_partitions.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\flash_partitions.c", - "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\flash_partitions.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -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\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\esp_image_format.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\esp_image_format.c", - "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\esp_image_format.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_sha.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_sha.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\bootloader_sha.c", - "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_sha.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\esp32h2\\secure_boot_secure_features.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\esp32h2\\secure_boot_secure_features.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\bootloader_support\\src\\esp32h2\\secure_boot_secure_features.c", - "output": "esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\esp32h2\\secure_boot_secure_features.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_mm\\CMakeFiles\\__idf_esp_mm.dir\\esp_mmu_map.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_mm\\esp_mmu_map.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_mm\\esp_mmu_map.c", - "output": "esp-idf\\esp_mm\\CMakeFiles\\__idf_esp_mm.dir\\esp_mmu_map.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_mm\\CMakeFiles\\__idf_esp_mm.dir\\port\\esp32h2\\ext_mem_layout.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_mm\\port\\esp32h2\\ext_mem_layout.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_mm\\port\\esp32h2\\ext_mem_layout.c", - "output": "esp-idf\\esp_mm\\CMakeFiles\\__idf_esp_mm.dir\\port\\esp32h2\\ext_mem_layout.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_mm\\CMakeFiles\\__idf_esp_mm.dir\\esp_cache_msync.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_mm\\esp_cache_msync.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_mm\\esp_cache_msync.c", - "output": "esp-idf\\esp_mm\\CMakeFiles\\__idf_esp_mm.dir\\esp_cache_msync.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_mm\\CMakeFiles\\__idf_esp_mm.dir\\esp_cache_utils.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_mm\\esp_cache_utils.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_mm\\esp_cache_utils.c", - "output": "esp-idf\\esp_mm\\CMakeFiles\\__idf_esp_mm.dir\\esp_cache_utils.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_mm\\CMakeFiles\\__idf_esp_mm.dir\\heap_align_hw.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_mm\\heap_align_hw.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_mm\\heap_align_hw.c", - "output": "esp-idf\\esp_mm\\CMakeFiles\\__idf_esp_mm.dir\\heap_align_hw.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\flash_brownout_hook.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\spi_flash\\flash_brownout_hook.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\spi_flash\\flash_brownout_hook.c", - "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\flash_brownout_hook.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_drivers.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\spi_flash\\spi_flash_chip_drivers.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\spi_flash\\spi_flash_chip_drivers.c", - "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_drivers.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_generic.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\spi_flash\\spi_flash_chip_generic.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\spi_flash\\spi_flash_chip_generic.c", - "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_generic.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_issi.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\spi_flash\\spi_flash_chip_issi.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\spi_flash\\spi_flash_chip_issi.c", - "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_issi.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_mxic.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\spi_flash\\spi_flash_chip_mxic.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\spi_flash\\spi_flash_chip_mxic.c", - "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_mxic.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_gd.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\spi_flash\\spi_flash_chip_gd.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\spi_flash\\spi_flash_chip_gd.c", - "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_gd.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_winbond.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\spi_flash\\spi_flash_chip_winbond.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\spi_flash\\spi_flash_chip_winbond.c", - "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_winbond.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_boya.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\spi_flash\\spi_flash_chip_boya.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\spi_flash\\spi_flash_chip_boya.c", - "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_boya.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_mxic_opi.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\spi_flash\\spi_flash_chip_mxic_opi.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\spi_flash\\spi_flash_chip_mxic_opi.c", - "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_mxic_opi.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_th.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\spi_flash\\spi_flash_chip_th.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\spi_flash\\spi_flash_chip_th.c", - "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_chip_th.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\memspi_host_driver.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\spi_flash\\memspi_host_driver.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\spi_flash\\memspi_host_driver.c", - "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\memspi_host_driver.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\cache_utils.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\spi_flash\\cache_utils.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\spi_flash\\cache_utils.c", - "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\cache_utils.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\flash_mmap.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\spi_flash\\flash_mmap.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\spi_flash\\flash_mmap.c", - "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\flash_mmap.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\flash_ops.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\spi_flash\\flash_ops.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\spi_flash\\flash_ops.c", - "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\flash_ops.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_wrap.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\spi_flash\\spi_flash_wrap.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\spi_flash\\spi_flash_wrap.c", - "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_wrap.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\esp_flash_api.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\spi_flash\\esp_flash_api.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\spi_flash\\esp_flash_api.c", - "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\esp_flash_api.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\esp_flash_spi_init.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\spi_flash\\esp_flash_spi_init.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\spi_flash\\esp_flash_spi_init.c", - "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\esp_flash_spi_init.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_os_func_app.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\spi_flash\\spi_flash_os_func_app.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\spi_flash\\spi_flash_os_func_app.c", - "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_os_func_app.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_os_func_noos.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\spi_flash\\spi_flash_os_func_noos.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\spi_flash\\spi_flash_os_func_noos.c", - "output": "esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_os_func_noos.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\esp_err.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\esp_err.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\esp_err.c", - "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\esp_err.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\crosscore_int.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\crosscore_int.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\crosscore_int.c", - "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\crosscore_int.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\esp_ipc.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\esp_ipc.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\esp_ipc.c", - "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\esp_ipc.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\esp_system_console.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\esp_system_console.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\esp_system_console.c", - "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\esp_system_console.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\freertos_hooks.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\freertos_hooks.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\freertos_hooks.c", - "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\freertos_hooks.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\int_wdt.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\int_wdt.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\int_wdt.c", - "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\int_wdt.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\panic.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\panic.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\panic.c", - "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\panic.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\esp_system.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\esp_system.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\esp_system.c", - "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\esp_system.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-stack-protector -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\startup.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\startup.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\startup.c", - "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\startup.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\startup_funcs.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\startup_funcs.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\startup_funcs.c", - "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\startup_funcs.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\system_time.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\system_time.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\system_time.c", - "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\system_time.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-stack-protector -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\stack_check.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\stack_check.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\stack_check.c", - "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\stack_check.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\ubsan.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\ubsan.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\ubsan.c", - "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\ubsan.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\xt_wdt.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\xt_wdt.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\xt_wdt.c", - "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\xt_wdt.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\task_wdt\\task_wdt.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\task_wdt\\task_wdt.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\task_wdt\\task_wdt.c", - "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\task_wdt\\task_wdt.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\task_wdt\\task_wdt_impl_timergroup.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\task_wdt\\task_wdt_impl_timergroup.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\task_wdt\\task_wdt_impl_timergroup.c", - "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\task_wdt\\task_wdt_impl_timergroup.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\systick_etm.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\systick_etm.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\systick_etm.c", - "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\systick_etm.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\hw_stack_guard.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\hw_stack_guard.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\hw_stack_guard.c", - "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\hw_stack_guard.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -fno-stack-protector -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\cpu_start.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\port\\cpu_start.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\port\\cpu_start.c", - "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\cpu_start.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\panic_handler.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\port\\panic_handler.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\port\\panic_handler.c", - "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\panic_handler.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\esp_system_chip.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\port\\esp_system_chip.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\port\\esp_system_chip.c", - "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\esp_system_chip.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\image_process.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\port\\image_process.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\port\\image_process.c", - "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\image_process.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\riscv\\expression_with_stack.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\port\\arch\\riscv\\expression_with_stack.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\port\\arch\\riscv\\expression_with_stack.c", - "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\riscv\\expression_with_stack.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\riscv\\panic_arch.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\port\\arch\\riscv\\panic_arch.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\port\\arch\\riscv\\panic_arch.c", - "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\riscv\\panic_arch.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\riscv\\debug_helpers.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\port\\arch\\riscv\\debug_helpers.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\port\\arch\\riscv\\debug_helpers.c", - "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\riscv\\debug_helpers.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\riscv\\debug_stubs.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\port\\arch\\riscv\\debug_stubs.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\port\\arch\\riscv\\debug_stubs.c", - "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\arch\\riscv\\debug_stubs.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\soc\\esp32h2\\clk.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\port\\soc\\esp32h2\\clk.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\port\\soc\\esp32h2\\clk.c", - "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\soc\\esp32h2\\clk.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\soc\\esp32h2\\reset_reason.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\port\\soc\\esp32h2\\reset_reason.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\port\\soc\\esp32h2\\reset_reason.c", - "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\soc\\esp32h2\\reset_reason.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\soc\\esp32h2\\system_internal.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\port\\soc\\esp32h2\\system_internal.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\port\\soc\\esp32h2\\system_internal.c", - "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\soc\\esp32h2\\system_internal.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\soc\\esp32h2\\cache_err_int.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\port\\soc\\esp32h2\\cache_err_int.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_system\\port\\soc\\esp32h2\\cache_err_int.c", - "output": "esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\port\\soc\\esp32h2\\cache_err_int.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/app_update/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -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\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_common\\src\\esp_err_to_name.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_common\\src\\esp_err_to_name.c", - "output": "esp-idf\\esp_common\\CMakeFiles\\__idf_esp_common.dir\\src\\esp_err_to_name.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -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\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_sys.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_sys.c", - "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_sys.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_print.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_print.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_print.c", - "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_print.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -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\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_crc.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_crc.c", - "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_crc.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -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\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_uart.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_uart.c", - "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_uart.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -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\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_spiflash.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_spiflash.c", - "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_spiflash.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -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\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_efuse.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_efuse.c", - "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_efuse.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_gpio.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_gpio.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_gpio.c", - "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_gpio.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_regi2c_esp32h2.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_regi2c_esp32h2.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_regi2c_esp32h2.c", - "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_regi2c_esp32h2.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_tlsf.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_tlsf.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_tlsf.c", - "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_tlsf.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_multi_heap.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_multi_heap.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_multi_heap.c", - "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_multi_heap.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_systimer.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_systimer.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_systimer.c", - "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_systimer.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_wdt.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_wdt.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_wdt.c", - "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_wdt.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_usb_serial.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_usb_serial.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_rom\\patches\\esp_rom_usb_serial.c", - "output": "esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_usb_serial.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\hal_utils.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\hal_utils.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\hal_utils.c", - "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\hal_utils.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\efuse_hal.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\efuse_hal.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\efuse_hal.c", - "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\efuse_hal.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\esp32h2\\efuse_hal.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\esp32h2\\efuse_hal.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\esp32h2\\efuse_hal.c", - "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\esp32h2\\efuse_hal.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\lp_timer_hal.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\lp_timer_hal.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\lp_timer_hal.c", - "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\lp_timer_hal.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\mmu_hal.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\mmu_hal.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\mmu_hal.c", - "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\mmu_hal.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\cache_hal.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\cache_hal.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\cache_hal.c", - "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\cache_hal.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\color_hal.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\color_hal.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\color_hal.c", - "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\color_hal.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_flash_hal.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\spi_flash_hal.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\spi_flash_hal.c", - "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_flash_hal.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_flash_hal_iram.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\spi_flash_hal_iram.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\spi_flash_hal_iram.c", - "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_flash_hal_iram.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_flash_encrypt_hal_iram.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\spi_flash_encrypt_hal_iram.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\spi_flash_encrypt_hal_iram.c", - "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_flash_encrypt_hal_iram.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\esp32h2\\clk_tree_hal.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\esp32h2\\clk_tree_hal.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\esp32h2\\clk_tree_hal.c", - "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\esp32h2\\clk_tree_hal.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\uart_hal.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\uart_hal.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\uart_hal.c", - "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\uart_hal.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\uart_hal_iram.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\uart_hal_iram.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\uart_hal_iram.c", - "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\uart_hal_iram.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\gpio_hal.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\gpio_hal.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\gpio_hal.c", - "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\gpio_hal.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\rtc_io_hal.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\rtc_io_hal.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\rtc_io_hal.c", - "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\rtc_io_hal.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\timer_hal.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\timer_hal.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\timer_hal.c", - "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\timer_hal.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\ledc_hal.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\ledc_hal.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\ledc_hal.c", - "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\ledc_hal.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\ledc_hal_iram.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\ledc_hal_iram.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\ledc_hal_iram.c", - "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\ledc_hal_iram.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\i2c_hal.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\i2c_hal.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\i2c_hal.c", - "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\i2c_hal.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\i2c_hal_iram.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\i2c_hal_iram.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\i2c_hal_iram.c", - "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\i2c_hal_iram.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\rmt_hal.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\rmt_hal.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\rmt_hal.c", - "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\rmt_hal.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\pcnt_hal.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\pcnt_hal.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\pcnt_hal.c", - "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\pcnt_hal.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\mcpwm_hal.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\mcpwm_hal.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\mcpwm_hal.c", - "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\mcpwm_hal.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\uhci_hal.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\uhci_hal.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\uhci_hal.c", - "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\uhci_hal.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\twai_hal_sja1000.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\twai_hal_sja1000.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\twai_hal_sja1000.c", - "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\twai_hal_sja1000.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\gdma_hal_top.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\gdma_hal_top.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\gdma_hal_top.c", - "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\gdma_hal_top.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\gdma_hal_ahb_v1.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\gdma_hal_ahb_v1.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\gdma_hal_ahb_v1.c", - "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\gdma_hal_ahb_v1.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\i2s_hal.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\i2s_hal.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\i2s_hal.c", - "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\i2s_hal.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\sdm_hal.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\sdm_hal.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\sdm_hal.c", - "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\sdm_hal.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\etm_hal.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\etm_hal.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\etm_hal.c", - "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\etm_hal.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\parlio_hal.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\parlio_hal.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\parlio_hal.c", - "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\parlio_hal.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\adc_hal_common.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\adc_hal_common.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\adc_hal_common.c", - "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\adc_hal_common.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\adc_oneshot_hal.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\adc_oneshot_hal.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\adc_oneshot_hal.c", - "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\adc_oneshot_hal.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\adc_hal.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\adc_hal.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\adc_hal.c", - "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\adc_hal.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\ecc_hal.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\ecc_hal.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\ecc_hal.c", - "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\ecc_hal.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\ecdsa_hal.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\ecdsa_hal.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\ecdsa_hal.c", - "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\ecdsa_hal.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\mpi_hal.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\mpi_hal.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\mpi_hal.c", - "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\mpi_hal.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\sha_hal.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\sha_hal.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\sha_hal.c", - "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\sha_hal.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\aes_hal.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\aes_hal.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\aes_hal.c", - "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\aes_hal.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\esp32h2\\modem_clock_hal.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\esp32h2\\modem_clock_hal.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\esp32h2\\modem_clock_hal.c", - "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\esp32h2\\modem_clock_hal.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\esp32h2\\pau_hal.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\esp32h2\\pau_hal.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\esp32h2\\pau_hal.c", - "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\esp32h2\\pau_hal.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\brownout_hal.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\brownout_hal.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\brownout_hal.c", - "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\brownout_hal.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\vbat_hal.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\vbat_hal.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\vbat_hal.c", - "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\vbat_hal.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_hal.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\spi_hal.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\spi_hal.c", - "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_hal.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_hal_iram.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\spi_hal_iram.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\spi_hal_iram.c", - "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_hal_iram.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_slave_hal.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\spi_slave_hal.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\spi_slave_hal.c", - "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_slave_hal.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_slave_hal_iram.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\spi_slave_hal_iram.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\spi_slave_hal_iram.c", - "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_slave_hal_iram.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_slave_hd_hal.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\spi_slave_hd_hal.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\spi_slave_hd_hal.c", - "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_slave_hd_hal.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_flash_hal_gpspi.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\spi_flash_hal_gpspi.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\spi_flash_hal_gpspi.c", - "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\spi_flash_hal_gpspi.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\esp32h2\\pmu_hal.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\esp32h2\\pmu_hal.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\esp32h2\\pmu_hal.c", - "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\esp32h2\\pmu_hal.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\apm_hal.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\apm_hal.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\apm_hal.c", - "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\apm_hal.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\hmac_hal.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\hmac_hal.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\hmac_hal.c", - "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\hmac_hal.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\ds_hal.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\ds_hal.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\ds_hal.c", - "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\ds_hal.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\usb_serial_jtag_hal.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\usb_serial_jtag_hal.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\hal\\usb_serial_jtag_hal.c", - "output": "esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\usb_serial_jtag_hal.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\os\\log_timestamp.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\os\\log_timestamp.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\os\\log_timestamp.c", - "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\os\\log_timestamp.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_timestamp_common.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\log_timestamp_common.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\log_timestamp_common.c", - "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_timestamp_common.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\os\\log_lock.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\os\\log_lock.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\os\\log_lock.c", - "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\os\\log_lock.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\buffer\\log_buffers.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\buffer\\log_buffers.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\buffer\\log_buffers.c", - "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\buffer\\log_buffers.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\os\\util.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\os\\util.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\os\\util.c", - "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\os\\util.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\util.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\util.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\util.c", - "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\util.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_format_text.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\log_format_text.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\log_format_text.c", - "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_format_text.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_print.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\log_print.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\log_print.c", - "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_print.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\log.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\log.c", - "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\os\\log_write.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\os\\log_write.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\os\\log_write.c", - "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\os\\log_write.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_level\\log_level.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\log_level\\log_level.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\log_level\\log_level.c", - "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_level\\log_level.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_level\\tag_log_level\\tag_log_level.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\log_level\\tag_log_level\\tag_log_level.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\log_level\\tag_log_level\\tag_log_level.c", - "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_level\\tag_log_level\\tag_log_level.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_level\\tag_log_level\\linked_list\\log_linked_list.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\log_level\\tag_log_level\\linked_list\\log_linked_list.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\log_level\\tag_log_level\\linked_list\\log_linked_list.c", - "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_level\\tag_log_level\\linked_list\\log_linked_list.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_level\\tag_log_level\\cache\\log_binary_heap.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\log_level\\tag_log_level\\cache\\log_binary_heap.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\log\\src\\log_level\\tag_log_level\\cache\\log_binary_heap.c", - "output": "esp-idf\\log\\CMakeFiles\\__idf_log.dir\\src\\log_level\\tag_log_level\\cache\\log_binary_heap.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -DMULTI_HEAP_FREERTOS -o esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\heap_caps_base.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\heap\\heap_caps_base.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\heap\\heap_caps_base.c", - "output": "esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\heap_caps_base.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -DMULTI_HEAP_FREERTOS -o esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\heap_caps.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\heap\\heap_caps.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\heap\\heap_caps.c", - "output": "esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\heap_caps.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -DMULTI_HEAP_FREERTOS -o esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\heap_caps_init.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\heap\\heap_caps_init.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\heap\\heap_caps_init.c", - "output": "esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\heap_caps_init.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -DMULTI_HEAP_FREERTOS -o esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\multi_heap.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\heap\\multi_heap.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\heap\\multi_heap.c", - "output": "esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\multi_heap.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -DMULTI_HEAP_FREERTOS -o esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\port\\memory_layout_utils.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\heap\\port\\memory_layout_utils.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\heap\\port\\memory_layout_utils.c", - "output": "esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\port\\memory_layout_utils.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -DMULTI_HEAP_FREERTOS -o esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\port\\esp32h2\\memory_layout.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\heap\\port\\esp32h2\\memory_layout.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\heap\\port\\esp32h2\\memory_layout.c", - "output": "esp-idf\\heap\\CMakeFiles\\__idf_heap.dir\\port\\esp32h2\\memory_layout.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\lldesc.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\lldesc.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\lldesc.c", - "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\lldesc.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\dport_access_common.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\dport_access_common.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\dport_access_common.c", - "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\dport_access_common.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32h2\\interrupts.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\interrupts.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\interrupts.c", - "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32h2\\interrupts.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32h2\\gpio_periph.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\gpio_periph.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\gpio_periph.c", - "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32h2\\gpio_periph.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32h2\\uart_periph.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\uart_periph.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\uart_periph.c", - "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32h2\\uart_periph.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32h2\\adc_periph.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\adc_periph.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\adc_periph.c", - "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32h2\\adc_periph.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32h2\\ana_cmpr_periph.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\ana_cmpr_periph.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\ana_cmpr_periph.c", - "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32h2\\ana_cmpr_periph.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32h2\\dedic_gpio_periph.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\dedic_gpio_periph.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\dedic_gpio_periph.c", - "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32h2\\dedic_gpio_periph.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32h2\\etm_periph.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\etm_periph.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\etm_periph.c", - "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32h2\\etm_periph.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32h2\\gdma_periph.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\gdma_periph.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\gdma_periph.c", - "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32h2\\gdma_periph.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32h2\\spi_periph.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\spi_periph.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\spi_periph.c", - "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32h2\\spi_periph.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32h2\\ledc_periph.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\ledc_periph.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\ledc_periph.c", - "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32h2\\ledc_periph.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32h2\\pcnt_periph.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\pcnt_periph.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\pcnt_periph.c", - "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32h2\\pcnt_periph.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32h2\\rmt_periph.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\rmt_periph.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\rmt_periph.c", - "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32h2\\rmt_periph.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32h2\\sdm_periph.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\sdm_periph.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\sdm_periph.c", - "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32h2\\sdm_periph.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32h2\\i2s_periph.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\i2s_periph.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\i2s_periph.c", - "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32h2\\i2s_periph.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32h2\\i2c_periph.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\i2c_periph.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\i2c_periph.c", - "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32h2\\i2c_periph.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32h2\\temperature_sensor_periph.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\temperature_sensor_periph.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\temperature_sensor_periph.c", - "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32h2\\temperature_sensor_periph.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32h2\\timer_periph.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\timer_periph.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\timer_periph.c", - "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32h2\\timer_periph.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32h2\\parlio_periph.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\parlio_periph.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\parlio_periph.c", - "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32h2\\parlio_periph.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32h2\\mcpwm_periph.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\mcpwm_periph.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\mcpwm_periph.c", - "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32h2\\mcpwm_periph.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32h2\\mpi_periph.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\mpi_periph.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\mpi_periph.c", - "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32h2\\mpi_periph.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32h2\\twai_periph.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\twai_periph.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\twai_periph.c", - "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32h2\\twai_periph.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32h2\\wdt_periph.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\wdt_periph.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\wdt_periph.c", - "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32h2\\wdt_periph.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32h2\\ieee802154_periph.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\ieee802154_periph.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\ieee802154_periph.c", - "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32h2\\ieee802154_periph.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32h2\\rtc_io_periph.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\rtc_io_periph.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\rtc_io_periph.c", - "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32h2\\rtc_io_periph.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32h2\\system_retention_periph.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\system_retention_periph.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\system_retention_periph.c", - "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32h2\\system_retention_periph.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32h2\\power_supply_periph.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\power_supply_periph.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\soc\\esp32h2\\power_supply_periph.c", - "output": "esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32h2\\power_supply_periph.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/src/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_security\\CMakeFiles\\__idf_esp_security.dir\\src\\init.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_security\\src\\init.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_security\\src\\init.c", - "output": "esp-idf\\esp_security\\CMakeFiles\\__idf_esp_security.dir\\src\\init.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/src/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_security\\CMakeFiles\\__idf_esp_security.dir\\src\\esp_hmac.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_security\\src\\esp_hmac.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_security\\src\\esp_hmac.c", - "output": "esp-idf\\esp_security\\CMakeFiles\\__idf_esp_security.dir\\src\\esp_hmac.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/src/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_security\\CMakeFiles\\__idf_esp_security.dir\\src\\esp_ds.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_security\\src\\esp_ds.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_security\\src\\esp_ds.c", - "output": "esp-idf\\esp_security\\CMakeFiles\\__idf_esp_security.dir\\src\\esp_ds.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/src/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_security\\CMakeFiles\\__idf_esp_security.dir\\src\\esp_dpa_protection.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_security\\src\\esp_dpa_protection.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_security\\src\\esp_dpa_protection.c", - "output": "esp-idf\\esp_security\\CMakeFiles\\__idf_esp_security.dir\\src\\esp_dpa_protection.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/src/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_security\\CMakeFiles\\__idf_esp_security.dir\\src\\esp_crypto_lock.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_security\\src\\esp_crypto_lock.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_security\\src\\esp_crypto_lock.c", - "output": "esp-idf\\esp_security\\CMakeFiles\\__idf_esp_security.dir\\src\\esp_crypto_lock.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/src/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_security\\CMakeFiles\\__idf_esp_security.dir\\src\\esp_crypto_periph_clk.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_security\\src\\esp_crypto_periph_clk.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_security\\src\\esp_crypto_periph_clk.c", - "output": "esp-idf\\esp_security\\CMakeFiles\\__idf_esp_security.dir\\src\\esp_crypto_periph_clk.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\cpu.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\cpu.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\cpu.c", - "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\cpu.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32h2\\esp_cpu_intr.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32h2\\esp_cpu_intr.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32h2\\esp_cpu_intr.c", - "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32h2\\esp_cpu_intr.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\esp_memory_utils.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\esp_memory_utils.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\esp_memory_utils.c", - "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\esp_memory_utils.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32h2\\cpu_region_protect.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32h2\\cpu_region_protect.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32h2\\cpu_region_protect.c", - "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32h2\\cpu_region_protect.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\esp_clk.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\esp_clk.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\esp_clk.c", - "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\esp_clk.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\clk_ctrl_os.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\clk_ctrl_os.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\clk_ctrl_os.c", - "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\clk_ctrl_os.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\hw_random.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\hw_random.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\hw_random.c", - "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\hw_random.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\intr_alloc.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\intr_alloc.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\intr_alloc.c", - "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\intr_alloc.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\mac_addr.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\mac_addr.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\mac_addr.c", - "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\mac_addr.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\periph_ctrl.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\periph_ctrl.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\periph_ctrl.c", - "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\periph_ctrl.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\revision.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\revision.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\revision.c", - "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\revision.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\rtc_module.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\rtc_module.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\rtc_module.c", - "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\rtc_module.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\regi2c_ctrl.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\regi2c_ctrl.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\regi2c_ctrl.c", - "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\regi2c_ctrl.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\esp_gpio_reserve.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\esp_gpio_reserve.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\esp_gpio_reserve.c", - "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\esp_gpio_reserve.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sar_periph_ctrl_common.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\sar_periph_ctrl_common.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\sar_periph_ctrl_common.c", - "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sar_periph_ctrl_common.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32h2\\io_mux.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32h2\\io_mux.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32h2\\io_mux.c", - "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32h2\\io_mux.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32h2\\esp_clk_tree.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32h2\\esp_clk_tree.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32h2\\esp_clk_tree.c", - "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32h2\\esp_clk_tree.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\dma\\esp_dma_utils.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\dma\\esp_dma_utils.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\dma\\esp_dma_utils.c", - "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\dma\\esp_dma_utils.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\dma\\gdma_link.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\dma\\gdma_link.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\dma\\gdma_link.c", - "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\dma\\gdma_link.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\spi_bus_lock.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\spi_bus_lock.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\spi_bus_lock.c", - "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\spi_bus_lock.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\clk_utils.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\clk_utils.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\clk_utils.c", - "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\clk_utils.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp_clk_tree_common.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp_clk_tree_common.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp_clk_tree_common.c", - "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp_clk_tree_common.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\spi_share_hw_ctrl.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\spi_share_hw_ctrl.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\spi_share_hw_ctrl.c", - "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\spi_share_hw_ctrl.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\adc_share_hw_ctrl.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\adc_share_hw_ctrl.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\adc_share_hw_ctrl.c", - "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\adc_share_hw_ctrl.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sleep_retention.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\sleep_retention.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\sleep_retention.c", - "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sleep_retention.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sleep_modem.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\sleep_modem.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\sleep_modem.c", - "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sleep_modem.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sleep_modes.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\sleep_modes.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\sleep_modes.c", - "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sleep_modes.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sleep_console.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\sleep_console.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\sleep_console.c", - "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sleep_console.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sleep_usb.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\sleep_usb.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\sleep_usb.c", - "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sleep_usb.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sleep_gpio.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\sleep_gpio.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\sleep_gpio.c", - "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sleep_gpio.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sleep_event.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\sleep_event.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\sleep_event.c", - "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sleep_event.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sleep_system_peripheral.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\sleep_system_peripheral.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\sleep_system_peripheral.c", - "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sleep_system_peripheral.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\dma\\gdma.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\dma\\gdma.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\dma\\gdma.c", - "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\dma\\gdma.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\deprecated\\gdma_legacy.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\deprecated\\gdma_legacy.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\deprecated\\gdma_legacy.c", - "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\deprecated\\gdma_legacy.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\dma\\gdma_sleep_retention.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\dma\\gdma_sleep_retention.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\dma\\gdma_sleep_retention.c", - "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\dma\\gdma_sleep_retention.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\dma\\gdma_etm.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\dma\\gdma_etm.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\dma\\gdma_etm.c", - "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\dma\\gdma_etm.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\dma\\esp_async_memcpy.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\dma\\esp_async_memcpy.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\dma\\esp_async_memcpy.c", - "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\dma\\esp_async_memcpy.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\dma\\async_memcpy_gdma.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\dma\\async_memcpy_gdma.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\dma\\async_memcpy_gdma.c", - "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\dma\\async_memcpy_gdma.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32h2\\systimer.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32h2\\systimer.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32h2\\systimer.c", - "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32h2\\systimer.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\esp_etm.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\esp_etm.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\esp_etm.c", - "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\esp_etm.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\pau_regdma.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\pau_regdma.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\pau_regdma.c", - "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\pau_regdma.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\regdma_link.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\regdma_link.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\regdma_link.c", - "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\regdma_link.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\modem_clock.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\modem_clock.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\modem_clock.c", - "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\modem_clock.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\mspi_timing_tuning\\mspi_timing_tuning.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\mspi_timing_tuning\\mspi_timing_tuning.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\mspi_timing_tuning\\mspi_timing_tuning.c", - "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\mspi_timing_tuning\\mspi_timing_tuning.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sleep_wake_stub.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\sleep_wake_stub.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\sleep_wake_stub.c", - "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\sleep_wake_stub.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\esp_clock_output.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\esp_clock_output.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\esp_clock_output.c", - "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\esp_clock_output.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\power_supply\\brownout.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\power_supply\\brownout.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\power_supply\\brownout.c", - "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\power_supply\\brownout.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\power_supply\\vbat.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\power_supply\\vbat.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\power_supply\\vbat.c", - "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\power_supply\\vbat.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32h2\\rtc_clk_init.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32h2\\rtc_clk_init.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32h2\\rtc_clk_init.c", - "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32h2\\rtc_clk_init.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32h2\\rtc_clk.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32h2\\rtc_clk.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32h2\\rtc_clk.c", - "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32h2\\rtc_clk.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32h2\\pmu_param.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32h2\\pmu_param.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32h2\\pmu_param.c", - "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32h2\\pmu_param.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32h2\\pmu_init.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32h2\\pmu_init.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32h2\\pmu_init.c", - "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32h2\\pmu_init.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32h2\\pmu_sleep.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32h2\\pmu_sleep.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32h2\\pmu_sleep.c", - "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32h2\\pmu_sleep.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32h2\\rtc_time.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32h2\\rtc_time.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32h2\\rtc_time.c", - "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32h2\\rtc_time.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32h2\\chip_info.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32h2\\chip_info.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32h2\\chip_info.c", - "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32h2\\chip_info.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32h2\\sar_periph_ctrl.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32h2\\sar_periph_ctrl.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\port\\esp32h2\\sar_periph_ctrl.c", - "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32h2\\sar_periph_ctrl.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\lowpower\\port\\esp32h2\\sleep_cpu.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\lowpower\\port\\esp32h2\\sleep_cpu.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\lowpower\\port\\esp32h2\\sleep_cpu.c", - "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\lowpower\\port\\esp32h2\\sleep_cpu.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\lowpower\\port\\esp32h2\\sleep_cpu_asm.S.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\lowpower\\port\\esp32h2\\sleep_cpu_asm.S", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\lowpower\\port\\esp32h2\\sleep_cpu_asm.S", - "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\lowpower\\port\\esp32h2\\sleep_cpu_asm.S.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\lowpower\\port\\esp32h2\\sleep_clock.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\lowpower\\port\\esp32h2\\sleep_clock.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_hw_support\\lowpower\\port\\esp32h2\\sleep_clock.c", - "output": "esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\lowpower\\port\\esp32h2\\sleep_clock.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\heap_idf.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\freertos\\heap_idf.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\freertos\\heap_idf.c", - "output": "esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\heap_idf.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\app_startup.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\freertos\\app_startup.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\freertos\\app_startup.c", - "output": "esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\app_startup.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\port_common.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\freertos\\port_common.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\freertos\\port_common.c", - "output": "esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\port_common.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\port_systick.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\freertos\\port_systick.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\freertos\\port_systick.c", - "output": "esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\port_systick.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\list.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\list.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\list.c", - "output": "esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\list.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\queue.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\queue.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\queue.c", - "output": "esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\queue.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\tasks.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\tasks.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\tasks.c", - "output": "esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\tasks.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\timers.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\timers.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\timers.c", - "output": "esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\timers.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\event_groups.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\event_groups.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\event_groups.c", - "output": "esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\event_groups.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\stream_buffer.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\stream_buffer.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\stream_buffer.c", - "output": "esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\stream_buffer.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\portable\\riscv\\port.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\portable\\riscv\\port.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\portable\\riscv\\port.c", - "output": "esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\portable\\riscv\\port.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\portable\\riscv\\portasm.S.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\portable\\riscv\\portasm.S", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\freertos\\FreeRTOS-Kernel\\portable\\riscv\\portasm.S", - "output": "esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\FreeRTOS-Kernel\\portable\\riscv\\portasm.S.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\esp_additions\\freertos_compatibility.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\freertos\\esp_additions\\freertos_compatibility.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\freertos\\esp_additions\\freertos_compatibility.c", - "output": "esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\esp_additions\\freertos_compatibility.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\esp_additions\\idf_additions_event_groups.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\freertos\\esp_additions\\idf_additions_event_groups.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\freertos\\esp_additions\\idf_additions_event_groups.c", - "output": "esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\esp_additions\\idf_additions_event_groups.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\esp_additions\\idf_additions.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\freertos\\esp_additions\\idf_additions.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\freertos\\esp_additions\\idf_additions.c", - "output": "esp-idf\\freertos\\CMakeFiles\\__idf_freertos.dir\\esp_additions\\idf_additions.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\init.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\init.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\init.c", - "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\init.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\abort.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\abort.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\abort.c", - "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\abort.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\assert.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\assert.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\assert.c", - "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\assert.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\heap.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\heap.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\heap.c", - "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\heap.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\locks.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\locks.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\locks.c", - "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\locks.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\poll.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\poll.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\poll.c", - "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\poll.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\pthread.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\pthread.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\pthread.c", - "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\pthread.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\random.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\random.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\random.c", - "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\random.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\getentropy.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\getentropy.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\getentropy.c", - "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\getentropy.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\termios.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\termios.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\termios.c", - "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\termios.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\stdatomic.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\stdatomic.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\stdatomic.c", - "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\stdatomic.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\time.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\time.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\time.c", - "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\time.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\sysconf.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\sysconf.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\sysconf.c", - "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\sysconf.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\realpath.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\realpath.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\realpath.c", - "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\realpath.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\scandir.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\scandir.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\scandir.c", - "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\scandir.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\syscalls.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\syscalls.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\syscalls.c", - "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\syscalls.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\reent_syscalls.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\reent_syscalls.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\reent_syscalls.c", - "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\reent_syscalls.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\port\\esp_time_impl.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\port\\esp_time_impl.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\port\\esp_time_impl.c", - "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\port\\esp_time_impl.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\flockfile.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\flockfile.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\flockfile.c", - "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\flockfile.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\reent_init.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\reent_init.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\reent_init.c", - "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\reent_init.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/priv_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\newlib_init.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\newlib_init.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\newlib\\src\\newlib_init.c", - "output": "esp-idf\\newlib\\CMakeFiles\\__idf_newlib.dir\\src\\newlib_init.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/pthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\pthread\\CMakeFiles\\__idf_pthread.dir\\pthread.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\pthread\\pthread.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\pthread\\pthread.c", - "output": "esp-idf\\pthread\\CMakeFiles\\__idf_pthread.dir\\pthread.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/pthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\pthread\\CMakeFiles\\__idf_pthread.dir\\pthread_cond_var.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\pthread\\pthread_cond_var.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\pthread\\pthread_cond_var.c", - "output": "esp-idf\\pthread\\CMakeFiles\\__idf_pthread.dir\\pthread_cond_var.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/pthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\pthread\\CMakeFiles\\__idf_pthread.dir\\pthread_local_storage.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\pthread\\pthread_local_storage.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\pthread\\pthread_local_storage.c", - "output": "esp-idf\\pthread\\CMakeFiles\\__idf_pthread.dir\\pthread_local_storage.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/pthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\pthread\\CMakeFiles\\__idf_pthread.dir\\pthread_rwlock.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\pthread\\pthread_rwlock.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\pthread\\pthread_rwlock.c", - "output": "esp-idf\\pthread\\CMakeFiles\\__idf_pthread.dir\\pthread_rwlock.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/pthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\pthread\\CMakeFiles\\__idf_pthread.dir\\pthread_semaphore.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\pthread\\pthread_semaphore.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\pthread\\pthread_semaphore.c", - "output": "esp-idf\\pthread\\CMakeFiles\\__idf_pthread.dir\\pthread_semaphore.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/pthread/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\cxx\\CMakeFiles\\__idf_cxx.dir\\cxx_exception_stubs.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\cxx\\cxx_exception_stubs.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\cxx\\cxx_exception_stubs.cpp", - "output": "esp-idf\\cxx\\CMakeFiles\\__idf_cxx.dir\\cxx_exception_stubs.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/pthread/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\cxx\\CMakeFiles\\__idf_cxx.dir\\cxx_guards.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\cxx\\cxx_guards.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\cxx\\cxx_guards.cpp", - "output": "esp-idf\\cxx\\CMakeFiles\\__idf_cxx.dir\\cxx_guards.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/pthread/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\cxx\\CMakeFiles\\__idf_cxx.dir\\cxx_init.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\cxx\\cxx_init.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\cxx\\cxx_init.cpp", - "output": "esp-idf\\cxx\\CMakeFiles\\__idf_cxx.dir\\cxx_init.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_event\\CMakeFiles\\__idf_esp_event.dir\\default_event_loop.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_event\\default_event_loop.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_event\\default_event_loop.c", - "output": "esp-idf\\esp_event\\CMakeFiles\\__idf_esp_event.dir\\default_event_loop.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_event\\CMakeFiles\\__idf_esp_event.dir\\esp_event.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_event\\esp_event.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_event\\esp_event.c", - "output": "esp-idf\\esp_event\\CMakeFiles\\__idf_esp_event.dir\\esp_event.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_event\\CMakeFiles\\__idf_esp_event.dir\\esp_event_private.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_event\\esp_event_private.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_event\\esp_event_private.c", - "output": "esp-idf\\esp_event\\CMakeFiles\\__idf_esp_event.dir\\esp_event_private.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_api.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\nvs_flash\\src\\nvs_api.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\nvs_flash\\src\\nvs_api.cpp", - "output": "esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_api.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_cxx_api.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\nvs_flash\\src\\nvs_cxx_api.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\nvs_flash\\src\\nvs_cxx_api.cpp", - "output": "esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_cxx_api.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_item_hash_list.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\nvs_flash\\src\\nvs_item_hash_list.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\nvs_flash\\src\\nvs_item_hash_list.cpp", - "output": "esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_item_hash_list.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_page.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\nvs_flash\\src\\nvs_page.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\nvs_flash\\src\\nvs_page.cpp", - "output": "esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_page.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_pagemanager.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\nvs_flash\\src\\nvs_pagemanager.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\nvs_flash\\src\\nvs_pagemanager.cpp", - "output": "esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_pagemanager.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_storage.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\nvs_flash\\src\\nvs_storage.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\nvs_flash\\src\\nvs_storage.cpp", - "output": "esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_storage.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_handle_simple.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\nvs_flash\\src\\nvs_handle_simple.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\nvs_flash\\src\\nvs_handle_simple.cpp", - "output": "esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_handle_simple.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_handle_locked.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\nvs_flash\\src\\nvs_handle_locked.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\nvs_flash\\src\\nvs_handle_locked.cpp", - "output": "esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_handle_locked.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_partition.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\nvs_flash\\src\\nvs_partition.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\nvs_flash\\src\\nvs_partition.cpp", - "output": "esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_partition.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_partition_lookup.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\nvs_flash\\src\\nvs_partition_lookup.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\nvs_flash\\src\\nvs_partition_lookup.cpp", - "output": "esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_partition_lookup.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_partition_manager.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\nvs_flash\\src\\nvs_partition_manager.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\nvs_flash\\src\\nvs_partition_manager.cpp", - "output": "esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_partition_manager.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_types.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\nvs_flash\\src\\nvs_types.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\nvs_flash\\src\\nvs_types.cpp", - "output": "esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_types.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_platform.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\nvs_flash\\src\\nvs_platform.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\nvs_flash\\src\\nvs_platform.cpp", - "output": "esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_platform.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_bootloader.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\nvs_flash\\src\\nvs_bootloader.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\nvs_flash\\src\\nvs_bootloader.c", - "output": "esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_bootloader.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_encrypted_partition.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\nvs_flash\\src\\nvs_encrypted_partition.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\nvs_flash\\src\\nvs_encrypted_partition.cpp", - "output": "esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_encrypted_partition.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_bootloader_aes.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\nvs_flash\\src\\nvs_bootloader_aes.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\nvs_flash\\src\\nvs_bootloader_aes.c", - "output": "esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_bootloader_aes.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_bootloader_xts_aes.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\nvs_flash\\src\\nvs_bootloader_xts_aes.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\nvs_flash\\src\\nvs_bootloader_xts_aes.c", - "output": "esp-idf\\nvs_flash\\CMakeFiles\\__idf_nvs_flash.dir\\src\\nvs_bootloader_xts_aes.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_ringbuf\\CMakeFiles\\__idf_esp_ringbuf.dir\\ringbuf.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_ringbuf\\ringbuf.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_ringbuf\\ringbuf.c", - "output": "esp-idf\\esp_ringbuf\\CMakeFiles\\__idf_esp_ringbuf.dir\\ringbuf.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_uart\\CMakeFiles\\__idf_esp_driver_uart.dir\\src\\uart.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_uart\\src\\uart.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_uart\\src\\uart.c", - "output": "esp-idf\\esp_driver_uart\\CMakeFiles\\__idf_esp_driver_uart.dir\\src\\uart.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_uart\\CMakeFiles\\__idf_esp_driver_uart.dir\\src\\uart_wakeup.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_uart\\src\\uart_wakeup.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_uart\\src\\uart_wakeup.c", - "output": "esp-idf\\esp_driver_uart\\CMakeFiles\\__idf_esp_driver_uart.dir\\src\\uart_wakeup.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_uart\\CMakeFiles\\__idf_esp_driver_uart.dir\\src\\uhci.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_uart\\src\\uhci.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_uart\\src\\uhci.c", - "output": "esp-idf\\esp_driver_uart\\CMakeFiles\\__idf_esp_driver_uart.dir\\src\\uhci.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_uart\\CMakeFiles\\__idf_esp_driver_uart.dir\\src\\uart_vfs.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_uart\\src\\uart_vfs.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_uart\\src\\uart_vfs.c", - "output": "esp-idf\\esp_driver_uart\\CMakeFiles\\__idf_esp_driver_uart.dir\\src\\uart_vfs.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_usb_serial_jtag\\CMakeFiles\\__idf_esp_driver_usb_serial_jtag.dir\\src\\usb_serial_jtag.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_usb_serial_jtag\\src\\usb_serial_jtag.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_usb_serial_jtag\\src\\usb_serial_jtag.c", - "output": "esp-idf\\esp_driver_usb_serial_jtag\\CMakeFiles\\__idf_esp_driver_usb_serial_jtag.dir\\src\\usb_serial_jtag.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_usb_serial_jtag\\CMakeFiles\\__idf_esp_driver_usb_serial_jtag.dir\\src\\usb_serial_jtag_connection_monitor.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_usb_serial_jtag\\src\\usb_serial_jtag_connection_monitor.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_usb_serial_jtag\\src\\usb_serial_jtag_connection_monitor.c", - "output": "esp-idf\\esp_driver_usb_serial_jtag\\CMakeFiles\\__idf_esp_driver_usb_serial_jtag.dir\\src\\usb_serial_jtag_connection_monitor.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_usb_serial_jtag\\CMakeFiles\\__idf_esp_driver_usb_serial_jtag.dir\\src\\usb_serial_jtag_vfs.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_usb_serial_jtag\\src\\usb_serial_jtag_vfs.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_usb_serial_jtag\\src\\usb_serial_jtag_vfs.c", - "output": "esp-idf\\esp_driver_usb_serial_jtag\\CMakeFiles\\__idf_esp_driver_usb_serial_jtag.dir\\src\\usb_serial_jtag_vfs.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_vfs_console\\CMakeFiles\\__idf_esp_vfs_console.dir\\vfs_console.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_vfs_console\\vfs_console.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_vfs_console\\vfs_console.c", - "output": "esp-idf\\esp_vfs_console\\CMakeFiles\\__idf_esp_vfs_console.dir\\vfs_console.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\vfs\\CMakeFiles\\__idf_vfs.dir\\vfs.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\vfs\\vfs.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\vfs\\vfs.c", - "output": "esp-idf\\vfs\\CMakeFiles\\__idf_vfs.dir\\vfs.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\vfs\\CMakeFiles\\__idf_vfs.dir\\vfs_eventfd.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\vfs\\vfs_eventfd.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\vfs\\vfs_eventfd.c", - "output": "esp-idf\\vfs\\CMakeFiles\\__idf_vfs.dir\\vfs_eventfd.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\vfs\\CMakeFiles\\__idf_vfs.dir\\vfs_semihost.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\vfs\\vfs_semihost.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\vfs\\vfs_semihost.c", - "output": "esp-idf\\vfs\\CMakeFiles\\__idf_vfs.dir\\vfs_semihost.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\vfs\\CMakeFiles\\__idf_vfs.dir\\nullfs.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\vfs\\nullfs.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\vfs\\nullfs.c", - "output": "esp-idf\\vfs\\CMakeFiles\\__idf_vfs.dir\\nullfs.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\apps\\sntp\\sntp.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\apps\\sntp\\sntp.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\apps\\sntp\\sntp.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\apps\\sntp\\sntp.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\api_lib.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\api\\api_lib.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\api\\api_lib.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\api_lib.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\api_msg.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\api\\api_msg.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\api\\api_msg.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\api_msg.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\err.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\api\\err.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\api\\err.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\err.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\if_api.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\api\\if_api.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\api\\if_api.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\if_api.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\netbuf.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\api\\netbuf.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\api\\netbuf.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\netbuf.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\netdb.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\api\\netdb.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\api\\netdb.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\netdb.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\netifapi.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\api\\netifapi.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\api\\netifapi.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\netifapi.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\sockets.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\api\\sockets.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\api\\sockets.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\sockets.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\tcpip.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\api\\tcpip.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\api\\tcpip.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\api\\tcpip.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\apps\\sntp\\sntp.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\apps\\sntp\\sntp.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\apps\\sntp\\sntp.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\apps\\sntp\\sntp.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\apps\\netbiosns\\netbiosns.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\apps\\netbiosns\\netbiosns.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\apps\\netbiosns\\netbiosns.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\apps\\netbiosns\\netbiosns.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\def.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\def.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\def.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\def.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\dns.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\dns.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\dns.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\dns.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\inet_chksum.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\inet_chksum.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\inet_chksum.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\inet_chksum.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\init.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\init.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\init.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\init.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ip.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\ip.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\ip.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ip.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\mem.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\mem.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\mem.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\mem.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\memp.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\memp.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\memp.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\memp.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\netif.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\netif.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\netif.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\netif.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\pbuf.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\pbuf.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\pbuf.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\pbuf.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\raw.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\raw.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\raw.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\raw.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\stats.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\stats.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\stats.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\stats.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\sys.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\sys.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\sys.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\sys.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-type-limits -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\tcp.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\tcp.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\tcp.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\tcp.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\tcp_in.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\tcp_in.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\tcp_in.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\tcp_in.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\tcp_out.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\tcp_out.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\tcp_out.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\tcp_out.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\timeouts.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\timeouts.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\timeouts.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\timeouts.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\udp.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\udp.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\udp.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\udp.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\autoip.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\autoip.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\autoip.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\autoip.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\dhcp.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\dhcp.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\dhcp.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\dhcp.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\etharp.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\etharp.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\etharp.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\etharp.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\icmp.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\icmp.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\icmp.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\icmp.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\igmp.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\igmp.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\igmp.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\igmp.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\ip4.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\ip4.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\ip4.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\ip4.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\ip4_napt.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\ip4_napt.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\ip4_napt.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\ip4_napt.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\ip4_addr.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\ip4_addr.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\ip4_addr.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\ip4_addr.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\ip4_frag.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\ip4_frag.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv4\\ip4_frag.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv4\\ip4_frag.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\dhcp6.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\dhcp6.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\dhcp6.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\dhcp6.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\ethip6.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\ethip6.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\ethip6.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\ethip6.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\icmp6.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\icmp6.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\icmp6.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\icmp6.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\inet6.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\inet6.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\inet6.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\inet6.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\ip6.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\ip6.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\ip6.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\ip6.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\ip6_addr.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\ip6_addr.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\ip6_addr.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\ip6_addr.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\ip6_frag.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\ip6_frag.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\ip6_frag.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\ip6_frag.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\mld6.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\mld6.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\mld6.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\mld6.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\nd6.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\nd6.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\core\\ipv6\\nd6.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\core\\ipv6\\nd6.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ethernet.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ethernet.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ethernet.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ethernet.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\bridgeif.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\bridgeif.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\bridgeif.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\bridgeif.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\bridgeif_fdb.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\bridgeif_fdb.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\bridgeif_fdb.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\bridgeif_fdb.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\slipif.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\slipif.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\slipif.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\slipif.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\auth.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\auth.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\auth.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\auth.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\ccp.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\ccp.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\ccp.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\ccp.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\chap-md5.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\chap-md5.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\chap-md5.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\chap-md5.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\chap-new.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\chap-new.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\chap-new.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\chap-new.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-array-parameter -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\chap_ms.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\chap_ms.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\chap_ms.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\chap_ms.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\demand.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\demand.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\demand.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\demand.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\eap.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\eap.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\eap.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\eap.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\ecp.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\ecp.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\ecp.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\ecp.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\eui64.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\eui64.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\eui64.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\eui64.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\fsm.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\fsm.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\fsm.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\fsm.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\ipcp.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\ipcp.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\ipcp.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\ipcp.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\ipv6cp.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\ipv6cp.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\ipv6cp.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\ipv6cp.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\lcp.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\lcp.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\lcp.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\lcp.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\magic.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\magic.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\magic.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\magic.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\mppe.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\mppe.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\mppe.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\mppe.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\multilink.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\multilink.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\multilink.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\multilink.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\ppp.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\ppp.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\ppp.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\ppp.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\pppapi.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\pppapi.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\pppapi.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\pppapi.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\pppcrypt.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\pppcrypt.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\pppcrypt.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\pppcrypt.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\pppoe.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\pppoe.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\pppoe.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\pppoe.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\pppol2tp.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\pppol2tp.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\pppol2tp.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\pppol2tp.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -Wno-type-limits -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\pppos.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\pppos.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\pppos.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\pppos.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\upap.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\upap.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\upap.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\upap.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\utils.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\utils.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\utils.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\utils.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\vj.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\vj.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\vj.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\vj.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\port\\hooks\\tcp_isn_default.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\port\\hooks\\tcp_isn_default.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\port\\hooks\\tcp_isn_default.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\port\\hooks\\tcp_isn_default.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\port\\hooks\\lwip_default_hooks.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\port\\hooks\\lwip_default_hooks.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\port\\hooks\\lwip_default_hooks.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\port\\hooks\\lwip_default_hooks.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\port\\debug\\lwip_debug.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\port\\debug\\lwip_debug.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\port\\debug\\lwip_debug.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\port\\debug\\lwip_debug.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\port\\sockets_ext.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\port\\sockets_ext.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\port\\sockets_ext.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\port\\sockets_ext.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\port\\freertos\\sys_arch.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\port\\freertos\\sys_arch.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\port\\freertos\\sys_arch.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\port\\freertos\\sys_arch.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\port\\if_index.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\port\\if_index.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\port\\if_index.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\port\\if_index.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\port\\acd_dhcp_check.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\port\\acd_dhcp_check.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\port\\acd_dhcp_check.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\port\\acd_dhcp_check.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\port\\esp32xx\\vfs_lwip.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\port\\esp32xx\\vfs_lwip.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\port\\esp32xx\\vfs_lwip.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\port\\esp32xx\\vfs_lwip.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\apps\\ping\\esp_ping.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\apps\\ping\\esp_ping.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\apps\\ping\\esp_ping.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\apps\\ping\\esp_ping.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\apps\\ping\\ping.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\apps\\ping\\ping.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\apps\\ping\\ping.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\apps\\ping\\ping.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\apps\\ping\\ping_sock.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\apps\\ping\\ping_sock.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\apps\\ping\\ping_sock.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\apps\\ping\\ping_sock.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\polarssl\\arc4.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\polarssl\\arc4.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\polarssl\\arc4.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\polarssl\\arc4.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\polarssl\\des.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\polarssl\\des.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\polarssl\\des.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\polarssl\\des.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\polarssl\\md4.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\polarssl\\md4.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\polarssl\\md4.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\polarssl\\md4.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\polarssl\\md5.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\polarssl\\md5.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\polarssl\\md5.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\polarssl\\md5.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\polarssl\\sha1.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\polarssl\\sha1.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\lwip\\src\\netif\\ppp\\polarssl\\sha1.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\lwip\\src\\netif\\ppp\\polarssl\\sha1.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_LWIP_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-address -o esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\apps\\dhcpserver\\dhcpserver.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\apps\\dhcpserver\\dhcpserver.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\lwip\\apps\\dhcpserver\\dhcpserver.c", - "output": "esp-idf\\lwip\\CMakeFiles\\__idf_lwip.dir\\apps\\dhcpserver\\dhcpserver.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/lwip -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\esp_netif_handlers.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_netif\\esp_netif_handlers.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_netif\\esp_netif_handlers.c", - "output": "esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\esp_netif_handlers.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/lwip -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\esp_netif_objects.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_netif\\esp_netif_objects.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_netif\\esp_netif_objects.c", - "output": "esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\esp_netif_objects.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/lwip -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\esp_netif_defaults.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_netif\\esp_netif_defaults.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_netif\\esp_netif_defaults.c", - "output": "esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\esp_netif_defaults.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/lwip -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\lwip\\esp_netif_lwip.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_netif\\lwip\\esp_netif_lwip.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_netif\\lwip\\esp_netif_lwip.c", - "output": "esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\lwip\\esp_netif_lwip.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/lwip -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\lwip\\esp_netif_sntp.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_netif\\lwip\\esp_netif_sntp.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_netif\\lwip\\esp_netif_sntp.c", - "output": "esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\lwip\\esp_netif_sntp.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/lwip -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\lwip\\esp_netif_lwip_defaults.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_netif\\lwip\\esp_netif_lwip_defaults.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_netif\\lwip\\esp_netif_lwip_defaults.c", - "output": "esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\lwip\\esp_netif_lwip_defaults.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/lwip -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\lwip\\netif\\wlanif.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_netif\\lwip\\netif\\wlanif.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_netif\\lwip\\netif\\wlanif.c", - "output": "esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\lwip\\netif\\wlanif.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/lwip -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\lwip\\netif\\ethernetif.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_netif\\lwip\\netif\\ethernetif.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_netif\\lwip\\netif\\ethernetif.c", - "output": "esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\lwip\\netif\\ethernetif.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/lwip -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\lwip\\netif\\esp_pbuf_ref.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_netif\\lwip\\netif\\esp_pbuf_ref.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_netif\\lwip\\netif\\esp_pbuf_ref.c", - "output": "esp-idf\\esp_netif\\CMakeFiles\\__idf_esp_netif.dir\\lwip\\netif\\esp_pbuf_ref.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_pcnt\\CMakeFiles\\__idf_esp_driver_pcnt.dir\\src\\pulse_cnt.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_pcnt\\src\\pulse_cnt.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_pcnt\\src\\pulse_cnt.c", - "output": "esp-idf\\esp_driver_pcnt\\CMakeFiles\\__idf_esp_driver_pcnt.dir\\src\\pulse_cnt.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_gptimer\\CMakeFiles\\__idf_esp_driver_gptimer.dir\\src\\gptimer.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_gptimer\\src\\gptimer.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_gptimer\\src\\gptimer.c", - "output": "esp-idf\\esp_driver_gptimer\\CMakeFiles\\__idf_esp_driver_gptimer.dir\\src\\gptimer.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_gptimer\\CMakeFiles\\__idf_esp_driver_gptimer.dir\\src\\gptimer_common.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_gptimer\\src\\gptimer_common.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_gptimer\\src\\gptimer_common.c", - "output": "esp-idf\\esp_driver_gptimer\\CMakeFiles\\__idf_esp_driver_gptimer.dir\\src\\gptimer_common.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_gptimer\\CMakeFiles\\__idf_esp_driver_gptimer.dir\\src\\gptimer_etm.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_gptimer\\src\\gptimer_etm.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_gptimer\\src\\gptimer_etm.c", - "output": "esp-idf\\esp_driver_gptimer\\CMakeFiles\\__idf_esp_driver_gptimer.dir\\src\\gptimer_etm.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_spi\\CMakeFiles\\__idf_esp_driver_spi.dir\\src\\gpspi\\spi_common.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_spi\\src\\gpspi\\spi_common.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_spi\\src\\gpspi\\spi_common.c", - "output": "esp-idf\\esp_driver_spi\\CMakeFiles\\__idf_esp_driver_spi.dir\\src\\gpspi\\spi_common.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_spi\\CMakeFiles\\__idf_esp_driver_spi.dir\\src\\gpspi\\spi_master.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_spi\\src\\gpspi\\spi_master.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_spi\\src\\gpspi\\spi_master.c", - "output": "esp-idf\\esp_driver_spi\\CMakeFiles\\__idf_esp_driver_spi.dir\\src\\gpspi\\spi_master.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_spi\\CMakeFiles\\__idf_esp_driver_spi.dir\\src\\gpspi\\spi_slave.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_spi\\src\\gpspi\\spi_slave.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_spi\\src\\gpspi\\spi_slave.c", - "output": "esp-idf\\esp_driver_spi\\CMakeFiles\\__idf_esp_driver_spi.dir\\src\\gpspi\\spi_slave.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_spi\\CMakeFiles\\__idf_esp_driver_spi.dir\\src\\gpspi\\spi_slave_hd.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_spi\\src\\gpspi\\spi_slave_hd.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_spi\\src\\gpspi\\spi_slave_hd.c", - "output": "esp-idf\\esp_driver_spi\\CMakeFiles\\__idf_esp_driver_spi.dir\\src\\gpspi\\spi_slave_hd.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_mcpwm\\CMakeFiles\\__idf_esp_driver_mcpwm.dir\\src\\mcpwm_cap.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_mcpwm\\src\\mcpwm_cap.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_mcpwm\\src\\mcpwm_cap.c", - "output": "esp-idf\\esp_driver_mcpwm\\CMakeFiles\\__idf_esp_driver_mcpwm.dir\\src\\mcpwm_cap.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_mcpwm\\CMakeFiles\\__idf_esp_driver_mcpwm.dir\\src\\mcpwm_cmpr.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_mcpwm\\src\\mcpwm_cmpr.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_mcpwm\\src\\mcpwm_cmpr.c", - "output": "esp-idf\\esp_driver_mcpwm\\CMakeFiles\\__idf_esp_driver_mcpwm.dir\\src\\mcpwm_cmpr.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_mcpwm\\CMakeFiles\\__idf_esp_driver_mcpwm.dir\\src\\mcpwm_com.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_mcpwm\\src\\mcpwm_com.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_mcpwm\\src\\mcpwm_com.c", - "output": "esp-idf\\esp_driver_mcpwm\\CMakeFiles\\__idf_esp_driver_mcpwm.dir\\src\\mcpwm_com.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_mcpwm\\CMakeFiles\\__idf_esp_driver_mcpwm.dir\\src\\mcpwm_fault.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_mcpwm\\src\\mcpwm_fault.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_mcpwm\\src\\mcpwm_fault.c", - "output": "esp-idf\\esp_driver_mcpwm\\CMakeFiles\\__idf_esp_driver_mcpwm.dir\\src\\mcpwm_fault.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_mcpwm\\CMakeFiles\\__idf_esp_driver_mcpwm.dir\\src\\mcpwm_gen.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_mcpwm\\src\\mcpwm_gen.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_mcpwm\\src\\mcpwm_gen.c", - "output": "esp-idf\\esp_driver_mcpwm\\CMakeFiles\\__idf_esp_driver_mcpwm.dir\\src\\mcpwm_gen.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_mcpwm\\CMakeFiles\\__idf_esp_driver_mcpwm.dir\\src\\mcpwm_oper.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_mcpwm\\src\\mcpwm_oper.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_mcpwm\\src\\mcpwm_oper.c", - "output": "esp-idf\\esp_driver_mcpwm\\CMakeFiles\\__idf_esp_driver_mcpwm.dir\\src\\mcpwm_oper.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_mcpwm\\CMakeFiles\\__idf_esp_driver_mcpwm.dir\\src\\mcpwm_sync.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_mcpwm\\src\\mcpwm_sync.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_mcpwm\\src\\mcpwm_sync.c", - "output": "esp-idf\\esp_driver_mcpwm\\CMakeFiles\\__idf_esp_driver_mcpwm.dir\\src\\mcpwm_sync.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_mcpwm\\CMakeFiles\\__idf_esp_driver_mcpwm.dir\\src\\mcpwm_timer.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_mcpwm\\src\\mcpwm_timer.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_mcpwm\\src\\mcpwm_timer.c", - "output": "esp-idf\\esp_driver_mcpwm\\CMakeFiles\\__idf_esp_driver_mcpwm.dir\\src\\mcpwm_timer.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_mcpwm\\CMakeFiles\\__idf_esp_driver_mcpwm.dir\\src\\mcpwm_etm.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_mcpwm\\src\\mcpwm_etm.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_mcpwm\\src\\mcpwm_etm.c", - "output": "esp-idf\\esp_driver_mcpwm\\CMakeFiles\\__idf_esp_driver_mcpwm.dir\\src\\mcpwm_etm.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_ana_cmpr\\CMakeFiles\\__idf_esp_driver_ana_cmpr.dir\\ana_cmpr.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_ana_cmpr\\ana_cmpr.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_ana_cmpr\\ana_cmpr.c", - "output": "esp-idf\\esp_driver_ana_cmpr\\CMakeFiles\\__idf_esp_driver_ana_cmpr.dir\\ana_cmpr.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_i2s\\CMakeFiles\\__idf_esp_driver_i2s.dir\\i2s_common.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_i2s\\i2s_common.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_i2s\\i2s_common.c", - "output": "esp-idf\\esp_driver_i2s\\CMakeFiles\\__idf_esp_driver_i2s.dir\\i2s_common.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_i2s\\CMakeFiles\\__idf_esp_driver_i2s.dir\\i2s_std.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_i2s\\i2s_std.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_i2s\\i2s_std.c", - "output": "esp-idf\\esp_driver_i2s\\CMakeFiles\\__idf_esp_driver_i2s.dir\\i2s_std.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_i2s\\CMakeFiles\\__idf_esp_driver_i2s.dir\\i2s_pdm.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_i2s\\i2s_pdm.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_i2s\\i2s_pdm.c", - "output": "esp-idf\\esp_driver_i2s\\CMakeFiles\\__idf_esp_driver_i2s.dir\\i2s_pdm.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_i2s\\CMakeFiles\\__idf_esp_driver_i2s.dir\\i2s_tdm.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_i2s\\i2s_tdm.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_i2s\\i2s_tdm.c", - "output": "esp-idf\\esp_driver_i2s\\CMakeFiles\\__idf_esp_driver_i2s.dir\\i2s_tdm.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_i2s\\CMakeFiles\\__idf_esp_driver_i2s.dir\\i2s_etm.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_i2s\\i2s_etm.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_i2s\\i2s_etm.c", - "output": "esp-idf\\esp_driver_i2s\\CMakeFiles\\__idf_esp_driver_i2s.dir\\i2s_etm.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_i2s\\CMakeFiles\\__idf_esp_driver_i2s.dir\\i2s_platform.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_i2s\\i2s_platform.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_i2s\\i2s_platform.c", - "output": "esp-idf\\esp_driver_i2s\\CMakeFiles\\__idf_esp_driver_i2s.dir\\i2s_platform.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\sdmmc_cmd.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\sdmmc\\sdmmc_cmd.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\sdmmc\\sdmmc_cmd.c", - "output": "esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\sdmmc_cmd.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\sdmmc_common.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\sdmmc\\sdmmc_common.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\sdmmc\\sdmmc_common.c", - "output": "esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\sdmmc_common.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\sdmmc_init.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\sdmmc\\sdmmc_init.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\sdmmc\\sdmmc_init.c", - "output": "esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\sdmmc_init.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\sdmmc_io.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\sdmmc\\sdmmc_io.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\sdmmc\\sdmmc_io.c", - "output": "esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\sdmmc_io.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\sdmmc_mmc.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\sdmmc\\sdmmc_mmc.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\sdmmc\\sdmmc_mmc.c", - "output": "esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\sdmmc_mmc.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\sdmmc_sd.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\sdmmc\\sdmmc_sd.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\sdmmc\\sdmmc_sd.c", - "output": "esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\sdmmc_sd.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\sd_pwr_ctrl\\sd_pwr_ctrl.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\sdmmc\\sd_pwr_ctrl\\sd_pwr_ctrl.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\sdmmc\\sd_pwr_ctrl\\sd_pwr_ctrl.c", - "output": "esp-idf\\sdmmc\\CMakeFiles\\__idf_sdmmc.dir\\sd_pwr_ctrl\\sd_pwr_ctrl.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_sdspi\\CMakeFiles\\__idf_esp_driver_sdspi.dir\\src\\sdspi_crc.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_sdspi\\src\\sdspi_crc.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_sdspi\\src\\sdspi_crc.c", - "output": "esp-idf\\esp_driver_sdspi\\CMakeFiles\\__idf_esp_driver_sdspi.dir\\src\\sdspi_crc.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_sdspi\\CMakeFiles\\__idf_esp_driver_sdspi.dir\\src\\sdspi_host.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_sdspi\\src\\sdspi_host.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_sdspi\\src\\sdspi_host.c", - "output": "esp-idf\\esp_driver_sdspi\\CMakeFiles\\__idf_esp_driver_sdspi.dir\\src\\sdspi_host.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_sdspi\\CMakeFiles\\__idf_esp_driver_sdspi.dir\\src\\sdspi_transaction.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_sdspi\\src\\sdspi_transaction.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_sdspi\\src\\sdspi_transaction.c", - "output": "esp-idf\\esp_driver_sdspi\\CMakeFiles\\__idf_esp_driver_sdspi.dir\\src\\sdspi_transaction.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_bitscrambler/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_rmt\\CMakeFiles\\__idf_esp_driver_rmt.dir\\src\\rmt_common.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_rmt\\src\\rmt_common.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_rmt\\src\\rmt_common.c", - "output": "esp-idf\\esp_driver_rmt\\CMakeFiles\\__idf_esp_driver_rmt.dir\\src\\rmt_common.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_bitscrambler/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_rmt\\CMakeFiles\\__idf_esp_driver_rmt.dir\\src\\rmt_encoder.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_rmt\\src\\rmt_encoder.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_rmt\\src\\rmt_encoder.c", - "output": "esp-idf\\esp_driver_rmt\\CMakeFiles\\__idf_esp_driver_rmt.dir\\src\\rmt_encoder.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_bitscrambler/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_rmt\\CMakeFiles\\__idf_esp_driver_rmt.dir\\src\\rmt_encoder_bytes.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_rmt\\src\\rmt_encoder_bytes.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_rmt\\src\\rmt_encoder_bytes.c", - "output": "esp-idf\\esp_driver_rmt\\CMakeFiles\\__idf_esp_driver_rmt.dir\\src\\rmt_encoder_bytes.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_bitscrambler/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_rmt\\CMakeFiles\\__idf_esp_driver_rmt.dir\\src\\rmt_encoder_copy.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_rmt\\src\\rmt_encoder_copy.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_rmt\\src\\rmt_encoder_copy.c", - "output": "esp-idf\\esp_driver_rmt\\CMakeFiles\\__idf_esp_driver_rmt.dir\\src\\rmt_encoder_copy.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_bitscrambler/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_rmt\\CMakeFiles\\__idf_esp_driver_rmt.dir\\src\\rmt_encoder_simple.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_rmt\\src\\rmt_encoder_simple.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_rmt\\src\\rmt_encoder_simple.c", - "output": "esp-idf\\esp_driver_rmt\\CMakeFiles\\__idf_esp_driver_rmt.dir\\src\\rmt_encoder_simple.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_bitscrambler/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_rmt\\CMakeFiles\\__idf_esp_driver_rmt.dir\\src\\rmt_rx.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_rmt\\src\\rmt_rx.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_rmt\\src\\rmt_rx.c", - "output": "esp-idf\\esp_driver_rmt\\CMakeFiles\\__idf_esp_driver_rmt.dir\\src\\rmt_rx.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_bitscrambler/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_rmt\\CMakeFiles\\__idf_esp_driver_rmt.dir\\src\\rmt_tx.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_rmt\\src\\rmt_tx.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_rmt\\src\\rmt_tx.c", - "output": "esp-idf\\esp_driver_rmt\\CMakeFiles\\__idf_esp_driver_rmt.dir\\src\\rmt_tx.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_tsens\\CMakeFiles\\__idf_esp_driver_tsens.dir\\src\\temperature_sensor.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_tsens\\src\\temperature_sensor.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_tsens\\src\\temperature_sensor.c", - "output": "esp-idf\\esp_driver_tsens\\CMakeFiles\\__idf_esp_driver_tsens.dir\\src\\temperature_sensor.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_tsens\\CMakeFiles\\__idf_esp_driver_tsens.dir\\src\\temperature_sensor_etm.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_tsens\\src\\temperature_sensor_etm.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_tsens\\src\\temperature_sensor_etm.c", - "output": "esp-idf\\esp_driver_tsens\\CMakeFiles\\__idf_esp_driver_tsens.dir\\src\\temperature_sensor_etm.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_sdm\\CMakeFiles\\__idf_esp_driver_sdm.dir\\src\\sdm.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_sdm\\src\\sdm.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_sdm\\src\\sdm.c", - "output": "esp-idf\\esp_driver_sdm\\CMakeFiles\\__idf_esp_driver_sdm.dir\\src\\sdm.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_i2c\\CMakeFiles\\__idf_esp_driver_i2c.dir\\i2c_master.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_i2c\\i2c_master.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_i2c\\i2c_master.c", - "output": "esp-idf\\esp_driver_i2c\\CMakeFiles\\__idf_esp_driver_i2c.dir\\i2c_master.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_i2c\\CMakeFiles\\__idf_esp_driver_i2c.dir\\i2c_common.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_i2c\\i2c_common.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_i2c\\i2c_common.c", - "output": "esp-idf\\esp_driver_i2c\\CMakeFiles\\__idf_esp_driver_i2c.dir\\i2c_common.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_i2c\\CMakeFiles\\__idf_esp_driver_i2c.dir\\i2c_slave.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_i2c\\i2c_slave.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_i2c\\i2c_slave.c", - "output": "esp-idf\\esp_driver_i2c\\CMakeFiles\\__idf_esp_driver_i2c.dir\\i2c_slave.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_ledc\\CMakeFiles\\__idf_esp_driver_ledc.dir\\src\\ledc.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_ledc\\src\\ledc.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_ledc\\src\\ledc.c", - "output": "esp-idf\\esp_driver_ledc\\CMakeFiles\\__idf_esp_driver_ledc.dir\\src\\ledc.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_bitscrambler/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_parlio\\CMakeFiles\\__idf_esp_driver_parlio.dir\\src\\parlio_common.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_parlio\\src\\parlio_common.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_parlio\\src\\parlio_common.c", - "output": "esp-idf\\esp_driver_parlio\\CMakeFiles\\__idf_esp_driver_parlio.dir\\src\\parlio_common.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_bitscrambler/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_parlio\\CMakeFiles\\__idf_esp_driver_parlio.dir\\src\\parlio_tx.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_parlio\\src\\parlio_tx.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_parlio\\src\\parlio_tx.c", - "output": "esp-idf\\esp_driver_parlio\\CMakeFiles\\__idf_esp_driver_parlio.dir\\src\\parlio_tx.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_bitscrambler/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_parlio\\CMakeFiles\\__idf_esp_driver_parlio.dir\\src\\parlio_rx.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_parlio\\src\\parlio_rx.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_parlio\\src\\parlio_rx.c", - "output": "esp-idf\\esp_driver_parlio\\CMakeFiles\\__idf_esp_driver_parlio.dir\\src\\parlio_rx.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_twai\\CMakeFiles\\__idf_esp_driver_twai.dir\\esp_twai.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_twai\\esp_twai.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_twai\\esp_twai.c", - "output": "esp-idf\\esp_driver_twai\\CMakeFiles\\__idf_esp_driver_twai.dir\\esp_twai.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_driver_twai\\CMakeFiles\\__idf_esp_driver_twai.dir\\esp_twai_onchip.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_twai\\esp_twai_onchip.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_driver_twai\\esp_twai_onchip.c", - "output": "esp-idf\\esp_driver_twai\\CMakeFiles\\__idf_esp_driver_twai.dir\\esp_twai_onchip.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\adc_legacy.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\driver\\deprecated\\adc_legacy.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\driver\\deprecated\\adc_legacy.c", - "output": "esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\adc_legacy.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\adc_dma_legacy.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\driver\\deprecated\\adc_dma_legacy.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\driver\\deprecated\\adc_dma_legacy.c", - "output": "esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\adc_dma_legacy.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\timer_legacy.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\driver\\deprecated\\timer_legacy.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\driver\\deprecated\\timer_legacy.c", - "output": "esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\timer_legacy.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\i2c\\i2c.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\driver\\i2c\\i2c.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\driver\\i2c\\i2c.c", - "output": "esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\i2c\\i2c.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\i2s_legacy.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\driver\\deprecated\\i2s_legacy.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\driver\\deprecated\\i2s_legacy.c", - "output": "esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\i2s_legacy.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\mcpwm_legacy.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\driver\\deprecated\\mcpwm_legacy.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\driver\\deprecated\\mcpwm_legacy.c", - "output": "esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\mcpwm_legacy.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\pcnt_legacy.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\driver\\deprecated\\pcnt_legacy.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\driver\\deprecated\\pcnt_legacy.c", - "output": "esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\pcnt_legacy.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\rmt_legacy.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\driver\\deprecated\\rmt_legacy.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\driver\\deprecated\\rmt_legacy.c", - "output": "esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\rmt_legacy.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\sigma_delta_legacy.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\driver\\deprecated\\sigma_delta_legacy.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\driver\\deprecated\\sigma_delta_legacy.c", - "output": "esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\sigma_delta_legacy.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\rtc_temperature_legacy.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\driver\\deprecated\\rtc_temperature_legacy.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\driver\\deprecated\\rtc_temperature_legacy.c", - "output": "esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\deprecated\\rtc_temperature_legacy.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\twai\\twai.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\driver\\twai\\twai.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\driver\\twai\\twai.c", - "output": "esp-idf\\driver\\CMakeFiles\\__idf_driver.dir\\twai\\twai.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\commands.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\console\\commands.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\console\\commands.c", - "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\commands.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\esp_console_common.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\console\\esp_console_common.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\console\\esp_console_common.c", - "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\esp_console_common.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\esp_console_repl_internal.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\console\\esp_console_repl_internal.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\console\\esp_console_repl_internal.c", - "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\esp_console_repl_internal.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\split_argv.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\console\\split_argv.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\console\\split_argv.c", - "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\split_argv.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\linenoise\\linenoise.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\console\\linenoise\\linenoise.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\console\\linenoise\\linenoise.c", - "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\linenoise\\linenoise.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\esp_console_repl_chip.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\console\\esp_console_repl_chip.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\console\\esp_console_repl_chip.c", - "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\esp_console_repl_chip.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_cmd.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\console\\argtable3\\arg_cmd.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\console\\argtable3\\arg_cmd.c", - "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_cmd.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_date.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\console\\argtable3\\arg_date.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\console\\argtable3\\arg_date.c", - "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_date.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_dbl.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\console\\argtable3\\arg_dbl.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\console\\argtable3\\arg_dbl.c", - "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_dbl.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_dstr.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\console\\argtable3\\arg_dstr.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\console\\argtable3\\arg_dstr.c", - "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_dstr.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_end.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\console\\argtable3\\arg_end.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\console\\argtable3\\arg_end.c", - "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_end.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_file.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\console\\argtable3\\arg_file.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\console\\argtable3\\arg_file.c", - "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_file.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_hashtable.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\console\\argtable3\\arg_hashtable.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\console\\argtable3\\arg_hashtable.c", - "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_hashtable.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_int.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\console\\argtable3\\arg_int.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\console\\argtable3\\arg_int.c", - "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_int.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_lit.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\console\\argtable3\\arg_lit.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\console\\argtable3\\arg_lit.c", - "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_lit.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_rem.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\console\\argtable3\\arg_rem.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\console\\argtable3\\arg_rem.c", - "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_rem.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_rex.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\console\\argtable3\\arg_rex.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\console\\argtable3\\arg_rex.c", - "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_rex.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_str.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\console\\argtable3\\arg_str.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\console\\argtable3\\arg_str.c", - "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_str.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_utils.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\console\\argtable3\\arg_utils.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\console\\argtable3\\arg_utils.c", - "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\arg_utils.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\argtable3.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\console\\argtable3\\argtable3.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\console\\argtable3\\argtable3.c", - "output": "esp-idf\\console\\CMakeFiles\\__idf_console.dir\\argtable3\\argtable3.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\src\\wifi_default.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_wifi\\src\\wifi_default.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_wifi\\src\\wifi_default.c", - "output": "esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\src\\wifi_default.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\src\\wifi_netif.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_wifi\\src\\wifi_netif.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_wifi\\src\\wifi_netif.c", - "output": "esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\src\\wifi_netif.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/wpa_supplicant/esp_supplicant/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\src\\wifi_default_ap.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_wifi\\src\\wifi_default_ap.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_wifi\\src\\wifi_default_ap.c", - "output": "esp-idf\\esp_wifi\\CMakeFiles\\__idf_esp_wifi.dir\\src\\wifi_default_ap.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_phy\\CMakeFiles\\__idf_esp_phy.dir\\src\\phy_override.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_phy\\src\\phy_override.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_phy\\src\\phy_override.c", - "output": "esp-idf\\esp_phy\\CMakeFiles\\__idf_esp_phy.dir\\src\\phy_override.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_phy\\CMakeFiles\\__idf_esp_phy.dir\\src\\lib_printf.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_phy\\src\\lib_printf.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_phy\\src\\lib_printf.c", - "output": "esp-idf\\esp_phy\\CMakeFiles\\__idf_esp_phy.dir\\src\\lib_printf.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_phy\\CMakeFiles\\__idf_esp_phy.dir\\src\\phy_common.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_phy\\src\\phy_common.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_phy\\src\\phy_common.c", - "output": "esp-idf\\esp_phy\\CMakeFiles\\__idf_esp_phy.dir\\src\\phy_common.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_phy\\CMakeFiles\\__idf_esp_phy.dir\\src\\phy_init_esp32hxx.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_phy\\src\\phy_init_esp32hxx.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_phy\\src\\phy_init_esp32hxx.c", - "output": "esp-idf\\esp_phy\\CMakeFiles\\__idf_esp_phy.dir\\src\\phy_init_esp32hxx.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_wifi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_wifi/wifi_apps/nan_app/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_phy\\CMakeFiles\\__idf_esp_phy.dir\\src\\btbb_init.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_phy\\src\\btbb_init.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\esp_phy\\src\\btbb_init.c", - "output": "esp-idf\\esp_phy\\CMakeFiles\\__idf_esp_phy.dir\\src\\btbb_init.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\ieee802154\\CMakeFiles\\__idf_ieee802154.dir\\esp_ieee802154.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\ieee802154\\esp_ieee802154.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\ieee802154\\esp_ieee802154.c", - "output": "esp-idf\\ieee802154\\CMakeFiles\\__idf_ieee802154.dir\\esp_ieee802154.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\ieee802154\\CMakeFiles\\__idf_ieee802154.dir\\driver\\esp_ieee802154_ack.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\ieee802154\\driver\\esp_ieee802154_ack.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\ieee802154\\driver\\esp_ieee802154_ack.c", - "output": "esp-idf\\ieee802154\\CMakeFiles\\__idf_ieee802154.dir\\driver\\esp_ieee802154_ack.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\ieee802154\\CMakeFiles\\__idf_ieee802154.dir\\driver\\esp_ieee802154_dev.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\ieee802154\\driver\\esp_ieee802154_dev.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\ieee802154\\driver\\esp_ieee802154_dev.c", - "output": "esp-idf\\ieee802154\\CMakeFiles\\__idf_ieee802154.dir\\driver\\esp_ieee802154_dev.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\ieee802154\\CMakeFiles\\__idf_ieee802154.dir\\driver\\esp_ieee802154_event.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\ieee802154\\driver\\esp_ieee802154_event.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\ieee802154\\driver\\esp_ieee802154_event.c", - "output": "esp-idf\\ieee802154\\CMakeFiles\\__idf_ieee802154.dir\\driver\\esp_ieee802154_event.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\ieee802154\\CMakeFiles\\__idf_ieee802154.dir\\driver\\esp_ieee802154_frame.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\ieee802154\\driver\\esp_ieee802154_frame.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\ieee802154\\driver\\esp_ieee802154_frame.c", - "output": "esp-idf\\ieee802154\\CMakeFiles\\__idf_ieee802154.dir\\driver\\esp_ieee802154_frame.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\ieee802154\\CMakeFiles\\__idf_ieee802154.dir\\driver\\esp_ieee802154_pib.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\ieee802154\\driver\\esp_ieee802154_pib.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\ieee802154\\driver\\esp_ieee802154_pib.c", - "output": "esp-idf\\ieee802154\\CMakeFiles\\__idf_ieee802154.dir\\driver\\esp_ieee802154_pib.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\ieee802154\\CMakeFiles\\__idf_ieee802154.dir\\driver\\esp_ieee802154_util.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\ieee802154\\driver\\esp_ieee802154_util.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\ieee802154\\driver\\esp_ieee802154_util.c", - "output": "esp-idf\\ieee802154\\CMakeFiles\\__idf_ieee802154.dir\\driver\\esp_ieee802154_util.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\ieee802154\\CMakeFiles\\__idf_ieee802154.dir\\driver\\esp_ieee802154_sec.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\ieee802154\\driver\\esp_ieee802154_sec.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\ieee802154\\driver\\esp_ieee802154_sec.c", - "output": "esp-idf\\ieee802154\\CMakeFiles\\__idf_ieee802154.dir\\driver\\esp_ieee802154_sec.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\ieee802154\\CMakeFiles\\__idf_ieee802154.dir\\driver\\esp_ieee802154_timer.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\ieee802154\\driver\\esp_ieee802154_timer.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\ieee802154\\driver\\esp_ieee802154_timer.c", - "output": "esp-idf\\ieee802154\\CMakeFiles\\__idf_ieee802154.dir\\driver\\esp_ieee802154_timer.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\src\\esp_openthread.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\src\\esp_openthread.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\src\\esp_openthread.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\src\\esp_openthread.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\src\\esp_openthread_cli.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\src\\esp_openthread_cli.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\src\\esp_openthread_cli.c", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\src\\esp_openthread_cli.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\src\\esp_openthread_lock.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\src\\esp_openthread_lock.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\src\\esp_openthread_lock.c", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\src\\esp_openthread_lock.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\src\\esp_openthread_lwip_netif.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\src\\esp_openthread_lwip_netif.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\src\\esp_openthread_lwip_netif.c", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\src\\esp_openthread_lwip_netif.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\src\\esp_openthread_netif_glue.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\src\\esp_openthread_netif_glue.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\src\\esp_openthread_netif_glue.c", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\src\\esp_openthread_netif_glue.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\src\\esp_openthread_platform.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\src\\esp_openthread_platform.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\src\\esp_openthread_platform.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\src\\esp_openthread_platform.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\src\\esp_openthread_task_queue.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\src\\esp_openthread_task_queue.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\src\\esp_openthread_task_queue.c", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\src\\esp_openthread_task_queue.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\src\\port\\esp_openthread_alarm.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\src\\port\\esp_openthread_alarm.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\src\\port\\esp_openthread_alarm.c", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\src\\port\\esp_openthread_alarm.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\src\\port\\esp_openthread_logging.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\src\\port\\esp_openthread_logging.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\src\\port\\esp_openthread_logging.c", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\src\\port\\esp_openthread_logging.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\src\\port\\esp_openthread_memory.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\src\\port\\esp_openthread_memory.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\src\\port\\esp_openthread_memory.c", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\src\\port\\esp_openthread_memory.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\src\\port\\esp_openthread_misc.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\src\\port\\esp_openthread_misc.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\src\\port\\esp_openthread_misc.c", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\src\\port\\esp_openthread_misc.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\src\\port\\esp_openthread_radio.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\src\\port\\esp_openthread_radio.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\src\\port\\esp_openthread_radio.c", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\src\\port\\esp_openthread_radio.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\src\\port\\esp_openthread_settings.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\src\\port\\esp_openthread_settings.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\src\\port\\esp_openthread_settings.c", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\src\\port\\esp_openthread_settings.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\src\\port\\esp_openthread_spi_slave.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\src\\port\\esp_openthread_spi_slave.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\src\\port\\esp_openthread_spi_slave.c", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\src\\port\\esp_openthread_spi_slave.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\src\\port\\esp_openthread_uart.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\src\\port\\esp_openthread_uart.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\src\\port\\esp_openthread_uart.c", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\src\\port\\esp_openthread_uart.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\src\\port\\esp_openthread_udp.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\src\\port\\esp_openthread_udp.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\src\\port\\esp_openthread_udp.c", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\src\\port\\esp_openthread_udp.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\examples\\platforms\\utils\\debug_uart.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\examples\\platforms\\utils\\debug_uart.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\examples\\platforms\\utils\\debug_uart.c", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\examples\\platforms\\utils\\debug_uart.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\examples\\platforms\\utils\\link_metrics.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\examples\\platforms\\utils\\link_metrics.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\examples\\platforms\\utils\\link_metrics.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\examples\\platforms\\utils\\link_metrics.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\examples\\platforms\\utils\\mac_frame.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\examples\\platforms\\utils\\mac_frame.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\examples\\platforms\\utils\\mac_frame.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\examples\\platforms\\utils\\mac_frame.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\examples\\platforms\\utils\\otns_utils.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\examples\\platforms\\utils\\otns_utils.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\examples\\platforms\\utils\\otns_utils.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\examples\\platforms\\utils\\otns_utils.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\examples\\platforms\\utils\\settings_ram.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\examples\\platforms\\utils\\settings_ram.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\examples\\platforms\\utils\\settings_ram.c", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\examples\\platforms\\utils\\settings_ram.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\examples\\platforms\\utils\\uart_rtt.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\examples\\platforms\\utils\\uart_rtt.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\examples\\platforms\\utils\\uart_rtt.c", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\examples\\platforms\\utils\\uart_rtt.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\backbone_router_ftd_api.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\backbone_router_ftd_api.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\backbone_router_ftd_api.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\backbone_router_ftd_api.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\ble_secure_api.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\ble_secure_api.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\ble_secure_api.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\ble_secure_api.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\border_agent_api.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\border_agent_api.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\border_agent_api.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\border_agent_api.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\border_router_api.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\border_router_api.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\border_router_api.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\border_router_api.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\border_routing_api.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\border_routing_api.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\border_routing_api.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\border_routing_api.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\channel_manager_api.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\channel_manager_api.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\channel_manager_api.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\channel_manager_api.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\channel_monitor_api.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\channel_monitor_api.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\channel_monitor_api.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\channel_monitor_api.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\coap_api.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\coap_api.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\coap_api.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\coap_api.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\coap_secure_api.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\coap_secure_api.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\coap_secure_api.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\coap_secure_api.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\commissioner_api.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\commissioner_api.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\commissioner_api.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\commissioner_api.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\crypto_api.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\crypto_api.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\crypto_api.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\crypto_api.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\dataset_ftd_api.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\dataset_ftd_api.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\dataset_ftd_api.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\dataset_ftd_api.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\dataset_updater_api.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\dataset_updater_api.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\dataset_updater_api.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\dataset_updater_api.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\diags_api.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\diags_api.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\diags_api.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\diags_api.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\dns_server_api.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\dns_server_api.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\dns_server_api.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\dns_server_api.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\error_api.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\error_api.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\error_api.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\error_api.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\history_tracker_api.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\history_tracker_api.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\history_tracker_api.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\history_tracker_api.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\instance_api.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\instance_api.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\instance_api.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\instance_api.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\jam_detection_api.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\jam_detection_api.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\jam_detection_api.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\jam_detection_api.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\joiner_api.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\joiner_api.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\joiner_api.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\joiner_api.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\link_raw_api.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\link_raw_api.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\link_raw_api.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\link_raw_api.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\logging_api.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\logging_api.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\logging_api.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\logging_api.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\mdns_api.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\mdns_api.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\mdns_api.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\mdns_api.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\mesh_diag_api.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\mesh_diag_api.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\mesh_diag_api.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\mesh_diag_api.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\multi_radio_api.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\multi_radio_api.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\multi_radio_api.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\multi_radio_api.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\netdata_publisher_api.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\netdata_publisher_api.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\netdata_publisher_api.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\netdata_publisher_api.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\ping_sender_api.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\ping_sender_api.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\ping_sender_api.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\ping_sender_api.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\radio_stats_api.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\radio_stats_api.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\radio_stats_api.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\radio_stats_api.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\random_noncrypto_api.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\random_noncrypto_api.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\random_noncrypto_api.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\random_noncrypto_api.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\server_api.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\server_api.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\server_api.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\server_api.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\sntp_api.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\sntp_api.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\sntp_api.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\sntp_api.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\srp_client_api.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\srp_client_api.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\srp_client_api.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\srp_client_api.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\srp_client_buffers_api.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\srp_client_buffers_api.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\srp_client_buffers_api.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\srp_client_buffers_api.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\srp_server_api.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\srp_server_api.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\srp_server_api.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\srp_server_api.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\tasklet_api.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\tasklet_api.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\tasklet_api.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\tasklet_api.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\tcp_ext_api.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\tcp_ext_api.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\tcp_ext_api.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\tcp_ext_api.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\thread_api.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\thread_api.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\thread_api.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\thread_api.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\thread_ftd_api.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\thread_ftd_api.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\thread_ftd_api.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\thread_ftd_api.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\trel_api.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\trel_api.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\trel_api.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\trel_api.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\verhoeff_checksum_api.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\verhoeff_checksum_api.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\api\\verhoeff_checksum_api.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\api\\verhoeff_checksum_api.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\common\\appender.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\common\\appender.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\common\\appender.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\common\\appender.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\common\\binary_search.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\common\\binary_search.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\common\\binary_search.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\common\\binary_search.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\common\\crc.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\common\\crc.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\common\\crc.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\common\\crc.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\common\\data.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\common\\data.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\common\\data.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\common\\data.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\common\\error.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\common\\error.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\common\\error.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\common\\error.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\common\\frame_builder.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\common\\frame_builder.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\common\\frame_builder.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\common\\frame_builder.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\common\\frame_data.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\common\\frame_data.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\common\\frame_data.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\common\\frame_data.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\common\\heap_data.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\common\\heap_data.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\common\\heap_data.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\common\\heap_data.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\common\\log.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\common\\log.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\common\\log.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\common\\log.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\common\\message.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\common\\message.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\common\\message.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\common\\message.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\common\\offset_range.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\common\\offset_range.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\common\\offset_range.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\common\\offset_range.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\common\\preference.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\common\\preference.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\common\\preference.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\common\\preference.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\common\\random.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\common\\random.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\common\\random.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\common\\random.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\common\\string.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\common\\string.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\common\\string.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\common\\string.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\common\\tasklet.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\common\\tasklet.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\common\\tasklet.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\common\\tasklet.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\common\\timer.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\common\\timer.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\common\\timer.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\common\\timer.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\common\\tlvs.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\common\\tlvs.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\common\\tlvs.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\common\\tlvs.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\common\\trickle_timer.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\common\\trickle_timer.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\common\\trickle_timer.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\common\\trickle_timer.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\common\\uptime.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\common\\uptime.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\common\\uptime.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\common\\uptime.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\crypto\\aes_ccm.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\crypto\\aes_ccm.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\crypto\\aes_ccm.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\crypto\\aes_ccm.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\crypto\\aes_ecb.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\crypto\\aes_ecb.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\crypto\\aes_ecb.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\crypto\\aes_ecb.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\crypto\\crypto_platform.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\crypto\\crypto_platform.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\crypto\\crypto_platform.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\crypto\\crypto_platform.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\crypto\\hkdf_sha256.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\crypto\\hkdf_sha256.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\crypto\\hkdf_sha256.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\crypto\\hkdf_sha256.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\crypto\\hmac_sha256.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\crypto\\hmac_sha256.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\crypto\\hmac_sha256.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\crypto\\hmac_sha256.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\crypto\\mbedtls.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\crypto\\mbedtls.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\crypto\\mbedtls.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\crypto\\mbedtls.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\crypto\\sha256.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\crypto\\sha256.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\crypto\\sha256.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\crypto\\sha256.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\crypto\\storage.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\crypto\\storage.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\crypto\\storage.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\crypto\\storage.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\diags\\factory_diags.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\diags\\factory_diags.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\diags\\factory_diags.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\diags\\factory_diags.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\instance\\instance.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\instance\\instance.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\instance\\instance.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\instance\\instance.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\mac\\link_raw.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\mac\\link_raw.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\mac\\link_raw.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\mac\\link_raw.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\mac\\mac_frame.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\mac\\mac_frame.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\mac\\mac_frame.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\mac\\mac_frame.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\mac\\mac_header_ie.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\mac\\mac_header_ie.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\mac\\mac_header_ie.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\mac\\mac_header_ie.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\mac\\mac_types.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\mac\\mac_types.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\mac\\mac_types.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\mac\\mac_types.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\mac\\sub_mac.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\mac\\sub_mac.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\mac\\sub_mac.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\mac\\sub_mac.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\mac\\sub_mac_callbacks.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\mac\\sub_mac_callbacks.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\mac\\sub_mac_callbacks.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\mac\\sub_mac_callbacks.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\mac\\sub_mac_csl_receiver.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\mac\\sub_mac_csl_receiver.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\mac\\sub_mac_csl_receiver.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\mac\\sub_mac_csl_receiver.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\mac\\sub_mac_wed.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\mac\\sub_mac_wed.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\mac\\sub_mac_wed.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\mac\\sub_mac_wed.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\mac\\wakeup_tx_scheduler.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\mac\\wakeup_tx_scheduler.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\mac\\wakeup_tx_scheduler.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\mac\\wakeup_tx_scheduler.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\radio\\ble_secure.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\radio\\ble_secure.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\radio\\ble_secure.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\radio\\ble_secure.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\radio\\radio.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\radio\\radio.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\radio\\radio.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\radio\\radio.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\radio\\radio_callbacks.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\radio\\radio_callbacks.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\radio\\radio_callbacks.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\radio\\radio_callbacks.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\radio\\radio_platform.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\radio\\radio_platform.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\radio\\radio_platform.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\radio\\radio_platform.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\radio\\trel_interface.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\radio\\trel_interface.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\radio\\trel_interface.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\radio\\trel_interface.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\radio\\trel_link.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\radio\\trel_link.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\radio\\trel_link.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\radio\\trel_link.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\radio\\trel_packet.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\radio\\trel_packet.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\radio\\trel_packet.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\radio\\trel_packet.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\radio\\trel_peer.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\radio\\trel_peer.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\radio\\trel_peer.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\radio\\trel_peer.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\radio\\trel_peer_discoverer.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\radio\\trel_peer_discoverer.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\radio\\trel_peer_discoverer.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\radio\\trel_peer_discoverer.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\thread\\anycast_locator.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\thread\\anycast_locator.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\thread\\anycast_locator.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\thread\\anycast_locator.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\thread\\child.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\thread\\child.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\thread\\child.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\thread\\child.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\thread\\child_table.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\thread\\child_table.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\thread\\child_table.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\thread\\child_table.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\thread\\dua_manager.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\thread\\dua_manager.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\thread\\dua_manager.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\thread\\dua_manager.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\thread\\link_metrics_types.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\thread\\link_metrics_types.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\thread\\link_metrics_types.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\thread\\link_metrics_types.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\thread\\link_quality.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\thread\\link_quality.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\thread\\link_quality.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\thread\\link_quality.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\thread\\mle_ftd.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\thread\\mle_ftd.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\thread\\mle_ftd.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\thread\\mle_ftd.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\thread\\mle_tlvs.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\thread\\mle_tlvs.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\thread\\mle_tlvs.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\thread\\mle_tlvs.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\thread\\mlr_manager.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\thread\\mlr_manager.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\thread\\mlr_manager.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\thread\\mlr_manager.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\thread\\network_data_local.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\thread\\network_data_local.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\thread\\network_data_local.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\thread\\network_data_local.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\thread\\network_data_notifier.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\thread\\network_data_notifier.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\thread\\network_data_notifier.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\thread\\network_data_notifier.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\thread\\network_data_publisher.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\thread\\network_data_publisher.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\thread\\network_data_publisher.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\thread\\network_data_publisher.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\thread\\network_data_tlvs.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\thread\\network_data_tlvs.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\thread\\network_data_tlvs.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\thread\\network_data_tlvs.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\thread\\network_diagnostic_tlvs.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\thread\\network_diagnostic_tlvs.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\thread\\network_diagnostic_tlvs.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\thread\\network_diagnostic_tlvs.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\thread\\radio_selector.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\thread\\radio_selector.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\thread\\radio_selector.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\thread\\radio_selector.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\thread\\router.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\thread\\router.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\thread\\router.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\thread\\router.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\thread\\router_table.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\thread\\router_table.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\thread\\router_table.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\thread\\router_table.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\thread\\src_match_controller.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\thread\\src_match_controller.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\thread\\src_match_controller.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\thread\\src_match_controller.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\thread\\thread_link_info.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\thread\\thread_link_info.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\thread\\thread_link_info.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\thread\\thread_link_info.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\thread\\uri_paths.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\thread\\uri_paths.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\thread\\uri_paths.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\thread\\uri_paths.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\thread\\version.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\thread\\version.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\thread\\version.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\thread\\version.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\utils\\channel_manager.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\utils\\channel_manager.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\utils\\channel_manager.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\utils\\channel_manager.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\utils\\channel_monitor.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\utils\\channel_monitor.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\utils\\channel_monitor.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\utils\\channel_monitor.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\utils\\flash.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\utils\\flash.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\utils\\flash.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\utils\\flash.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\utils\\heap.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\utils\\heap.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\utils\\heap.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\utils\\heap.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\utils\\history_tracker.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\utils\\history_tracker.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\utils\\history_tracker.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\utils\\history_tracker.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\utils\\jam_detector.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\utils\\jam_detector.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\utils\\jam_detector.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\utils\\jam_detector.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\utils\\link_metrics_manager.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\utils\\link_metrics_manager.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\utils\\link_metrics_manager.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\utils\\link_metrics_manager.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\utils\\mesh_diag.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\utils\\mesh_diag.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\utils\\mesh_diag.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\utils\\mesh_diag.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\utils\\otns.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\utils\\otns.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\utils\\otns.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\utils\\otns.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\utils\\parse_cmdline.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\utils\\parse_cmdline.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\utils\\parse_cmdline.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\utils\\parse_cmdline.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\utils\\ping_sender.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\utils\\ping_sender.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\utils\\ping_sender.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\utils\\ping_sender.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\utils\\power_calibration.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\utils\\power_calibration.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\utils\\power_calibration.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\utils\\power_calibration.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\utils\\slaac_address.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\utils\\slaac_address.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\utils\\slaac_address.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\utils\\slaac_address.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\utils\\srp_client_buffers.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\utils\\srp_client_buffers.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\utils\\srp_client_buffers.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\utils\\srp_client_buffers.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\utils\\verhoeff_checksum.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\utils\\verhoeff_checksum.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\core\\utils\\verhoeff_checksum.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\core\\utils\\verhoeff_checksum.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\lib\\hdlc\\hdlc.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\lib\\hdlc\\hdlc.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\lib\\hdlc\\hdlc.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\lib\\hdlc\\hdlc.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\lib\\spinel\\example_vendor_hook.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\lib\\spinel\\example_vendor_hook.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\lib\\spinel\\example_vendor_hook.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\lib\\spinel\\example_vendor_hook.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\lib\\spinel\\logger.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\lib\\spinel\\logger.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\lib\\spinel\\logger.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\lib\\spinel\\logger.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\lib\\spinel\\radio_spinel.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\lib\\spinel\\radio_spinel.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\lib\\spinel\\radio_spinel.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\lib\\spinel\\radio_spinel.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\lib\\spinel\\spinel.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\lib\\spinel\\spinel.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\lib\\spinel\\spinel.c", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\lib\\spinel\\spinel.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\lib\\spinel\\spinel_buffer.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\lib\\spinel\\spinel_buffer.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\lib\\spinel\\spinel_buffer.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\lib\\spinel\\spinel_buffer.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\lib\\spinel\\spinel_decoder.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\lib\\spinel\\spinel_decoder.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\lib\\spinel\\spinel_decoder.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\lib\\spinel\\spinel_decoder.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\lib\\spinel\\spinel_driver.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\lib\\spinel\\spinel_driver.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\lib\\spinel\\spinel_driver.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\lib\\spinel\\spinel_driver.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\lib\\spinel\\spinel_encoder.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\lib\\spinel\\spinel_encoder.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\lib\\spinel\\spinel_encoder.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\lib\\spinel\\spinel_encoder.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\lib\\spinel\\spinel_helper.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\lib\\spinel\\spinel_helper.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\lib\\spinel\\spinel_helper.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\lib\\spinel\\spinel_helper.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\lib\\spinel\\spinel_prop_codec.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\lib\\spinel\\spinel_prop_codec.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\lib\\spinel\\spinel_prop_codec.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\lib\\spinel\\spinel_prop_codec.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\ncp\\changed_props_set.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\ncp\\changed_props_set.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\ncp\\changed_props_set.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\ncp\\changed_props_set.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\ncp\\example_vendor_hook.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\ncp\\example_vendor_hook.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\ncp\\example_vendor_hook.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\ncp\\example_vendor_hook.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\ncp\\multipan_platform.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\ncp\\multipan_platform.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\ncp\\multipan_platform.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\ncp\\multipan_platform.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\ncp\\ncp_base.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\ncp\\ncp_base.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\ncp\\ncp_base.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\ncp\\ncp_base.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\ncp\\ncp_base_dispatcher.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\ncp\\ncp_base_dispatcher.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\ncp\\ncp_base_dispatcher.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\ncp\\ncp_base_dispatcher.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\ncp\\ncp_base_ftd.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\ncp\\ncp_base_ftd.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\ncp\\ncp_base_ftd.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\ncp\\ncp_base_ftd.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\ncp\\ncp_base_mtd.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\ncp\\ncp_base_mtd.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\ncp\\ncp_base_mtd.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\ncp\\ncp_base_mtd.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\ncp\\ncp_base_radio.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\ncp\\ncp_base_radio.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\ncp\\ncp_base_radio.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\ncp\\ncp_base_radio.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\ncp\\ncp_hdlc.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\ncp\\ncp_hdlc.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\ncp\\ncp_hdlc.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\ncp\\ncp_hdlc.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\ncp\\ncp_spi.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\ncp\\ncp_spi.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\src\\ncp\\ncp_spi.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\src\\ncp\\ncp_spi.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\examples\\apps\\ncp\\ncp.c.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\examples\\apps\\ncp\\ncp.c", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\openthread\\examples\\apps\\ncp\\ncp.c", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\openthread\\examples\\apps\\ncp\\ncp.c.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\src\\ncp\\esp_openthread_ncp.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\src\\ncp\\esp_openthread_ncp.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\src\\ncp\\esp_openthread_ncp.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\src\\ncp\\esp_openthread_ncp.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-g++.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DOPENTHREAD_BUILD_DATETIME=\"\\\" 2025-12-23 18:33:51 UTC\\\"\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DPACKAGE_VERSION=\\\"fcae32885-b945928d7\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/console -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\src\\ncp\\esp_openthread_ncp_hdlc.cpp.obj -c C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\src\\ncp\\esp_openthread_ncp_hdlc.cpp", - "file": "C:\\Users\\Laurent\\esp\\v5.5.1\\esp-idf\\components\\openthread\\src\\ncp\\esp_openthread_ncp_hdlc.cpp", - "output": "esp-idf\\openthread\\CMakeFiles\\__idf_openthread.dir\\src\\ncp\\esp_openthread_ncp_hdlc.cpp.obj" -}, -{ - "directory": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "command": "C:\\Users\\Laurent\\.espressif\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1\\\" -DOPENTHREAD_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_PROJECT_LIB_CONFIG_FILE=\\\"openthread-core-esp32x-radio-config.h\\\" -DOPENTHREAD_RADIO=1 -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D_POSIX_READER_WRITER_LOCKS -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/config -IC:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/main -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/platform_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/config/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/include/freertos -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/include/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/ldo/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/debug_probe/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/tuning_scheme_impl/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/. -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/private_include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/tlsf -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/register -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/platform_port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2/include/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/esp32h2 -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/riscv -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/include/private -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/include/apps/sntp -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/arch -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/include/sys -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/touch_sensor/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -IC:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/include -march=rv32imac_zicsr_zifencei -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-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -nostartfiles -Os -freorder-blocks -msave-restore -fmacro-prefix-map=C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp=. -fmacro-prefix-map=C:/Users/Laurent/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o esp-idf\\main\\CMakeFiles\\__idf_main.dir\\esp_ot_rcp.c.obj -c C:\\Users\\Laurent\\Desktop\\board-mate\\esp32-thread\\open-thread-rcp\\main\\esp_ot_rcp.c", - "file": "C:\\Users\\Laurent\\Desktop\\board-mate\\esp32-thread\\open-thread-rcp\\main\\esp_ot_rcp.c", - "output": "esp-idf\\main\\CMakeFiles\\__idf_main.dir\\esp_ot_rcp.c.obj" -} -] \ No newline at end of file diff --git a/esp32-thread/open-thread-rcp/build/config.env b/esp32-thread/open-thread-rcp/build/config.env deleted file mode 100644 index 94083bc0..00000000 --- a/esp32-thread/open-thread-rcp/build/config.env +++ /dev/null @@ -1,12 +0,0 @@ -{ - "COMPONENT_KCONFIGS": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_bitscrambler/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_wifi/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/pthread/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/Kconfig", - "COMPONENT_KCONFIGS_PROJBUILD": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/Kconfig.projbuild;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/Kconfig.projbuild;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/Kconfig.projbuild;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esptool_py/Kconfig.projbuild;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/partition_table/Kconfig.projbuild;C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/main/Kconfig.projbuild", - "COMPONENT_SDKCONFIG_RENAMES": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/sdkconfig.rename;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/sdkconfig.rename;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/sdkconfig.rename;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/sdkconfig.rename;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/sdkconfig.rename;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/sdkconfig.rename;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/sdkconfig.rename;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/sdkconfig.rename;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/sdkconfig.rename;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/sdkconfig.rename;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/sdkconfig.rename;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/sdkconfig.rename;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_wifi/sdkconfig.rename;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esptool_py/sdkconfig.rename;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/sdkconfig.rename;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/sdkconfig.rename;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/sdkconfig.rename;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/sdkconfig.rename;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/pthread/sdkconfig.rename;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/sdkconfig.rename;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/sdkconfig.rename", - "IDF_TARGET": "esp32h2", - "IDF_TOOLCHAIN": "gcc", - "IDF_VERSION": "5.5.1", - "IDF_ENV_FPGA": "", - "IDF_PATH": "C:/Users/Laurent/esp/v5.5.1/esp-idf", - "COMPONENT_KCONFIGS_SOURCE_FILE": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/kconfigs.in", - "COMPONENT_KCONFIGS_PROJBUILD_SOURCE_FILE": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/kconfigs_projbuild.in" -} diff --git a/esp32-thread/open-thread-rcp/build/config/kconfig_menus.json b/esp32-thread/open-thread-rcp/build/config/kconfig_menus.json deleted file mode 100644 index 000ccefa..00000000 --- a/esp32-thread/open-thread-rcp/build/config/kconfig_menus.json +++ /dev/null @@ -1,21444 +0,0 @@ -[ - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_CAPS_ECO_VER_MAX", - "name": "SOC_CAPS_ECO_VER_MAX", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_SUPPORTED", - "name": "SOC_ADC_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ANA_CMPR_SUPPORTED", - "name": "SOC_ANA_CMPR_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_DEDICATED_GPIO_SUPPORTED", - "name": "SOC_DEDICATED_GPIO_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_UART_SUPPORTED", - "name": "SOC_UART_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_UHCI_SUPPORTED", - "name": "SOC_UHCI_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GDMA_SUPPORTED", - "name": "SOC_GDMA_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_AHB_GDMA_SUPPORTED", - "name": "SOC_AHB_GDMA_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ASYNC_MEMCPY_SUPPORTED", - "name": "SOC_ASYNC_MEMCPY_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PCNT_SUPPORTED", - "name": "SOC_PCNT_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MCPWM_SUPPORTED", - "name": "SOC_MCPWM_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_TWAI_SUPPORTED", - "name": "SOC_TWAI_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PHY_SUPPORTED", - "name": "SOC_PHY_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_BT_SUPPORTED", - "name": "SOC_BT_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GPTIMER_SUPPORTED", - "name": "SOC_GPTIMER_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_IEEE802154_SUPPORTED", - "name": "SOC_IEEE802154_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_IEEE802154_BLE_ONLY", - "name": "SOC_IEEE802154_BLE_ONLY", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_USB_SERIAL_JTAG_SUPPORTED", - "name": "SOC_USB_SERIAL_JTAG_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_TEMP_SENSOR_SUPPORTED", - "name": "SOC_TEMP_SENSOR_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SUPPORTS_SECURE_DL_MODE", - "name": "SOC_SUPPORTS_SECURE_DL_MODE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_EFUSE_KEY_PURPOSE_FIELD", - "name": "SOC_EFUSE_KEY_PURPOSE_FIELD", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_EFUSE_SUPPORTED", - "name": "SOC_EFUSE_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RTC_FAST_MEM_SUPPORTED", - "name": "SOC_RTC_FAST_MEM_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RTC_MEM_SUPPORTED", - "name": "SOC_RTC_MEM_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2S_SUPPORTED", - "name": "SOC_I2S_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SDM_SUPPORTED", - "name": "SOC_SDM_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ETM_SUPPORTED", - "name": "SOC_ETM_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RMT_SUPPORTED", - "name": "SOC_RMT_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PARLIO_SUPPORTED", - "name": "SOC_PARLIO_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GPSPI_SUPPORTED", - "name": "SOC_GPSPI_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_LEDC_SUPPORTED", - "name": "SOC_LEDC_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2C_SUPPORTED", - "name": "SOC_I2C_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SYSTIMER_SUPPORTED", - "name": "SOC_SYSTIMER_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SUPPORT_COEXISTENCE", - "name": "SOC_SUPPORT_COEXISTENCE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_AES_SUPPORTED", - "name": "SOC_AES_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MPI_SUPPORTED", - "name": "SOC_MPI_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SHA_SUPPORTED", - "name": "SOC_SHA_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_HMAC_SUPPORTED", - "name": "SOC_HMAC_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_DIG_SIGN_SUPPORTED", - "name": "SOC_DIG_SIGN_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ECC_SUPPORTED", - "name": "SOC_ECC_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ECC_EXTENDED_MODES_SUPPORTED", - "name": "SOC_ECC_EXTENDED_MODES_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ECDSA_SUPPORTED", - "name": "SOC_ECDSA_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_FLASH_ENC_SUPPORTED", - "name": "SOC_FLASH_ENC_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SECURE_BOOT_SUPPORTED", - "name": "SOC_SECURE_BOOT_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_BOD_SUPPORTED", - "name": "SOC_BOD_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_VBAT_SUPPORTED", - "name": "SOC_VBAT_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_APM_SUPPORTED", - "name": "SOC_APM_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PMU_SUPPORTED", - "name": "SOC_PMU_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_LP_TIMER_SUPPORTED", - "name": "SOC_LP_TIMER_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_LP_AON_SUPPORTED", - "name": "SOC_LP_AON_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PAU_SUPPORTED", - "name": "SOC_PAU_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_CLK_TREE_SUPPORTED", - "name": "SOC_CLK_TREE_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ASSIST_DEBUG_SUPPORTED", - "name": "SOC_ASSIST_DEBUG_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_WDT_SUPPORTED", - "name": "SOC_WDT_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_FLASH_SUPPORTED", - "name": "SOC_SPI_FLASH_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RNG_SUPPORTED", - "name": "SOC_RNG_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_LIGHT_SLEEP_SUPPORTED", - "name": "SOC_LIGHT_SLEEP_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_DEEP_SLEEP_SUPPORTED", - "name": "SOC_DEEP_SLEEP_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MODEM_CLOCK_SUPPORTED", - "name": "SOC_MODEM_CLOCK_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PM_SUPPORTED", - "name": "SOC_PM_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_XTAL_SUPPORT_32M", - "name": "SOC_XTAL_SUPPORT_32M", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_XTAL_CLOCK_PATH_DEPENDS_ON_TOP_DOMAIN", - "name": "SOC_XTAL_CLOCK_PATH_DEPENDS_ON_TOP_DOMAIN", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_AES_SUPPORT_DMA", - "name": "SOC_AES_SUPPORT_DMA", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_AES_GDMA", - "name": "SOC_AES_GDMA", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_AES_SUPPORT_AES_128", - "name": "SOC_AES_SUPPORT_AES_128", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_AES_SUPPORT_AES_256", - "name": "SOC_AES_SUPPORT_AES_256", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_AES_SUPPORT_PSEUDO_ROUND_FUNCTION", - "name": "SOC_AES_SUPPORT_PSEUDO_ROUND_FUNCTION", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_DIG_CTRL_SUPPORTED", - "name": "SOC_ADC_DIG_CTRL_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_DIG_IIR_FILTER_SUPPORTED", - "name": "SOC_ADC_DIG_IIR_FILTER_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_MONITOR_SUPPORTED", - "name": "SOC_ADC_MONITOR_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_DMA_SUPPORTED", - "name": "SOC_ADC_DMA_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_PERIPH_NUM", - "name": "SOC_ADC_PERIPH_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_MAX_CHANNEL_NUM", - "name": "SOC_ADC_MAX_CHANNEL_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_ATTEN_NUM", - "name": "SOC_ADC_ATTEN_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_DIGI_CONTROLLER_NUM", - "name": "SOC_ADC_DIGI_CONTROLLER_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_PATT_LEN_MAX", - "name": "SOC_ADC_PATT_LEN_MAX", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_DIGI_MAX_BITWIDTH", - "name": "SOC_ADC_DIGI_MAX_BITWIDTH", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_DIGI_MIN_BITWIDTH", - "name": "SOC_ADC_DIGI_MIN_BITWIDTH", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_DIGI_IIR_FILTER_NUM", - "name": "SOC_ADC_DIGI_IIR_FILTER_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_DIGI_MONITOR_NUM", - "name": "SOC_ADC_DIGI_MONITOR_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_DIGI_RESULT_BYTES", - "name": "SOC_ADC_DIGI_RESULT_BYTES", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_DIGI_DATA_BYTES_PER_CONV", - "name": "SOC_ADC_DIGI_DATA_BYTES_PER_CONV", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_SAMPLE_FREQ_THRES_HIGH", - "name": "SOC_ADC_SAMPLE_FREQ_THRES_HIGH", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_SAMPLE_FREQ_THRES_LOW", - "name": "SOC_ADC_SAMPLE_FREQ_THRES_LOW", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_RTC_MIN_BITWIDTH", - "name": "SOC_ADC_RTC_MIN_BITWIDTH", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_RTC_MAX_BITWIDTH", - "name": "SOC_ADC_RTC_MAX_BITWIDTH", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_CALIBRATION_V1_SUPPORTED", - "name": "SOC_ADC_CALIBRATION_V1_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_SELF_HW_CALI_SUPPORTED", - "name": "SOC_ADC_SELF_HW_CALI_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_CALIB_CHAN_COMPENS_SUPPORTED", - "name": "SOC_ADC_CALIB_CHAN_COMPENS_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_TEMPERATURE_SHARE_INTR", - "name": "SOC_ADC_TEMPERATURE_SHARE_INTR", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ADC_SHARED_POWER", - "name": "SOC_ADC_SHARED_POWER", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_APB_BACKUP_DMA", - "name": "SOC_APB_BACKUP_DMA", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_BROWNOUT_RESET_SUPPORTED", - "name": "SOC_BROWNOUT_RESET_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SHARED_IDCACHE_SUPPORTED", - "name": "SOC_SHARED_IDCACHE_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_CACHE_FREEZE_SUPPORTED", - "name": "SOC_CACHE_FREEZE_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_CPU_CORES_NUM", - "name": "SOC_CPU_CORES_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_CPU_INTR_NUM", - "name": "SOC_CPU_INTR_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_CPU_HAS_FLEXIBLE_INTC", - "name": "SOC_CPU_HAS_FLEXIBLE_INTC", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_INT_PLIC_SUPPORTED", - "name": "SOC_INT_PLIC_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_CPU_HAS_CSR_PC", - "name": "SOC_CPU_HAS_CSR_PC", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_CPU_BREAKPOINTS_NUM", - "name": "SOC_CPU_BREAKPOINTS_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_CPU_WATCHPOINTS_NUM", - "name": "SOC_CPU_WATCHPOINTS_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_CPU_WATCHPOINT_MAX_REGION_SIZE", - "name": "SOC_CPU_WATCHPOINT_MAX_REGION_SIZE", - "range": null, - "title": null, - "type": "hex" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_CPU_HAS_PMA", - "name": "SOC_CPU_HAS_PMA", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_CPU_IDRAM_SPLIT_USING_PMP", - "name": "SOC_CPU_IDRAM_SPLIT_USING_PMP", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_CPU_PMP_REGION_GRANULARITY", - "name": "SOC_CPU_PMP_REGION_GRANULARITY", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MMU_PAGE_SIZE_CONFIGURABLE", - "name": "SOC_MMU_PAGE_SIZE_CONFIGURABLE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MMU_PAGE_SIZE_8KB_SUPPORTED", - "name": "SOC_MMU_PAGE_SIZE_8KB_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MMU_PERIPH_NUM", - "name": "SOC_MMU_PERIPH_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MMU_LINEAR_ADDRESS_REGION_NUM", - "name": "SOC_MMU_LINEAR_ADDRESS_REGION_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MMU_DI_VADDR_SHARED", - "name": "SOC_MMU_DI_VADDR_SHARED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_DS_SIGNATURE_MAX_BIT_LEN", - "name": "SOC_DS_SIGNATURE_MAX_BIT_LEN", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_DS_KEY_PARAM_MD_IV_LENGTH", - "name": "SOC_DS_KEY_PARAM_MD_IV_LENGTH", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_DS_KEY_CHECK_MAX_WAIT_US", - "name": "SOC_DS_KEY_CHECK_MAX_WAIT_US", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_AHB_GDMA_VERSION", - "name": "SOC_AHB_GDMA_VERSION", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GDMA_NUM_GROUPS_MAX", - "name": "SOC_GDMA_NUM_GROUPS_MAX", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GDMA_PAIRS_PER_GROUP_MAX", - "name": "SOC_GDMA_PAIRS_PER_GROUP_MAX", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GDMA_SUPPORT_ETM", - "name": "SOC_GDMA_SUPPORT_ETM", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GDMA_SUPPORT_SLEEP_RETENTION", - "name": "SOC_GDMA_SUPPORT_SLEEP_RETENTION", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ETM_GROUPS", - "name": "SOC_ETM_GROUPS", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ETM_CHANNELS_PER_GROUP", - "name": "SOC_ETM_CHANNELS_PER_GROUP", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ETM_SUPPORT_SLEEP_RETENTION", - "name": "SOC_ETM_SUPPORT_SLEEP_RETENTION", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GPIO_PORT", - "name": "SOC_GPIO_PORT", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GPIO_PIN_COUNT", - "name": "SOC_GPIO_PIN_COUNT", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER", - "name": "SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GPIO_FLEX_GLITCH_FILTER_NUM", - "name": "SOC_GPIO_FLEX_GLITCH_FILTER_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GPIO_SUPPORT_PIN_HYS_FILTER", - "name": "SOC_GPIO_SUPPORT_PIN_HYS_FILTER", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GPIO_SUPPORT_PIN_HYS_CTRL_BY_EFUSE", - "name": "SOC_GPIO_SUPPORT_PIN_HYS_CTRL_BY_EFUSE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GPIO_SUPPORT_ETM", - "name": "SOC_GPIO_SUPPORT_ETM", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GPIO_SUPPORT_RTC_INDEPENDENT", - "name": "SOC_GPIO_SUPPORT_RTC_INDEPENDENT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_LP_IO_CLOCK_IS_INDEPENDENT", - "name": "SOC_LP_IO_CLOCK_IS_INDEPENDENT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GPIO_IN_RANGE_MAX", - "name": "SOC_GPIO_IN_RANGE_MAX", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GPIO_OUT_RANGE_MAX", - "name": "SOC_GPIO_OUT_RANGE_MAX", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK", - "name": "SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK", - "range": null, - "title": null, - "type": "hex" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GPIO_SUPPORT_FORCE_HOLD", - "name": "SOC_GPIO_SUPPORT_FORCE_HOLD", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GPIO_SUPPORT_HOLD_IO_IN_DSLP", - "name": "SOC_GPIO_SUPPORT_HOLD_IO_IN_DSLP", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GPIO_SUPPORT_HOLD_SINGLE_IO_IN_DSLP", - "name": "SOC_GPIO_SUPPORT_HOLD_SINGLE_IO_IN_DSLP", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GPIO_CLOCKOUT_BY_GPIO_MATRIX", - "name": "SOC_GPIO_CLOCKOUT_BY_GPIO_MATRIX", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_CLOCKOUT_HAS_SOURCE_GATE", - "name": "SOC_CLOCKOUT_HAS_SOURCE_GATE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_GPIO_CLOCKOUT_CHANNEL_NUM", - "name": "SOC_GPIO_CLOCKOUT_CHANNEL_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RTCIO_PIN_COUNT", - "name": "SOC_RTCIO_PIN_COUNT", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RTCIO_HOLD_SUPPORTED", - "name": "SOC_RTCIO_HOLD_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_DEDIC_GPIO_OUT_CHANNELS_NUM", - "name": "SOC_DEDIC_GPIO_OUT_CHANNELS_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_DEDIC_GPIO_IN_CHANNELS_NUM", - "name": "SOC_DEDIC_GPIO_IN_CHANNELS_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_DEDIC_PERIPH_ALWAYS_ENABLE", - "name": "SOC_DEDIC_PERIPH_ALWAYS_ENABLE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ANA_CMPR_NUM", - "name": "SOC_ANA_CMPR_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ANA_CMPR_INTR_SHARE_WITH_GPIO", - "name": "SOC_ANA_CMPR_INTR_SHARE_WITH_GPIO", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2C_NUM", - "name": "SOC_I2C_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_HP_I2C_NUM", - "name": "SOC_HP_I2C_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2C_FIFO_LEN", - "name": "SOC_I2C_FIFO_LEN", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2C_CMD_REG_NUM", - "name": "SOC_I2C_CMD_REG_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2C_SUPPORT_SLAVE", - "name": "SOC_I2C_SUPPORT_SLAVE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2C_SUPPORT_HW_FSM_RST", - "name": "SOC_I2C_SUPPORT_HW_FSM_RST", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2C_SUPPORT_HW_CLR_BUS", - "name": "SOC_I2C_SUPPORT_HW_CLR_BUS", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2C_SUPPORT_XTAL", - "name": "SOC_I2C_SUPPORT_XTAL", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2C_SUPPORT_RTC", - "name": "SOC_I2C_SUPPORT_RTC", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2C_SUPPORT_10BIT_ADDR", - "name": "SOC_I2C_SUPPORT_10BIT_ADDR", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2C_SLAVE_SUPPORT_BROADCAST", - "name": "SOC_I2C_SLAVE_SUPPORT_BROADCAST", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2C_SLAVE_CAN_GET_STRETCH_CAUSE", - "name": "SOC_I2C_SLAVE_CAN_GET_STRETCH_CAUSE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2C_SLAVE_SUPPORT_I2CRAM_ACCESS", - "name": "SOC_I2C_SLAVE_SUPPORT_I2CRAM_ACCESS", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2C_SLAVE_SUPPORT_SLAVE_UNMATCH", - "name": "SOC_I2C_SLAVE_SUPPORT_SLAVE_UNMATCH", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2C_SUPPORT_SLEEP_RETENTION", - "name": "SOC_I2C_SUPPORT_SLEEP_RETENTION", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2S_NUM", - "name": "SOC_I2S_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2S_HW_VERSION_2", - "name": "SOC_I2S_HW_VERSION_2", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2S_SUPPORTS_ETM", - "name": "SOC_I2S_SUPPORTS_ETM", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2S_SUPPORTS_XTAL", - "name": "SOC_I2S_SUPPORTS_XTAL", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2S_SUPPORTS_PLL_F96M", - "name": "SOC_I2S_SUPPORTS_PLL_F96M", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2S_SUPPORTS_PLL_F64M", - "name": "SOC_I2S_SUPPORTS_PLL_F64M", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2S_SUPPORTS_PCM", - "name": "SOC_I2S_SUPPORTS_PCM", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2S_SUPPORTS_PDM", - "name": "SOC_I2S_SUPPORTS_PDM", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2S_SUPPORTS_PDM_TX", - "name": "SOC_I2S_SUPPORTS_PDM_TX", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2S_SUPPORTS_PCM2PDM", - "name": "SOC_I2S_SUPPORTS_PCM2PDM", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2S_SUPPORTS_PDM_RX", - "name": "SOC_I2S_SUPPORTS_PDM_RX", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2S_PDM_MAX_TX_LINES", - "name": "SOC_I2S_PDM_MAX_TX_LINES", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2S_PDM_MAX_RX_LINES", - "name": "SOC_I2S_PDM_MAX_RX_LINES", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2S_SUPPORTS_TDM", - "name": "SOC_I2S_SUPPORTS_TDM", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2S_TDM_FULL_DATA_WIDTH", - "name": "SOC_I2S_TDM_FULL_DATA_WIDTH", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_I2S_SUPPORT_SLEEP_RETENTION", - "name": "SOC_I2S_SUPPORT_SLEEP_RETENTION", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_LEDC_SUPPORT_PLL_DIV_CLOCK", - "name": "SOC_LEDC_SUPPORT_PLL_DIV_CLOCK", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_LEDC_SUPPORT_XTAL_CLOCK", - "name": "SOC_LEDC_SUPPORT_XTAL_CLOCK", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_LEDC_TIMER_NUM", - "name": "SOC_LEDC_TIMER_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_LEDC_CHANNEL_NUM", - "name": "SOC_LEDC_CHANNEL_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_LEDC_TIMER_BIT_WIDTH", - "name": "SOC_LEDC_TIMER_BIT_WIDTH", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_LEDC_SUPPORT_FADE_STOP", - "name": "SOC_LEDC_SUPPORT_FADE_STOP", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_LEDC_GAMMA_CURVE_FADE_SUPPORTED", - "name": "SOC_LEDC_GAMMA_CURVE_FADE_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_LEDC_GAMMA_CURVE_FADE_RANGE_MAX", - "name": "SOC_LEDC_GAMMA_CURVE_FADE_RANGE_MAX", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_LEDC_FADE_PARAMS_BIT_WIDTH", - "name": "SOC_LEDC_FADE_PARAMS_BIT_WIDTH", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_LEDC_SUPPORT_SLEEP_RETENTION", - "name": "SOC_LEDC_SUPPORT_SLEEP_RETENTION", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MPU_CONFIGURABLE_REGIONS_SUPPORTED", - "name": "SOC_MPU_CONFIGURABLE_REGIONS_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MPU_MIN_REGION_SIZE", - "name": "SOC_MPU_MIN_REGION_SIZE", - "range": null, - "title": null, - "type": "hex" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MPU_REGIONS_MAX_NUM", - "name": "SOC_MPU_REGIONS_MAX_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MPU_REGION_RO_SUPPORTED", - "name": "SOC_MPU_REGION_RO_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MPU_REGION_WO_SUPPORTED", - "name": "SOC_MPU_REGION_WO_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PCNT_GROUPS", - "name": "SOC_PCNT_GROUPS", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PCNT_UNITS_PER_GROUP", - "name": "SOC_PCNT_UNITS_PER_GROUP", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PCNT_CHANNELS_PER_UNIT", - "name": "SOC_PCNT_CHANNELS_PER_UNIT", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PCNT_THRES_POINT_PER_UNIT", - "name": "SOC_PCNT_THRES_POINT_PER_UNIT", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PCNT_SUPPORT_RUNTIME_THRES_UPDATE", - "name": "SOC_PCNT_SUPPORT_RUNTIME_THRES_UPDATE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PCNT_SUPPORT_STEP_NOTIFY", - "name": "SOC_PCNT_SUPPORT_STEP_NOTIFY", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PCNT_SUPPORT_SLEEP_RETENTION", - "name": "SOC_PCNT_SUPPORT_SLEEP_RETENTION", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RMT_GROUPS", - "name": "SOC_RMT_GROUPS", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RMT_TX_CANDIDATES_PER_GROUP", - "name": "SOC_RMT_TX_CANDIDATES_PER_GROUP", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RMT_RX_CANDIDATES_PER_GROUP", - "name": "SOC_RMT_RX_CANDIDATES_PER_GROUP", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RMT_CHANNELS_PER_GROUP", - "name": "SOC_RMT_CHANNELS_PER_GROUP", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RMT_MEM_WORDS_PER_CHANNEL", - "name": "SOC_RMT_MEM_WORDS_PER_CHANNEL", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RMT_SUPPORT_RX_PINGPONG", - "name": "SOC_RMT_SUPPORT_RX_PINGPONG", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RMT_SUPPORT_RX_DEMODULATION", - "name": "SOC_RMT_SUPPORT_RX_DEMODULATION", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RMT_SUPPORT_TX_ASYNC_STOP", - "name": "SOC_RMT_SUPPORT_TX_ASYNC_STOP", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RMT_SUPPORT_TX_LOOP_COUNT", - "name": "SOC_RMT_SUPPORT_TX_LOOP_COUNT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RMT_SUPPORT_TX_LOOP_AUTO_STOP", - "name": "SOC_RMT_SUPPORT_TX_LOOP_AUTO_STOP", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RMT_SUPPORT_TX_SYNCHRO", - "name": "SOC_RMT_SUPPORT_TX_SYNCHRO", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY", - "name": "SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RMT_SUPPORT_XTAL", - "name": "SOC_RMT_SUPPORT_XTAL", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RMT_SUPPORT_RC_FAST", - "name": "SOC_RMT_SUPPORT_RC_FAST", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RMT_SUPPORT_SLEEP_RETENTION", - "name": "SOC_RMT_SUPPORT_SLEEP_RETENTION", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MCPWM_GROUPS", - "name": "SOC_MCPWM_GROUPS", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MCPWM_TIMERS_PER_GROUP", - "name": "SOC_MCPWM_TIMERS_PER_GROUP", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MCPWM_OPERATORS_PER_GROUP", - "name": "SOC_MCPWM_OPERATORS_PER_GROUP", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MCPWM_COMPARATORS_PER_OPERATOR", - "name": "SOC_MCPWM_COMPARATORS_PER_OPERATOR", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MCPWM_GENERATORS_PER_OPERATOR", - "name": "SOC_MCPWM_GENERATORS_PER_OPERATOR", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MCPWM_TRIGGERS_PER_OPERATOR", - "name": "SOC_MCPWM_TRIGGERS_PER_OPERATOR", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MCPWM_GPIO_FAULTS_PER_GROUP", - "name": "SOC_MCPWM_GPIO_FAULTS_PER_GROUP", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MCPWM_CAPTURE_TIMERS_PER_GROUP", - "name": "SOC_MCPWM_CAPTURE_TIMERS_PER_GROUP", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MCPWM_CAPTURE_CHANNELS_PER_TIMER", - "name": "SOC_MCPWM_CAPTURE_CHANNELS_PER_TIMER", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MCPWM_GPIO_SYNCHROS_PER_GROUP", - "name": "SOC_MCPWM_GPIO_SYNCHROS_PER_GROUP", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MCPWM_SWSYNC_CAN_PROPAGATE", - "name": "SOC_MCPWM_SWSYNC_CAN_PROPAGATE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MCPWM_SUPPORT_ETM", - "name": "SOC_MCPWM_SUPPORT_ETM", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MCPWM_CAPTURE_CLK_FROM_GROUP", - "name": "SOC_MCPWM_CAPTURE_CLK_FROM_GROUP", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MCPWM_SUPPORT_SLEEP_RETENTION", - "name": "SOC_MCPWM_SUPPORT_SLEEP_RETENTION", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PARLIO_GROUPS", - "name": "SOC_PARLIO_GROUPS", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PARLIO_TX_UNITS_PER_GROUP", - "name": "SOC_PARLIO_TX_UNITS_PER_GROUP", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PARLIO_RX_UNITS_PER_GROUP", - "name": "SOC_PARLIO_RX_UNITS_PER_GROUP", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PARLIO_TX_UNIT_MAX_DATA_WIDTH", - "name": "SOC_PARLIO_TX_UNIT_MAX_DATA_WIDTH", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PARLIO_RX_UNIT_MAX_DATA_WIDTH", - "name": "SOC_PARLIO_RX_UNIT_MAX_DATA_WIDTH", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PARLIO_TX_CLK_SUPPORT_GATING", - "name": "SOC_PARLIO_TX_CLK_SUPPORT_GATING", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PARLIO_RX_CLK_SUPPORT_GATING", - "name": "SOC_PARLIO_RX_CLK_SUPPORT_GATING", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PARLIO_RX_CLK_SUPPORT_OUTPUT", - "name": "SOC_PARLIO_RX_CLK_SUPPORT_OUTPUT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PARLIO_TRANS_BIT_ALIGN", - "name": "SOC_PARLIO_TRANS_BIT_ALIGN", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PARLIO_TX_SUPPORT_LOOP_TRANSMISSION", - "name": "SOC_PARLIO_TX_SUPPORT_LOOP_TRANSMISSION", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PARLIO_SUPPORT_SLEEP_RETENTION", - "name": "SOC_PARLIO_SUPPORT_SLEEP_RETENTION", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PARLIO_SUPPORT_SPI_LCD", - "name": "SOC_PARLIO_SUPPORT_SPI_LCD", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MPI_MEM_BLOCKS_NUM", - "name": "SOC_MPI_MEM_BLOCKS_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MPI_OPERATIONS_NUM", - "name": "SOC_MPI_OPERATIONS_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RSA_MAX_BIT_LEN", - "name": "SOC_RSA_MAX_BIT_LEN", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SHA_DMA_MAX_BUFFER_SIZE", - "name": "SOC_SHA_DMA_MAX_BUFFER_SIZE", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SHA_SUPPORT_DMA", - "name": "SOC_SHA_SUPPORT_DMA", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SHA_SUPPORT_RESUME", - "name": "SOC_SHA_SUPPORT_RESUME", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SHA_GDMA", - "name": "SOC_SHA_GDMA", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SHA_SUPPORT_SHA1", - "name": "SOC_SHA_SUPPORT_SHA1", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SHA_SUPPORT_SHA224", - "name": "SOC_SHA_SUPPORT_SHA224", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SHA_SUPPORT_SHA256", - "name": "SOC_SHA_SUPPORT_SHA256", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SDM_GROUPS", - "name": "SOC_SDM_GROUPS", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SDM_CHANNELS_PER_GROUP", - "name": "SOC_SDM_CHANNELS_PER_GROUP", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SDM_CLK_SUPPORT_PLL_F48M", - "name": "SOC_SDM_CLK_SUPPORT_PLL_F48M", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SDM_CLK_SUPPORT_XTAL", - "name": "SOC_SDM_CLK_SUPPORT_XTAL", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_PERIPH_NUM", - "name": "SOC_SPI_PERIPH_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_MAX_CS_NUM", - "name": "SOC_SPI_MAX_CS_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_MAXIMUM_BUFFER_SIZE", - "name": "SOC_SPI_MAXIMUM_BUFFER_SIZE", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_SUPPORT_DDRCLK", - "name": "SOC_SPI_SUPPORT_DDRCLK", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_SLAVE_SUPPORT_SEG_TRANS", - "name": "SOC_SPI_SLAVE_SUPPORT_SEG_TRANS", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_SUPPORT_CD_SIG", - "name": "SOC_SPI_SUPPORT_CD_SIG", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_SUPPORT_CONTINUOUS_TRANS", - "name": "SOC_SPI_SUPPORT_CONTINUOUS_TRANS", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_SUPPORT_SLAVE_HD_VER2", - "name": "SOC_SPI_SUPPORT_SLAVE_HD_VER2", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_SUPPORT_SLEEP_RETENTION", - "name": "SOC_SPI_SUPPORT_SLEEP_RETENTION", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_SUPPORT_CLK_XTAL", - "name": "SOC_SPI_SUPPORT_CLK_XTAL", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_SUPPORT_CLK_PLL_F48M", - "name": "SOC_SPI_SUPPORT_CLK_PLL_F48M", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_SUPPORT_CLK_RC_FAST", - "name": "SOC_SPI_SUPPORT_CLK_RC_FAST", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_SCT_SUPPORTED", - "name": "SOC_SPI_SCT_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_SCT_REG_NUM", - "name": "SOC_SPI_SCT_REG_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_SCT_BUFFER_NUM_MAX", - "name": "SOC_SPI_SCT_BUFFER_NUM_MAX", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_SCT_CONF_BITLEN_MAX", - "name": "SOC_SPI_SCT_CONF_BITLEN_MAX", - "range": null, - "title": null, - "type": "hex" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MEMSPI_IS_INDEPENDENT", - "name": "SOC_MEMSPI_IS_INDEPENDENT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_MAX_PRE_DIVIDER", - "name": "SOC_SPI_MAX_PRE_DIVIDER", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE", - "name": "SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND", - "name": "SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_MEM_SUPPORT_AUTO_RESUME", - "name": "SOC_SPI_MEM_SUPPORT_AUTO_RESUME", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_MEM_SUPPORT_IDLE_INTR", - "name": "SOC_SPI_MEM_SUPPORT_IDLE_INTR", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_MEM_SUPPORT_SW_SUSPEND", - "name": "SOC_SPI_MEM_SUPPORT_SW_SUSPEND", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_MEM_SUPPORT_CHECK_SUS", - "name": "SOC_SPI_MEM_SUPPORT_CHECK_SUS", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SPI_MEM_SUPPORT_WRAP", - "name": "SOC_SPI_MEM_SUPPORT_WRAP", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MEMSPI_SRC_FREQ_64M_SUPPORTED", - "name": "SOC_MEMSPI_SRC_FREQ_64M_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MEMSPI_SRC_FREQ_32M_SUPPORTED", - "name": "SOC_MEMSPI_SRC_FREQ_32M_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MEMSPI_SRC_FREQ_16M_SUPPORTED", - "name": "SOC_MEMSPI_SRC_FREQ_16M_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SYSTIMER_COUNTER_NUM", - "name": "SOC_SYSTIMER_COUNTER_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SYSTIMER_ALARM_NUM", - "name": "SOC_SYSTIMER_ALARM_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SYSTIMER_BIT_WIDTH_LO", - "name": "SOC_SYSTIMER_BIT_WIDTH_LO", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SYSTIMER_BIT_WIDTH_HI", - "name": "SOC_SYSTIMER_BIT_WIDTH_HI", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SYSTIMER_FIXED_DIVIDER", - "name": "SOC_SYSTIMER_FIXED_DIVIDER", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SYSTIMER_SUPPORT_RC_FAST", - "name": "SOC_SYSTIMER_SUPPORT_RC_FAST", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SYSTIMER_INT_LEVEL", - "name": "SOC_SYSTIMER_INT_LEVEL", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SYSTIMER_ALARM_MISS_COMPENSATE", - "name": "SOC_SYSTIMER_ALARM_MISS_COMPENSATE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SYSTIMER_SUPPORT_ETM", - "name": "SOC_SYSTIMER_SUPPORT_ETM", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_LP_TIMER_BIT_WIDTH_LO", - "name": "SOC_LP_TIMER_BIT_WIDTH_LO", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_LP_TIMER_BIT_WIDTH_HI", - "name": "SOC_LP_TIMER_BIT_WIDTH_HI", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_TIMER_GROUPS", - "name": "SOC_TIMER_GROUPS", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_TIMER_GROUP_TIMERS_PER_GROUP", - "name": "SOC_TIMER_GROUP_TIMERS_PER_GROUP", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_TIMER_GROUP_COUNTER_BIT_WIDTH", - "name": "SOC_TIMER_GROUP_COUNTER_BIT_WIDTH", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_TIMER_GROUP_SUPPORT_XTAL", - "name": "SOC_TIMER_GROUP_SUPPORT_XTAL", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_TIMER_GROUP_SUPPORT_RC_FAST", - "name": "SOC_TIMER_GROUP_SUPPORT_RC_FAST", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_TIMER_GROUP_TOTAL_TIMERS", - "name": "SOC_TIMER_GROUP_TOTAL_TIMERS", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_TIMER_SUPPORT_ETM", - "name": "SOC_TIMER_SUPPORT_ETM", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_TIMER_SUPPORT_SLEEP_RETENTION", - "name": "SOC_TIMER_SUPPORT_SLEEP_RETENTION", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MWDT_SUPPORT_XTAL", - "name": "SOC_MWDT_SUPPORT_XTAL", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MWDT_SUPPORT_SLEEP_RETENTION", - "name": "SOC_MWDT_SUPPORT_SLEEP_RETENTION", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_TWAI_CONTROLLER_NUM", - "name": "SOC_TWAI_CONTROLLER_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_TWAI_MASK_FILTER_NUM", - "name": "SOC_TWAI_MASK_FILTER_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_TWAI_CLK_SUPPORT_XTAL", - "name": "SOC_TWAI_CLK_SUPPORT_XTAL", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_TWAI_BRP_MIN", - "name": "SOC_TWAI_BRP_MIN", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_TWAI_BRP_MAX", - "name": "SOC_TWAI_BRP_MAX", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_TWAI_SUPPORTS_RX_STATUS", - "name": "SOC_TWAI_SUPPORTS_RX_STATUS", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_TWAI_SUPPORT_SLEEP_RETENTION", - "name": "SOC_TWAI_SUPPORT_SLEEP_RETENTION", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_EFUSE_DIS_PAD_JTAG", - "name": "SOC_EFUSE_DIS_PAD_JTAG", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_EFUSE_DIS_USB_JTAG", - "name": "SOC_EFUSE_DIS_USB_JTAG", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_EFUSE_DIS_DIRECT_BOOT", - "name": "SOC_EFUSE_DIS_DIRECT_BOOT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_EFUSE_SOFT_DIS_JTAG", - "name": "SOC_EFUSE_SOFT_DIS_JTAG", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_EFUSE_DIS_ICACHE", - "name": "SOC_EFUSE_DIS_ICACHE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK", - "name": "SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_EFUSE_ECDSA_USE_HARDWARE_K", - "name": "SOC_EFUSE_ECDSA_USE_HARDWARE_K", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_EFUSE_ECDSA_KEY", - "name": "SOC_EFUSE_ECDSA_KEY", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SECURE_BOOT_V2_RSA", - "name": "SOC_SECURE_BOOT_V2_RSA", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SECURE_BOOT_V2_ECC", - "name": "SOC_SECURE_BOOT_V2_ECC", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS", - "name": "SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS", - "name": "SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY", - "name": "SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX", - "name": "SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_FLASH_ENCRYPTION_XTS_AES", - "name": "SOC_FLASH_ENCRYPTION_XTS_AES", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_FLASH_ENCRYPTION_XTS_AES_128", - "name": "SOC_FLASH_ENCRYPTION_XTS_AES_128", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_FLASH_ENCRYPTION_XTS_AES_SUPPORT_PSEUDO_ROUND", - "name": "SOC_FLASH_ENCRYPTION_XTS_AES_SUPPORT_PSEUDO_ROUND", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_APM_CTRL_FILTER_SUPPORTED", - "name": "SOC_APM_CTRL_FILTER_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_CRYPTO_DPA_PROTECTION_SUPPORTED", - "name": "SOC_CRYPTO_DPA_PROTECTION_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ECC_CONSTANT_TIME_POINT_MUL", - "name": "SOC_ECC_CONSTANT_TIME_POINT_MUL", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ECDSA_USES_MPI", - "name": "SOC_ECDSA_USES_MPI", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ECDSA_SUPPORT_DETERMINISTIC_MODE", - "name": "SOC_ECDSA_SUPPORT_DETERMINISTIC_MODE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ECDSA_SUPPORT_HW_DETERMINISTIC_LOOP", - "name": "SOC_ECDSA_SUPPORT_HW_DETERMINISTIC_LOOP", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ECDSA_P192_CURVE_DEFAULT_DISABLED", - "name": "SOC_ECDSA_P192_CURVE_DEFAULT_DISABLED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_UART_NUM", - "name": "SOC_UART_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_UART_HP_NUM", - "name": "SOC_UART_HP_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_UART_FIFO_LEN", - "name": "SOC_UART_FIFO_LEN", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_UART_BITRATE_MAX", - "name": "SOC_UART_BITRATE_MAX", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_UART_SUPPORT_RTC_CLK", - "name": "SOC_UART_SUPPORT_RTC_CLK", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_UART_SUPPORT_XTAL_CLK", - "name": "SOC_UART_SUPPORT_XTAL_CLK", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_UART_SUPPORT_WAKEUP_INT", - "name": "SOC_UART_SUPPORT_WAKEUP_INT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_UART_SUPPORT_FSM_TX_WAIT_SEND", - "name": "SOC_UART_SUPPORT_FSM_TX_WAIT_SEND", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_UART_SUPPORT_SLEEP_RETENTION", - "name": "SOC_UART_SUPPORT_SLEEP_RETENTION", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_UART_WAKEUP_CHARS_SEQ_MAX_LEN", - "name": "SOC_UART_WAKEUP_CHARS_SEQ_MAX_LEN", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_UART_WAKEUP_SUPPORT_ACTIVE_THRESH_MODE", - "name": "SOC_UART_WAKEUP_SUPPORT_ACTIVE_THRESH_MODE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_UART_WAKEUP_SUPPORT_FIFO_THRESH_MODE", - "name": "SOC_UART_WAKEUP_SUPPORT_FIFO_THRESH_MODE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_UART_WAKEUP_SUPPORT_START_BIT_MODE", - "name": "SOC_UART_WAKEUP_SUPPORT_START_BIT_MODE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_UART_WAKEUP_SUPPORT_CHAR_SEQ_MODE", - "name": "SOC_UART_WAKEUP_SUPPORT_CHAR_SEQ_MODE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_UHCI_NUM", - "name": "SOC_UHCI_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_COEX_HW_PTI", - "name": "SOC_COEX_HW_PTI", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_EXTERNAL_COEX_ADVANCE", - "name": "SOC_EXTERNAL_COEX_ADVANCE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_EXTERNAL_COEX_LEADER_TX_LINE", - "name": "SOC_EXTERNAL_COEX_LEADER_TX_LINE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PHY_DIG_REGS_MEM_SIZE", - "name": "SOC_PHY_DIG_REGS_MEM_SIZE", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PM_SUPPORT_BT_WAKEUP", - "name": "SOC_PM_SUPPORT_BT_WAKEUP", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PM_SUPPORT_EXT1_WAKEUP", - "name": "SOC_PM_SUPPORT_EXT1_WAKEUP", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PM_SUPPORT_EXT1_WAKEUP_MODE_PER_PIN", - "name": "SOC_PM_SUPPORT_EXT1_WAKEUP_MODE_PER_PIN", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PM_SUPPORT_CPU_PD", - "name": "SOC_PM_SUPPORT_CPU_PD", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PM_SUPPORT_MODEM_PD", - "name": "SOC_PM_SUPPORT_MODEM_PD", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PM_SUPPORT_XTAL32K_PD", - "name": "SOC_PM_SUPPORT_XTAL32K_PD", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PM_SUPPORT_RC32K_PD", - "name": "SOC_PM_SUPPORT_RC32K_PD", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PM_SUPPORT_RC_FAST_PD", - "name": "SOC_PM_SUPPORT_RC_FAST_PD", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PM_SUPPORT_VDDSDIO_PD", - "name": "SOC_PM_SUPPORT_VDDSDIO_PD", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PM_SUPPORT_TOP_PD", - "name": "SOC_PM_SUPPORT_TOP_PD", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PM_PAU_LINK_NUM", - "name": "SOC_PM_PAU_LINK_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PM_PAU_REGDMA_LINK_MULTI_ADDR", - "name": "SOC_PM_PAU_REGDMA_LINK_MULTI_ADDR", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PM_PAU_REGDMA_LINK_WIFIMAC", - "name": "SOC_PM_PAU_REGDMA_LINK_WIFIMAC", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PM_PAU_REGDMA_UPDATE_CACHE_BEFORE_WAIT_COMPARE", - "name": "SOC_PM_PAU_REGDMA_UPDATE_CACHE_BEFORE_WAIT_COMPARE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PM_RETENTION_MODULE_NUM", - "name": "SOC_PM_RETENTION_MODULE_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_EXT_MEM_CACHE_TAG_IN_CPU_DOMAIN", - "name": "SOC_EXT_MEM_CACHE_TAG_IN_CPU_DOMAIN", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PM_CPU_RETENTION_BY_SW", - "name": "SOC_PM_CPU_RETENTION_BY_SW", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PM_MODEM_RETENTION_BY_REGDMA", - "name": "SOC_PM_MODEM_RETENTION_BY_REGDMA", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY", - "name": "SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PM_RETENTION_SW_TRIGGER_REGDMA", - "name": "SOC_PM_RETENTION_SW_TRIGGER_REGDMA", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_PM_SUPPORT_PMU_CLK_ICG", - "name": "SOC_PM_SUPPORT_PMU_CLK_ICG", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_CLK_RC_FAST_SUPPORT_CALIBRATION", - "name": "SOC_CLK_RC_FAST_SUPPORT_CALIBRATION", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_CLK_XTAL32K_SUPPORTED", - "name": "SOC_CLK_XTAL32K_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_CLK_OSC_SLOW_SUPPORTED", - "name": "SOC_CLK_OSC_SLOW_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_CLK_RC32K_SUPPORTED", - "name": "SOC_CLK_RC32K_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_CLK_LP_FAST_SUPPORT_LP_PLL", - "name": "SOC_CLK_LP_FAST_SUPPORT_LP_PLL", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_CLK_LP_FAST_SUPPORT_XTAL_D2", - "name": "SOC_CLK_LP_FAST_SUPPORT_XTAL_D2", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_MODEM_CLOCK_IS_INDEPENDENT", - "name": "SOC_MODEM_CLOCK_IS_INDEPENDENT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RCC_IS_INDEPENDENT", - "name": "SOC_RCC_IS_INDEPENDENT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_CLK_ANA_I2C_MST_HAS_ROOT_GATE", - "name": "SOC_CLK_ANA_I2C_MST_HAS_ROOT_GATE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC", - "name": "SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_TEMPERATURE_SENSOR_SUPPORT_XTAL", - "name": "SOC_TEMPERATURE_SENSOR_SUPPORT_XTAL", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_TEMPERATURE_SENSOR_INTR_SUPPORT", - "name": "SOC_TEMPERATURE_SENSOR_INTR_SUPPORT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_TEMPERATURE_SENSOR_SUPPORT_ETM", - "name": "SOC_TEMPERATURE_SENSOR_SUPPORT_ETM", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_TEMPERATURE_SENSOR_SUPPORT_SLEEP_RETENTION", - "name": "SOC_TEMPERATURE_SENSOR_SUPPORT_SLEEP_RETENTION", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_TEMPERATURE_SENSOR_UNDER_PD_TOP_DOMAIN", - "name": "SOC_TEMPERATURE_SENSOR_UNDER_PD_TOP_DOMAIN", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_RNG_CLOCK_IS_INDEPENDENT", - "name": "SOC_RNG_CLOCK_IS_INDEPENDENT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_BLE_SUPPORTED", - "name": "SOC_BLE_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_BLE_MESH_SUPPORTED", - "name": "SOC_BLE_MESH_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_ESP_NIMBLE_CONTROLLER", - "name": "SOC_ESP_NIMBLE_CONTROLLER", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_BLE_50_SUPPORTED", - "name": "SOC_BLE_50_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_BLE_DEVICE_PRIVACY_SUPPORTED", - "name": "SOC_BLE_DEVICE_PRIVACY_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_BLE_POWER_CONTROL_SUPPORTED", - "name": "SOC_BLE_POWER_CONTROL_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_BLE_MULTI_CONN_OPTIMIZATION", - "name": "SOC_BLE_MULTI_CONN_OPTIMIZATION", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_BLE_PERIODIC_ADV_ENH_SUPPORTED", - "name": "SOC_BLE_PERIODIC_ADV_ENH_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_BLE_CTE_SUPPORTED", - "name": "SOC_BLE_CTE_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SOC_DEBUG_HAVE_OCD_STUB_BINS", - "name": "SOC_DEBUG_HAVE_OCD_STUB_BINS", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_CMAKE", - "name": "IDF_CMAKE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "- This option is for internal use only.\n- Enabling this option will help enable all FPGA support so as to\n run ESP-IDF on an FPGA. This can help reproduce some issues that\n only happens on FPGA condition, or when you have to burn some\n efuses multiple times.", - "id": "IDF_ENV_FPGA", - "name": "IDF_ENV_FPGA", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "- This option is ONLY used when doing new chip bringup.\n- This option will only enable necessary hw / sw settings for running\n a hello_world application.", - "id": "IDF_ENV_BRINGUP", - "name": "IDF_ENV_BRINGUP", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_CI_BUILD", - "name": "IDF_CI_BUILD", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_DOC_BUILD", - "name": "IDF_DOC_BUILD", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_TOOLCHAIN", - "name": "IDF_TOOLCHAIN", - "range": null, - "title": null, - "type": "string" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_TOOLCHAIN_CLANG", - "name": "IDF_TOOLCHAIN_CLANG", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_TOOLCHAIN_GCC", - "name": "IDF_TOOLCHAIN_GCC", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_TARGET_ARCH_RISCV", - "name": "IDF_TARGET_ARCH_RISCV", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_TARGET_ARCH_XTENSA", - "name": "IDF_TARGET_ARCH_XTENSA", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_TARGET_ARCH", - "name": "IDF_TARGET_ARCH", - "range": null, - "title": null, - "type": "string" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_TARGET", - "name": "IDF_TARGET", - "range": null, - "title": null, - "type": "string" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_INIT_VERSION", - "name": "IDF_INIT_VERSION", - "range": null, - "title": null, - "type": "string" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_TARGET_ESP32", - "name": "IDF_TARGET_ESP32", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_TARGET_ESP32S2", - "name": "IDF_TARGET_ESP32S2", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_TARGET_ESP32S3", - "name": "IDF_TARGET_ESP32S3", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_TARGET_ESP32C3", - "name": "IDF_TARGET_ESP32C3", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_TARGET_ESP32C2", - "name": "IDF_TARGET_ESP32C2", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_TARGET_ESP32C6", - "name": "IDF_TARGET_ESP32C6", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_TARGET_ESP32C5", - "name": "IDF_TARGET_ESP32C5", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_TARGET_ESP32P4", - "name": "IDF_TARGET_ESP32P4", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_TARGET_ESP32H2", - "name": "IDF_TARGET_ESP32H2", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_TARGET_ESP32C61", - "name": "IDF_TARGET_ESP32C61", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_TARGET_ESP32H21", - "name": "IDF_TARGET_ESP32H21", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_TARGET_ESP32H4", - "name": "IDF_TARGET_ESP32H4", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_TARGET_LINUX", - "name": "IDF_TARGET_LINUX", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "IDF_FIRMWARE_CHIP_ID", - "name": "IDF_FIRMWARE_CHIP_ID", - "range": null, - "title": null, - "type": "hex" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "!IDF_TARGET_LINUX && ", - "help": null, - "id": "APP_BUILD_TYPE_APP_2NDBOOT", - "name": "APP_BUILD_TYPE_APP_2NDBOOT", - "range": null, - "title": "Default (binary application + 2nd stage bootloader)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "APP_BUILD_TYPE_RAM", - "name": "APP_BUILD_TYPE_RAM", - "range": null, - "title": "Build app runs entirely in RAM (EXPERIMENTAL)", - "type": "bool" - } - ], - "depends_on": null, - "help": "Select the way the application is built.\n\nBy default, the application is built as a binary file in a format compatible with\nthe ESP-IDF bootloader. In addition to this application, 2nd stage bootloader is\nalso built. Application and bootloader binaries can be written into flash and\nloaded/executed from there.\n\nAnother option, useful for only very small and limited applications, is to only link\nthe .elf file of the application, such that it can be loaded directly into RAM over\nJTAG or UART. Note that since IRAM and DRAM sizes are very limited, it is not possible\nto build any complex application this way. However for some kinds of testing and debugging,\nthis option may provide faster iterations, since the application does not need to be\nwritten into flash.\n\nNote: when APP_BUILD_TYPE_RAM is selected and loaded with JTAG, ESP-IDF does not contain\nall the startup code required to initialize the CPUs and ROM memory (data/bss).\nTherefore it is necessary to execute a bit of ROM code prior to executing the application.\nA gdbinit file may look as follows (for ESP32):\n\n # Connect to a running instance of OpenOCD\n target remote :3333\n # Reset and halt the target\n mon reset halt\n # Run to a specific point in ROM code,\n # where most of initialization is complete.\n thb *0x40007d54\n c\n # Load the application into RAM\n load\n # Run till app_main\n tb app_main\n c\n\nExecute this gdbinit file as follows:\n\n xtensa-esp32-elf-gdb build/app-name.elf -x gdbinit\n\nExample gdbinit files for other targets can be found in tools/test_apps/system/gdb_loadable_elf/\n\nWhen loading the BIN with UART, the ROM will jump to ram and run the app after finishing the ROM\nstartup code, so there's no additional startup initialization required. You can use the\n`load_ram` in esptool.py to load the generated .bin file into ram and execute.\n\nExample:\n esptool.py --chip {chip} -p {port} -b {baud} --no-stub load_ram {app.bin}\n\nRecommended sdkconfig.defaults for building loadable ELF files is as follows.\nCONFIG_APP_BUILD_TYPE_RAM is required, other options help reduce application\nmemory footprint.\n\n CONFIG_APP_BUILD_TYPE_RAM=y\n CONFIG_VFS_SUPPORT_TERMIOS=\n CONFIG_NEWLIB_NANO_FORMAT=y\n CONFIG_ESP_SYSTEM_PANIC_PRINT_HALT=y\n CONFIG_ESP_DEBUG_STUBS_ENABLE=\n CONFIG_ESP_ERR_TO_NAME_LOOKUP=", - "id": "build-type-application-build-type", - "name": "APP_BUILD_TYPE", - "title": "Application build type", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "APP_BUILD_GENERATE_BINARIES", - "name": "APP_BUILD_GENERATE_BINARIES", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "APP_BUILD_BOOTLOADER", - "name": "APP_BUILD_BOOTLOADER", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "APP_BUILD_TYPE_RAM", - "help": "If this option is enabled, external memory and related peripherals, such as Cache, MMU,\nFlash and PSRAM, won't be initialized. Corresponding drivers won't be introduced either.\nComponents that depend on the spi_flash component will also be unavailable, such as\napp_update, etc. When this option is enabled, about 26KB of RAM space can be saved.", - "id": "APP_BUILD_TYPE_PURE_RAM_APP", - "name": "APP_BUILD_TYPE_PURE_RAM_APP", - "range": null, - "title": "Build app without SPI_FLASH/PSRAM support (saves ram)", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "APP_BUILD_USE_FLASH_SECTIONS", - "name": "APP_BUILD_USE_FLASH_SECTIONS", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "If enabled, all date, time, and path information would be eliminated. A .gdbinit file would be create\nautomatically. (or will be append if you have one already)", - "id": "APP_REPRODUCIBLE_BUILD", - "name": "APP_REPRODUCIBLE_BUILD", - "range": null, - "title": "Enable reproducible build", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "If enabled, this disables the linking of binary libraries in the application build. Note\nthat after enabling this Wi-Fi/Bluetooth will not work.", - "id": "APP_NO_BLOBS", - "name": "APP_NO_BLOBS", - "range": null, - "title": "No Binary Blobs", - "type": "bool" - }, - { - "children": [], - "depends_on": "IDF_TARGET_ESP32", - "help": "Bootloaders before ESP-IDF v2.1 did less initialisation of the\nsystem clock. This setting needs to be enabled to build an app\nwhich can be booted by these older bootloaders.\n\nIf this setting is enabled, the app can be booted by any bootloader\nfrom IDF v1.0 up to the current version.\n\nIf this setting is disabled, the app can only be booted by bootloaders\nfrom IDF v2.1 or newer.\n\nEnabling this setting adds approximately 1KB to the app's IRAM usage.", - "id": "APP_COMPATIBLE_PRE_V2_1_BOOTLOADERS", - "name": "APP_COMPATIBLE_PRE_V2_1_BOOTLOADERS", - "range": null, - "title": "App compatible with bootloaders before ESP-IDF v2.1", - "type": "bool" - }, - { - "children": [], - "depends_on": "IDF_TARGET_ESP32", - "help": "Partition tables before ESP-IDF V3.1 do not contain an MD5 checksum\nfield, and the bootloader before ESP-IDF v3.1 cannot read a partition\ntable that contains an MD5 checksum field.\n\nEnable this option only if your app needs to boot on a bootloader and/or\npartition table that was generated from a version *before* ESP-IDF v3.1.\n\nIf this option and Flash Encryption are enabled at the same time, and any\ndata partitions in the partition table are marked Encrypted, then the\npartition encrypted flag should be manually verified in the app before accessing\nthe partition (see CVE-2021-27926).", - "id": "APP_COMPATIBLE_PRE_V3_1_BOOTLOADERS", - "name": "APP_COMPATIBLE_PRE_V3_1_BOOTLOADERS", - "range": null, - "title": "App compatible with bootloader and partition table before ESP-IDF v3.1", - "type": "bool" - }, - { - "children": [], - "depends_on": "IDF_TARGET_ESP32", - "help": null, - "id": "APP_INIT_CLK", - "name": "APP_INIT_CLK", - "range": null, - "title": null, - "type": "bool" - } - ], - "depends_on": null, - "id": "build-type", - "title": "Build type", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "!APP_REPRODUCIBLE_BUILD", - "help": "If set, then the bootloader will be built with the current time/date stamp.\nIt is stored in the bootloader description\nstructure. If not set, time/date stamp will be excluded from bootloader image.\nThis can be useful for getting the\nsame binary image files made from the same source, but at different times.", - "id": "BOOTLOADER_COMPILE_TIME_DATE", - "name": "BOOTLOADER_COMPILE_TIME_DATE", - "range": null, - "title": "Use time/date stamp for bootloader", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Project version. It is placed in \"version\" field of the esp_bootloader_desc structure.\nThe type of this field is \"uint32_t\".", - "id": "BOOTLOADER_PROJECT_VER", - "name": "BOOTLOADER_PROJECT_VER", - "range": [ - 0, - 4294967295 - ], - "title": "Project version", - "type": "int" - } - ], - "depends_on": null, - "id": "bootloader-config-bootloader-manager", - "title": "Bootloader manager", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "BOOTLOADER_APP_ANTI_ROLLBACK", - "help": "The secure version is the sequence number stored in the header of each firmware.\nThe security version is set in the bootloader, version is recorded in the eFuse field\nas the number of set ones. The allocated number of bits in the efuse field\nfor storing the security version is limited (see BOOTLOADER_APP_SEC_VER_SIZE_EFUSE_FIELD option).\n\nBootloader: When bootloader selects an app to boot, an app is selected that has\na security version greater or equal that recorded in eFuse field.\nThe app is booted with a higher (or equal) secure version.\n\nThe security version is worth increasing if in previous versions there is\na significant vulnerability and their use is not acceptable.\n\nYour partition table should has a scheme with ota_0 + ota_1 (without factory).", - "id": "BOOTLOADER_APP_SECURE_VERSION", - "name": "BOOTLOADER_APP_SECURE_VERSION", - "range": null, - "title": "eFuse secure version of app", - "type": "int" - }, - { - "children": [], - "depends_on": "BOOTLOADER_APP_ANTI_ROLLBACK", - "help": "The size of the efuse secure version field.\nIts length is limited to 32 bits for ESP32 and 16 bits for ESP32-S2.\nThis determines how many times the security version can be increased.", - "id": "BOOTLOADER_APP_SEC_VER_SIZE_EFUSE_FIELD", - "name": "BOOTLOADER_APP_SEC_VER_SIZE_EFUSE_FIELD", - "range": null, - "title": "Size of the efuse secure version field", - "type": "int" - }, - { - "children": [], - "depends_on": "BOOTLOADER_APP_ANTI_ROLLBACK", - "help": "This option allows to emulate read/write operations with all eFuses and efuse secure version.\nIt allows to test anti-rollback implementation without permanent write eFuse bits.\nThere should be an entry in partition table with following details: `emul_efuse, data, efuse, , 0x2000`.\n\nThis option enables: EFUSE_VIRTUAL and EFUSE_VIRTUAL_KEEP_IN_FLASH.", - "id": "BOOTLOADER_EFUSE_SECURE_VERSION_EMULATE", - "name": "BOOTLOADER_EFUSE_SECURE_VERSION_EMULATE", - "range": null, - "title": "Emulate operations with efuse secure version(only test)", - "type": "bool" - } - ], - "depends_on": "BOOTLOADER_APP_ROLLBACK_ENABLE", - "help": "This option prevents rollback to previous firmware/application image with lower security version.", - "id": "BOOTLOADER_APP_ANTI_ROLLBACK", - "name": "BOOTLOADER_APP_ANTI_ROLLBACK", - "range": null, - "title": "Enable app anti-rollback support", - "type": "bool" - } - ], - "depends_on": null, - "help": "After updating the app, the bootloader runs a new app with the \"ESP_OTA_IMG_PENDING_VERIFY\" state set.\nThis state prevents the re-run of this app. After the first boot of the new app in the user code, the\nfunction should be called to confirm the operability of the app or vice versa about its non-operability.\nIf the app is working, then it is marked as valid. Otherwise, it is marked as not valid and rolls back to\nthe previous working app. A reboot is performed, and the app is booted before the software update.\nNote: If during the first boot a new app the power goes out or the WDT works, then roll back will happen.\nRollback is possible only between the apps with the same security versions.", - "id": "BOOTLOADER_APP_ROLLBACK_ENABLE", - "name": "BOOTLOADER_APP_ROLLBACK_ENABLE", - "range": null, - "title": "Enable app rollback support", - "type": "bool" - } - ], - "depends_on": null, - "id": "bootloader-config-application-rollback", - "title": "Application Rollback", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "BOOTLOADER_RECOVERY_ENABLE", - "help": "Flash address where the recovery bootloader is stored.\nThis value must be written to the eFuse field (ESP_EFUSE_RECOVERY_BOOTLOADER_FLASH_SECTOR)\nto activate the recovery bootloader in the ROM bootloader. The eFuse can be programmed\nusing espefuse.py or in the user application with the API esp_efuse_set_recovery_bootloader_offset().\nSetting this value in the config allows parttool.py to verify that it does not overlap with existing\npartitions in the partition table.\n\nThe address must be a multiple of the flash sector size (0x1000 bytes).\nThe eFuse field stores the offset in sectors.\nIf the feature is no longer needed or unused, you can burn the 0xFFF value to disable this feature in\nthe ROM bootloader.", - "id": "BOOTLOADER_RECOVERY_OFFSET", - "name": "BOOTLOADER_RECOVERY_OFFSET", - "range": null, - "title": "Recovery Bootloader Flash Offset", - "type": "hex" - }, - { - "children": [ - { - "children": [], - "depends_on": "BOOTLOADER_ANTI_ROLLBACK_ENABLE", - "help": "The secure version is the sequence number stored in the header of each bootloader.\n\nThe ROM Bootloader which runs the 2nd stage bootloader (PRIMARY or RECOVERY) checks that\nthe security version is greater or equal that recorded in the eFuse field.\nBootloaders that have a secure version in the image < secure version in efuse will not boot.\n\nThe security version is worth increasing if in previous versions there is\na significant vulnerability and their use is not acceptable.", - "id": "BOOTLOADER_SECURE_VERSION", - "name": "BOOTLOADER_SECURE_VERSION", - "range": null, - "title": "Secure version of bootloader", - "type": "int" - } - ], - "depends_on": "BOOTLOADER_RECOVERY_ENABLE", - "help": "This option prevents rollback to previous bootloader image with lower security version.", - "id": "BOOTLOADER_ANTI_ROLLBACK_ENABLE", - "name": "BOOTLOADER_ANTI_ROLLBACK_ENABLE", - "range": null, - "title": "Enable bootloader rollback support", - "type": "bool" - } - ], - "depends_on": "SOC_RECOVERY_BOOTLOADER_SUPPORTED", - "help": "The recovery bootloader feature is implemented in the ROM bootloader. It is required for safe OTA\nupdates of the bootloader. The feature is activated when the eFuse field\n(ESP_EFUSE_RECOVERY_BOOTLOADER_FLASH_SECTOR) is set, which defines the flash address of the\nrecovery bootloader. If activated and the primary bootloader fails to load, the ROM bootloader\nwill attempt to load the recovery bootloader from the address specified in eFuse.", - "id": "BOOTLOADER_RECOVERY_ENABLE", - "name": "BOOTLOADER_RECOVERY_ENABLE", - "range": null, - "title": "Enable Recovery Bootloader", - "type": "bool" - } - ], - "depends_on": null, - "id": "bootloader-config-recovery-bootloader-and-rollback", - "title": "Recovery Bootloader and Rollback", - "type": "menu" - }, - { - "children": [], - "depends_on": null, - "help": "Offset address that 2nd bootloader will be flashed to.\nThe value is determined by the ROM bootloader.\nIt's not configurable in ESP-IDF.", - "id": "BOOTLOADER_OFFSET_IN_FLASH", - "name": "BOOTLOADER_OFFSET_IN_FLASH", - "range": null, - "title": null, - "type": "hex" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "BOOTLOADER_COMPILER_OPTIMIZATION_SIZE", - "name": "BOOTLOADER_COMPILER_OPTIMIZATION_SIZE", - "range": null, - "title": "Size (-Os with GCC, -Oz with Clang)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG", - "name": "BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG", - "range": null, - "title": "Debug (-Og)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BOOTLOADER_COMPILER_OPTIMIZATION_PERF", - "name": "BOOTLOADER_COMPILER_OPTIMIZATION_PERF", - "range": null, - "title": "Optimize for performance (-O2)", - "type": "bool" - }, - { - "children": [], - "depends_on": "(IDF_TARGET_ARCH_XTENSA || IDF_TARGET_ESP32C3 || IDF_TARGET_ESP32C2) && ", - "help": null, - "id": "BOOTLOADER_COMPILER_OPTIMIZATION_NONE", - "name": "BOOTLOADER_COMPILER_OPTIMIZATION_NONE", - "range": null, - "title": "Debug without optimization (-O0) (Deprecated, will be removed in IDF v6.0)", - "type": "bool" - } - ], - "depends_on": null, - "help": "This option sets compiler optimization level (gcc -O argument)\nfor the bootloader.\n\n- The default \"Size\" setting will add the -Os (-Oz with clang) flag to CFLAGS.\n- The \"Debug\" setting will add the -Og flag to CFLAGS.\n- The \"Performance\" setting will add the -O2 flag to CFLAGS.\n\nNote that custom optimization levels may be unsupported.", - "id": "bootloader-config-bootloader-optimization-level", - "name": "BOOTLOADER_COMPILER_OPTIMIZATION", - "title": "Bootloader optimization Level", - "type": "choice" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "BOOTLOADER_LOG_VERSION_1", - "name": "BOOTLOADER_LOG_VERSION_1", - "range": null, - "title": "V1", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BOOTLOADER_LOG_VERSION_2", - "name": "BOOTLOADER_LOG_VERSION_2", - "range": null, - "title": "V2", - "type": "bool" - } - ], - "depends_on": null, - "help": "Select the log version to be used by the ESP log component.\nThe app log version (CONFIG_LOG_VERSION) controls the version used in the bootloader,\npreventing the selection of different versions.\nFor description of V1 and V2 see CONFIG_LOG_VERSION.", - "id": "bootloader-config-log-log-version", - "name": "BOOTLOADER_LOG_VERSION", - "title": "Log version", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": "This configuration sets the log version number based on the chosen log version.", - "id": "BOOTLOADER_LOG_VERSION", - "name": "BOOTLOADER_LOG_VERSION", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "BOOTLOADER_LOG_LEVEL_NONE", - "name": "BOOTLOADER_LOG_LEVEL_NONE", - "range": null, - "title": "No output", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BOOTLOADER_LOG_LEVEL_ERROR", - "name": "BOOTLOADER_LOG_LEVEL_ERROR", - "range": null, - "title": "Error", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BOOTLOADER_LOG_LEVEL_WARN", - "name": "BOOTLOADER_LOG_LEVEL_WARN", - "range": null, - "title": "Warning", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BOOTLOADER_LOG_LEVEL_INFO", - "name": "BOOTLOADER_LOG_LEVEL_INFO", - "range": null, - "title": "Info", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BOOTLOADER_LOG_LEVEL_DEBUG", - "name": "BOOTLOADER_LOG_LEVEL_DEBUG", - "range": null, - "title": "Debug", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BOOTLOADER_LOG_LEVEL_VERBOSE", - "name": "BOOTLOADER_LOG_LEVEL_VERBOSE", - "range": null, - "title": "Verbose", - "type": "bool" - } - ], - "depends_on": null, - "help": "Specify how much output to see in bootloader logs.", - "id": "bootloader-config-log-bootloader-log-verbosity", - "name": "BOOTLOADER_LOG_LEVEL", - "title": "Bootloader log verbosity", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "BOOTLOADER_LOG_LEVEL", - "name": "BOOTLOADER_LOG_LEVEL", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": "Enable ANSI terminal color codes. Logs (info, errors, warnings) will contain color codes.\nIn order to view these, your terminal program must support ANSI color codes.", - "id": "BOOTLOADER_LOG_COLORS", - "name": "BOOTLOADER_LOG_COLORS", - "range": null, - "title": "Color", - "type": "bool" - }, - { - "children": [], - "depends_on": "BOOTLOADER_LOG_VERSION_2", - "help": "Enables support for color codes in the esp_log() function. If CONFIG_LOG_COLORS is enabled, this option\nis always active. If CONFIG_LOG_COLORS is disabled, this option allows you to still handle color codes\nin specific files by defining ESP_LOG_COLOR_DISABLED as 0 before including esp_log.h.\n\nNote that enabling this option may slightly increase RAM/FLASH usage due to additional color handling\nfunctionality. It provides flexibility to manage color output even when CONFIG_LOG_COLORS is turned off.", - "id": "BOOTLOADER_LOG_COLORS_SUPPORT", - "name": "BOOTLOADER_LOG_COLORS_SUPPORT", - "range": null, - "title": "Allow enabling color output at run time", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "BOOTLOADER_LOG_VERSION_2 && ", - "help": null, - "id": "BOOTLOADER_LOG_TIMESTAMP_SOURCE_NONE", - "name": "BOOTLOADER_LOG_TIMESTAMP_SOURCE_NONE", - "range": null, - "title": "None", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS", - "name": "BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS", - "range": null, - "title": "Milliseconds Since Boot", - "type": "bool" - } - ], - "depends_on": null, - "help": "Choose what sort of timestamp is displayed in the log output:\n\n- \"None\" - The log will only contain the actual log messages themselves\n without any time-related information. Avoiding timestamps can help conserve\n processing power and memory. It might useful when you\n perform log analysis or debugging, sometimes it's more straightforward\n to work with logs that lack timestamps, especially if the time of occurrence\n is not critical for understanding the issues.\n \"I log_test: info message\"\n\n- \"Milliseconds since boot\" is calculated from the RTOS tick count multiplied\n by the tick period. This time will reset after a software reboot.\n \"I (112500) log_test: info message\"", - "id": "bootloader-config-log-format-timestamp", - "name": "BOOTLOADER_LOG_TIMESTAMP_SOURCE", - "title": "Timestamp", - "type": "choice" - }, - { - "children": [], - "depends_on": "BOOTLOADER_LOG_VERSION_2", - "help": "Enables support for timestamp in the esp_log() function.\nIf CONFIG_LOG_TIMESTAMP_SOURCE_NONE, this option allows you to still handle timestamp\nin specific files by defining ESP_LOG_TIMESTAMP_DISABLED as 0 before including esp_log.h.\n\nNote that enabling this option may slightly increase RAM/FLASH usage due to additional timestamp handling\nfunctionality. It provides flexibility to manage timestamp output even when\nCONFIG_LOG_TIMESTAMP_SOURCE_NONE.", - "id": "BOOTLOADER_LOG_TIMESTAMP_SUPPORT", - "name": "BOOTLOADER_LOG_TIMESTAMP_SUPPORT", - "range": null, - "title": "Allow enabling timestamp output at run time", - "type": "bool" - } - ], - "depends_on": null, - "id": "bootloader-config-log-format", - "title": "Format", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": null, - "id": "BOOTLOADER_LOG_MODE_TEXT_EN", - "name": "BOOTLOADER_LOG_MODE_TEXT_EN", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "BOOTLOADER_LOG_MODE_BINARY_EN", - "name": "BOOTLOADER_LOG_MODE_BINARY_EN", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": "Enables text-based logging, where log messages are stored in a human-readable format.\nThis mode is useful for development and debugging, as it allows logs to be easily\nread and interpreted without additional processing.", - "id": "BOOTLOADER_LOG_MODE_TEXT", - "name": "BOOTLOADER_LOG_MODE_TEXT", - "range": null, - "title": "Text Log Mode", - "type": "bool" - }, - { - "children": [], - "depends_on": "BOOTLOADER_LOG_VERSION_2 && ", - "help": "Enables binary logging with host-side format string expansion. In this mode, the\nformat argument of ESP_LOGx, ESP_EARLY_LOG, and ESP_DRAM_LOG macros is stored in a\nNOLOAD section, not included in the final binary file. This reduces flash usage by\napproximately 10% - 35%. The esp_log() function uses the binary log handler to output\nmessages. Instead of sending the full log string, the chip transmits only the\naddresses of these strings (if present in the ELF file). If the format string\ncannot be found in the ELF file, the chip sends the entire string. The host-side\nmonitor tool, which has access to the ELF file, reconstructs the log message using\nthe format string.\nThis reduces firmware size by eliminating format strings from\nflash memory and removing the usage of printf-like functions, potentially freeing up\na few kilobytes of space. To further reduce firmware size, wrap string data with ESP_LOG_ATTR_STR.", - "id": "BOOTLOADER_LOG_MODE_BINARY", - "name": "BOOTLOADER_LOG_MODE_BINARY", - "range": null, - "title": "Binary Log Mode", - "type": "bool" - } - ], - "depends_on": null, - "help": null, - "id": "bootloader-config-log-settings-log-mode", - "name": "BOOTLOADER_LOG_MODE", - "title": "Log Mode", - "type": "choice" - } - ], - "depends_on": null, - "id": "bootloader-config-log-settings", - "title": "Settings", - "type": "menu" - } - ], - "depends_on": null, - "id": "bootloader-config-log", - "title": "Log", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "IDF_TARGET_ESP32 && (ESPTOOLPY_FLASHMODE_QIO || ESPTOOLPY_FLASHMODE_QOUT)", - "help": "This setting is only used if the SPI flash pins have been overridden by setting the eFuses\nSPI_PAD_CONFIG_xxx, and the SPI flash mode is QIO or QOUT.\n\nWhen this is the case, the eFuse config only defines 3 of the 4 Quad I/O data pins. The WP pin (aka\nESP32 pin \"SD_DATA_3\" or SPI flash pin \"IO2\") is not specified in eFuse. The same pin is also used\nfor external SPIRAM if it is enabled.\n\nIf this config item is set to N (default), the correct WP pin will be automatically used for any\nEspressif chip or module with integrated flash. If a custom setting is needed, set this config item to\nY and specify the GPIO number connected to the WP.", - "id": "BOOTLOADER_SPI_CUSTOM_WP_PIN", - "name": "BOOTLOADER_SPI_CUSTOM_WP_PIN", - "range": null, - "title": "Use custom SPI Flash WP Pin when flash pins set in eFuse (read help)", - "type": "bool" - }, - { - "children": [], - "depends_on": "IDF_TARGET_ESP32 && (ESPTOOLPY_FLASHMODE_QIO || ESPTOOLPY_FLASHMODE_QOUT)", - "help": "The option \"Use custom SPI Flash WP Pin\" must be set or this value is ignored\n\nIf burning a customized set of SPI flash pins in eFuse and using QIO or QOUT mode for flash, set this\nvalue to the GPIO number of the SPI flash WP pin.", - "id": "BOOTLOADER_SPI_WP_PIN", - "name": "BOOTLOADER_SPI_WP_PIN", - "range": null, - "title": "Custom SPI Flash WP Pin", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "This will force 2nd bootloader to be loaded by DOUT mode, and will restore Dummy Cycle setting by\nresetting the Flash", - "id": "BOOTLOADER_FLASH_DC_AWARE", - "name": "BOOTLOADER_FLASH_DC_AWARE", - "range": null, - "title": "Allow app adjust Dummy Cycle bits in SPI Flash for higher frequency (READ HELP FIRST)", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Perform the startup flow recommended by XMC. Please consult XMC for the details of this flow.\nXMC chips will be forbidden to be used, when this option is disabled.\n\nDON'T DISABLE THIS UNLESS YOU KNOW WHAT YOU ARE DOING.\n\ncomment \"Features below require specific hardware (READ DOCS FIRST!)\"", - "id": "BOOTLOADER_FLASH_XMC_SUPPORT", - "name": "BOOTLOADER_FLASH_XMC_SUPPORT", - "range": null, - "title": "Enable the support for flash chips of XMC (READ DOCS FIRST)", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "This is a helper config for 32bits address flash. Invisible for users.", - "id": "BOOTLOADER_FLASH_32BIT_ADDR", - "name": "BOOTLOADER_FLASH_32BIT_ADDR", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "This is a helper config for 32bits address flash. Invisible for users.", - "id": "BOOTLOADER_FLASH_NEEDS_32BIT_FEAT", - "name": "BOOTLOADER_FLASH_NEEDS_32BIT_FEAT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "This is a helper config for 32bits address quad flash. Invisible for users.", - "id": "BOOTLOADER_FLASH_NEEDS_32BIT_ADDR_QUAD_FLASH", - "name": "BOOTLOADER_FLASH_NEEDS_32BIT_ADDR_QUAD_FLASH", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "BOOTLOADER_FLASH_NEEDS_32BIT_ADDR_QUAD_FLASH && IDF_EXPERIMENTAL_FEATURES", - "help": "Enabling this option allows the CPU to access 32-bit-address flash beyond 16M range.\n1. This option only valid for 4-line flash. Octal flash doesn't need this.\n2. This option is experimental, which means it can\u2019t use on all flash chips stable, for more\ninformation, please contact Espressif Business support.", - "id": "BOOTLOADER_CACHE_32BIT_ADDR_QUAD_FLASH", - "name": "BOOTLOADER_CACHE_32BIT_ADDR_QUAD_FLASH", - "range": null, - "title": "Enable cache access to 32-bit-address (over 16MB) range of SPI Flash (READ DOCS FIRST)", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "BOOTLOADER_CACHE_32BIT_ADDR_OCTAL_FLASH", - "name": "BOOTLOADER_CACHE_32BIT_ADDR_OCTAL_FLASH", - "range": null, - "title": null, - "type": "bool" - } - ], - "depends_on": null, - "id": "bootloader-config-serial-flash-configurations", - "title": "Serial Flash Configurations", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "!ESPTOOLPY_FLASHFREQ_80M && ", - "help": null, - "id": "BOOTLOADER_VDDSDIO_BOOST_1_8V", - "name": "BOOTLOADER_VDDSDIO_BOOST_1_8V", - "range": null, - "title": "1.8V", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BOOTLOADER_VDDSDIO_BOOST_1_9V", - "name": "BOOTLOADER_VDDSDIO_BOOST_1_9V", - "range": null, - "title": "1.9V", - "type": "bool" - } - ], - "depends_on": "SOC_CONFIGURABLE_VDDSDIO_SUPPORTED", - "help": "If this option is enabled, and VDDSDIO LDO is set to 1.8V (using eFuse\nor MTDI bootstrapping pin), bootloader will change LDO settings to\noutput 1.9V instead. This helps prevent flash chip from browning out\nduring flash programming operations.\n\nThis option has no effect if VDDSDIO is set to 3.3V, or if the internal\nVDDSDIO regulator is disabled via eFuse.", - "id": "bootloader-config-vddsdio-ldo-voltage", - "name": "BOOTLOADER_VDDSDIO_BOOST", - "title": "VDDSDIO LDO voltage", - "type": "choice" - }, - { - "children": [ - { - "children": [], - "depends_on": "BOOTLOADER_FACTORY_RESET", - "help": "The selected GPIO will be configured as an input with internal pull-up enabled. To trigger a factory\nreset, this GPIO must be held high or low (as configured) on startup.\n\nNote that on some SoCs not all pins have an internal pull-up and certain pins are already\nused by ROM bootloader as bootstrapping. Refer to the technical reference manual for further\ndetails on the selected SoC.", - "id": "BOOTLOADER_NUM_PIN_FACTORY_RESET", - "name": "BOOTLOADER_NUM_PIN_FACTORY_RESET", - "range": null, - "title": "Number of the GPIO input for factory reset", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "BOOTLOADER_FACTORY_RESET_PIN_LOW", - "name": "BOOTLOADER_FACTORY_RESET_PIN_LOW", - "range": null, - "title": "Reset on GPIO low", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BOOTLOADER_FACTORY_RESET_PIN_HIGH", - "name": "BOOTLOADER_FACTORY_RESET_PIN_HIGH", - "range": null, - "title": "Reset on GPIO high", - "type": "bool" - } - ], - "depends_on": "BOOTLOADER_FACTORY_RESET", - "help": "Pin level for factory reset, can be triggered on low or high.", - "id": "bootloader-config-gpio-triggers-factory-reset-factory-reset-gpio-level", - "name": "BOOTLOADER_FACTORY_RESET_PIN_LEVEL", - "title": "Factory reset GPIO level", - "type": "choice" - }, - { - "children": [], - "depends_on": "BOOTLOADER_FACTORY_RESET", - "help": "The device will boot from \"factory\" partition (or OTA slot 0 if no factory partition is present) after a\nfactory reset.", - "id": "BOOTLOADER_OTA_DATA_ERASE", - "name": "BOOTLOADER_OTA_DATA_ERASE", - "range": null, - "title": "Clear OTA data on factory reset (select factory partition)", - "type": "bool" - }, - { - "children": [], - "depends_on": "BOOTLOADER_FACTORY_RESET", - "help": "Allows customers to select which data partitions will be erased while factory reset.\n\nSpecify the names of partitions as a comma-delimited with optional spaces for readability. (Like this:\n\"nvs, phy_init, ...\")\nMake sure that the name specified in the partition table and here are the same.\nPartitions of type \"app\" cannot be specified here.", - "id": "BOOTLOADER_DATA_FACTORY_RESET", - "name": "BOOTLOADER_DATA_FACTORY_RESET", - "range": null, - "title": "Comma-separated names of partitions to clear on factory reset", - "type": "string" - } - ], - "depends_on": null, - "help": "Allows to reset the device to factory settings:\n- clear one or more data partitions;\n- boot from \"factory\" partition.\nThe factory reset will occur if there is a GPIO input held at the configured level while\ndevice starts up. See settings below.", - "id": "BOOTLOADER_FACTORY_RESET", - "name": "BOOTLOADER_FACTORY_RESET", - "range": null, - "title": "GPIO triggers factory reset", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "BOOTLOADER_APP_TEST", - "help": "The selected GPIO will be configured as an input with internal pull-up enabled.\nTo trigger a test app, this GPIO must be pulled low on reset.\nAfter the GPIO input is deactivated and the device reboots, the old application will boot.\n(factory or OTA[x]).\n\nNote that on some SoCs not all pins have an internal pull-up and certain pins are already\nused by ROM bootloader as bootstrapping. Refer to the technical reference manual for further\ndetails on the selected SoC.", - "id": "BOOTLOADER_NUM_PIN_APP_TEST", - "name": "BOOTLOADER_NUM_PIN_APP_TEST", - "range": null, - "title": "Number of the GPIO input to boot TEST partition", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "BOOTLOADER_APP_TEST_PIN_LOW", - "name": "BOOTLOADER_APP_TEST_PIN_LOW", - "range": null, - "title": "Enter test app on GPIO low", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "BOOTLOADER_APP_TEST_PIN_HIGH", - "name": "BOOTLOADER_APP_TEST_PIN_HIGH", - "range": null, - "title": "Enter test app on GPIO high", - "type": "bool" - } - ], - "depends_on": "BOOTLOADER_APP_TEST", - "help": "Pin level for app test, can be triggered on low or high.", - "id": "bootloader-config-gpio-triggers-boot-from-test-app-partition-app-test-gpio-level", - "name": "BOOTLOADER_APP_TEST_PIN_LEVEL", - "title": "App test GPIO level", - "type": "choice" - } - ], - "depends_on": "!BOOTLOADER_APP_ANTI_ROLLBACK", - "help": "Allows to run the test app from \"TEST\" partition.\nA boot from \"test\" partition will occur if there is a GPIO input pulled low while device starts up.\nSee settings below.", - "id": "BOOTLOADER_APP_TEST", - "name": "BOOTLOADER_APP_TEST", - "range": null, - "title": "GPIO triggers boot from test app partition", - "type": "bool" - }, - { - "children": [], - "depends_on": "BOOTLOADER_FACTORY_RESET || BOOTLOADER_APP_TEST", - "help": "The GPIO must be held low continuously for this period of time after reset\nbefore a factory reset or test partition boot (as applicable) is performed.", - "id": "BOOTLOADER_HOLD_TIME_GPIO", - "name": "BOOTLOADER_HOLD_TIME_GPIO", - "range": null, - "title": "Hold time of GPIO for reset/test mode (seconds)", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Protects the unmapped memory regions of the entire address space from unintended accesses.\nThis will ensure that an exception will be triggered whenever the CPU performs a memory\noperation on unmapped regions of the address space.\nNOTE: Disabling this config on some targets (ESP32-C6, ESP32-H2, ESP32-C5) would not generate\nan exception when reading from or writing to 0x0.", - "id": "BOOTLOADER_REGION_PROTECTION_ENABLE", - "name": "BOOTLOADER_REGION_PROTECTION_ENABLE", - "range": null, - "title": "Enable protection for unmapped memory regions", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "BOOTLOADER_WDT_ENABLE", - "help": "If this option is set, the ESP-IDF app must explicitly reset, feed, or disable the rtc_wdt in\nthe app's own code.\nIf this option is not set (default), then rtc_wdt will be disabled by ESP-IDF before calling\nthe app_main() function.\n\nUse function wdt_hal_feed() for resetting counter of RTC_WDT.\nFor esp32/s2 you can also use rtc_wdt_feed().\n\nUse function wdt_hal_disable() for disabling RTC_WDT.\nFor esp32/s2 you can also use rtc_wdt_disable().", - "id": "BOOTLOADER_WDT_DISABLE_IN_USER_CODE", - "name": "BOOTLOADER_WDT_DISABLE_IN_USER_CODE", - "range": null, - "title": "Allows RTC watchdog disable in user code", - "type": "bool" - }, - { - "children": [], - "depends_on": "BOOTLOADER_WDT_ENABLE", - "help": "Verify that this parameter is correct and more then the execution time.\nPay attention to options such as reset to factory, trigger test partition and encryption on boot\n- these options can increase the execution time.\nNote: RTC_WDT will reset while encryption operations will be performed.", - "id": "BOOTLOADER_WDT_TIME_MS", - "name": "BOOTLOADER_WDT_TIME_MS", - "range": [ - 0, - 120000 - ], - "title": "Timeout for RTC watchdog (ms)", - "type": "int" - } - ], - "depends_on": null, - "help": "Tracks the execution time of startup code.\nIf the execution time is exceeded, the RTC_WDT will restart system.\nIt is also useful to prevent a lock up in start code caused by an unstable power source.\nNOTE: Tracks the execution time starts from the bootloader code - re-set timeout, while selecting the\nsource for slow_clk - and ends calling app_main.\nRe-set timeout is needed due to WDT uses a SLOW_CLK clock source. After changing a frequency slow_clk a\ntime of WDT needs to re-set for new frequency.\nslow_clk depends on RTC_CLK_SRC (INTERNAL_RC or EXTERNAL_CRYSTAL).", - "id": "BOOTLOADER_WDT_ENABLE", - "name": "BOOTLOADER_WDT_ENABLE", - "range": null, - "title": "Use RTC watchdog in start code", - "type": "bool" - }, - { - "children": [], - "depends_on": "(SECURE_BOOT && SECURE_BOOT_INSECURE) || !SECURE_BOOT", - "help": "This option disables the normal validation of an image coming out of\ndeep sleep (checksums, SHA256, and signature). This is a trade-off\nbetween wakeup performance from deep sleep, and image integrity checks.\n\nOnly enable this if you know what you are doing. It should not be used\nin conjunction with using deep_sleep() entry and changing the active OTA\npartition as this would skip the validation upon first load of the new\nOTA partition.\n\nIt is possible to enable this option with Secure Boot if \"allow insecure\noptions\" is enabled, however it's strongly recommended to NOT enable it as\nit may allow a Secure Boot bypass.", - "id": "BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP", - "name": "BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP", - "range": null, - "title": "Skip image validation when exiting deep sleep", - "type": "bool" - }, - { - "children": [], - "depends_on": "!SECURE_SIGNED_ON_BOOT", - "help": "Some applications need to boot very quickly from power on. By default, the entire app binary\nis read from flash and verified which takes up a significant portion of the boot time.\n\nEnabling this option will skip validation of the app when the SoC boots from power on.\nNote that in this case it's not possible for the bootloader to detect if an app image is\ncorrupted in the flash, therefore it's not possible to safely fall back to a different app\npartition. Flash corruption of this kind is unlikely but can happen if there is a serious\nfirmware bug or physical damage.\n\nFollowing other reset types, the bootloader will still validate the app image. This increases\nthe chances that flash corruption resulting in a crash can be detected following soft reset, and\nthe bootloader will fall back to a valid app image. To increase the chances of successfully recovering\nfrom a flash corruption event, keep the option BOOTLOADER_WDT_ENABLE enabled and consider also enabling\nBOOTLOADER_WDT_DISABLE_IN_USER_CODE - then manually disable the RTC Watchdog once the app is running.\nIn addition, enable both the Task and Interrupt watchdog timers with reset options set.", - "id": "BOOTLOADER_SKIP_VALIDATE_ON_POWER_ON", - "name": "BOOTLOADER_SKIP_VALIDATE_ON_POWER_ON", - "range": null, - "title": "Skip image validation from power on reset (READ HELP FIRST)", - "type": "bool" - }, - { - "children": [], - "depends_on": "!SECURE_SIGNED_ON_BOOT", - "help": "Selecting this option prevents the bootloader from ever validating the app image before\nbooting it. Any flash corruption of the selected app partition will make the entire SoC\nunbootable.\n\nAlthough flash corruption is a very rare case, it is not recommended to select this option.\nConsider selecting \"Skip image validation from power on reset\" instead. However, if boot time\nis the only important factor then it can be enabled.", - "id": "BOOTLOADER_SKIP_VALIDATE_ALWAYS", - "name": "BOOTLOADER_SKIP_VALIDATE_ALWAYS", - "range": null, - "title": "Skip image validation always (READ HELP FIRST)", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_RTC_FAST_MEM_SUPPORTED", - "help": "Reserve RTC FAST memory for Skip image validation. This option in bytes.\nThis option reserves an area in the RTC FAST memory (access only PRO_CPU).\nUsed to save the addresses of the selected application.\nWhen a wakeup occurs (from Deep sleep), the bootloader retrieves it and\nloads the application without validation.", - "id": "BOOTLOADER_RESERVE_RTC_SIZE", - "name": "BOOTLOADER_RESERVE_RTC_SIZE", - "range": null, - "title": null, - "type": "hex" - }, - { - "children": [ - { - "children": [], - "depends_on": "BOOTLOADER_CUSTOM_RESERVE_RTC", - "help": "This option allows the customer to use the legacy bootloader behavior when the\nRTC FAST memory CRC calculation takes place. When this option is enabled, the\nallocated user custom data will be taken into account in the CRC calculation.\nThis means that any change to the custom data would need a CRC update to prevent\nthe bootloader from marking this data as corrupted.\nIf this option is disabled, the custom data will not be taken into account when\ncalculating the RTC FAST memory CRC. The user custom data can be changed freely,\nwithout the need to update the CRC.\nTHIS OPTION MUST BE THE SAME FOR BOTH THE BOOTLOADER AND THE APPLICATION BUILDS.", - "id": "BOOTLOADER_CUSTOM_RESERVE_RTC_IN_CRC", - "name": "BOOTLOADER_CUSTOM_RESERVE_RTC_IN_CRC", - "range": null, - "title": "Include custom memory in the CRC calculation", - "type": "bool" - }, - { - "children": [], - "depends_on": "BOOTLOADER_CUSTOM_RESERVE_RTC", - "help": "This option reserves in RTC FAST memory the area for custom purposes.\nIf you want to create your own bootloader and save more information\nin this area of memory, you can increase it. It must be a multiple of 4 bytes.\nThis area (rtc_retain_mem_t) is reserved and has access from the bootloader and an application.", - "id": "BOOTLOADER_CUSTOM_RESERVE_RTC_SIZE", - "name": "BOOTLOADER_CUSTOM_RESERVE_RTC_SIZE", - "range": null, - "title": "Size in bytes for custom purposes", - "type": "hex" - } - ], - "depends_on": "SOC_RTC_FAST_MEM_SUPPORTED", - "help": "This option allows the customer to place data in the RTC FAST memory,\nthis area remains valid when rebooted, except for power loss.\nThis memory is located at a fixed address and is available\nfor both the bootloader and the application.\n(The application and bootloader must be compiled with the same option).\nThe RTC FAST memory has access only through PRO_CPU.", - "id": "BOOTLOADER_CUSTOM_RESERVE_RTC", - "name": "BOOTLOADER_CUSTOM_RESERVE_RTC", - "range": null, - "title": "Reserve RTC FAST memory for custom purposes", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_RTC_FAST_MEM_SUPPORTED", - "help": "This option reserves an area in RTC FAST memory for the following features:\n- \"Skip image validation when exiting deep sleep\"\n- \"Reserve RTC FAST memory for custom purposes\"\n- \"GPIO triggers factory reset\"", - "id": "BOOTLOADER_RESERVE_RTC_MEM", - "name": "BOOTLOADER_RESERVE_RTC_MEM", - "range": null, - "title": null, - "type": "bool" - } - ], - "depends_on": null, - "id": "bootloader-config", - "title": "Bootloader config", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "SECURE_BOOT || SECURE_SIGNED_ON_BOOT_NO_SECURE_BOOT", - "help": null, - "id": "SECURE_SIGNED_ON_BOOT", - "name": "SECURE_SIGNED_ON_BOOT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_BOOT || SECURE_SIGNED_ON_UPDATE_NO_SECURE_BOOT", - "help": null, - "id": "SECURE_SIGNED_ON_UPDATE", - "name": "SECURE_SIGNED_ON_UPDATE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_SIGNED_ON_BOOT || SECURE_SIGNED_ON_UPDATE", - "help": null, - "id": "SECURE_SIGNED_APPS", - "name": "SECURE_SIGNED_APPS", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "(IDF_TARGET_ESP32 && ESP32_REV_MIN_FULL >= 300) || SOC_SECURE_BOOT_V2_RSA", - "help": null, - "id": "SECURE_BOOT_V2_RSA_SUPPORTED", - "name": "SECURE_BOOT_V2_RSA_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_SECURE_BOOT_V2_ECC", - "help": null, - "id": "SECURE_BOOT_V2_ECC_SUPPORTED", - "name": "SECURE_BOOT_V2_ECC_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_SECURE_BOOT_V1", - "help": null, - "id": "SECURE_BOOT_V1_SUPPORTED", - "name": "SECURE_BOOT_V1_SUPPORTED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP32_REV_MIN_FULL >= 300", - "help": null, - "id": "SECURE_BOOT_V2_PREFERRED", - "name": "SECURE_BOOT_V2_PREFERRED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SECURE_BOOT_V2_ECDSA_ENABLED", - "name": "SECURE_BOOT_V2_ECDSA_ENABLED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SECURE_BOOT_V2_RSA_ENABLED", - "name": "SECURE_BOOT_V2_RSA_ENABLED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SECURE_BOOT_FLASH_ENC_KEYS_BURN_TOGETHER", - "name": "SECURE_BOOT_FLASH_ENC_KEYS_BURN_TOGETHER", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "!SECURE_BOOT", - "help": "Require apps to be signed to verify their integrity.\n\nThis option uses the same app signature scheme as hardware secure boot, but unlike hardware secure boot it\ndoes not prevent the bootloader from being physically updated. This means that the device can be secured\nagainst remote network access, but not physical access. Compared to using hardware Secure Boot this option\nis much simpler to implement.", - "id": "SECURE_SIGNED_APPS_NO_SECURE_BOOT", - "name": "SECURE_SIGNED_APPS_NO_SECURE_BOOT", - "range": null, - "title": "Require signed app images", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "SECURE_BOOT_V1_SUPPORTED && (SECURE_SIGNED_APPS_NO_SECURE_BOOT || SECURE_BOOT_V1_ENABLED) && ", - "help": "Embeds the ECDSA public key in the bootloader and signs the application with an ECDSA key.\nRefer to the documentation before enabling.", - "id": "SECURE_SIGNED_APPS_ECDSA_SCHEME", - "name": "SECURE_SIGNED_APPS_ECDSA_SCHEME", - "range": null, - "title": "ECDSA", - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_BOOT_V2_RSA_SUPPORTED && (SECURE_SIGNED_APPS_NO_SECURE_BOOT || SECURE_BOOT_V2_ENABLED) && !(IDF_TARGET_ESP32C5 && ESP32C5_REV_MIN_FULL < 1) && ", - "help": "Appends the RSA-3072 based Signature block to the application.\nRefer to before enabling.", - "id": "SECURE_SIGNED_APPS_RSA_SCHEME", - "name": "SECURE_SIGNED_APPS_RSA_SCHEME", - "range": null, - "title": "RSA", - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_BOOT_V2_ECC_SUPPORTED && (SECURE_SIGNED_APPS_NO_SECURE_BOOT || SECURE_BOOT_V2_ENABLED) && ", - "help": "For Secure boot V2 (e.g., ESP32-C2 SoC), appends ECDSA based signature block to the application.\nRefer to documentation before enabling.", - "id": "SECURE_SIGNED_APPS_ECDSA_V2_SCHEME", - "name": "SECURE_SIGNED_APPS_ECDSA_V2_SCHEME", - "range": null, - "title": "ECDSA (V2)", - "type": "bool" - } - ], - "depends_on": "SECURE_BOOT || SECURE_SIGNED_APPS_NO_SECURE_BOOT", - "help": "Select the Secure App signing scheme. Depends on the Chip Revision.\nThere are two secure boot versions:\n\n1. Secure boot V1\n - Legacy custom secure boot scheme. Supported in ESP32 SoC.\n\n2. Secure boot V2\n - RSA based secure boot scheme.\n Supported in ESP32-ECO3 (ESP32 Chip Revision 3 onwards), ESP32-S2, ESP32-C3, ESP32-S3 SoCs.\n\n - ECDSA based secure boot scheme. Supported in ESP32-C2 SoC.", - "id": "security-features-app-signing-scheme", - "name": "SECURE_SIGNED_APPS_SCHEME", - "title": "App Signing Scheme", - "type": "choice" - }, - { - "children": [ - { - "children": [], - "depends_on": "SECURE_SIGNED_APPS_ECDSA_V2_SCHEME && ", - "help": null, - "id": "SECURE_BOOT_ECDSA_KEY_LEN_192_BITS", - "name": "SECURE_BOOT_ECDSA_KEY_LEN_192_BITS", - "range": null, - "title": "Using ECC curve NISTP192", - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_SIGNED_APPS_ECDSA_V2_SCHEME && ", - "help": null, - "id": "SECURE_BOOT_ECDSA_KEY_LEN_256_BITS", - "name": "SECURE_BOOT_ECDSA_KEY_LEN_256_BITS", - "range": null, - "title": "Using ECC curve NISTP256 (Recommended)", - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_SIGNED_APPS_ECDSA_V2_SCHEME && SOC_ECDSA_SUPPORT_CURVE_P384 && ", - "help": null, - "id": "SECURE_BOOT_ECDSA_KEY_LEN_384_BITS", - "name": "SECURE_BOOT_ECDSA_KEY_LEN_384_BITS", - "range": null, - "title": "Using ECC curve NISTP384 (Recommended)", - "type": "bool" - } - ], - "depends_on": "SECURE_SIGNED_APPS_ECDSA_V2_SCHEME", - "help": "Select the ECDSA key size. Three key sizes are supported depending upon on the target:\n\n- 192 bit key using NISTP192 curve\n- 256 bit key using NISTP256 curve (Recommended)\n- 384 bit key using NISTP384 curve (Recommended)\n\nThe advantage of using 384 and 256 bit keys is the extra randomness which makes it difficult to be\nbruteforced compared to 192 bit key.\nAt present, both key sizes are practically implausible to bruteforce.", - "id": "security-features-ecdsa-key-size", - "name": "SECURE_BOOT_ECDSA_KEY_LEN_SIZE", - "title": "ECDSA key size", - "type": "choice" - }, - { - "children": [], - "depends_on": "SECURE_SIGNED_APPS_NO_SECURE_BOOT && SECURE_SIGNED_APPS_ECDSA_SCHEME", - "help": "If this option is set, the bootloader will be compiled with code to verify that an app is signed before\nbooting it.\n\nIf hardware secure boot is enabled, this option is always enabled and cannot be disabled.\nIf hardware secure boot is not enabled, this option doesn't add significant security by itself so most\nusers will want to leave it disabled.", - "id": "SECURE_SIGNED_ON_BOOT_NO_SECURE_BOOT", - "name": "SECURE_SIGNED_ON_BOOT_NO_SECURE_BOOT", - "range": null, - "title": "Bootloader verifies app signatures", - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_SIGNED_APPS_NO_SECURE_BOOT", - "help": "If this option is set, any OTA updated apps will have the signature verified before being considered valid.\n\nWhen enabled, the signature is automatically checked whenever the esp_ota_ops.h APIs are used for OTA\nupdates, or esp_image_format.h APIs are used to verify apps.\n\nIf hardware secure boot is enabled, this option is always enabled and cannot be disabled.\nIf hardware secure boot is not enabled, this option still adds significant security against network-based\nattackers by preventing spoofing of OTA updates.", - "id": "SECURE_SIGNED_ON_UPDATE_NO_SECURE_BOOT", - "name": "SECURE_SIGNED_ON_UPDATE_NO_SECURE_BOOT", - "range": null, - "title": "Verify app signature on update", - "type": "bool" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "SECURE_BOOT_V1_SUPPORTED && ", - "help": "Build a bootloader which enables secure boot version 1 on first boot.\nRefer to the Secure Boot section of the ESP-IDF Programmer's Guide for this version before enabling.", - "id": "SECURE_BOOT_V1_ENABLED", - "name": "SECURE_BOOT_V1_ENABLED", - "range": null, - "title": "Enable Secure Boot version 1", - "type": "bool" - }, - { - "children": [], - "depends_on": "(SECURE_BOOT_V2_RSA_SUPPORTED || SECURE_BOOT_V2_ECC_SUPPORTED) && ", - "help": "Build a bootloader which enables Secure Boot version 2 on first boot.\nRefer to Secure Boot V2 section of the ESP-IDF Programmer's Guide for this version before enabling.", - "id": "SECURE_BOOT_V2_ENABLED", - "name": "SECURE_BOOT_V2_ENABLED", - "range": null, - "title": "Enable Secure Boot version 2", - "type": "bool" - } - ], - "depends_on": "SECURE_BOOT", - "help": "Select the Secure Boot Version. Depends on the Chip Revision.\nSecure Boot V2 is the new RSA / ECDSA based secure boot scheme.\n\n - RSA based scheme is supported in ESP32 (Revision 3 onwards), ESP32-S2, ESP32-C3 (ECO3), ESP32-S3.\n - ECDSA based scheme is supported in ESP32-C2 SoC.\n\nPlease note that, RSA or ECDSA secure boot is property of specific SoC based on its HW design, supported\ncrypto accelerators, die-size, cost and similar parameters. Please note that RSA scheme has requirement\nfor bigger key sizes but at the same time it is comparatively faster than ECDSA verification.\n\nSecure Boot V1 is the AES based (custom) secure boot scheme supported in ESP32 SoC.", - "id": "security-features-enable-hardware-secure-boot-in-bootloader-read-docs-first--select-secure-boot-version", - "name": "SECURE_BOOT_VERSION", - "title": "Select secure boot version", - "type": "choice" - } - ], - "depends_on": "SOC_SECURE_BOOT_SUPPORTED && !(IDF_TARGET_ESP32C3 && ESP32C3_REV_MIN_FULL < 3)", - "help": "Build a bootloader which enables Secure Boot on first boot.\n\nOnce enabled, Secure Boot will not boot a modified bootloader. The bootloader will only load a partition\ntable or boot an app if the data has a verified digital signature. There are implications for reflashing\nupdated apps once secure boot is enabled.\n\nWhen enabling secure boot, JTAG and ROM BASIC Interpreter are permanently disabled by default.", - "id": "SECURE_BOOT", - "name": "SECURE_BOOT", - "range": null, - "title": "Enable hardware Secure Boot in bootloader (READ DOCS FIRST)", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": "On first boot, the bootloader will generate a key which is not readable externally or by software. A\ndigest is generated from the bootloader image itself. This digest will be verified on each subsequent\nboot.\n\nEnabling this option means that the bootloader cannot be changed after the first time it is booted.", - "id": "SECURE_BOOTLOADER_ONE_TIME_FLASH", - "name": "SECURE_BOOTLOADER_ONE_TIME_FLASH", - "range": null, - "title": "One-time flash", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "Generate a reusable secure bootloader key, derived (via SHA-256) from the secure boot signing key.\n\nThis allows the secure bootloader to be re-flashed by anyone with access to the secure boot signing\nkey.\n\nThis option is less secure than one-time flash, because a leak of the digest key from one device\nallows reflashing of any device that uses it.", - "id": "SECURE_BOOTLOADER_REFLASHABLE", - "name": "SECURE_BOOTLOADER_REFLASHABLE", - "range": null, - "title": "Reflashable", - "type": "bool" - } - ], - "depends_on": "SECURE_BOOT_V1_ENABLED", - "help": null, - "id": "security-features-secure-bootloader-mode", - "name": "SECURE_BOOTLOADER_MODE", - "title": "Secure bootloader mode", - "type": "choice" - }, - { - "children": [ - { - "children": [], - "depends_on": "SECURE_BOOT_BUILD_SIGNED_BINARIES", - "help": "Path to the key file used to sign app images.\n\nKey file is an ECDSA private key (NIST256p curve) in PEM format for Secure Boot V1.\nKey file is an RSA private key in PEM format for Secure Boot V2.\n\nPath is evaluated relative to the project directory.\n\nYou can generate a new signing key by running the following command:\nespsecure.py generate_signing_key secure_boot_signing_key.pem\n\nSee the Secure Boot section of the ESP-IDF Programmer's Guide for this version for details.", - "id": "SECURE_BOOT_SIGNING_KEY", - "name": "SECURE_BOOT_SIGNING_KEY", - "range": null, - "title": "Secure boot private signing key", - "type": "string" - } - ], - "depends_on": "SECURE_SIGNED_APPS", - "help": "Once secure boot or signed app requirement is enabled, app images are required to be signed.\n\nIf enabled (default), these binary files are signed as part of the build process. The file named in\n\"Secure boot private signing key\" will be used to sign the image.\n\nIf disabled, unsigned app/partition data will be built. They must be signed manually using espsecure.py.\nVersion 1 to enable ECDSA Based Secure Boot and Version 2 to enable RSA based Secure Boot.\n(for example, on a remote signing server.)", - "id": "SECURE_BOOT_BUILD_SIGNED_BINARIES", - "name": "SECURE_BOOT_BUILD_SIGNED_BINARIES", - "range": null, - "title": "Sign binaries during build", - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_SIGNED_APPS && SECURE_SIGNED_APPS_ECDSA_SCHEME && !SECURE_BOOT_BUILD_SIGNED_BINARIES", - "help": "Path to a public key file used to verify signed images.\nSecure Boot V1: This ECDSA public key is compiled into the bootloader and/or\napp, to verify app images.\n\nKey file is in raw binary format, and can be extracted from a\nPEM formatted private key using the espsecure.py\nextract_public_key command.\n\nRefer to the Secure Boot section of the ESP-IDF Programmer's Guide for this version before enabling.", - "id": "SECURE_BOOT_VERIFICATION_KEY", - "name": "SECURE_BOOT_VERIFICATION_KEY", - "range": null, - "title": "Secure boot public signature verification key", - "type": "string" - }, - { - "children": [], - "depends_on": "SECURE_BOOT && SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY", - "help": "If this option is set, ROM bootloader will revoke the public key digest burned in efuse block\nif it fails to verify the signature of software bootloader with it.\nRevocation of keys does not happen when enabling secure boot. Once secure boot is enabled,\nkey revocation checks will be done on subsequent boot-up, while verifying the software bootloader\n\nThis feature provides a strong resistance against physical attacks on the device.\n\nNOTE: Once a digest slot is revoked, it can never be used again to verify an image\nThis can lead to permanent bricking of the device, in case all keys are revoked\nbecause of signature verification failure.", - "id": "SECURE_BOOT_ENABLE_AGGRESSIVE_KEY_REVOKE", - "name": "SECURE_BOOT_ENABLE_AGGRESSIVE_KEY_REVOKE", - "range": null, - "title": "Enable Aggressive key revoke strategy", - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_BOOT_V2_ENABLED", - "help": "If not set (default, recommended), on first boot the bootloader will burn the WR_DIS_RD_DIS\nefuse when Secure Boot is enabled. This prevents any more efuses from being read protected.\n\nIf this option is set, it will remain possible to write the EFUSE_RD_DIS efuse field after Secure\nBoot is enabled. This may allow an attacker to read-protect the BLK2 efuse (for ESP32) and\nBLOCK4-BLOCK10 (i.e. BLOCK_KEY0-BLOCK_KEY5)(for other chips) holding the secure boot public key digest,\ncausing an immediate denial of service and possibly allowing an additional fault injection attack to\nbypass the signature protection.\n\nThe option must be set when you need to program any read-protected key type into the efuses,\ne.g., HMAC, ECDSA etc. after secure boot has already been enabled on the device.\nPlease refer to secure boot V2 documentation guide for more details.\n\nNOTE: Once a BLOCK is read-protected, the application will read all zeros from that block\n\nNOTE: If \"UART ROM download mode (Permanently disabled (recommended))\" or\n\"UART ROM download mode (Permanently switch to Secure mode (recommended))\" is set,\nthen it is __NOT__ possible to read/write efuses using espefuse.py utility.\nHowever, efuse can be read/written from the application\n\nPlease refer to the Secure Boot V2 documentation guide for more information.", - "id": "SECURE_BOOT_V2_ALLOW_EFUSE_RD_DIS", - "name": "SECURE_BOOT_V2_ALLOW_EFUSE_RD_DIS", - "range": null, - "title": "Do not disable the ability to further read protect eFuses", - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_BOOT_V2_ENABLED", - "help": "When Secure Boot V2 is enabled, by default the bootloader is not flashed along with other artifacts\nlike the application and the partition table images, i.e. bootloader has to be separately flashed\nusing the command `idf.py bootloader flash`, whereas, the application and partition table can be flashed\nusing the command `idf.py flash` itself.\nEnabling this option allows flashing the bootloader along with the other artifacts\nby invocation of the command `idf.py flash`.\n\nIf this option is enabled make sure that even the bootloader is signed using the correct secure boot key,\notherwise the bootloader signature verification would fail, as hash of the public key which is present in\nthe bootloader signature would not match with the digest stored into the efuses\nand thus the device will not be able to boot up.", - "id": "SECURE_BOOT_FLASH_BOOTLOADER_DEFAULT", - "name": "SECURE_BOOT_FLASH_BOOTLOADER_DEFAULT", - "range": null, - "title": "Flash bootloader along with other artifacts when using the default flash command", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "SECURE_BOOTLOADER_KEY_ENCODING_256BIT", - "name": "SECURE_BOOTLOADER_KEY_ENCODING_256BIT", - "range": null, - "title": "No encoding (256 bit key)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "SECURE_BOOTLOADER_KEY_ENCODING_192BIT", - "name": "SECURE_BOOTLOADER_KEY_ENCODING_192BIT", - "range": null, - "title": "3/4 encoding (192 bit key)", - "type": "bool" - } - ], - "depends_on": "SECURE_BOOTLOADER_REFLASHABLE", - "help": "In reflashable secure bootloader mode, a hardware key is derived from the signing key (with SHA-256) and\ncan be written to eFuse with espefuse.py.\n\nNormally this is a 256-bit key, but if 3/4 Coding Scheme is used on the device then the eFuse key is\ntruncated to 192 bits.\n\nThis configuration item doesn't change any firmware code, it only changes the size of key binary which is\ngenerated at build time.", - "id": "security-features-hardware-key-encoding", - "name": "SECURE_BOOTLOADER_KEY_ENCODING", - "title": "Hardware Key Encoding", - "type": "choice" - }, - { - "children": [], - "depends_on": "SECURE_BOOT", - "help": "You can disable some of the default protections offered by secure boot, in order to enable testing or a\ncustom combination of security features.\n\nOnly enable these options if you are very sure.\n\nRefer to the Secure Boot section of the ESP-IDF Programmer's Guide for this version before enabling.", - "id": "SECURE_BOOT_INSECURE", - "name": "SECURE_BOOT_INSECURE", - "range": null, - "title": "Allow potentially insecure options", - "type": "bool" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "SOC_FLASH_ENCRYPTION_XTS_AES_128_DERIVED && ", - "help": null, - "id": "SECURE_FLASH_ENCRYPTION_AES128_DERIVED", - "name": "SECURE_FLASH_ENCRYPTION_AES128_DERIVED", - "range": null, - "title": "AES-128 key derived from 128 bits (SHA256(128 bits))", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_FLASH_ENCRYPTION_XTS_AES_128 && !(IDF_TARGET_ESP32C2 && SECURE_BOOT) && ", - "help": null, - "id": "SECURE_FLASH_ENCRYPTION_AES128", - "name": "SECURE_FLASH_ENCRYPTION_AES128", - "range": null, - "title": "AES-128 (256-bit key)", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_FLASH_ENCRYPTION_XTS_AES_256 && ", - "help": null, - "id": "SECURE_FLASH_ENCRYPTION_AES256", - "name": "SECURE_FLASH_ENCRYPTION_AES256", - "range": null, - "title": "AES-256 (512-bit key)", - "type": "bool" - } - ], - "depends_on": "SOC_FLASH_ENCRYPTION_XTS_AES_OPTIONS && SECURE_FLASH_ENC_ENABLED", - "help": "Size of generated XTS-AES key.\n\n- AES-128 uses a 256-bit key (32 bytes) derived from 128 bits (16 bytes) burned in half Efuse key block.\n Internally, it calculates SHA256(128 bits)\n- AES-128 uses a 256-bit key (32 bytes) which occupies one Efuse key block.\n- AES-256 uses a 512-bit key (64 bytes) which occupies two Efuse key blocks.\n\nThis setting is ignored if either type of key is already burned to Efuse before the first boot.\nIn this case, the pre-burned key is used and no new key is generated.", - "id": "security-features-enable-flash-encryption-on-boot-read-docs-first--size-of-generated-xts-aes-key", - "name": "SECURE_FLASH_ENCRYPTION_KEYSIZE", - "title": "Size of generated XTS-AES key", - "type": "choice" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT", - "name": "SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT", - "range": null, - "title": "Development (NOT SECURE)", - "type": "bool" - }, - { - "children": [], - "depends_on": "(!EFUSE_VIRTUAL || IDF_CI_BUILD) && ", - "help": null, - "id": "SECURE_FLASH_ENCRYPTION_MODE_RELEASE", - "name": "SECURE_FLASH_ENCRYPTION_MODE_RELEASE", - "range": null, - "title": "Release", - "type": "bool" - } - ], - "depends_on": "SECURE_FLASH_ENC_ENABLED", - "help": "By default Development mode is enabled which allows ROM download mode to perform flash encryption\noperations (plaintext is sent to the device, and it encrypts it internally and writes ciphertext\nto flash.) This mode is not secure, it's possible for an attacker to write their own chosen plaintext\nto flash.\n\nRelease mode should always be selected for production or manufacturing. Once enabled it's no longer\npossible for the device in ROM Download Mode to use the flash encryption hardware.\n\nWhen EFUSE_VIRTUAL is enabled, SECURE_FLASH_ENCRYPTION_MODE_RELEASE is not available.\nFor CI tests we use IDF_CI_BUILD to bypass it (\"export IDF_CI_BUILD=1\").\nWe do not recommend bypassing it for other purposes.\n\nRefer to the Flash Encryption section of the ESP-IDF Programmer's Guide for details.", - "id": "security-features-enable-flash-encryption-on-boot-read-docs-first--enable-usage-mode", - "name": "SECURE_FLASH_ENCRYPTION_MODE", - "title": "Enable usage mode", - "type": "choice" - } - ], - "depends_on": null, - "help": "If this option is set, flash contents will be encrypted by the bootloader on first boot.\n\nNote: After first boot, the system will be permanently encrypted. Re-flashing an encrypted\nsystem is complicated and not always possible.\n\nRead https://docs.espressif.com/projects/esp-idf/en/latest/security/flash-encryption.html\nbefore enabling.", - "id": "SECURE_FLASH_ENC_ENABLED", - "name": "SECURE_FLASH_ENC_ENABLED", - "range": null, - "title": "Enable flash encryption on boot (READ DOCS FIRST)", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SECURE_FLASH_HAS_WRITE_PROTECTION_CACHE", - "name": "SECURE_FLASH_HAS_WRITE_PROTECTION_CACHE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "(SECURE_BOOT_INSECURE || SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT) && IDF_TARGET_ESP32", - "help": "By default, the BASIC ROM Console starts on reset if no valid bootloader is\nread from the flash.\n\nWhen either flash encryption or secure boot are enabled, the default is to\ndisable this BASIC fallback mode permanently via eFuse.\n\nIf this option is set, this eFuse is not burned and the BASIC ROM Console may\nremain accessible. Only set this option in testing environments.", - "id": "SECURE_BOOT_ALLOW_ROM_BASIC", - "name": "SECURE_BOOT_ALLOW_ROM_BASIC", - "range": null, - "title": "Leave ROM BASIC Interpreter available on reset", - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_BOOT_INSECURE || SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT", - "help": "If not set (default), the bootloader will permanently disable JTAG (across entire chip) on first boot\nwhen either secure boot or flash encryption is enabled.\n\nSetting this option leaves JTAG on for debugging, which negates all protections of flash encryption\nand some of the protections of secure boot.\n\nOnly set this option in testing environments.", - "id": "SECURE_BOOT_ALLOW_JTAG", - "name": "SECURE_BOOT_ALLOW_JTAG", - "range": null, - "title": "Allow JTAG Debugging", - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_BOOT_INSECURE || SECURE_SIGNED_ON_UPDATE_NO_SECURE_BOOT", - "help": "If not set (default), app partition size must be a multiple of 64KB. App images are padded to 64KB\nlength, and the bootloader checks any trailing bytes after the signature (before the next 64KB\nboundary) have not been written. This is because flash cache maps entire 64KB pages into the address\nspace. This prevents an attacker from appending unverified data after the app image in the flash,\ncausing it to be mapped into the address space.\n\nSetting this option allows the app partition length to be unaligned, and disables padding of the app\nimage to this length. It is generally not recommended to set this option, unless you have a legacy\npartitioning scheme which doesn't support 64KB aligned partition lengths.", - "id": "SECURE_BOOT_ALLOW_SHORT_APP_PARTITION", - "name": "SECURE_BOOT_ALLOW_SHORT_APP_PARTITION", - "range": null, - "title": "Allow app partition length not 64KB aligned", - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_BOOT_INSECURE && SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS", - "help": "If not set (default), during startup in the app all unused digest slots will be revoked.\nTo revoke unused slot will be called esp_efuse_set_digest_revoke(num_digest) for each digest.\nRevoking unused digest slots makes ensures that no trusted keys can be added later by an attacker.\nIf set, it means that you have a plan to use unused digests slots later.\n\nNote that if you plan to enable secure boot during the first boot up, the bootloader will intentionally\nrevoke the unused digest slots while enabling secure boot, even if the above config is enabled because\nkeeping the unused key slots un-revoked would a security hazard.\nIn case for any development workflow if you need to avoid this revocation, you should enable\nsecure boot externally (host based mechanism) rather than enabling it during the boot up,\nso that the bootloader would not need to enable secure boot and thus you could avoid its revocation\nstrategy.", - "id": "SECURE_BOOT_ALLOW_UNUSED_DIGEST_SLOTS", - "name": "SECURE_BOOT_ALLOW_UNUSED_DIGEST_SLOTS", - "range": null, - "title": "Leave unused digest slots available (not revoke)", - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT", - "help": "If not set (default), the bootloader will permanently disable UART bootloader encryption access on\nfirst boot. If set, the UART bootloader will still be able to access hardware encryption.\n\nIt is recommended to only set this option in testing environments.", - "id": "SECURE_FLASH_UART_BOOTLOADER_ALLOW_ENC", - "name": "SECURE_FLASH_UART_BOOTLOADER_ALLOW_ENC", - "range": null, - "title": "Leave UART bootloader encryption enabled", - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT && IDF_TARGET_ESP32", - "help": "If not set (default), the bootloader will permanently disable UART bootloader decryption access on\nfirst boot. If set, the UART bootloader will still be able to access hardware decryption.\n\nOnly set this option in testing environments. Setting this option allows complete bypass of flash\nencryption.", - "id": "SECURE_FLASH_UART_BOOTLOADER_ALLOW_DEC", - "name": "SECURE_FLASH_UART_BOOTLOADER_ALLOW_DEC", - "range": null, - "title": "Leave UART bootloader decryption enabled", - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT && (IDF_TARGET_ESP32 || SOC_EFUSE_DIS_DOWNLOAD_ICACHE || SOC_EFUSE_DIS_DOWNLOAD_DCACHE)", - "help": "If not set (default), the bootloader will permanently disable UART bootloader flash cache access on\nfirst boot. If set, the UART bootloader will still be able to access the flash cache.\n\nOnly set this option in testing environments.", - "id": "SECURE_FLASH_UART_BOOTLOADER_ALLOW_CACHE", - "name": "SECURE_FLASH_UART_BOOTLOADER_ALLOW_CACHE", - "range": null, - "title": "Leave UART bootloader flash cache enabled", - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT", - "help": "If not set (default), and flash encryption is not yet enabled in eFuses, the 2nd stage bootloader\nwill enable flash encryption: generate the flash encryption key and program eFuses.\nIf this option is set, and flash encryption is not yet enabled, the bootloader will error out and\nreboot.\nIf flash encryption is enabled in eFuses, this option does not change the bootloader behavior.\n\nOnly use this option in testing environments, to avoid accidentally enabling flash encryption on\nthe wrong device. The device needs to have flash encryption already enabled using espefuse.py.", - "id": "SECURE_FLASH_REQUIRE_ALREADY_ENABLED", - "name": "SECURE_FLASH_REQUIRE_ALREADY_ENABLED", - "range": null, - "title": "Require flash encryption to be already enabled", - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_FLASH_HAS_WRITE_PROTECTION_CACHE", - "help": "If not set (default, recommended), on the first boot the bootloader will burn the write-protection of\nDIS_CACHE(for ESP32) or DIS_ICACHE/DIS_DCACHE(for other chips) eFuse when Flash Encryption is enabled.\nWrite protection for cache disable efuse prevents the chip from being blocked if it is set by accident.\nApp and bootloader use cache so disabling it makes the chip useless for IDF.\nDue to other eFuses are linked with the same write protection bit (see the list below) then\nwrite-protection will not be done if these SECURE_FLASH_UART_BOOTLOADER_ALLOW_ENC,\nSECURE_BOOT_ALLOW_JTAG or SECURE_FLASH_UART_BOOTLOADER_ALLOW_CACHE options are selected\nto give a chance to turn on the chip into the release mode later.\n\nList of eFuses with the same write protection bit:\nESP32: MAC, MAC_CRC, DISABLE_APP_CPU, DISABLE_BT, DIS_CACHE, VOL_LEVEL_HP_INV.\n\nESP32-C3: DIS_ICACHE, DIS_USB_JTAG, DIS_DOWNLOAD_ICACHE, DIS_USB_SERIAL_JTAG,\nDIS_FORCE_DOWNLOAD, DIS_TWAI, JTAG_SEL_ENABLE, DIS_PAD_JTAG, DIS_DOWNLOAD_MANUAL_ENCRYPT.\n\nESP32-C6: SWAP_UART_SDIO_EN, DIS_ICACHE, DIS_USB_JTAG, DIS_DOWNLOAD_ICACHE,\nDIS_USB_SERIAL_JTAG, DIS_FORCE_DOWNLOAD, DIS_TWAI, JTAG_SEL_ENABLE,\nDIS_PAD_JTAG, DIS_DOWNLOAD_MANUAL_ENCRYPT.\n\nESP32-H2 & ESP32H21: DIS_ICACHE, DIS_ICACHE, DIS_USB_JTAG, POWERGLITCH_EN, DIS_FORCE_DOWNLOAD,\nSPI_DOWNLOAD_MSPI_DIS, DIS_TWAI, JTAG_SEL_ENABLE, DIS_PAD_JTAG, DIS_DOWNLOAD_MANUAL_ENCRYPT,\nDIS_USB_SERIAL_JTAG\n\nESP32-S2: DIS_ICACHE, DIS_DCACHE, DIS_DOWNLOAD_ICACHE, DIS_DOWNLOAD_DCACHE,\nDIS_FORCE_DOWNLOAD, DIS_USB, DIS_TWAI, DIS_BOOT_REMAP, SOFT_DIS_JTAG,\nHARD_DIS_JTAG, DIS_DOWNLOAD_MANUAL_ENCRYPT.\n\nESP32-S3: DIS_ICACHE, DIS_DCACHE, DIS_DOWNLOAD_ICACHE, DIS_DOWNLOAD_DCACHE,\nDIS_FORCE_DOWNLOAD, DIS_USB_OTG, DIS_TWAI, DIS_APP_CPU, DIS_PAD_JTAG,\nDIS_DOWNLOAD_MANUAL_ENCRYPT, DIS_USB_JTAG, DIS_USB_SERIAL_JTAG, STRAP_JTAG_SEL, USB_PHY_SEL.", - "id": "SECURE_FLASH_SKIP_WRITE_PROTECTION_CACHE", - "name": "SECURE_FLASH_SKIP_WRITE_PROTECTION_CACHE", - "range": null, - "title": "Skip write-protection of DIS_CACHE (DIS_ICACHE, DIS_DCACHE)", - "type": "bool" - } - ], - "depends_on": null, - "id": "security-features-potentially-insecure-options", - "title": "Potentially insecure options", - "type": "menu" - }, - { - "children": [], - "depends_on": "SECURE_FLASH_ENC_ENABLED && !SECURE_FLASH_REQUIRE_ALREADY_ENABLED", - "help": "If set (default), optimise encryption time for the partition of type APP,\nby only encrypting the app image that is present in the partition,\ninstead of the whole partition.\nThe image length used for encryption is derived from the image metadata, which\nincludes the size of the app image, checksum, hash and also the signature sector\nwhen secure boot is enabled.\n\nIf not set, the whole partition of type APP would be encrypted,\nwhich increases the encryption time but might be useful if there\nis any custom data appended to the firmware image.", - "id": "SECURE_FLASH_ENCRYPT_ONLY_IMAGE_LEN_IN_APP_PART", - "name": "SECURE_FLASH_ENCRYPT_ONLY_IMAGE_LEN_IN_APP_PART", - "range": null, - "title": "Encrypt only the app image that is present in the partition of type app", - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_FLASH_ENC_ENABLED", - "help": "If set (default), in an app during startup code,\nthere is a check of the flash encryption eFuse bit is on\n(as the bootloader should already have set it).\nThe app requires this bit is on to continue work otherwise abort.\n\nIf not set, the app does not care if the flash encryption eFuse bit is set or not.", - "id": "SECURE_FLASH_CHECK_ENC_EN_IN_APP", - "name": "SECURE_FLASH_CHECK_ENC_EN_IN_APP", - "range": null, - "title": "Check Flash Encryption enabled on app startup", - "type": "bool" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH_LOW", - "name": "SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH_LOW", - "range": null, - "title": "Low", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH_MEDIUM", - "name": "SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH_MEDIUM", - "range": null, - "title": "Medium", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH_HIGH", - "name": "SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH_HIGH", - "range": null, - "title": "High", - "type": "bool" - } - ], - "depends_on": "SECURE_FLASH_PSEUDO_ROUND_FUNC", - "help": "The strength of the pseudo rounds functions can be configured to low, medium and high,\neach denoting the values that would be stored in the efuses field.\nBy default the value to set to low.\nYou can configure the strength of the pseudo rounds functions according to your use cases,\nfor example, increasing the strength would provide higher security but would slow down the\nflash encryption/decryption operations.\nFor more info regarding the performance impact, please checkout the pseudo round function section of the\nsecurity guide documentation.", - "id": "security-features-permanently-enable-xts-aes-s-pseudo-rounds-function-strength-of-the-pseudo-rounds-function", - "name": "SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH", - "title": "Strength of the pseudo rounds function", - "type": "choice" - } - ], - "depends_on": "SECURE_FLASH_ENCRYPTION_MODE_RELEASE && SOC_FLASH_ENCRYPTION_XTS_AES_SUPPORT_PSEUDO_ROUND", - "help": "If set (default), the bootloader will permanently enable the XTS-AES peripheral's pseudo rounds function.\nNote: Enabling this config would burn an efuse.", - "id": "SECURE_FLASH_PSEUDO_ROUND_FUNC", - "name": "SECURE_FLASH_PSEUDO_ROUND_FUNC", - "range": null, - "title": "Permanently enable XTS-AES's pseudo rounds function", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH", - "name": "SECURE_FLASH_PSEUDO_ROUND_FUNC_STRENGTH", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "SECURE_ROM_DL_MODE_ENABLED", - "name": "SECURE_ROM_DL_MODE_ENABLED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": "If set, during startup the app will burn an eFuse bit to permanently disable the UART ROM\nDownload Mode. This prevents any future use of esptool.py, espefuse.py and similar tools.\n\nOnce disabled, if the SoC is booted with strapping pins set for ROM Download Mode\nthen an error is printed instead.\n\nIt is recommended to enable this option in any production application where Flash\nEncryption and/or Secure Boot is enabled and access to Download Mode is not required.\n\nIt is also possible to permanently disable Download Mode by calling\nesp_efuse_disable_rom_download_mode() at runtime.", - "id": "SECURE_DISABLE_ROM_DL_MODE", - "name": "SECURE_DISABLE_ROM_DL_MODE", - "range": null, - "title": "UART ROM download mode (Permanently disabled (recommended))", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_SUPPORTS_SECURE_DL_MODE && ", - "help": "If set, during startup the app will burn an eFuse bit to permanently switch the UART ROM\nDownload Mode into a separate Secure Download mode. This option can only work if\nDownload Mode is not already disabled by eFuse.\n\nSecure Download mode limits the use of Download Mode functions to update SPI config,\nchanging baud rate, basic flash write and a command to return a summary of currently\nenabled security features (`get_security_info`).\n\nSecure Download mode is not compatible with the esptool.py flasher stub feature,\nespefuse.py, read/writing memory or registers, encrypted download, or any other\nfeatures that interact with unsupported Download Mode commands.\n\nSecure Download mode should be enabled in any application where Flash Encryption\nand/or Secure Boot is enabled. Disabling this option does not immediately cancel\nthe benefits of the security features, but it increases the potential \"attack\nsurface\" for an attacker to try and bypass them with a successful physical attack.\n\nIt is also possible to enable secure download mode at runtime by calling\nesp_efuse_enable_rom_secure_download_mode()\n\nNote: Secure Download mode is not available for ESP32.", - "id": "SECURE_ENABLE_SECURE_ROM_DL_MODE", - "name": "SECURE_ENABLE_SECURE_ROM_DL_MODE", - "range": null, - "title": "UART ROM download mode (Permanently switch to Secure mode (recommended))", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "This is a potentially insecure option.\nEnabling this option will allow the full UART download mode to stay enabled.\nThis option SHOULD NOT BE ENABLED for production use cases.", - "id": "SECURE_INSECURE_ALLOW_DL_MODE", - "name": "SECURE_INSECURE_ALLOW_DL_MODE", - "range": null, - "title": "UART ROM download mode (Enabled (not recommended))", - "type": "bool" - } - ], - "depends_on": "(SECURE_BOOT_V2_ENABLED || SECURE_FLASH_ENC_ENABLED) && !(IDF_TARGET_ESP32 && ESP32_REV_MIN_FULL < 300)", - "help": null, - "id": "security-features-uart-rom-download-mode", - "name": "SECURE_UART_ROM_DL_MODE", - "title": "UART ROM download mode", - "type": "choice" - } - ], - "depends_on": null, - "id": "security-features", - "title": "Security features", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "!APP_REPRODUCIBLE_BUILD", - "help": "If set, then the app will be built with the current time/date stamp. It is stored in the app description\nstructure. If not set, time/date stamp will be excluded from app image. This can be useful for getting the\nsame binary image files made from the same source, but at different times.", - "id": "APP_COMPILE_TIME_DATE", - "name": "APP_COMPILE_TIME_DATE", - "range": null, - "title": "Use time/date stamp for app", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "The PROJECT_VER variable from the build system will not affect the firmware image.\nThis value will not be contained in the esp_app_desc structure.", - "id": "APP_EXCLUDE_PROJECT_VER_VAR", - "name": "APP_EXCLUDE_PROJECT_VER_VAR", - "range": null, - "title": "Exclude PROJECT_VER from firmware image", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "The PROJECT_NAME variable from the build system will not affect the firmware image.\nThis value will not be contained in the esp_app_desc structure.", - "id": "APP_EXCLUDE_PROJECT_NAME_VAR", - "name": "APP_EXCLUDE_PROJECT_NAME_VAR", - "range": null, - "title": "Exclude PROJECT_NAME from firmware image", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "APP_PROJECT_VER_FROM_CONFIG", - "help": "Project version", - "id": "APP_PROJECT_VER", - "name": "APP_PROJECT_VER", - "range": null, - "title": "Project version", - "type": "string" - } - ], - "depends_on": null, - "help": "If this is enabled, then config item APP_PROJECT_VER will be used for the variable PROJECT_VER.\nOther ways to set PROJECT_VER will be ignored.", - "id": "APP_PROJECT_VER_FROM_CONFIG", - "name": "APP_PROJECT_VER_FROM_CONFIG", - "range": null, - "title": "Get the project version from Kconfig", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "At startup, the app will read the embedded APP ELF SHA-256 hash value from flash\nand convert it into a string and store it in a RAM buffer.\nThis ensures the panic handler and core dump will be able to print this string\neven when cache is disabled.\nThe size of the buffer is APP_RETRIEVE_LEN_ELF_SHA plus the null terminator.\nChanging this value will change the size of this buffer, in bytes.", - "id": "APP_RETRIEVE_LEN_ELF_SHA", - "name": "APP_RETRIEVE_LEN_ELF_SHA", - "range": [ - 8, - 64 - ], - "title": "The length of APP ELF SHA is stored in RAM(chars)", - "type": "int" - } - ], - "depends_on": null, - "id": "application-manager", - "title": "Application manager", - "type": "menu" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_HAS_CRC_LE", - "name": "ESP_ROM_HAS_CRC_LE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_HAS_CRC_BE", - "name": "ESP_ROM_HAS_CRC_BE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_UART_CLK_IS_XTAL", - "name": "ESP_ROM_UART_CLK_IS_XTAL", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_USB_SERIAL_DEVICE_NUM", - "name": "ESP_ROM_USB_SERIAL_DEVICE_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_HAS_RETARGETABLE_LOCKING", - "name": "ESP_ROM_HAS_RETARGETABLE_LOCKING", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_GET_CLK_FREQ", - "name": "ESP_ROM_GET_CLK_FREQ", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_HAS_HAL_WDT", - "name": "ESP_ROM_HAS_HAL_WDT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_HAS_HAL_SYSTIMER", - "name": "ESP_ROM_HAS_HAL_SYSTIMER", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_SYSTIMER_INIT_PATCH", - "name": "ESP_ROM_SYSTIMER_INIT_PATCH", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_HAS_HEAP_TLSF", - "name": "ESP_ROM_HAS_HEAP_TLSF", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_TLSF_CHECK_PATCH", - "name": "ESP_ROM_TLSF_CHECK_PATCH", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_MULTI_HEAP_WALK_PATCH", - "name": "ESP_ROM_MULTI_HEAP_WALK_PATCH", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_HAS_LAYOUT_TABLE", - "name": "ESP_ROM_HAS_LAYOUT_TABLE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_HAS_SPI_FLASH", - "name": "ESP_ROM_HAS_SPI_FLASH", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_HAS_SPI_FLASH_MMAP", - "name": "ESP_ROM_HAS_SPI_FLASH_MMAP", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_WITHOUT_REGI2C", - "name": "ESP_ROM_WITHOUT_REGI2C", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_HAS_NEWLIB", - "name": "ESP_ROM_HAS_NEWLIB", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_HAS_NEWLIB_NANO_FORMAT", - "name": "ESP_ROM_HAS_NEWLIB_NANO_FORMAT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_HAS_NEWLIB_NANO_PRINTF_FLOAT_BUG", - "name": "ESP_ROM_HAS_NEWLIB_NANO_PRINTF_FLOAT_BUG", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_WDT_INIT_PATCH", - "name": "ESP_ROM_WDT_INIT_PATCH", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE", - "name": "ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_RAM_APP_NEEDS_MMU_INIT", - "name": "ESP_ROM_RAM_APP_NEEDS_MMU_INIT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_HAS_SW_FLOAT", - "name": "ESP_ROM_HAS_SW_FLOAT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_USB_OTG_NUM", - "name": "ESP_ROM_USB_OTG_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_HAS_VERSION", - "name": "ESP_ROM_HAS_VERSION", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB", - "name": "ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_HAS_OUTPUT_PUTC_FUNC", - "name": "ESP_ROM_HAS_OUTPUT_PUTC_FUNC", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_NO_USB_SERIAL_OUTPUT_API", - "name": "ESP_ROM_NO_USB_SERIAL_OUTPUT_API", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_HAS_SUBOPTIMAL_NEWLIB_ON_MISALIGNED_MEMORY", - "name": "ESP_ROM_HAS_SUBOPTIMAL_NEWLIB_ON_MISALIGNED_MEMORY", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": "Always print ROM logs, this is the default behavior.", - "id": "BOOT_ROM_LOG_ALWAYS_ON", - "name": "BOOT_ROM_LOG_ALWAYS_ON", - "range": null, - "title": "Always Log", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "Don't print ROM logs.", - "id": "BOOT_ROM_LOG_ALWAYS_OFF", - "name": "BOOT_ROM_LOG_ALWAYS_OFF", - "range": null, - "title": "Permanently disable logging", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "Print ROM logs when GPIO level is high during start up.\nThe GPIO number is chip dependent,\ne.g. on ESP32-S2, the control GPIO is GPIO46.", - "id": "BOOT_ROM_LOG_ON_GPIO_HIGH", - "name": "BOOT_ROM_LOG_ON_GPIO_HIGH", - "range": null, - "title": "Log on GPIO High", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "Print ROM logs when GPIO level is low during start up.\nThe GPIO number is chip dependent,\ne.g. on ESP32-S2, the control GPIO is GPIO46.", - "id": "BOOT_ROM_LOG_ON_GPIO_LOW", - "name": "BOOT_ROM_LOG_ON_GPIO_LOW", - "range": null, - "title": "Log on GPIO Low", - "type": "bool" - } - ], - "depends_on": "!IDF_TARGET_ESP32", - "help": "Controls the Boot ROM log behavior.\nThe rom log behavior can only be changed for once,\nspecific eFuse bit(s) will be burned at app boot stage.", - "id": "boot-rom-behavior-permanently-change-boot-rom-output", - "name": "BOOT_ROM_LOG_SCHEME", - "title": "Permanently change Boot ROM output", - "type": "choice" - } - ], - "depends_on": null, - "id": "boot-rom-behavior", - "title": "Boot ROM Behavior", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "The flasher tool sends a precompiled download stub first by default. That stub allows things\nlike compressed downloads and more. Usually you should not need to disable that feature", - "id": "ESPTOOLPY_NO_STUB", - "name": "ESPTOOLPY_NO_STUB", - "range": null, - "title": "Disable download stub", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_SPI_MEM_SUPPORT_FLASH_OPI_MODE && !APP_BUILD_TYPE_PURE_RAM_APP", - "help": null, - "id": "ESPTOOLPY_OCT_FLASH", - "name": "ESPTOOLPY_OCT_FLASH", - "range": null, - "title": "Enable Octal Flash", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_SPI_MEM_SUPPORT_FLASH_OPI_MODE && !APP_BUILD_TYPE_PURE_RAM_APP", - "help": "This config option helps decide whether flash is Quad or Octal, but please note some limitations:\n\n1. If the flash chip is an Octal one, even if one of \"QIO\", \"QOUT\", \"DIO\", \"DOUT\" options is\n selected in `ESPTOOLPY_FLASHMODE`, our code will automatically change the\n mode to \"OPI\" and the sample mode will be STR.\n2. If the flash chip is a Quad one, even if \"OPI\" is selected in `ESPTOOLPY_FLASHMODE`, our code will\n automatically change the mode to \"DIO\".\n3. This option is mainly to improve the out-of-box experience of developers. It doesn't guarantee\n the feature-complete. Some code still rely on `ESPTOOLPY_OCT_FLASH`. Please do not rely on this option\n when you are pretty sure that you are using Octal flash.\n In this case, please enable `ESPTOOLPY_OCT_FLASH` option, then you can choose `DTR` sample mode\n in `ESPTOOLPY_FLASH_SAMPLE_MODE`. Otherwise, only `STR` mode is available.\n4. Enabling this feature reduces available internal RAM size (around 900 bytes).\n If your IRAM space is insufficient and you're aware of your flash type,\n disable this option and select corresponding flash type options.", - "id": "ESPTOOLPY_FLASH_MODE_AUTO_DETECT", - "name": "ESPTOOLPY_FLASH_MODE_AUTO_DETECT", - "range": null, - "title": "Choose flash mode automatically (please read help)", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "!ESPTOOLPY_OCT_FLASH && ", - "help": null, - "id": "ESPTOOLPY_FLASHMODE_QIO", - "name": "ESPTOOLPY_FLASHMODE_QIO", - "range": null, - "title": "QIO", - "type": "bool" - }, - { - "children": [], - "depends_on": "!ESPTOOLPY_OCT_FLASH && ", - "help": null, - "id": "ESPTOOLPY_FLASHMODE_QOUT", - "name": "ESPTOOLPY_FLASHMODE_QOUT", - "range": null, - "title": "QOUT", - "type": "bool" - }, - { - "children": [], - "depends_on": "!ESPTOOLPY_OCT_FLASH && ", - "help": null, - "id": "ESPTOOLPY_FLASHMODE_DIO", - "name": "ESPTOOLPY_FLASHMODE_DIO", - "range": null, - "title": "DIO", - "type": "bool" - }, - { - "children": [], - "depends_on": "!ESPTOOLPY_OCT_FLASH && ", - "help": null, - "id": "ESPTOOLPY_FLASHMODE_DOUT", - "name": "ESPTOOLPY_FLASHMODE_DOUT", - "range": null, - "title": "DOUT", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESPTOOLPY_OCT_FLASH && ", - "help": null, - "id": "ESPTOOLPY_FLASHMODE_OPI", - "name": "ESPTOOLPY_FLASHMODE_OPI", - "range": null, - "title": "OPI", - "type": "bool" - } - ], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Mode the flash chip is flashed in, as well as the default mode for the\nbinary to run in.", - "id": "serial-flasher-config-flash-spi-mode", - "name": "ESPTOOLPY_FLASHMODE", - "title": "Flash SPI mode", - "type": "choice" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESPTOOLPY_FLASH_SAMPLE_MODE_STR", - "name": "ESPTOOLPY_FLASH_SAMPLE_MODE_STR", - "range": null, - "title": "STR Mode", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESPTOOLPY_OCT_FLASH && ", - "help": null, - "id": "ESPTOOLPY_FLASH_SAMPLE_MODE_DTR", - "name": "ESPTOOLPY_FLASH_SAMPLE_MODE_DTR", - "range": null, - "title": "DTR Mode", - "type": "bool" - } - ], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": null, - "id": "serial-flasher-config-flash-sampling-mode", - "name": "ESPTOOLPY_FLASH_SAMPLE_MODE", - "title": "Flash Sampling Mode", - "type": "choice" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": null, - "id": "ESPTOOLPY_FLASHMODE", - "name": "ESPTOOLPY_FLASHMODE", - "range": null, - "title": null, - "type": "string" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESPTOOLPY_FLASHFREQ_64M", - "name": "ESPTOOLPY_FLASHFREQ_64M", - "range": null, - "title": "64 MHz", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESPTOOLPY_FLASHFREQ_32M", - "name": "ESPTOOLPY_FLASHFREQ_32M", - "range": null, - "title": "32 MHz", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESPTOOLPY_FLASHFREQ_16M", - "name": "ESPTOOLPY_FLASHFREQ_16M", - "range": null, - "title": "16 MHz", - "type": "bool" - } - ], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": null, - "id": "serial-flasher-config-flash-spi-speed", - "name": "ESPTOOLPY_FLASHFREQ", - "title": "Flash SPI speed", - "type": "choice" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": null, - "id": "ESPTOOLPY_FLASHFREQ", - "name": "ESPTOOLPY_FLASHFREQ", - "range": null, - "title": null, - "type": "string" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESPTOOLPY_FLASHSIZE_1MB", - "name": "ESPTOOLPY_FLASHSIZE_1MB", - "range": null, - "title": "1 MB", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESPTOOLPY_FLASHSIZE_2MB", - "name": "ESPTOOLPY_FLASHSIZE_2MB", - "range": null, - "title": "2 MB", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESPTOOLPY_FLASHSIZE_4MB", - "name": "ESPTOOLPY_FLASHSIZE_4MB", - "range": null, - "title": "4 MB", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESPTOOLPY_FLASHSIZE_8MB", - "name": "ESPTOOLPY_FLASHSIZE_8MB", - "range": null, - "title": "8 MB", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESPTOOLPY_FLASHSIZE_16MB", - "name": "ESPTOOLPY_FLASHSIZE_16MB", - "range": null, - "title": "16 MB", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESPTOOLPY_FLASHSIZE_32MB", - "name": "ESPTOOLPY_FLASHSIZE_32MB", - "range": null, - "title": "32 MB", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESPTOOLPY_FLASHSIZE_64MB", - "name": "ESPTOOLPY_FLASHSIZE_64MB", - "range": null, - "title": "64 MB", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESPTOOLPY_FLASHSIZE_128MB", - "name": "ESPTOOLPY_FLASHSIZE_128MB", - "range": null, - "title": "128 MB", - "type": "bool" - } - ], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "SPI flash size, in megabytes", - "id": "serial-flasher-config-flash-size", - "name": "ESPTOOLPY_FLASHSIZE", - "title": "Flash size", - "type": "choice" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": null, - "id": "ESPTOOLPY_FLASHSIZE", - "name": "ESPTOOLPY_FLASHSIZE", - "range": null, - "title": null, - "type": "string" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "If this option is set, flashing the project will automatically detect\nthe flash size of the target chip and update the bootloader image\nbefore it is flashed.\n\nEnabling this option turns off the image protection against corruption\nby a SHA256 digest. Updating the bootloader image before flashing would\ninvalidate the digest.", - "id": "ESPTOOLPY_HEADER_FLASHSIZE_UPDATE", - "name": "ESPTOOLPY_HEADER_FLASHSIZE_UPDATE", - "range": null, - "title": "Detect flash size when flashing bootloader", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESPTOOLPY_BEFORE_RESET", - "name": "ESPTOOLPY_BEFORE_RESET", - "range": null, - "title": "Reset to bootloader", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESPTOOLPY_BEFORE_NORESET", - "name": "ESPTOOLPY_BEFORE_NORESET", - "range": null, - "title": "No reset", - "type": "bool" - } - ], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Configure whether esptool.py should reset the ESP32 before flashing.\n\nAutomatic resetting depends on the RTS & DTR signals being\nwired from the serial port to the ESP32. Most USB development\nboards do this internally.", - "id": "serial-flasher-config-before-flashing", - "name": "ESPTOOLPY_BEFORE", - "title": "Before flashing", - "type": "choice" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": null, - "id": "ESPTOOLPY_BEFORE", - "name": "ESPTOOLPY_BEFORE", - "range": null, - "title": null, - "type": "string" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESPTOOLPY_AFTER_RESET", - "name": "ESPTOOLPY_AFTER_RESET", - "range": null, - "title": "Reset after flashing", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESPTOOLPY_AFTER_NORESET", - "name": "ESPTOOLPY_AFTER_NORESET", - "range": null, - "title": "Stay in bootloader", - "type": "bool" - } - ], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Configure whether esptool.py should reset the ESP32 after flashing.\n\nAutomatic resetting depends on the RTS & DTR signals being\nwired from the serial port to the ESP32. Most USB development\nboards do this internally.", - "id": "serial-flasher-config-after-flashing", - "name": "ESPTOOLPY_AFTER", - "title": "After flashing", - "type": "choice" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": null, - "id": "ESPTOOLPY_AFTER", - "name": "ESPTOOLPY_AFTER", - "range": null, - "title": null, - "type": "string" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": null, - "id": "ESPTOOLPY_MONITOR_BAUD", - "name": "ESPTOOLPY_MONITOR_BAUD", - "range": null, - "title": null, - "type": "int" - } - ], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "id": "serial-flasher-config", - "title": "Serial flasher config", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": "This is the default partition table, designed to fit into a 2MB or\nlarger flash with a single 1MB app partition.\n\nThe corresponding CSV file in the IDF directory is\ncomponents/partition_table/partitions_singleapp.csv\n\nThis partition table is not suitable for an app that needs OTA\n(over the air update) capability.", - "id": "PARTITION_TABLE_SINGLE_APP", - "name": "PARTITION_TABLE_SINGLE_APP", - "range": null, - "title": "Single factory app, no OTA", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "This is a variation of the default partition table, that expands\nthe 1MB app partition size to 1.5MB to fit more code.\n\nThe corresponding CSV file in the IDF directory is\ncomponents/partition_table/partitions_singleapp_large.csv\n\nThis partition table is not suitable for an app that needs OTA\n(over the air update) capability.", - "id": "PARTITION_TABLE_SINGLE_APP_LARGE", - "name": "PARTITION_TABLE_SINGLE_APP_LARGE", - "range": null, - "title": "Single factory app (large), no OTA", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "This is a basic OTA-enabled partition table with a factory app\npartition plus two OTA app partitions. All are 1MB, so this\npartition table requires 4MB or larger flash size.\n\nThe corresponding CSV file in the IDF directory is\ncomponents/partition_table/partitions_two_ota.csv", - "id": "PARTITION_TABLE_TWO_OTA", - "name": "PARTITION_TABLE_TWO_OTA", - "range": null, - "title": "Factory app, two OTA definitions", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "This is a basic OTA-enabled partition table with\ntwo OTA app partitions. Both app partition sizes are 1700K,\nso this partition table requires 4MB or larger flash size.\n\nThe corresponding CSV file in the IDF directory is\ncomponents/partition_table/partitions_two_ota_large.csv", - "id": "PARTITION_TABLE_TWO_OTA_LARGE", - "name": "PARTITION_TABLE_TWO_OTA_LARGE", - "range": null, - "title": "Two large size OTA partitions", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "Specify the path to the partition table CSV to use for your project.\n\nConsult the Partition Table section in the ESP-IDF Programmers Guide\nfor more information.", - "id": "PARTITION_TABLE_CUSTOM", - "name": "PARTITION_TABLE_CUSTOM", - "range": null, - "title": "Custom partition table CSV", - "type": "bool" - }, - { - "children": [], - "depends_on": "!ESP32_COREDUMP_ENABLE_TO_FLASH && NVS_SEC_KEY_PROTECT_USING_FLASH_ENC && ", - "help": "This is a variation of the default \"Single factory app, no OTA\" partition table\nthat supports encrypted NVS when using flash encryption. See the Flash Encryption section\nin the ESP-IDF Programmers Guide for more information.\n\nThe corresponding CSV file in the IDF directory is\ncomponents/partition_table/partitions_singleapp_encr_nvs.csv", - "id": "PARTITION_TABLE_SINGLE_APP_ENCRYPTED_NVS", - "name": "PARTITION_TABLE_SINGLE_APP_ENCRYPTED_NVS", - "range": null, - "title": "Single factory app, no OTA, encrypted NVS", - "type": "bool" - }, - { - "children": [], - "depends_on": "!ESP32_COREDUMP_ENABLE_TO_FLASH && NVS_SEC_KEY_PROTECT_USING_FLASH_ENC && ", - "help": "This is a variation of the \"Single factory app (large), no OTA\" partition table\nthat supports encrypted NVS when using flash encryption. See the Flash Encryption section\nin the ESP-IDF Programmers Guide for more information.\n\nThe corresponding CSV file in the IDF directory is\ncomponents/partition_table/partitions_singleapp_large_encr_nvs.csv", - "id": "PARTITION_TABLE_SINGLE_APP_LARGE_ENC_NVS", - "name": "PARTITION_TABLE_SINGLE_APP_LARGE_ENC_NVS", - "range": null, - "title": "Single factory app (large), no OTA, encrypted NVS", - "type": "bool" - }, - { - "children": [], - "depends_on": "!ESP_COREDUMP_ENABLE_TO_FLASH && NVS_SEC_KEY_PROTECT_USING_FLASH_ENC && ", - "help": "This is a variation of the \"Factory app, two OTA definitions\" partition table\nthat supports encrypted NVS when using flash encryption. See the Flash Encryption section\nin the ESP-IDF Programmers Guide for more information.\n\nThe corresponding CSV file in the IDF directory is\ncomponents/partition_table/partitions_two_ota_encr_nvs.csv", - "id": "PARTITION_TABLE_TWO_OTA_ENCRYPTED_NVS", - "name": "PARTITION_TABLE_TWO_OTA_ENCRYPTED_NVS", - "range": null, - "title": "Factory app, two OTA definitions, encrypted NVS", - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_ENABLE_TEE && ", - "help": "This is a variation of the default \"Single factory app, no OTA\" partition table\nthat supports the ESP-TEE framework. See the Trusted Execution Environment (TEE) section\nin the ESP-IDF Programmers Guide for more information.\n\nThe corresponding CSV file in the IDF directory is\ncomponents/partition_table/partitions_singleapp_tee.csv", - "id": "PARTITION_TABLE_SINGLE_APP_TEE", - "name": "PARTITION_TABLE_SINGLE_APP_TEE", - "range": null, - "title": "Single factory app, no OTA, TEE", - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_ENABLE_TEE && ", - "help": "This is a basic OTA-enabled partition table with two OTA app partitions each\nfor the TEE and the user (REE) application. The user app partition sizes are 1536K,\nso this partition table requires 4MB or larger flash size. See the\nTrusted Execution Environment (TEE) section in the ESP-IDF Programmers Guide\nfor more information.\n\nThe corresponding CSV file in the IDF directory is\ncomponents/partition_table/partitions_two_ota_tee.csv", - "id": "PARTITION_TABLE_TWO_OTA_TEE", - "name": "PARTITION_TABLE_TWO_OTA_TEE", - "range": null, - "title": "Two OTA definitions, TEE", - "type": "bool" - } - ], - "depends_on": null, - "help": "The partition table to flash to the ESP32. The partition table\ndetermines where apps, data and other resources are expected to\nbe found.\n\nThe predefined partition table CSV descriptions can be found\nin the components/partition_table directory. These are mostly intended\nfor example and development use, it's expect that for production use you\nwill copy one of these CSV files and create a custom partition CSV for\nyour application.", - "id": "partition-table-partition-table", - "name": "PARTITION_TABLE_TYPE", - "title": "Partition Table", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": "Name of the custom partition CSV filename.\nThis path is evaluated relative to the project root directory by default.\nHowever, if the absolute path for the CSV file is provided, then the absolute path is configured.", - "id": "PARTITION_TABLE_CUSTOM_FILENAME", - "name": "PARTITION_TABLE_CUSTOM_FILENAME", - "range": null, - "title": "Custom partition CSV file", - "type": "string" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "PARTITION_TABLE_FILENAME", - "name": "PARTITION_TABLE_FILENAME", - "range": null, - "title": null, - "type": "string" - }, - { - "children": [], - "depends_on": null, - "help": "The address of partition table (by default 0x8000).\nAllows you to move the partition table, it gives more space for the bootloader.\nNote that the bootloader and app will both need to be compiled with the same PARTITION_TABLE_OFFSET value.\n\nThis number should be a multiple of 0x1000.\n\nNote that partition offsets in the partition table CSV file may need to be changed if this value is set to\na higher value. To have each partition offset adapt to the configured partition table offset, leave all\npartition offsets blank in the CSV file.", - "id": "PARTITION_TABLE_OFFSET", - "name": "PARTITION_TABLE_OFFSET", - "range": null, - "title": "Offset of partition table", - "type": "hex" - }, - { - "children": [], - "depends_on": "!APP_COMPATIBLE_PRE_V3_1_BOOTLOADERS && !IDF_TARGET_LINUX", - "help": "Generate an MD5 checksum for the partition table for protecting the\nintegrity of the table. The generation should be turned off for legacy\nbootloaders which cannot recognize the MD5 checksum in the partition\ntable.", - "id": "PARTITION_TABLE_MD5", - "name": "PARTITION_TABLE_MD5", - "range": null, - "title": "Generate an MD5 checksum for the partition table", - "type": "bool" - } - ], - "depends_on": null, - "id": "partition-table", - "title": "Partition Table", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "OPENTHREAD_UART_PIN_MANUAL", - "help": null, - "id": "OPENTHREAD_UART_RX_PIN", - "name": "OPENTHREAD_UART_RX_PIN", - "range": null, - "title": "The number of RX pin", - "type": "int" - }, - { - "children": [], - "depends_on": "OPENTHREAD_UART_PIN_MANUAL", - "help": null, - "id": "OPENTHREAD_UART_TX_PIN", - "name": "OPENTHREAD_UART_TX_PIN", - "range": null, - "title": "The number of TX pin", - "type": "int" - } - ], - "depends_on": null, - "help": "Select this to choose UART pin manually", - "id": "OPENTHREAD_UART_PIN_MANUAL", - "name": "OPENTHREAD_UART_PIN_MANUAL", - "range": null, - "title": "Configure RCP UART pin manually", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "ESP_COEX_EXTERNAL_COEXIST_ENABLE", - "help": "Select wire_type for external coexist, the wire_type define in external_coex_wire_t.", - "id": "EXTERNAL_COEX_WIRE_TYPE", - "name": "EXTERNAL_COEX_WIRE_TYPE", - "range": null, - "title": "The wire_type of external coexist", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_COEX_EXTERNAL_COEXIST_ENABLE && EXTERNAL_COEX_WIRE_TYPE >= 0", - "help": null, - "id": "EXTERNAL_COEX_REQUEST_PIN", - "name": "EXTERNAL_COEX_REQUEST_PIN", - "range": null, - "title": "The number of external coexist request pin", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_COEX_EXTERNAL_COEXIST_ENABLE && EXTERNAL_COEX_WIRE_TYPE >= 1", - "help": null, - "id": "EXTERNAL_COEX_GRANT_PIN", - "name": "EXTERNAL_COEX_GRANT_PIN", - "range": null, - "title": "The number of external coexist grant pin", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_COEX_EXTERNAL_COEXIST_ENABLE && EXTERNAL_COEX_WIRE_TYPE >= 2", - "help": null, - "id": "EXTERNAL_COEX_PRIORITY_PIN", - "name": "EXTERNAL_COEX_PRIORITY_PIN", - "range": null, - "title": "The number of external coexist priority pin", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_COEX_EXTERNAL_COEXIST_ENABLE && EXTERNAL_COEX_WIRE_TYPE = 3", - "help": null, - "id": "EXTERNAL_COEX_TX_LINE_PIN", - "name": "EXTERNAL_COEX_TX_LINE_PIN", - "range": null, - "title": "The number of external coexist tx_line pin", - "type": "int" - } - ], - "depends_on": null, - "id": "openthread-rcp-example-external-coexist-wire-type-and-pin-config", - "title": "External coexist wire type and pin config", - "type": "menu" - } - ], - "depends_on": null, - "id": "openthread-rcp-example", - "title": "OpenThread RCP Example", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "COMPILER_OPTIMIZATION_DEBUG", - "name": "COMPILER_OPTIMIZATION_DEBUG", - "range": null, - "title": "Debug (-Og)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "COMPILER_OPTIMIZATION_SIZE", - "name": "COMPILER_OPTIMIZATION_SIZE", - "range": null, - "title": "Optimize for size (-Os with GCC, -Oz with Clang)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "COMPILER_OPTIMIZATION_PERF", - "name": "COMPILER_OPTIMIZATION_PERF", - "range": null, - "title": "Optimize for performance (-O2)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "COMPILER_OPTIMIZATION_NONE", - "name": "COMPILER_OPTIMIZATION_NONE", - "range": null, - "title": "Debug without optimization (-O0)", - "type": "bool" - } - ], - "depends_on": null, - "help": "This option sets compiler optimization level (gcc -O argument) for the app.\n\n- The \"Debug\" setting will add the -Og flag to CFLAGS.\n- The \"Size\" setting will add the -Os flag to CFLAGS (-Oz with Clang).\n- The \"Performance\" setting will add the -O2 flag to CFLAGS.\n- The \"None\" setting will add the -O0 flag to CFLAGS.\n\nThe \"Size\" setting cause the compiled code to be smaller and faster, but\nmay lead to difficulties of correlating code addresses to source file\nlines when debugging.\n\nThe \"Performance\" setting causes the compiled code to be larger and faster,\nbut will be easier to correlated code addresses to source file lines.\n\n\"None\" with -O0 produces compiled code without optimization.\n\nNote that custom optimization levels may be unsupported.\n\nCompiler optimization for the IDF bootloader is set separately,\nsee the BOOTLOADER_COMPILER_OPTIMIZATION setting.", - "id": "compiler-options-optimization-level", - "name": "COMPILER_OPTIMIZATION", - "title": "Optimization Level", - "type": "choice" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": "Enable assertions. Assertion content and line number will be printed on failure.", - "id": "COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE", - "name": "COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE", - "range": null, - "title": "Enabled", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "Enable silent assertions. Failed assertions will abort(), user needs to\nuse the aborting address to find the line number with the failed assertion.", - "id": "COMPILER_OPTIMIZATION_ASSERTIONS_SILENT", - "name": "COMPILER_OPTIMIZATION_ASSERTIONS_SILENT", - "range": null, - "title": "Silent (saves code size)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "If assertions are disabled, -DNDEBUG is added to CPPFLAGS.", - "id": "COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE", - "name": "COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE", - "range": null, - "title": "Disabled (sets -DNDEBUG)", - "type": "bool" - } - ], - "depends_on": null, - "help": "Assertions can be:\n\n- Enabled. Failure will print verbose assertion details. This is the default.\n\n- Set to \"silent\" to save code size (failed assertions will abort() but user\n needs to use the aborting address to find the line number with the failed assertion.)\n\n- Disabled entirely (not recommended for most configurations.) -DNDEBUG is added\n to CPPFLAGS in this case.", - "id": "compiler-options-assertion-level", - "name": "COMPILER_OPTIMIZATION_ASSERTION_LEVEL", - "title": "Assertion level", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": "When NDEBUG is set, assert(X) will not cause code to trigger an assertion.\nWith this option set, assert(X) will still evaluate the expression X, though\nthe result will never cause an assertion. This means that if X is a function\nthen the function will be called.\n\nThis is not according to the standard, which states that the assert(X) should\nbe replaced with ((void)0) if NDEBUG is defined.\n\nIn ESP-IDF v6.0 the default behavior will change to \"no\" to be in line with the\nstandard.", - "id": "COMPILER_ASSERT_NDEBUG_EVALUATE", - "name": "COMPILER_ASSERT_NDEBUG_EVALUATE", - "range": null, - "title": "Enable the evaluation of the expression inside assert(X) when NDEBUG is set", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "COMPILER_FLOAT_LIB_FROM_GCCLIB", - "name": "COMPILER_FLOAT_LIB_FROM_GCCLIB", - "range": null, - "title": "libgcc", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_ROM_HAS_RVFPLIB && ", - "help": null, - "id": "COMPILER_FLOAT_LIB_FROM_RVFPLIB", - "name": "COMPILER_FLOAT_LIB_FROM_RVFPLIB", - "range": null, - "title": "librvfp", - "type": "bool" - } - ], - "depends_on": null, - "help": "In the soft-fp part of libgcc, riscv version is written in C,\nand handles all edge cases in IEEE754, which makes it larger\nand performance is slow.\n\nRVfplib is an optimized RISC-V library for FP arithmetic on 32-bit\ninteger processors, for single and double-precision FP.\nRVfplib is \"fast\", but it has a few exceptions from IEEE 754 compliance.", - "id": "compiler-options-compiler-float-lib-source", - "name": "COMPILER_FLOAT_LIB_FROM", - "title": "Compiler float lib source", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "COMPILER_OPTIMIZATION_ASSERTION_LEVEL", - "name": "COMPILER_OPTIMIZATION_ASSERTION_LEVEL", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "If enabled, the error messages will be discarded in following check macros:\n- ESP_RETURN_ON_ERROR\n- ESP_EXIT_ON_ERROR\n- ESP_RETURN_ON_FALSE\n- ESP_EXIT_ON_FALSE", - "id": "COMPILER_OPTIMIZATION_CHECKS_SILENT", - "name": "COMPILER_OPTIMIZATION_CHECKS_SILENT", - "range": null, - "title": "Disable messages in ESP_RETURN_ON_* and ESP_EXIT_ON_* macros", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "When expanding the __FILE__ and __BASE_FILE__ macros, replace paths inside ESP-IDF\nwith paths relative to the placeholder string \"IDF\", and convert paths inside the\nproject directory to relative paths.\n\nThis allows building the project with assertions or other code that embeds file paths,\nwithout the binary containing the exact path to the IDF or project directories.\n\nThis option passes -fmacro-prefix-map options to the GCC command line. To replace additional\npaths in your binaries, modify the project CMakeLists.txt file to pass custom -fmacro-prefix-map or\n-ffile-prefix-map arguments.", - "id": "COMPILER_HIDE_PATHS_MACROS", - "is_menuconfig": true, - "name": "COMPILER_HIDE_PATHS_MACROS", - "range": null, - "title": "Replace ESP-IDF and project paths in binaries", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "COMPILER_CXX_EXCEPTIONS", - "help": "Size (in bytes) of the emergency memory pool for C++ exceptions. This pool will be used to allocate\nmemory for thrown exceptions when there is not enough memory on the heap.", - "id": "COMPILER_CXX_EXCEPTIONS_EMG_POOL_SIZE", - "name": "COMPILER_CXX_EXCEPTIONS_EMG_POOL_SIZE", - "range": null, - "title": "Emergency Pool Size", - "type": "int" - } - ], - "depends_on": null, - "help": "Enabling this option compiles all IDF C++ files with exception support enabled.\n\nDisabling this option disables C++ exception support in all compiled files, and any libstdc++ code\nwhich throws an exception will abort instead.\n\nEnabling this option currently adds an additional ~500 bytes of heap overhead\nwhen an exception is thrown in user code for the first time.", - "id": "COMPILER_CXX_EXCEPTIONS", - "is_menuconfig": true, - "name": "COMPILER_CXX_EXCEPTIONS", - "range": null, - "title": "Enable C++ exceptions", - "type": "menu" - }, - { - "children": [], - "depends_on": null, - "help": "Enabling this option compiles all C++ files with RTTI support enabled.\nThis increases binary size (typically by tens of kB) but allows using\ndynamic_cast conversion and typeid operator.", - "id": "COMPILER_CXX_RTTI", - "name": "COMPILER_CXX_RTTI", - "range": null, - "title": "Enable C++ run-time type info (RTTI)", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "COMPILER_STACK_CHECK_MODE_NONE", - "name": "COMPILER_STACK_CHECK_MODE_NONE", - "range": null, - "title": "None", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "COMPILER_STACK_CHECK_MODE_NORM", - "name": "COMPILER_STACK_CHECK_MODE_NORM", - "range": null, - "title": "Normal", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "COMPILER_STACK_CHECK_MODE_STRONG", - "name": "COMPILER_STACK_CHECK_MODE_STRONG", - "range": null, - "title": "Strong", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "COMPILER_STACK_CHECK_MODE_ALL", - "name": "COMPILER_STACK_CHECK_MODE_ALL", - "range": null, - "title": "Overall", - "type": "bool" - } - ], - "depends_on": null, - "help": "Stack smashing protection mode. Emit extra code to check for buffer overflows, such as stack\nsmashing attacks. This is done by adding a guard variable to functions with vulnerable objects.\nThe guards are initialized when a function is entered and then checked when the function exits.\nIf a guard check fails, program is halted. Protection has the following modes:\n\n- In NORMAL mode (GCC flag: -fstack-protector) only functions that call alloca, and functions with\n buffers larger than 8 bytes are protected.\n\n- STRONG mode (GCC flag: -fstack-protector-strong) is like NORMAL, but includes additional functions\n to be protected -- those that have local array definitions, or have references to local frame\n addresses.\n\n- In OVERALL mode (GCC flag: -fstack-protector-all) all functions are protected.\n\nModes have the following impact on code performance and coverage:\n\n- performance: NORMAL > STRONG > OVERALL\n\n- coverage: NORMAL < STRONG < OVERALL\n\nThe performance impact includes increasing the amount of stack memory required for each task.", - "id": "compiler-options-stack-smashing-protection-mode", - "name": "COMPILER_STACK_CHECK_MODE", - "title": "Stack smashing protection mode", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": "Stack smashing protection.", - "id": "COMPILER_STACK_CHECK", - "name": "COMPILER_STACK_CHECK", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "IDF_TOOLCHAIN_GCC", - "help": "Disable merging identical constants (string/floating-point) across compilation units.\nThis helps in better size analysis of the application binary as the rodata section\ndistribution is more uniform across libraries. On downside, it may increase\nthe binary size and hence should be used during development phase only.", - "id": "COMPILER_NO_MERGE_CONSTANTS", - "name": "COMPILER_NO_MERGE_CONSTANTS", - "range": null, - "title": "Disable merging const sections", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Adds -Wwrite-strings flag for the C/C++ compilers.\n\nFor C, this gives string constants the type ``const char[]`` so that\ncopying the address of one into a non-const ``char *`` pointer\nproduces a warning. This warning helps to find at compile time code\nthat tries to write into a string constant.\n\nFor C++, this warns about the deprecated conversion from string\nliterals to ``char *``.", - "id": "COMPILER_WARN_WRITE_STRINGS", - "name": "COMPILER_WARN_WRITE_STRINGS", - "range": null, - "title": "Enable -Wwrite-strings warning flag", - "type": "bool" - }, - { - "children": [], - "depends_on": "IDF_TARGET_ARCH_RISCV", - "help": "Adds -msave-restore to C/C++ compilation flags.\n\nWhen this flag is enabled, compiler will call library functions to\nsave/restore registers in function prologues/epilogues. This results\nin lower overall code size, at the expense of slightly reduced performance.\n\nThis option can be enabled for RISC-V targets only.", - "id": "COMPILER_SAVE_RESTORE_LIBCALLS", - "name": "COMPILER_SAVE_RESTORE_LIBCALLS", - "range": null, - "title": "Enable -msave-restore flag to reduce code size", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enable this option if you do not want default warnings to be considered as errors,\nespecially when updating IDF.\n\nThis is a temporary flag that could help to allow upgrade while having\nsome time to address the warnings raised by those default warnings.\nAlternatives are:\n1) fix code (preferred),\n2) remove specific warnings,\n3) do not consider specific warnings as error.", - "id": "COMPILER_DISABLE_DEFAULT_ERRORS", - "name": "COMPILER_DISABLE_DEFAULT_ERRORS", - "range": null, - "title": "Disable errors for default warnings", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enable this option if use GCC 12 or newer, and want to disable warnings which don't appear with\nGCC 11.", - "id": "COMPILER_DISABLE_GCC12_WARNINGS", - "name": "COMPILER_DISABLE_GCC12_WARNINGS", - "range": null, - "title": "Disable new warnings introduced in GCC 12", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enable this option if use GCC 13 or newer, and want to disable warnings which don't appear with\nGCC 12.", - "id": "COMPILER_DISABLE_GCC13_WARNINGS", - "name": "COMPILER_DISABLE_GCC13_WARNINGS", - "range": null, - "title": "Disable new warnings introduced in GCC 13", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enable this option if use GCC 14 or newer, and want to disable warnings which don't appear with\nGCC 13.", - "id": "COMPILER_DISABLE_GCC14_WARNINGS", - "name": "COMPILER_DISABLE_GCC14_WARNINGS", - "range": null, - "title": "Disable new warnings introduced in GCC 14", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "If enabled, RTL files will be produced during compilation. These files\ncan be used by other tools, for example to calculate call graphs.", - "id": "COMPILER_DUMP_RTL_FILES", - "name": "COMPILER_DUMP_RTL_FILES", - "range": null, - "title": "Dump RTL files during compilation", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "!IDF_TARGET_LINUX && ", - "help": null, - "id": "COMPILER_RT_LIB_GCCLIB", - "name": "COMPILER_RT_LIB_GCCLIB", - "range": null, - "title": "libgcc", - "type": "bool" - }, - { - "children": [], - "depends_on": "IDF_TOOLCHAIN_CLANG && !IDF_TARGET_LINUX && ", - "help": null, - "id": "COMPILER_RT_LIB_CLANGRT", - "name": "COMPILER_RT_LIB_CLANGRT", - "range": null, - "title": "libclang_rt", - "type": "bool" - }, - { - "children": [], - "depends_on": "IDF_TARGET_LINUX && ", - "help": null, - "id": "COMPILER_RT_LIB_HOST", - "name": "COMPILER_RT_LIB_HOST", - "range": null, - "title": "Host", - "type": "bool" - } - ], - "depends_on": null, - "help": "Select runtime library to be used by compiler.\n- GCC toolchain supports libgcc only.\n- Clang allows to choose between libgcc or libclang_rt.\n- For host builds (\"linux\" target), uses the default library.", - "id": "compiler-options-compiler-runtime-library", - "name": "COMPILER_RT_LIB", - "title": "Compiler runtime library", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "COMPILER_RT_LIB_NAME", - "name": "COMPILER_RT_LIB_NAME", - "range": null, - "title": null, - "type": "string" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": "Places orphan sections with a warning message.", - "id": "COMPILER_ORPHAN_SECTIONS_WARNING", - "name": "COMPILER_ORPHAN_SECTIONS_WARNING", - "range": null, - "title": "Place with warning", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "Places orphan sections without a warning/error message.", - "id": "COMPILER_ORPHAN_SECTIONS_PLACE", - "name": "COMPILER_ORPHAN_SECTIONS_PLACE", - "range": null, - "title": "Place silently", - "type": "bool" - } - ], - "depends_on": "!IDF_TARGET_LINUX", - "help": "If the linker finds orphan sections, it attempts to place orphan sections after sections of the same\nattribute such as code vs data, loadable vs non-loadable, etc.\nThat means that orphan sections could placed between sections defined in IDF linker scripts.\nThis could lead to corruption of the binary image. Configure the linker action here.", - "id": "compiler-options-orphan-sections-handling", - "name": "COMPILER_ORPHAN_SECTIONS", - "title": "Orphan sections handling", - "type": "choice" - }, - { - "children": [], - "depends_on": "IDF_TOOLCHAIN_GCC", - "help": "Enable compiler static analyzer. This may produce false-positive results and increases compile time.", - "id": "COMPILER_STATIC_ANALYZER", - "name": "COMPILER_STATIC_ANALYZER", - "range": null, - "title": "Enable compiler static analyzer", - "type": "bool" - } - ], - "depends_on": null, - "id": "compiler-options", - "title": "Compiler options", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": null, - "help": "Instead of listing the commands in the order of registration, the help command lists\nthe available commands in sorted order, if this option is enabled.", - "id": "CONSOLE_SORTED_HELP", - "name": "CONSOLE_SORTED_HELP", - "range": null, - "title": "Enable sorted help", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-console-library", - "title": "Console Library", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "SOC_TWAI_SUPPORTED", - "help": "This configuration option used to bypass the conflict check mechanism with legacy code.", - "id": "TWAI_SKIP_LEGACY_CONFLICT_CHECK", - "name": "TWAI_SKIP_LEGACY_CONFLICT_CHECK", - "range": null, - "title": "Skip legacy driver conflict check", - "type": "bool" - }, - { - "children": [], - "depends_on": "IDF_TARGET_ESP32 && SOC_TWAI_SUPPORTED", - "help": "When the bus-off condition is reached, the REC should be reset to 0 and frozen (via LOM) by the\ndriver's ISR. However on the ESP32, there is an edge case where the REC will increase before the\ndriver's ISR can respond in time (e.g., due to the rapid occurrence of bus errors), thus causing the\nREC to be non-zero after bus-off. A non-zero REC can prevent bus-off recovery as the bus-off recovery\ncondition is that both TEC and REC become 0. Enabling this option will add a workaround in the driver\nto forcibly reset REC to zero on reaching bus-off.", - "id": "TWAI_ERRATA_FIX_BUS_OFF_REC", - "name": "TWAI_ERRATA_FIX_BUS_OFF_REC", - "range": null, - "title": "Add SW workaround for REC change during bus-off", - "type": "bool" - }, - { - "children": [], - "depends_on": "IDF_TARGET_ESP32 && SOC_TWAI_SUPPORTED", - "help": "On the ESP32, when a transmit interrupt occurs, and interrupt register is read on the same APB clock\ncycle, the transmit interrupt could be lost. Enabling this option will add a workaround that checks the\ntransmit buffer status bit to recover any lost transmit interrupt.", - "id": "TWAI_ERRATA_FIX_TX_INTR_LOST", - "name": "TWAI_ERRATA_FIX_TX_INTR_LOST", - "range": null, - "title": "Add SW workaround for TX interrupt lost errata", - "type": "bool" - }, - { - "children": [], - "depends_on": "IDF_TARGET_ESP32 && SOC_TWAI_SUPPORTED", - "help": "On the ESP32, when receiving a data or remote frame, if a bus error occurs in the data or CRC field,\nthe data of the next received frame could be invalid. Enabling this option will add a workaround that\nwill reset the peripheral on detection of this errata condition. Note that if a frame is transmitted on\nthe bus whilst the reset is ongoing, the message will not be receive by the peripheral sent on the bus\nduring the reset, the message will be lost.", - "id": "TWAI_ERRATA_FIX_RX_FRAME_INVALID", - "name": "TWAI_ERRATA_FIX_RX_FRAME_INVALID", - "range": null, - "title": "Add SW workaround for invalid RX frame errata", - "type": "bool" - }, - { - "children": [], - "depends_on": "IDF_TARGET_ESP32 && SOC_TWAI_SUPPORTED", - "help": "On the ESP32, when the RX FIFO overruns and the RX message counter maxes out at 64 messages, the entire\nRX FIFO is no longer recoverable. Enabling this option will add a workaround that resets the peripheral\non detection of this errata condition. Note that if a frame is being sent on the bus during the reset\nbus during the reset, the message will be lost.", - "id": "TWAI_ERRATA_FIX_RX_FIFO_CORRUPT", - "name": "TWAI_ERRATA_FIX_RX_FIFO_CORRUPT", - "range": null, - "title": "Add SW workaround for RX FIFO corruption errata", - "type": "bool" - }, - { - "children": [], - "depends_on": "(IDF_TARGET_ESP32 || IDF_TARGET_ESP32S2 || IDF_TARGET_ESP32S3 || IDF_TARGET_ESP32C3) && SOC_TWAI_SUPPORTED", - "help": "When in the listen only mode, the TWAI controller must not influence the TWAI bus (i.e., must not send\nany dominant bits). However, while in listen only mode on the ESP32/ESP32-S2/ESP32-S3/ESP32-C3, the\nTWAI controller will still transmit dominant bits when it detects an error (i.e., as part of an active\nerror frame). Enabling this option will add a workaround that forces the TWAI controller into an error\npassive state on initialization, thus preventing any dominant bits from being sent.", - "id": "TWAI_ERRATA_FIX_LISTEN_ONLY_DOM", - "name": "TWAI_ERRATA_FIX_LISTEN_ONLY_DOM", - "range": null, - "title": "Add SW workaround for listen only transmits dominant bit errata", - "type": "bool" - } - ], - "depends_on": "SOC_TWAI_SUPPORTED", - "id": "component-config-driver-configurations-legacy-twai-driver-configurations", - "title": "Legacy TWAI Driver Configurations", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "SOC_DAC_SUPPORTED", - "help": "If this is set, the ADC2 driver will disable the output of the DAC corresponding to the specified\nchannel. This is the default value.\n\nFor testing, disable this option so that we can measure the output of DAC by internal ADC.", - "id": "ADC_DISABLE_DAC", - "name": "ADC_DISABLE_DAC", - "range": null, - "title": "Disable DAC when ADC2 is used on GPIO 25 and 26", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Whether to suppress the deprecation warnings when using legacy adc driver (driver/adc.h).\nIf you want to continue using the legacy driver, and don't want to see related deprecation warnings,\nyou can enable this option.", - "id": "ADC_SUPPRESS_DEPRECATE_WARN", - "name": "ADC_SUPPRESS_DEPRECATE_WARN", - "range": null, - "title": "Suppress legacy driver deprecated warning", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "This configuration option allows the user to bypass the conflict check mechanism with legacy code.", - "id": "ADC_SKIP_LEGACY_CONFLICT_CHECK", - "name": "ADC_SKIP_LEGACY_CONFLICT_CHECK", - "range": null, - "title": "Skip legacy conflict check", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "IDF_TARGET_ESP32", - "help": "Some ESP32s have Two Point calibration values burned into eFuse BLOCK3.\nThis option will allow the ADC calibration component to characterize the\nADC-Voltage curve using Two Point values if they are available.", - "id": "ADC_CAL_EFUSE_TP_ENABLE", - "name": "ADC_CAL_EFUSE_TP_ENABLE", - "range": null, - "title": "Use Two Point Values", - "type": "bool" - }, - { - "children": [], - "depends_on": "IDF_TARGET_ESP32", - "help": "Some ESP32s have Vref burned into eFuse BLOCK0. This option will allow\nthe ADC calibration component to characterize the ADC-Voltage curve using\neFuse Vref if it is available.", - "id": "ADC_CAL_EFUSE_VREF_ENABLE", - "name": "ADC_CAL_EFUSE_VREF_ENABLE", - "range": null, - "title": "Use eFuse Vref", - "type": "bool" - }, - { - "children": [], - "depends_on": "IDF_TARGET_ESP32", - "help": "This option will allow the ADC calibration component to use Lookup Tables\nto correct for non-linear behavior in 11db attenuation. Other attenuations\ndo not exhibit non-linear behavior hence will not be affected by this option.", - "id": "ADC_CAL_LUT_ENABLE", - "name": "ADC_CAL_LUT_ENABLE", - "range": null, - "title": "Use Lookup Tables", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Whether to suppress the deprecation warnings when using legacy adc calibration\ndriver (esp_adc_cal.h).\nIf you want to continue using the legacy driver, and don't want to see related\ndeprecation warnings, you can enable this option.", - "id": "ADC_CALI_SUPPRESS_DEPRECATE_WARN", - "name": "ADC_CALI_SUPPRESS_DEPRECATE_WARN", - "range": null, - "title": "Suppress legacy driver deprecated warning", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-driver-configurations-legacy-adc-driver-configuration-legacy-adc-calibration-configuration", - "title": "Legacy ADC Calibration Configuration", - "type": "menu" - } - ], - "depends_on": null, - "id": "component-config-driver-configurations-legacy-adc-driver-configuration", - "title": "Legacy ADC Driver Configuration", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "SOC_DAC_SUPPORTED", - "help": "Whether to suppress the deprecation warnings when using legacy dac driver (driver/dac.h).\nIf you want to continue using the legacy driver, and don't want to see related deprecation warnings,\nyou can enable this option.", - "id": "DAC_SUPPRESS_DEPRECATE_WARN", - "name": "DAC_SUPPRESS_DEPRECATE_WARN", - "range": null, - "title": "Suppress legacy driver deprecated warning", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_DAC_SUPPORTED", - "help": "This configuration option allows the user to bypass the conflict check mechanism with legacy code.", - "id": "DAC_SKIP_LEGACY_CONFLICT_CHECK", - "name": "DAC_SKIP_LEGACY_CONFLICT_CHECK", - "range": null, - "title": "Skip legacy conflict check", - "type": "bool" - } - ], - "depends_on": "SOC_DAC_SUPPORTED", - "id": "component-config-driver-configurations-legacy-dac-driver-configurations", - "title": "Legacy DAC Driver Configurations", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "SOC_MCPWM_SUPPORTED", - "help": "Whether to suppress the deprecation warnings when using legacy MCPWM driver (driver/mcpwm.h).\nIf you want to continue using the legacy driver, and don't want to see related deprecation warnings,\nyou can enable this option.", - "id": "MCPWM_SUPPRESS_DEPRECATE_WARN", - "name": "MCPWM_SUPPRESS_DEPRECATE_WARN", - "range": null, - "title": "Suppress legacy driver deprecated warning", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_MCPWM_SUPPORTED", - "help": "This configuration option allows the user to bypass the conflict check mechanism with legacy code.", - "id": "MCPWM_SKIP_LEGACY_CONFLICT_CHECK", - "name": "MCPWM_SKIP_LEGACY_CONFLICT_CHECK", - "range": null, - "title": "Skip legacy conflict check", - "type": "bool" - } - ], - "depends_on": "SOC_MCPWM_SUPPORTED", - "id": "component-config-driver-configurations-legacy-mcpwm-driver-configurations", - "title": "Legacy MCPWM Driver Configurations", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "SOC_GPTIMER_SUPPORTED", - "help": "Whether to suppress the deprecation warnings when using legacy timer group driver (driver/timer.h).\nIf you want to continue using the legacy driver, and don't want to see related deprecation warnings,\nyou can enable this option.", - "id": "GPTIMER_SUPPRESS_DEPRECATE_WARN", - "name": "GPTIMER_SUPPRESS_DEPRECATE_WARN", - "range": null, - "title": "Suppress legacy driver deprecated warning", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_GPTIMER_SUPPORTED", - "help": "This configuration option allows the user to bypass the conflict check mechanism with legacy code.", - "id": "GPTIMER_SKIP_LEGACY_CONFLICT_CHECK", - "name": "GPTIMER_SKIP_LEGACY_CONFLICT_CHECK", - "range": null, - "title": "Skip legacy conflict check", - "type": "bool" - } - ], - "depends_on": "SOC_GPTIMER_SUPPORTED", - "id": "component-config-driver-configurations-legacy-timer-group-driver-configurations", - "title": "Legacy Timer Group Driver Configurations", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "SOC_RMT_SUPPORTED", - "help": "Whether to suppress the deprecation warnings when using legacy rmt driver (driver/rmt.h).\nIf you want to continue using the legacy driver, and don't want to see related deprecation warnings,\nyou can enable this option.", - "id": "RMT_SUPPRESS_DEPRECATE_WARN", - "name": "RMT_SUPPRESS_DEPRECATE_WARN", - "range": null, - "title": "Suppress legacy driver deprecated warning", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_RMT_SUPPORTED", - "help": "This configuration option allows the user to bypass the conflict check mechanism with legacy code.", - "id": "RMT_SKIP_LEGACY_CONFLICT_CHECK", - "name": "RMT_SKIP_LEGACY_CONFLICT_CHECK", - "range": null, - "title": "Skip legacy conflict check", - "type": "bool" - } - ], - "depends_on": "SOC_RMT_SUPPORTED", - "id": "component-config-driver-configurations-legacy-rmt-driver-configurations", - "title": "Legacy RMT Driver Configurations", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "SOC_I2S_SUPPORTED", - "help": "Whether to suppress the deprecation warnings when using legacy i2s driver (driver/i2s.h).\nIf you want to continue using the legacy driver, and don't want to see related deprecation warnings,\nyou can enable this option.", - "id": "I2S_SUPPRESS_DEPRECATE_WARN", - "name": "I2S_SUPPRESS_DEPRECATE_WARN", - "range": null, - "title": "Suppress legacy driver deprecated warning", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_I2S_SUPPORTED", - "help": "This configuration option allows the user to bypass the conflict check mechanism with legacy code.", - "id": "I2S_SKIP_LEGACY_CONFLICT_CHECK", - "name": "I2S_SKIP_LEGACY_CONFLICT_CHECK", - "range": null, - "title": "Skip legacy conflict check", - "type": "bool" - } - ], - "depends_on": "SOC_I2S_SUPPORTED", - "id": "component-config-driver-configurations-legacy-i2s-driver-configurations", - "title": "Legacy I2S Driver Configurations", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "SOC_I2C_SUPPORTED", - "help": "This configuration option allows the user to bypass the conflict check mechanism with legacy code.", - "id": "I2C_SKIP_LEGACY_CONFLICT_CHECK", - "name": "I2C_SKIP_LEGACY_CONFLICT_CHECK", - "range": null, - "title": "Skip legacy conflict check", - "type": "bool" - } - ], - "depends_on": "SOC_I2C_SUPPORTED", - "id": "component-config-driver-configurations-legacy-i2c-driver-configurations", - "title": "Legacy I2C Driver Configurations", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "SOC_PCNT_SUPPORTED", - "help": "whether to suppress the deprecation warnings when using legacy PCNT driver (driver/pcnt.h).\nIf you want to continue using the legacy driver, and don't want to see related deprecation warnings,\nyou can enable this option.", - "id": "PCNT_SUPPRESS_DEPRECATE_WARN", - "name": "PCNT_SUPPRESS_DEPRECATE_WARN", - "range": null, - "title": "Suppress legacy driver deprecated warning", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_PCNT_SUPPORTED", - "help": "This configuration option allows the user to bypass the conflict check mechanism with legacy code.", - "id": "PCNT_SKIP_LEGACY_CONFLICT_CHECK", - "name": "PCNT_SKIP_LEGACY_CONFLICT_CHECK", - "range": null, - "title": "Skip legacy conflict check", - "type": "bool" - } - ], - "depends_on": "SOC_PCNT_SUPPORTED", - "id": "component-config-driver-configurations-legacy-pcnt-driver-configurations", - "title": "Legacy PCNT Driver Configurations", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "SOC_SDM_SUPPORTED", - "help": "whether to suppress the deprecation warnings when using legacy SDM driver (driver/sigmadelta.h).\nIf you want to continue using the legacy driver, and don't want to see related deprecation warnings,\nyou can enable this option.", - "id": "SDM_SUPPRESS_DEPRECATE_WARN", - "name": "SDM_SUPPRESS_DEPRECATE_WARN", - "range": null, - "title": "Suppress legacy driver deprecated warning", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_SDM_SUPPORTED", - "help": "This configuration option allows the user to bypass the conflict check mechanism with legacy code.", - "id": "SDM_SKIP_LEGACY_CONFLICT_CHECK", - "name": "SDM_SKIP_LEGACY_CONFLICT_CHECK", - "range": null, - "title": "Skip legacy conflict check", - "type": "bool" - } - ], - "depends_on": "SOC_SDM_SUPPORTED", - "id": "component-config-driver-configurations-legacy-sdm-driver-configurations", - "title": "Legacy SDM Driver Configurations", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "SOC_TEMP_SENSOR_SUPPORTED", - "help": "whether to suppress the deprecation warnings when using legacy temperature sensor driver\n(driver/temp_sensor.h). If you want to continue using the legacy driver,\nand don't want to see related deprecation warnings, you can enable this option.", - "id": "TEMP_SENSOR_SUPPRESS_DEPRECATE_WARN", - "name": "TEMP_SENSOR_SUPPRESS_DEPRECATE_WARN", - "range": null, - "title": "Suppress legacy driver deprecated warning", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_TEMP_SENSOR_SUPPORTED", - "help": "This configuration option allows the user to bypass the conflict check mechanism with legacy code.", - "id": "TEMP_SENSOR_SKIP_LEGACY_CONFLICT_CHECK", - "name": "TEMP_SENSOR_SKIP_LEGACY_CONFLICT_CHECK", - "range": null, - "title": "Skip legacy conflict check", - "type": "bool" - } - ], - "depends_on": "SOC_TEMP_SENSOR_SUPPORTED", - "id": "component-config-driver-configurations-legacy-temperature-sensor-driver-configurations", - "title": "Legacy Temperature Sensor Driver Configurations", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "SOC_TOUCH_SENSOR_SUPPORTED", - "help": "whether to suppress the deprecation warnings when using legacy touch sensor driver\n(driver/touch_sensor.h). If you want to continue using the legacy driver,\nand don't want to see related deprecation warnings, you can enable this option.", - "id": "TOUCH_SUPPRESS_DEPRECATE_WARN", - "name": "TOUCH_SUPPRESS_DEPRECATE_WARN", - "range": null, - "title": "Suppress legacy driver deprecated warning", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_TOUCH_SENSOR_SUPPORTED", - "help": "This configuration option allows the user to bypass the conflict check mechanism with legacy code.", - "id": "TOUCH_SKIP_LEGACY_CONFLICT_CHECK", - "name": "TOUCH_SKIP_LEGACY_CONFLICT_CHECK", - "range": null, - "title": "Skip legacy conflict check", - "type": "bool" - } - ], - "depends_on": "SOC_TOUCH_SENSOR_SUPPORTED", - "id": "component-config-driver-configurations-legacy-touch-sensor-driver-configurations", - "title": "Legacy Touch Sensor Driver Configurations", - "type": "menu" - } - ], - "depends_on": null, - "id": "component-config-driver-configurations", - "title": "Driver Configurations", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "EFUSE_CUSTOM_TABLE", - "help": "Name of the custom eFuse CSV filename. This path is evaluated\nrelative to the project root directory.", - "id": "EFUSE_CUSTOM_TABLE_FILENAME", - "name": "EFUSE_CUSTOM_TABLE_FILENAME", - "range": null, - "title": "Custom eFuse CSV file", - "type": "string" - } - ], - "depends_on": null, - "help": "Allows to generate a structure for eFuse from the CSV file.", - "id": "EFUSE_CUSTOM_TABLE", - "name": "EFUSE_CUSTOM_TABLE", - "range": null, - "title": "Use custom eFuse table", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "EFUSE_VIRTUAL && !IDF_TARGET_LINUX", - "help": "In addition to the \"Simulate eFuse operations in RAM\" option, this option just adds\na feature to keep eFuses after reboots in flash memory. To use this mode the partition_table\nshould have the `efuse` partition. partition.csv: \"efuse_em, data, efuse, , 0x2000,\"\n\nDuring startup, the eFuses are copied from flash or,\nin case if flash is empty, from real eFuse to RAM and then update flash.\nThis mode is useful when need to keep changes after reboot\n(testing secure_boot and flash_encryption).", - "id": "EFUSE_VIRTUAL_KEEP_IN_FLASH", - "name": "EFUSE_VIRTUAL_KEEP_IN_FLASH", - "range": null, - "title": "Keep eFuses in flash", - "type": "bool" - }, - { - "children": [], - "depends_on": "EFUSE_VIRTUAL", - "help": "If enabled, log efuse burns. This shows changes that would be made.", - "id": "EFUSE_VIRTUAL_LOG_ALL_WRITES", - "name": "EFUSE_VIRTUAL_LOG_ALL_WRITES", - "range": null, - "title": "Log all virtual writes", - "type": "bool" - } - ], - "depends_on": null, - "help": "If \"n\" - No virtual mode. All eFuse operations are real and use eFuse registers.\nIf \"y\" - The virtual mode is enabled and all eFuse operations (read and write) are redirected\nto RAM instead of eFuse registers, all permanent changes (via eFuse) are disabled.\nLog output will state changes that would be applied, but they will not be.\n\nIf it is \"y\", then SECURE_FLASH_ENCRYPTION_MODE_RELEASE cannot be used.\nBecause the EFUSE VIRT mode is for testing only.\n\nDuring startup, the eFuses are copied into RAM. This mode is useful for fast tests.", - "id": "EFUSE_VIRTUAL", - "name": "EFUSE_VIRTUAL", - "range": null, - "title": "Simulate eFuse operations in RAM", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "EFUSE_CODE_SCHEME_COMPAT_NONE", - "name": "EFUSE_CODE_SCHEME_COMPAT_NONE", - "range": null, - "title": "None Only", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "EFUSE_CODE_SCHEME_COMPAT_3_4", - "name": "EFUSE_CODE_SCHEME_COMPAT_3_4", - "range": null, - "title": "3/4 and None", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "EFUSE_CODE_SCHEME_COMPAT_REPEAT", - "name": "EFUSE_CODE_SCHEME_COMPAT_REPEAT", - "range": null, - "title": "Repeat, 3/4 and None (common table does not support it)", - "type": "bool" - } - ], - "depends_on": "IDF_TARGET_ESP32", - "help": "Selector eFuse code scheme.", - "id": "component-config-efuse-bit-manager-coding-scheme-compatibility", - "name": "EFUSE_CODE_SCHEME_SELECTOR", - "title": "Coding Scheme Compatibility", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "EFUSE_MAX_BLK_LEN", - "name": "EFUSE_MAX_BLK_LEN", - "range": null, - "title": null, - "type": "int" - } - ], - "depends_on": null, - "id": "component-config-efuse-bit-manager", - "title": "eFuse Bit Manager", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_COEX_ENABLED", - "name": "ESP_COEX_ENABLED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "((ESP_WIFI_ENABLED && BT_ENABLED) || (ESP_WIFI_ENABLED && IEEE802154_ENABLED) || (IEEE802154_ENABLED && BT_ENABLED)) && ESP_COEX_ENABLED", - "help": "If enabled, WiFi & Bluetooth coexistence is controlled by software rather than hardware.\nRecommended for heavy traffic scenarios. Both coexistence configuration options are\nautomatically managed, no user intervention is required.\nIf only Bluetooth is used, it is recommended to disable this option to reduce binary file\nsize.", - "id": "ESP_COEX_SW_COEXIST_ENABLE", - "name": "ESP_COEX_SW_COEXIST_ENABLE", - "range": null, - "title": "Software controls WiFi/Bluetooth coexistence", - "type": "bool" - }, - { - "children": [], - "depends_on": "!(BT_ENABLED || NIMBLE_ENABLED) && !IDF_TARGET_ESP32 && ESP_COEX_ENABLED", - "help": "If enabled, HW External coexistence arbitration is managed by GPIO pins.\nIt can support three types of wired combinations so far which are 1-wired/2-wired/3-wired.\nUser can select GPIO pins in application code with configure interfaces.\n\nThis function depends on BT-off\nbecause currently we do not support external coex and internal coex simultaneously.", - "id": "ESP_COEX_EXTERNAL_COEXIST_ENABLE", - "name": "ESP_COEX_EXTERNAL_COEXIST_ENABLE", - "range": null, - "title": "External Coexistence", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_COEX_SW_COEXIST_ENABLE && ESP_COEX_ENABLED", - "help": "If enabled, coexist power management will be enabled.", - "id": "ESP_COEX_POWER_MANAGEMENT", - "name": "ESP_COEX_POWER_MANAGEMENT", - "range": null, - "title": "Support power management under coexistence", - "type": "bool" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_COEX_GPIO_DEBUG_DIAG_GENERAL", - "name": "ESP_COEX_GPIO_DEBUG_DIAG_GENERAL", - "range": null, - "title": "General", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_COEX_GPIO_DEBUG_DIAG_WIFI", - "name": "ESP_COEX_GPIO_DEBUG_DIAG_WIFI", - "range": null, - "title": "Wi-Fi", - "type": "bool" - } - ], - "depends_on": "ESP_COEX_GPIO_DEBUG", - "help": "Select type of debugging diagram", - "id": "component-config-wireless-coexistence-gpio-debugging-for-coexistence-debugging-diagram", - "name": "ESP_COEX_GPIO_DEBUG_DIAG", - "title": "Debugging Diagram", - "type": "choice" - }, - { - "children": [], - "depends_on": "ESP_COEX_GPIO_DEBUG", - "help": null, - "id": "ESP_COEX_GPIO_DEBUG_IO_COUNT", - "name": "ESP_COEX_GPIO_DEBUG_IO_COUNT", - "range": null, - "title": "Max number of debugging GPIOs", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_COEX_GPIO_DEBUG_IO_COUNT > 0 && ESP_COEX_GPIO_DEBUG", - "help": null, - "id": "ESP_COEX_GPIO_DEBUG_IO_IDX0", - "name": "ESP_COEX_GPIO_DEBUG_IO_IDX0", - "range": null, - "title": "Actual IO num for Debug IO ID0", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_COEX_GPIO_DEBUG_IO_COUNT > 1 && ESP_COEX_GPIO_DEBUG", - "help": null, - "id": "ESP_COEX_GPIO_DEBUG_IO_IDX1", - "name": "ESP_COEX_GPIO_DEBUG_IO_IDX1", - "range": null, - "title": "Actual IO num for Debug IO ID1", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_COEX_GPIO_DEBUG_IO_COUNT > 2 && ESP_COEX_GPIO_DEBUG", - "help": null, - "id": "ESP_COEX_GPIO_DEBUG_IO_IDX2", - "name": "ESP_COEX_GPIO_DEBUG_IO_IDX2", - "range": null, - "title": "Actual IO num for Debug IO ID2", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_COEX_GPIO_DEBUG_IO_COUNT > 3 && ESP_COEX_GPIO_DEBUG", - "help": null, - "id": "ESP_COEX_GPIO_DEBUG_IO_IDX3", - "name": "ESP_COEX_GPIO_DEBUG_IO_IDX3", - "range": null, - "title": "Actual IO num for Debug IO ID3", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_COEX_GPIO_DEBUG_IO_COUNT > 4 && ESP_COEX_GPIO_DEBUG", - "help": null, - "id": "ESP_COEX_GPIO_DEBUG_IO_IDX4", - "name": "ESP_COEX_GPIO_DEBUG_IO_IDX4", - "range": null, - "title": "Actual IO num for Debug IO ID4", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_COEX_GPIO_DEBUG_IO_COUNT > 5 && ESP_COEX_GPIO_DEBUG", - "help": null, - "id": "ESP_COEX_GPIO_DEBUG_IO_IDX5", - "name": "ESP_COEX_GPIO_DEBUG_IO_IDX5", - "range": null, - "title": "Actual IO num for Debug IO ID5", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_COEX_GPIO_DEBUG_IO_COUNT > 6 && ESP_COEX_GPIO_DEBUG", - "help": null, - "id": "ESP_COEX_GPIO_DEBUG_IO_IDX6", - "name": "ESP_COEX_GPIO_DEBUG_IO_IDX6", - "range": null, - "title": "Actual IO num for Debug IO ID6", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_COEX_GPIO_DEBUG_IO_COUNT > 7 && ESP_COEX_GPIO_DEBUG", - "help": null, - "id": "ESP_COEX_GPIO_DEBUG_IO_IDX7", - "name": "ESP_COEX_GPIO_DEBUG_IO_IDX7", - "range": null, - "title": "Actual IO num for Debug IO ID7", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_COEX_GPIO_DEBUG_IO_COUNT > 8 && ESP_COEX_GPIO_DEBUG", - "help": null, - "id": "ESP_COEX_GPIO_DEBUG_IO_IDX8", - "name": "ESP_COEX_GPIO_DEBUG_IO_IDX8", - "range": null, - "title": "Actual IO num for Debug IO ID8", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_COEX_GPIO_DEBUG_IO_COUNT > 9 && ESP_COEX_GPIO_DEBUG", - "help": null, - "id": "ESP_COEX_GPIO_DEBUG_IO_IDX9", - "name": "ESP_COEX_GPIO_DEBUG_IO_IDX9", - "range": null, - "title": "Actual IO num for Debug IO ID9", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_COEX_GPIO_DEBUG_IO_COUNT > 10 && ESP_COEX_GPIO_DEBUG", - "help": null, - "id": "ESP_COEX_GPIO_DEBUG_IO_IDX10", - "name": "ESP_COEX_GPIO_DEBUG_IO_IDX10", - "range": null, - "title": "Actual IO num for Debug IO ID10", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_COEX_GPIO_DEBUG_IO_COUNT > 11 && ESP_COEX_GPIO_DEBUG", - "help": null, - "id": "ESP_COEX_GPIO_DEBUG_IO_IDX11", - "name": "ESP_COEX_GPIO_DEBUG_IO_IDX11", - "range": null, - "title": "Actual IO num for Debug IO ID11", - "type": "int" - } - ], - "depends_on": "!PM_SLP_DISABLE_GPIO && !PM_POWER_DOWN_PERIPHERAL_IN_LIGHT_SLEEP", - "help": "Support coexistence GPIO debugging", - "id": "ESP_COEX_GPIO_DEBUG", - "name": "ESP_COEX_GPIO_DEBUG", - "range": null, - "title": "GPIO debugging for coexistence", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-wireless-coexistence", - "title": "Wireless Coexistence", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": "Functions esp_err_to_name() and esp_err_to_name_r() return string representations of error codes from a\npre-generated lookup table. This option can be used to turn off the use of the look-up table in order to\nsave memory but this comes at the price of sacrificing distinguishable (meaningful) output string\nrepresentations.", - "id": "ESP_ERR_TO_NAME_LOOKUP", - "name": "ESP_ERR_TO_NAME_LOOKUP", - "range": null, - "title": "Enable lookup of error code strings", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ALLOW_BSS_SEG_EXTERNAL_MEMORY", - "name": "ESP_ALLOW_BSS_SEG_EXTERNAL_MEMORY", - "range": null, - "title": null, - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-common-esp-related", - "title": "Common ESP-related", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "SOC_ANA_CMPR_SUPPORTED", - "help": "Place Analog Comparator ISR handler in IRAM to reduce latency caused by cache miss.", - "id": "ANA_CMPR_ISR_HANDLER_IN_IRAM", - "name": "ANA_CMPR_ISR_HANDLER_IN_IRAM", - "range": null, - "title": "Place Analog Comparator ISR handler in IRAM to reduce latency", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_ANA_CMPR_SUPPORTED", - "help": "Place Analog Comparator control functions (like ana_cmpr_set_internal_reference) into IRAM,\nso that these functions can be IRAM-safe and able to be called in an IRAM interrupt context.\nEnabling this option can improve driver performance as well.", - "id": "ANA_CMPR_CTRL_FUNC_IN_IRAM", - "name": "ANA_CMPR_CTRL_FUNC_IN_IRAM", - "range": null, - "title": "Place Analog Comparator control functions into IRAM", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_ANA_CMPR_SUPPORTED", - "help": "Enable this option to allow the Analog Comparator Interrupt Service Routine (ISR)\nto execute even when the cache is disabled. This can be useful in scenarios where the cache\nmight be turned off, but the comparator functionality is still required to operate correctly.", - "id": "ANA_CMPR_ISR_CACHE_SAFE", - "name": "ANA_CMPR_ISR_CACHE_SAFE", - "range": null, - "title": "Allow Analog Comparator ISR to execute when cache is disabled", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_ANA_CMPR_SUPPORTED", - "help": "This will ensure the driver object will not be allocated from a memory region\nwhere its cache can be disabled.", - "id": "ANA_CMPR_OBJ_CACHE_SAFE", - "name": "ANA_CMPR_OBJ_CACHE_SAFE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_ANA_CMPR_SUPPORTED", - "help": "If enabled, the driver component will:\n1. ignore the global logging settings\n2. compile all log messages into the binary\n3. set the runtime log level to VERBOSE\nPlease enable this option by caution, as it will increase the binary size.", - "id": "ANA_CMPR_ENABLE_DEBUG_LOG", - "name": "ANA_CMPR_ENABLE_DEBUG_LOG", - "range": null, - "title": "Force enable debug log", - "type": "bool" - } - ], - "depends_on": "SOC_ANA_CMPR_SUPPORTED", - "id": "component-config-esp-driver-analog-comparator-configurations", - "title": "ESP-Driver:Analog Comparator Configurations", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "SOC_BITSCRAMBLER_SUPPORTED", - "help": "Place BitScrambler control functions into IRAM for better performance and fewer cache misses.", - "id": "BITSCRAMBLER_CTRL_FUNC_IN_IRAM", - "name": "BITSCRAMBLER_CTRL_FUNC_IN_IRAM", - "range": null, - "title": "Place BitScrambler control functions in IRAM", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_BITSCRAMBLER_SUPPORTED", - "help": "This will ensure the BitScrambler object will not be allocated from a memory region\nwhere its cache can be disabled.", - "id": "BITSCRAMBLER_OBJ_CACHE_SAFE", - "name": "BITSCRAMBLER_OBJ_CACHE_SAFE", - "range": null, - "title": null, - "type": "bool" - } - ], - "depends_on": "SOC_BITSCRAMBLER_SUPPORTED", - "id": "component-config-bitscrambler-configurations", - "title": "BitScrambler Configurations", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "SOC_DAC_SUPPORTED", - "help": "Place DAC control functions (e.g. 'dac_oneshot_output_voltage') into IRAM,\nso that this function can be IRAM-safe and able to be called in the other IRAM interrupt context.\nEnabling this option can improve driver performance as well.", - "id": "DAC_CTRL_FUNC_IN_IRAM", - "name": "DAC_CTRL_FUNC_IN_IRAM", - "range": null, - "title": "Place DAC control functions into IRAM", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_DAC_SUPPORTED", - "help": "Ensure the DAC interrupt is IRAM-Safe by allowing the interrupt handler to be\nexecutable when the cache is disabled (e.g. SPI Flash write).", - "id": "DAC_ISR_IRAM_SAFE", - "name": "DAC_ISR_IRAM_SAFE", - "range": null, - "title": "DAC ISR IRAM-Safe", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_DAC_SUPPORTED", - "help": "whether to enable the debug log message for DAC driver.\nNote that, this option only controls the DAC driver log, won't affect other drivers.", - "id": "DAC_ENABLE_DEBUG_LOG", - "name": "DAC_ENABLE_DEBUG_LOG", - "range": null, - "title": "Enable debug log", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_DAC_DMA_16BIT_ALIGN && SOC_DAC_SUPPORTED", - "help": "Whether to left shift the continuous data to align every bytes to 16 bits in the driver.\nOn ESP32, although the DAC resolution is only 8 bits,\nthe hardware requires 16 bits data in continuous mode.\nBy enabling this option, the driver will left shift 8 bits for the input data automatically.\nOnly disable this option when you decide to do this step by yourself.\nNote that the driver will allocate a new piece of memory to save the converted data.", - "id": "DAC_DMA_AUTO_16BIT_ALIGN", - "name": "DAC_DMA_AUTO_16BIT_ALIGN", - "range": null, - "title": "Align the continuous data to 16 bit automatically", - "type": "bool" - } - ], - "depends_on": "SOC_DAC_SUPPORTED", - "id": "component-config-esp-driver-dac-configurations", - "title": "ESP-Driver:DAC Configurations", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "IDF_TARGET_ESP32", - "help": "This option is intended to fix the bug that ESP32 is not able to switch to configured\npullup/pulldown mode in sleep.\nIf this option is selected, chip will automatically emulate the behaviour of switching,\nand about 450B of source codes would be placed into IRAM.", - "id": "GPIO_ESP32_SUPPORT_SWITCH_SLP_PULL", - "name": "GPIO_ESP32_SUPPORT_SWITCH_SLP_PULL", - "range": null, - "title": "Support light sleep GPIO pullup/pulldown configuration for ESP32", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Place GPIO control functions (like intr_disable/set_level) into IRAM,\nso that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.", - "id": "GPIO_CTRL_FUNC_IN_IRAM", - "name": "GPIO_CTRL_FUNC_IN_IRAM", - "range": null, - "title": "Place GPIO control functions into IRAM", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-esp-driver-gpio-configurations", - "title": "ESP-Driver:GPIO Configurations", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "SOC_GPTIMER_SUPPORTED", - "help": "Place GPTimer ISR handler in IRAM to reduce latency caused by cache miss.", - "id": "GPTIMER_ISR_HANDLER_IN_IRAM", - "name": "GPTIMER_ISR_HANDLER_IN_IRAM", - "range": null, - "title": "Place GPTimer ISR handler in IRAM to reduce latency", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_GPTIMER_SUPPORTED", - "help": "Place GPTimer control functions (like start/stop) in IRAM, to reduce latency caused by cache miss.\nIf enabled, these functions can also be called when cache is disabled.", - "id": "GPTIMER_CTRL_FUNC_IN_IRAM", - "name": "GPTIMER_CTRL_FUNC_IN_IRAM", - "range": null, - "title": "Place GPTimer control functions in IRAM", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_GPTIMER_SUPPORTED", - "help": "Enable this option to allow the GPTimer Interrupt Service Routine (ISR)\nto execute even when the cache is disabled. This can be useful in scenarios where the cache\nmight be turned off, but the GPTimer functionality is still required to operate correctly.", - "id": "GPTIMER_ISR_CACHE_SAFE", - "name": "GPTIMER_ISR_CACHE_SAFE", - "range": null, - "title": "Allow GPTimer ISR to execute when cache is disabled", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_GPTIMER_SUPPORTED", - "help": "This will ensure the GPTimer object will not be allocated from a memory region\nwhere its cache can be disabled.", - "id": "GPTIMER_OBJ_CACHE_SAFE", - "name": "GPTIMER_OBJ_CACHE_SAFE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_GPTIMER_SUPPORTED", - "help": "If enabled, GPTimer component will:\n1. ignore the global logging settings\n2. compile all log messages into the binary\n3. set the runtime log level to VERBOSE\nPlease enable this option by caution, as it will increase the binary size.", - "id": "GPTIMER_ENABLE_DEBUG_LOG", - "name": "GPTIMER_ENABLE_DEBUG_LOG", - "range": null, - "title": "Force enable debug log", - "type": "bool" - } - ], - "depends_on": "SOC_GPTIMER_SUPPORTED", - "id": "component-config-esp-driver-gptimer-configurations", - "title": "ESP-Driver:GPTimer Configurations", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "SOC_I2C_SUPPORTED", - "help": "Ensure the I2C interrupt is IRAM-Safe by allowing the interrupt handler to be\nexecutable when the cache is disabled (e.g. SPI Flash write).\nnote: This cannot be used in the I2C legacy driver.", - "id": "I2C_ISR_IRAM_SAFE", - "name": "I2C_ISR_IRAM_SAFE", - "range": null, - "title": "I2C ISR IRAM-Safe", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_I2C_SUPPORTED", - "help": "whether to enable the debug log message for I2C driver.\nNote that this option only controls the I2C driver log, will not affect other drivers.\n\nnote: This cannot be used in the I2C legacy driver.", - "id": "I2C_ENABLE_DEBUG_LOG", - "name": "I2C_ENABLE_DEBUG_LOG", - "range": null, - "title": "Enable I2C debug log", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_I2C_SUPPORTED", - "help": "I2C slave version 2 solves some existing known issues. Such as write/read workflow, stretch handling, etc.", - "id": "I2C_ENABLE_SLAVE_DRIVER_VERSION_2", - "name": "I2C_ENABLE_SLAVE_DRIVER_VERSION_2", - "range": null, - "title": "Enable I2C slave driver version 2", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_I2C_SUPPORTED", - "help": "Place I2C master ISR handler into IRAM for better performance and fewer cache misses.", - "id": "I2C_MASTER_ISR_HANDLER_IN_IRAM", - "name": "I2C_MASTER_ISR_HANDLER_IN_IRAM", - "range": null, - "title": "Place I2C master ISR handler into IRAM", - "type": "bool" - } - ], - "depends_on": "SOC_I2C_SUPPORTED", - "id": "component-config-esp-driver-i2c-configurations", - "title": "ESP-Driver:I2C Configurations", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "SOC_I2S_SUPPORTED", - "help": "Ensure the I2S interrupt is IRAM-Safe by allowing the interrupt handler to be\nexecutable when the cache is disabled (e.g. SPI Flash write).", - "id": "I2S_ISR_IRAM_SAFE", - "name": "I2S_ISR_IRAM_SAFE", - "range": null, - "title": "I2S ISR IRAM-Safe", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_I2S_SUPPORTED", - "help": "whether to enable the debug log message for I2S driver.\nNote that, this option only controls the I2S driver log, will not affect other drivers.", - "id": "I2S_ENABLE_DEBUG_LOG", - "name": "I2S_ENABLE_DEBUG_LOG", - "range": null, - "title": "Enable I2S debug log", - "type": "bool" - } - ], - "depends_on": "SOC_I2S_SUPPORTED", - "id": "component-config-esp-driver-i2s-configurations", - "title": "ESP-Driver:I2S Configurations", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": "Place LEDC control functions (ledc_update_duty and ledc_stop) into IRAM,\nso that these functions can be IRAM-safe and able to be called in an IRAM context.\nEnabling this option can improve driver performance as well.", - "id": "LEDC_CTRL_FUNC_IN_IRAM", - "name": "LEDC_CTRL_FUNC_IN_IRAM", - "range": null, - "title": "Place LEDC control functions into IRAM", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-esp-driver-ledc-configurations", - "title": "ESP-Driver:LEDC Configurations", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "SOC_MCPWM_SUPPORTED", - "help": "Place MCPWM ISR handler(s) in IRAM to reduce latency caused by cache miss.", - "id": "MCPWM_ISR_HANDLER_IN_IRAM", - "name": "MCPWM_ISR_HANDLER_IN_IRAM", - "range": null, - "title": "Place MCPWM ISR handler into IRAM to reduce latency", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_MCPWM_SUPPORTED", - "help": "Enable this option to allow the MCPWM Interrupt Service Routine (ISR)\nto execute even when the cache is disabled. This can be useful in scenarios where the cache\nmight be turned off, but the MCPWM functionality is still required to operate correctly.", - "id": "MCPWM_ISR_CACHE_SAFE", - "name": "MCPWM_ISR_CACHE_SAFE", - "range": null, - "title": "Allow MCPWM ISR to execute when cache is disabled", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_MCPWM_SUPPORTED", - "help": "Place MCPWM control functions in IRAM, to reduce latency caused by cache miss.\nIf enabled, these functions can also be called when cache is disabled.", - "id": "MCPWM_CTRL_FUNC_IN_IRAM", - "name": "MCPWM_CTRL_FUNC_IN_IRAM", - "range": null, - "title": "Place MCPWM control functions in IRAM", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_MCPWM_SUPPORTED", - "help": "This will ensure the MCPWM object will not be allocated from a memory region\nwhere its cache can be disabled.", - "id": "MCPWM_OBJ_CACHE_SAFE", - "name": "MCPWM_OBJ_CACHE_SAFE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_MCPWM_SUPPORTED", - "help": "If enabled, MCPWM component will:\n1. ignore the global logging settings\n2. compile all log messages into the binary\n3. set the runtime log level to VERBOSE\nPlease enable this option with caution, as it will increase the binary size.", - "id": "MCPWM_ENABLE_DEBUG_LOG", - "name": "MCPWM_ENABLE_DEBUG_LOG", - "range": null, - "title": "Force enable debug log", - "type": "bool" - } - ], - "depends_on": "SOC_MCPWM_SUPPORTED", - "id": "component-config-esp-driver-mcpwm-configurations", - "title": "ESP-Driver:MCPWM Configurations", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "SOC_PARLIO_SUPPORTED", - "help": "Place Parallel IO TX ISR handler in IRAM to reduce latency caused by cache miss.", - "id": "PARLIO_TX_ISR_HANDLER_IN_IRAM", - "name": "PARLIO_TX_ISR_HANDLER_IN_IRAM", - "range": null, - "title": "Place Parallel IO TX ISR handler in IRAM to reduce latency", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_PARLIO_SUPPORTED", - "help": "Place Parallel IO RX ISR handler in IRAM to reduce latency caused by cache miss.", - "id": "PARLIO_RX_ISR_HANDLER_IN_IRAM", - "name": "PARLIO_RX_ISR_HANDLER_IN_IRAM", - "range": null, - "title": "Place Parallel IO RX ISR handler in IRAM to reduce latency", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_PARLIO_SUPPORTED", - "help": "Enable this option to allow the Parallel IO TX Interrupt Service Routine (ISR)\nto execute even when the cache is disabled. This can be useful in scenarios where the cache\nmight be turned off, but the Parallel IO TX functionality is still required to operate correctly.", - "id": "PARLIO_TX_ISR_CACHE_SAFE", - "name": "PARLIO_TX_ISR_CACHE_SAFE", - "range": null, - "title": "Allow Parallel IO TX ISR to execute when cache is disabled", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_PARLIO_SUPPORTED", - "help": "Enable this option to allow the Parallel IO RX Interrupt Service Routine (ISR)\nto execute even when the cache is disabled. This can be useful in scenarios where the cache\nmight be turned off, but the Parallel IO RX functionality is still required to operate correctly.", - "id": "PARLIO_RX_ISR_CACHE_SAFE", - "name": "PARLIO_RX_ISR_CACHE_SAFE", - "range": null, - "title": "Allow Parallel IO RX ISR to execute when cache is disabled", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_PARLIO_SUPPORTED", - "help": "This will ensure the driver object will not be allocated from a memory region\nwhere its cache can be disabled.", - "id": "PARLIO_OBJ_CACHE_SAFE", - "name": "PARLIO_OBJ_CACHE_SAFE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_PARLIO_SUPPORTED", - "help": "If enabled, Parallel IO driver component will:\n1. ignore the global logging settings\n2. compile all log messages into the binary\n3. set the runtime log level to VERBOSE\nPlease enable this option by caution, as it will increase the binary size.", - "id": "PARLIO_ENABLE_DEBUG_LOG", - "name": "PARLIO_ENABLE_DEBUG_LOG", - "range": null, - "title": "Force enable debug log", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_PARLIO_SUPPORTED", - "help": "Ensure the Parallel IO interrupt is IRAM-Safe by allowing the interrupt handler to be\nexecutable when the cache is disabled (e.g. SPI Flash write).", - "id": "PARLIO_ISR_IRAM_SAFE", - "name": "PARLIO_ISR_IRAM_SAFE", - "range": null, - "title": "Parallel IO ISR IRAM-Safe (Deprecated)", - "type": "bool" - } - ], - "depends_on": "SOC_PARLIO_SUPPORTED", - "id": "component-config-esp-driver-parallel-io-configurations", - "title": "ESP-Driver:Parallel IO Configurations", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "SOC_PCNT_SUPPORTED", - "help": "Place PCNT control functions (like start/stop) into IRAM,\nso that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.\nEnabling this option can improve driver performance as well.", - "id": "PCNT_CTRL_FUNC_IN_IRAM", - "name": "PCNT_CTRL_FUNC_IN_IRAM", - "range": null, - "title": "Place PCNT control functions into IRAM", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_PCNT_SUPPORTED", - "help": "Ensure the PCNT interrupt is IRAM-Safe by allowing the interrupt handler to be\nexecutable when the cache is disabled (e.g. SPI Flash write).", - "id": "PCNT_ISR_IRAM_SAFE", - "name": "PCNT_ISR_IRAM_SAFE", - "range": null, - "title": "PCNT ISR IRAM-Safe", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_PCNT_SUPPORTED", - "help": "whether to enable the debug log message for PCNT driver.\nNote that, this option only controls the PCNT driver log, won't affect other drivers.", - "id": "PCNT_ENABLE_DEBUG_LOG", - "name": "PCNT_ENABLE_DEBUG_LOG", - "range": null, - "title": "Enable debug log", - "type": "bool" - } - ], - "depends_on": "SOC_PCNT_SUPPORTED", - "id": "component-config-esp-driver-pcnt-configurations", - "title": "ESP-Driver:PCNT Configurations", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "SOC_RMT_SUPPORTED", - "help": "Place RMT encoder function into IRAM for better performance and fewer cache misses.", - "id": "RMT_ENCODER_FUNC_IN_IRAM", - "name": "RMT_ENCODER_FUNC_IN_IRAM", - "range": null, - "title": "Place RMT encoder function in IRAM", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_RMT_SUPPORTED", - "help": "Place RMT TX ISR handler in IRAM to reduce latency caused by cache miss.", - "id": "RMT_TX_ISR_HANDLER_IN_IRAM", - "name": "RMT_TX_ISR_HANDLER_IN_IRAM", - "range": null, - "title": "Place RMT TX ISR handler in IRAM to reduce latency", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_RMT_SUPPORTED", - "help": "Place RMT RX ISR handler in IRAM to reduce latency caused by cache miss.", - "id": "RMT_RX_ISR_HANDLER_IN_IRAM", - "name": "RMT_RX_ISR_HANDLER_IN_IRAM", - "range": null, - "title": "Place RMT RX ISR handler in IRAM to reduce latency", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_RMT_SUPPORTED", - "help": "Place RMT receive function into IRAM for better performance and fewer cache misses.", - "id": "RMT_RECV_FUNC_IN_IRAM", - "name": "RMT_RECV_FUNC_IN_IRAM", - "range": null, - "title": "Place RMT receive function in IRAM", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_RMT_SUPPORTED", - "help": "Enable this option to allow the RMT TX Interrupt Service Routine (ISR)\nto execute even when the cache is disabled. This can be useful in scenarios where the cache\nmight be turned off, but the RMT TX functionality is still required to operate correctly.", - "id": "RMT_TX_ISR_CACHE_SAFE", - "name": "RMT_TX_ISR_CACHE_SAFE", - "range": null, - "title": "Allow RMT TX ISR to execute when cache is disabled", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_RMT_SUPPORTED", - "help": "Enable this option to allow the RMT RX Interrupt Service Routine (ISR)\nto execute even when the cache is disabled. This can be useful in scenarios where the cache\nmight be turned off, but the RMT RX functionality is still required to operate correctly.", - "id": "RMT_RX_ISR_CACHE_SAFE", - "name": "RMT_RX_ISR_CACHE_SAFE", - "range": null, - "title": "Allow RMT RX ISR to execute when cache is disabled", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_RMT_SUPPORTED", - "help": "This will ensure the RMT object will not be allocated from a memory region\nwhere its cache can be disabled.", - "id": "RMT_OBJ_CACHE_SAFE", - "name": "RMT_OBJ_CACHE_SAFE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_RMT_SUPPORTED", - "help": "If enabled, RMT driver component will:\n1. ignore the global logging settings\n2. compile all log messages into the binary\n3. set the runtime log level to VERBOSE\nPlease enable this option by caution, as it will increase the binary size.", - "id": "RMT_ENABLE_DEBUG_LOG", - "name": "RMT_ENABLE_DEBUG_LOG", - "range": null, - "title": "Force enable debug log", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_RMT_SUPPORTED", - "help": "Ensure the RMT interrupt is IRAM-Safe by allowing the interrupt handler to be\nexecutable when the cache is disabled (e.g. SPI Flash write).", - "id": "RMT_ISR_IRAM_SAFE", - "name": "RMT_ISR_IRAM_SAFE", - "range": null, - "title": "RMT ISR IRAM-Safe (Deprecated)", - "type": "bool" - } - ], - "depends_on": "SOC_RMT_SUPPORTED", - "id": "component-config-esp-driver-rmt-configurations", - "title": "ESP-Driver:RMT Configurations", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "SOC_SDM_SUPPORTED", - "help": "Place SDM control functions (like set_duty) into IRAM,\nso that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.\nEnabling this option can improve driver performance as well.", - "id": "SDM_CTRL_FUNC_IN_IRAM", - "name": "SDM_CTRL_FUNC_IN_IRAM", - "range": null, - "title": "Place SDM control functions into IRAM", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_SDM_SUPPORTED", - "help": "whether to enable the debug log message for SDM driver.\nNote that, this option only controls the SDM driver log, won't affect other drivers.", - "id": "SDM_ENABLE_DEBUG_LOG", - "name": "SDM_ENABLE_DEBUG_LOG", - "range": null, - "title": "Enable debug log", - "type": "bool" - } - ], - "depends_on": "SOC_SDM_SUPPORTED", - "id": "component-config-esp-driver-sigma-delta-modulator-configurations", - "title": "ESP-Driver:Sigma Delta Modulator Configurations", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "!FREERTOS_PLACE_FUNCTIONS_INTO_FLASH && SOC_GPSPI_SUPPORTED", - "help": "Normally only the ISR of SPI master is placed in the IRAM, so that it\ncan work without the flash when interrupt is triggered.\nFor other functions, there's some possibility that the flash cache\nmiss when running inside and out of SPI functions, which may increase\nthe interval of SPI transactions.\nEnable this to put ``queue_trans``, ``get_trans_result`` and\n``transmit`` functions into the IRAM to avoid possible cache miss.\n\nThis configuration won't be available if `CONFIG_FREERTOS_PLACE_FUNCTIONS_INTO_FLASH` is enabled.\n\nDuring unit test, this is enabled to measure the ideal case of api.", - "id": "SPI_MASTER_IN_IRAM", - "name": "SPI_MASTER_IN_IRAM", - "range": null, - "title": "Place transmitting functions of SPI master into IRAM", - "type": "bool" - }, - { - "children": [], - "depends_on": "!HEAP_PLACE_FUNCTION_INTO_FLASH && SOC_GPSPI_SUPPORTED", - "help": "Place the SPI master ISR in to IRAM to avoid possible cache miss.\n\nEnabling this configuration is possible only when HEAP_PLACE_FUNCTION_INTO_FLASH\nis disabled since the spi master uses can allocate transactions buffers into DMA\nmemory section using the heap component API that ipso facto has to be placed in IRAM.\n\nAlso you can forbid the ISR being disabled during flash writing\naccess, by add ESP_INTR_FLAG_IRAM when initializing the driver.", - "id": "SPI_MASTER_ISR_IN_IRAM", - "name": "SPI_MASTER_ISR_IN_IRAM", - "range": null, - "title": "Place SPI master ISR function into IRAM", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_GPSPI_SUPPORTED", - "help": "Normally only the ISR of SPI slave is placed in the IRAM, so that it\ncan work without the flash when interrupt is triggered.\nFor other functions, there's some possibility that the flash cache\nmiss when running inside and out of SPI functions, which may increase\nthe interval of SPI transactions.\nEnable this to put ``queue_trans``, ``get_trans_result`` and\n``transmit`` functions into the IRAM to avoid possible cache miss.", - "id": "SPI_SLAVE_IN_IRAM", - "name": "SPI_SLAVE_IN_IRAM", - "range": null, - "title": "Place transmitting functions of SPI slave into IRAM", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_GPSPI_SUPPORTED", - "help": "Place the SPI slave ISR in to IRAM to avoid possible cache miss.\n\nAlso you can forbid the ISR being disabled during flash writing\naccess, by add ESP_INTR_FLAG_IRAM when initializing the driver.", - "id": "SPI_SLAVE_ISR_IN_IRAM", - "name": "SPI_SLAVE_ISR_IN_IRAM", - "range": null, - "title": "Place SPI slave ISR function into IRAM", - "type": "bool" - } - ], - "depends_on": "SOC_GPSPI_SUPPORTED", - "id": "component-config-esp-driver-spi-configurations", - "title": "ESP-Driver:SPI Configurations", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "SOC_TEMP_SENSOR_SUPPORTED", - "help": "whether to enable the debug log message for temperature sensor driver.\nNote that, this option only controls the temperature sensor driver log, won't affect other drivers.", - "id": "TEMP_SENSOR_ENABLE_DEBUG_LOG", - "name": "TEMP_SENSOR_ENABLE_DEBUG_LOG", - "range": null, - "title": "Enable debug log", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_TEMPERATURE_SENSOR_INTR_SUPPORT && SOC_TEMP_SENSOR_SUPPORTED", - "help": "Ensure the Temperature Sensor interrupt is IRAM-Safe by allowing the interrupt handler to be\nexecutable when the cache is disabled (e.g. SPI Flash write).", - "id": "TEMP_SENSOR_ISR_IRAM_SAFE", - "name": "TEMP_SENSOR_ISR_IRAM_SAFE", - "range": null, - "title": "Temperature sensor ISR IRAM-Safe", - "type": "bool" - } - ], - "depends_on": "SOC_TEMP_SENSOR_SUPPORTED", - "id": "component-config-esp-driver-temperature-sensor-configurations", - "title": "ESP-Driver:Temperature Sensor Configurations", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "SOC_TWAI_SUPPORTED", - "help": "Place the TWAI ISR in to IRAM to reduce latency and increase performance", - "id": "TWAI_ISR_IN_IRAM", - "name": "TWAI_ISR_IN_IRAM", - "range": null, - "title": "Place TWAI ISR function in IRAM", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_TWAI_SUPPORTED", - "help": "Allow TWAI works under Cache disabled (such as when writing to SPI Flash),\nto enabled this config, all callbacks and user_ctx should also place in IRAM", - "id": "TWAI_ISR_CACHE_SAFE", - "name": "TWAI_ISR_CACHE_SAFE", - "range": null, - "title": "Allow TWAI ISR execute when cache disabled", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_TWAI_SUPPORTED", - "help": "This will ensure the TWAI driver object will not be allocated from a memory region\nwhere its cache can be disabled.", - "id": "TWAI_OBJ_CACHE_SAFE", - "name": "TWAI_OBJ_CACHE_SAFE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_TWAI_SUPPORTED", - "help": "If enabled, TWAI driver component will:\n1. ignore the global logging settings\n2. compile all log messages into the binary\n3. set the runtime log level to VERBOSE\nPlease enable this option by caution, as it will increase the binary size.", - "id": "TWAI_ENABLE_DEBUG_LOG", - "name": "TWAI_ENABLE_DEBUG_LOG", - "range": null, - "title": "Force enable debug log", - "type": "bool" - } - ], - "depends_on": "SOC_TWAI_SUPPORTED", - "id": "component-config-esp-driver-twai-configurations", - "title": "ESP-Driver:TWAI Configurations", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "!RINGBUF_PLACE_ISR_FUNCTIONS_INTO_FLASH", - "help": "If this option is not selected, UART interrupt will be disabled for a long time and\nmay cause data lost when doing spi flash operation.", - "id": "UART_ISR_IN_IRAM", - "name": "UART_ISR_IN_IRAM", - "range": null, - "title": "Place UART ISR function into IRAM", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-esp-driver-uart-configurations", - "title": "ESP-Driver:UART Configurations", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": "If this option is not selected, UHCI interrupt will be disabled for a long time and\nmay cause data lost when doing spi flash operation.", - "id": "UHCI_ISR_HANDLER_IN_IRAM", - "name": "UHCI_ISR_HANDLER_IN_IRAM", - "range": null, - "title": "Place UHCI ISR function into IRAM", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enable this option to allow the ISR for UHCI to execute even when the cache is disabled.\nThis can be useful in scenarios where the cache might be turned off, but the UHCI\nfunctionality is still required to operate correctly.", - "id": "UHCI_ISR_CACHE_SAFE", - "name": "UHCI_ISR_CACHE_SAFE", - "range": null, - "title": "Allow UHCI ISR to execute when cache is disabled", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "whether to enable the debug log message for UHCI driver.\nNote that, this option only controls the UHCI driver log, won't affect other drivers.", - "id": "UHCI_ENABLE_DEBUG_LOG", - "name": "UHCI_ENABLE_DEBUG_LOG", - "range": null, - "title": "Enable debug log", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-esp-driver-uhci-configurations", - "title": "ESP-Driver:UHCI Configurations", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "PM_ENABLE && ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED && !SOC_USB_SERIAL_JTAG_SUPPORT_LIGHT_SLEEP && USJ_ENABLE_USB_SERIAL_JTAG && SOC_USB_SERIAL_JTAG_SUPPORTED", - "help": "If enabled, the chip will constantly monitor the connection status of the USB Serial/JTAG port. As long\nas the USB Serial/JTAG is connected, a ESP_PM_NO_LIGHT_SLEEP power management lock will be acquired to\nprevent the system from entering light sleep.\nThis option can be useful if serial monitoring is needed via USB Serial/JTAG while power management is\nenabled, as the USB Serial/JTAG cannot work under light sleep and after waking up from light sleep.\nNote. This option can only control the automatic Light-Sleep behavior. If esp_light_sleep_start() is\ncalled manually from the program, enabling this option will not prevent light sleep entry even if the\nUSB Serial/JTAG is in use.", - "id": "USJ_NO_AUTO_LS_ON_CONNECTION", - "name": "USJ_NO_AUTO_LS_ON_CONNECTION", - "range": null, - "title": "Don't enter the automatic light sleep when USB Serial/JTAG port is connected", - "type": "bool" - } - ], - "depends_on": "SOC_USB_SERIAL_JTAG_SUPPORTED", - "help": "The USB-Serial-JTAG module on ESP chips is turned on by default after power-on.\nIf your application does not need it and not rely on it to be used as system\nconsole or use the built-in JTAG for debugging, you can disable this option,\nthen the clock of this module will be disabled at startup, which will save\nsome power consumption.", - "id": "USJ_ENABLE_USB_SERIAL_JTAG", - "name": "USJ_ENABLE_USB_SERIAL_JTAG", - "range": null, - "title": "Enable USB-Serial-JTAG Module", - "type": "bool" - } - ], - "depends_on": "SOC_USB_SERIAL_JTAG_SUPPORTED", - "id": "component-config-esp-driver-usb-serial-jtag-configuration", - "title": "ESP-Driver:USB Serial/JTAG Configuration", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": "Enables collections of statistics in the event loop library such as the number of events posted\nto/recieved by an event loop, number of callbacks involved, number of events dropped to to a full event\nloop queue, run time of event handlers, and number of times/run time of each event handler.", - "id": "ESP_EVENT_LOOP_PROFILING", - "name": "ESP_EVENT_LOOP_PROFILING", - "range": null, - "title": "Enable event loop profiling", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "ESP_EVENT_POST_FROM_ISR", - "help": "Enable posting events from interrupt handlers placed in IRAM. Enabling this option places API functions\nesp_event_post and esp_event_post_to in IRAM.", - "id": "ESP_EVENT_POST_FROM_IRAM_ISR", - "name": "ESP_EVENT_POST_FROM_IRAM_ISR", - "range": null, - "title": "Support posting events from ISRs placed in IRAM", - "type": "bool" - } - ], - "depends_on": null, - "help": "Enable posting events from interrupt handlers.", - "id": "ESP_EVENT_POST_FROM_ISR", - "name": "ESP_EVENT_POST_FROM_ISR", - "range": null, - "title": "Support posting events from ISRs", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-event-loop-library", - "title": "Event Loop Library", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP32H2_REV_MIN_0", - "name": "ESP32H2_REV_MIN_0", - "range": null, - "title": "Rev v0.0", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP32H2_REV_MIN_1", - "name": "ESP32H2_REV_MIN_1", - "range": null, - "title": "Rev v0.1 (ECO1)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP32H2_REV_MIN_2", - "name": "ESP32H2_REV_MIN_2", - "range": null, - "title": "Rev v0.2 (ECO2)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP32H2_REV_MIN_102", - "name": "ESP32H2_REV_MIN_102", - "range": null, - "title": "Rev v1.2", - "type": "bool" - } - ], - "depends_on": null, - "help": "Required minimum chip revision. ESP-IDF will check for it and\nreject to boot if the chip revision fails the check.\nThis ensures the chip used will have some modifications (features, or bugfixes).\n\nThe complied binary will only support chips above this revision,\nthis will also help to reduce binary size.", - "id": "component-config-hardware-settings-chip-revision-minimum-supported-esp32-h2-revision", - "name": "ESP32H2_REV_MIN", - "title": "Minimum Supported ESP32-H2 Revision", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP32H2_REV_MIN_FULL", - "name": "ESP32H2_REV_MIN_FULL", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_REV_MIN_FULL", - "name": "ESP_REV_MIN_FULL", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP32H2_REV_MAX_FULL", - "name": "ESP32H2_REV_MAX_FULL", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_REV_MAX_FULL", - "name": "ESP_REV_MAX_FULL", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Required minimum eFuse Block revision. ESP-IDF will check it at the 2nd bootloader stage\nwhether the current image can work correctly for this eFuse Block revision.\nSo that to avoid running an incompatible image on a SoC that contains breaking change in the eFuse Block.\nIf you want to update this value to run the image that not compatible with the current eFuse Block revision,\nplease contact to Espressif's business team for details:\nhttps://www.espressif.com.cn/en/contact-us/sales-questions", - "id": "ESP_EFUSE_BLOCK_REV_MIN_FULL", - "name": "ESP_EFUSE_BLOCK_REV_MIN_FULL", - "range": null, - "title": "Minimum Supported ESP32-H2 eFuse Block Revision", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_EFUSE_BLOCK_REV_MAX_FULL", - "name": "ESP_EFUSE_BLOCK_REV_MAX_FULL", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": "IDF_CI_BUILD", - "help": "For internal chip testing, a small number of new versions chips didn't\nupdate the version field in eFuse, you can enable this option to force the\nsoftware recognize the chip version based on the rev selected in menuconfig.", - "id": "ESP_REV_NEW_CHIP_TEST", - "name": "ESP_REV_NEW_CHIP_TEST", - "range": null, - "title": "Internal test mode", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-hardware-settings-chip-revision", - "title": "Chip revision", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_MAC_ADDR_UNIVERSE_WIFI_STA", - "name": "ESP_MAC_ADDR_UNIVERSE_WIFI_STA", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_MAC_ADDR_UNIVERSE_WIFI_AP", - "name": "ESP_MAC_ADDR_UNIVERSE_WIFI_AP", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_MAC_ADDR_UNIVERSE_BT", - "name": "ESP_MAC_ADDR_UNIVERSE_BT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_MAC_ADDR_UNIVERSE_ETH", - "name": "ESP_MAC_ADDR_UNIVERSE_ETH", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_MAC_ADDR_UNIVERSE_IEEE802154", - "name": "ESP_MAC_ADDR_UNIVERSE_IEEE802154", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_ONE", - "name": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_ONE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_TWO", - "name": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_TWO", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR", - "name": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES", - "name": "ESP_MAC_UNIVERSAL_MAC_ADDRESSES", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP32H2_UNIVERSAL_MAC_ADDRESSES_TWO", - "name": "ESP32H2_UNIVERSAL_MAC_ADDRESSES_TWO", - "range": null, - "title": "Two", - "type": "bool" - } - ], - "depends_on": null, - "help": "Configure the number of universally administered (by IEEE) MAC addresses.\nDuring initialization, MAC addresses for each network interface are generated or derived from a\nsingle base MAC address.", - "id": "component-config-hardware-settings-mac-config-number-of-universally-administered-by-ieee-mac-address", - "name": "ESP32H2_UNIVERSAL_MAC_ADDRESSES", - "title": "Number of universally administered (by IEEE) MAC address", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP32H2_UNIVERSAL_MAC_ADDRESSES", - "name": "ESP32H2_UNIVERSAL_MAC_ADDRESSES", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": "IDF_TARGET_ESP32", - "help": "If you have an invalid MAC CRC (ESP_ERR_INVALID_CRC) problem\nand you still want to use this chip, you can enable this option to bypass such an error.\nThis applies to both MAC_FACTORY and CUSTOM_MAC efuses.", - "id": "ESP_MAC_IGNORE_MAC_CRC_ERROR", - "name": "ESP_MAC_IGNORE_MAC_CRC_ERROR", - "range": null, - "title": "Ignore MAC CRC error (not recommended)", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "When this configuration is enabled, the user can invoke `esp_read_mac` to obtain the desired type of\nMAC using a custom MAC as the base MAC.", - "id": "ESP_MAC_USE_CUSTOM_MAC_AS_BASE_MAC", - "name": "ESP_MAC_USE_CUSTOM_MAC_AS_BASE_MAC", - "range": null, - "title": "Enable using custom mac as base mac", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-hardware-settings-mac-config", - "title": "MAC Config", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "(!SPIRAM || ESP_LDO_RESERVE_PSRAM) && !(IDF_TARGET_ESP32P4 && ESP32P4_REV_MIN_FULL < 100)", - "help": "If enabled, chip will try to power down flash as part of esp_light_sleep_start(), which costs\nmore time when chip wakes up. Can only be enabled if there is no SPIRAM configured.\n\nThis option will power down flash under a strict but relatively safe condition. Also, it is possible to\npower down flash under a relaxed condition by using esp_sleep_pd_config() to set ESP_PD_DOMAIN_VDDSDIO\nto ESP_PD_OPTION_OFF. It should be noted that there is a risk in powering down flash, you can refer\n`ESP-IDF Programming Guide/API Reference/System API/Sleep Modes/Power-down of Flash` for more details.", - "id": "ESP_SLEEP_POWER_DOWN_FLASH", - "name": "ESP_SLEEP_POWER_DOWN_FLASH", - "range": null, - "title": "Power down flash in light sleep when there is no SPIRAM or SPIRAM has independent power supply", - "type": "bool" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "All IOs will be set to isolate(floating) state by default during sleep.\nSince the power supply of SPI Flash is not lost during lightsleep, if its CS pin is recognized as\nlow level(selected state) in the floating state, there will be a large current leakage, and the\ndata in Flash may be corrupted by random signals on other SPI pins.\nSelect this option will set the CS pin of Flash to PULL-UP state during sleep, but this will\nincrease the sleep current about 10 uA.\nIf you are developing with esp32xx modules, you must select this option, but if you are developing\nwith chips, you can also pull up the CS pin of SPI Flash in the external circuit to save power\nconsumption caused by internal pull-up during sleep.\n(!!! Don't deselect this option if you don't have external SPI Flash CS pin pullups.)", - "id": "ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND", - "name": "ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND", - "range": null, - "title": "Pull-up Flash CS pin in light sleep", - "type": "bool" - }, - { - "children": [], - "depends_on": "SPIRAM", - "help": "All IOs will be set to isolate(floating) state by default during sleep.\nSince the power supply of PSRAM is not lost during lightsleep, if its CS pin is recognized as\nlow level(selected state) in the floating state, there will be a large current leakage, and the\ndata in PSRAM may be corrupted by random signals on other SPI pins.\nSelect this option will set the CS pin of PSRAM to PULL-UP state during sleep, but this will\nincrease the sleep current about 10 uA.\nIf you are developing with esp32xx modules, you must select this option, but if you are developing\nwith chips, you can also pull up the CS pin of PSRAM in the external circuit to save power\nconsumption caused by internal pull-up during sleep.\n(!!! Don't deselect this option if you don't have external PSRAM CS pin pullups.)", - "id": "ESP_SLEEP_PSRAM_LEAKAGE_WORKAROUND", - "name": "ESP_SLEEP_PSRAM_LEAKAGE_WORKAROUND", - "range": null, - "title": "Pull-up PSRAM CS pin in light sleep", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_SLEEP_PSRAM_LEAKAGE_WORKAROUND || ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND", - "help": "To reduce leakage current, some types of SPI Flash/RAM only need to pull up the CS pin\nduring light sleep. But there are also some kinds of SPI Flash/RAM that need to pull up\nall pins. It depends on the SPI Flash/RAM chip used.", - "id": "ESP_SLEEP_MSPI_NEED_ALL_IO_PU", - "name": "ESP_SLEEP_MSPI_NEED_ALL_IO_PU", - "range": null, - "title": "Pull-up all SPI pins in light sleep", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_SLEEP_RTC_BUS_ISO_WORKAROUND", - "name": "ESP_SLEEP_RTC_BUS_ISO_WORKAROUND", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "esp32c2, esp32c3, esp32s3, esp32c5, esp32c6 and esp32h2 will reset at wake-up if GPIO is received\na small electrostatic pulse during light sleep, with specific condition\n\n- GPIO needs to be configured as input-mode only\n- The pin receives a small electrostatic pulse, and reset occurs when the pulse\n voltage is higher than 6 V\n\nFor GPIO set to input mode only, it is not a good practice to leave it open/floating,\nThe hardware design needs to controlled it with determined supply or ground voltage\nis necessary.\n\nThis option provides a software workaround for this issue. Configure to isolate all\nGPIO pins in sleep state.", - "id": "ESP_SLEEP_GPIO_RESET_WORKAROUND", - "name": "ESP_SLEEP_GPIO_RESET_WORKAROUND", - "range": null, - "title": "light sleep GPIO reset workaround", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "When the chip exits sleep, the CPU and the flash chip are powered on at the same time.\nCPU will run rom code (deepsleep) or ram code (lightsleep) first, and then load or execute\ncode from flash.\n\nSome flash chips need sufficient time to pass between power on and first read operation.\nBy default, without any extra delay, this time is approximately 900us, although\nsome flash chip types need more than that.\n\n(!!! Please adjust this value according to the Data Sheet of SPI Flash used in your project.)\nIn Flash Data Sheet, the parameters that define the Flash ready timing after power-up (minimum\ntime from Vcc(min) to CS active) are usually named tVSL in ELECTRICAL CHARACTERISTICS chapter,\nand the configuration value here should be:\nESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY = tVSL - 900\n\nFor esp32 and esp32s3, the default extra delay is set to 2000us. When optimizing startup time\nfor applications which require it, this value may be reduced.\n\nIf you are seeing \"flash read err, 1000\" message printed to the console after deep sleep reset\non esp32, or triggered RTC_WDT/LP_WDT after lightsleep wakeup, try increasing this value.\n(For esp32, the delay will be executed in both deep sleep and light sleep wake up flow.\nFor chips after esp32, the delay will be executed only in light sleep flow, the delay\ncontrolled by the EFUSE_FLASH_TPUW in ROM will be executed in deepsleep wake up flow.)", - "id": "ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY", - "name": "ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY", - "range": [ - 0, - 5000 - ], - "title": "Extra delay (in us) after flash powerdown sleep wakeup to wait flash ready", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Enabling it will check the cache safety of the code before the flash power is ready after\nlight sleep wakeup, and check PM_SLP_IRAM_OPT related code cache safety. This option is\nonly for code quality inspection. Enabling it will increase the time overhead of entering\nand exiting sleep. It is not recommended to enable it in the release version.", - "id": "ESP_SLEEP_CACHE_SAFE_ASSERTION", - "name": "ESP_SLEEP_CACHE_SAFE_ASSERTION", - "range": null, - "title": "Check the cache safety of the sleep wakeup code in sleep process", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enable esp sleep debug.", - "id": "ESP_SLEEP_DEBUG", - "name": "ESP_SLEEP_DEBUG", - "range": null, - "title": "esp sleep debug", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "When using rtc gpio wakeup source during deepsleep without external pull-up/downs, you may want to\nmake use of the internal ones.", - "id": "ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS", - "name": "ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS", - "range": null, - "title": "Allow to enable internal pull-up/downs for the Deep-Sleep wakeup IOs", - "type": "bool" - }, - { - "children": [], - "depends_on": "FREERTOS_USE_TICKLESS_IDLE", - "help": "If enabled, it allows user to register sleep event callbacks. It is primarily designed for internal\ndevelopers and customers can use PM_LIGHT_SLEEP_CALLBACKS as an alternative.\n\nNOTE: These callbacks are executed from the IDLE task context hence you cannot have any blocking calls\nin your callbacks.\n\nNOTE: Enabling these callbacks may change sleep duration calculations based on time spent in\ncallback and hence it is highly recommended to keep them as short as possible.", - "id": "ESP_SLEEP_EVENT_CALLBACKS", - "name": "ESP_SLEEP_EVENT_CALLBACKS", - "range": null, - "title": "Enable registration of sleep event callbacks", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-hardware-settings-sleep-config", - "title": "Sleep Config", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "RTC_CLK_SRC_INT_RC", - "name": "RTC_CLK_SRC_INT_RC", - "range": null, - "title": "Internal 136 kHz RC oscillator", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "RTC_CLK_SRC_EXT_CRYS", - "name": "RTC_CLK_SRC_EXT_CRYS", - "range": null, - "title": "External 32 kHz crystal", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "RTC_CLK_SRC_EXT_OSC", - "name": "RTC_CLK_SRC_EXT_OSC", - "range": null, - "title": "External 32 kHz oscillator at 32K_XP pin", - "type": "bool" - } - ], - "depends_on": null, - "help": "Choose which clock is used as RTC clock source.", - "id": "component-config-hardware-settings-rtc-clock-config-rtc-clock-source", - "name": "RTC_CLK_SRC", - "title": "RTC clock source", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": "When the startup code initializes RTC_SLOW_CLK, it can perform\ncalibration by comparing the RTC_SLOW_CLK frequency with main XTAL\nfrequency. This option sets the number of RTC_SLOW_CLK cycles measured\nby the calibration routine. Higher numbers increase calibration\nprecision, which may be important for applications which spend a lot of\ntime in deep sleep. Lower numbers reduce startup time.\n\nWhen this option is set to 0, clock calibration will not be performed at\nstartup, and approximate clock frequencies will be assumed:\n\n- 136000 Hz if internal RC oscillator is used as clock source. For this use value 1024.\n- 32768 Hz if the 32k crystal oscillator is used. For this use value 3000 or more.\n In case more value will help improve the definition of the launch of the crystal.\n If the crystal could not start, it will be switched to internal RC.", - "id": "RTC_CLK_CAL_CYCLES", - "name": "RTC_CLK_CAL_CYCLES", - "range": [ - 0, - 32766 - ], - "title": "Number of cycles for RTC_SLOW_CLK calibration", - "type": "int" - } - ], - "depends_on": null, - "id": "component-config-hardware-settings-rtc-clock-config", - "title": "RTC Clock Config", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": "Place peripheral control functions (e.g. periph_module_reset) into IRAM,\nso that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.", - "id": "ESP_PERIPH_CTRL_FUNC_IN_IRAM", - "name": "ESP_PERIPH_CTRL_FUNC_IN_IRAM", - "range": null, - "title": "Place peripheral control functions into IRAM", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Place analog i2c master control functions (e.g. regi2c_ctrl_read_reg, regi2c_ctrl_write_reg) into IRAM,\nso that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.", - "id": "ESP_REGI2C_CTRL_FUNC_IN_IRAM", - "name": "ESP_REGI2C_CTRL_FUNC_IN_IRAM", - "range": null, - "title": "Place regi2c control functions into IRAM", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-hardware-settings-peripheral-control", - "title": "Peripheral Control", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "SOC_ETM_SUPPORTED", - "help": "whether to enable the debug log message for ETM core driver.\nNote that, this option only controls the ETM related driver log, won't affect other drivers.", - "id": "ETM_ENABLE_DEBUG_LOG", - "name": "ETM_ENABLE_DEBUG_LOG", - "range": null, - "title": "Enable debug log", - "type": "bool" - } - ], - "depends_on": "SOC_ETM_SUPPORTED", - "id": "component-config-hardware-settings-etm-configuration", - "title": "ETM Configuration", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "SOC_GDMA_SUPPORTED", - "help": "Place GDMA control functions (like start/stop/append/reset) into IRAM,\nso that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.", - "id": "GDMA_CTRL_FUNC_IN_IRAM", - "name": "GDMA_CTRL_FUNC_IN_IRAM", - "range": null, - "title": "Place GDMA control functions in IRAM", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_GDMA_SUPPORTED", - "help": "Place GDMA ISR handler functions in IRAM to reduce latency caused by cache miss.", - "id": "GDMA_ISR_HANDLER_IN_IRAM", - "name": "GDMA_ISR_HANDLER_IN_IRAM", - "range": null, - "title": "Place GDMA ISR handler in IRAM to reduce latency", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_GDMA_SUPPORTED", - "help": "This will ensure the GDMA object is DRAM-Safe, allow to avoid external memory\ncache misses, and also be accessible whilst the cache is disabled.", - "id": "GDMA_OBJ_DRAM_SAFE", - "name": "GDMA_OBJ_DRAM_SAFE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_GDMA_SUPPORTED", - "help": "If enabled, GDMA driver component will:\n1. ignore the global logging settings\n2. compile all log messages into the binary\n3. set the runtime log level to VERBOSE\nPlease enable this option by caution, as it will increase the binary size.", - "id": "GDMA_ENABLE_DEBUG_LOG", - "name": "GDMA_ENABLE_DEBUG_LOG", - "range": null, - "title": "Force enable debug log", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_GDMA_SUPPORTED", - "help": "This will ensure the GDMA interrupt handler is IRAM-Safe, allow to avoid flash\ncache misses, and also be able to run whilst the cache is disabled.\n(e.g. SPI Flash write).\nIf this option is enabled, ALL GDMA channel's ISR handlers should be placed in IRAM, which is a overkill.\nIt's recommend to set the \"isr_cache_safe\" in the \"gdma_channel_alloc_config_t\".\nThen other GDMA channels won't be influenced.", - "id": "GDMA_ISR_IRAM_SAFE", - "name": "GDMA_ISR_IRAM_SAFE", - "range": null, - "title": "GDMA ISR IRAM-Safe (Deprecated. Read Help!)", - "type": "bool" - } - ], - "depends_on": "SOC_GDMA_SUPPORTED", - "id": "component-config-hardware-settings-gdma-configurations", - "title": "GDMA Configurations", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "SOC_DW_GDMA_SUPPORTED", - "help": "Place DW_GDMA control functions (e.g. dw_gdma_channel_continue) into IRAM,\nso that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.", - "id": "DW_GDMA_CTRL_FUNC_IN_IRAM", - "name": "DW_GDMA_CTRL_FUNC_IN_IRAM", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_DW_GDMA_SUPPORTED", - "help": "Place DW_GDMA setter functions (e.g. dw_gdma_channel_set_block_markers) into IRAM,\nso that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.", - "id": "DW_GDMA_SETTER_FUNC_IN_IRAM", - "name": "DW_GDMA_SETTER_FUNC_IN_IRAM", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_DW_GDMA_SUPPORTED", - "help": "Place DW_GDMA getter functions (e.g. dw_gdma_link_list_get_item) into IRAM,\nso that these functions can be IRAM-safe and able to be called in the other IRAM interrupt context.", - "id": "DW_GDMA_GETTER_FUNC_IN_IRAM", - "name": "DW_GDMA_GETTER_FUNC_IN_IRAM", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_DW_GDMA_SUPPORTED", - "help": "This will ensure the DW_GDMA interrupt handler is IRAM-Safe, allow to avoid flash\ncache misses, and also be able to run whilst the cache is disabled.\n(e.g. SPI Flash write).", - "id": "DW_GDMA_ISR_IRAM_SAFE", - "name": "DW_GDMA_ISR_IRAM_SAFE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_DW_GDMA_SUPPORTED", - "help": "This will ensure the DW_GDMA object is DRAM-Safe, allow to avoid external memory\ncache misses, and also be accessible whilst the cache is disabled.", - "id": "DW_GDMA_OBJ_DRAM_SAFE", - "name": "DW_GDMA_OBJ_DRAM_SAFE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_DW_GDMA_SUPPORTED", - "help": "Whether to enable the debug log message for DW_GDMA driver.\nNote that, this option only controls the DW_GDMA driver log, won't affect other drivers.", - "id": "DW_GDMA_ENABLE_DEBUG_LOG", - "name": "DW_GDMA_ENABLE_DEBUG_LOG", - "range": null, - "title": "Enable debug log", - "type": "bool" - } - ], - "depends_on": "SOC_DW_GDMA_SUPPORTED", - "id": "component-config-hardware-settings-dw_gdma-configurations", - "title": "DW_GDMA Configurations", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "SOC_DMA2D_SUPPORTED", - "help": "Place 2D-DMA all operation functions, including control functions (e.g. start/stop/append/reset) and setter\nfunctions (e.g. connect/strategy/callback registration) into IRAM, so that these functions can be IRAM-safe\nand able to be called in the other IRAM interrupt context. It also helps optimizing the performance.", - "id": "DMA2D_OPERATION_FUNC_IN_IRAM", - "name": "DMA2D_OPERATION_FUNC_IN_IRAM", - "range": null, - "title": "Place 2D-DMA operation functions into IRAM", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_DMA2D_SUPPORTED", - "help": "This will ensure the 2D-DMA interrupt handler is IRAM-Safe, allow to avoid flash\ncache misses, and also be able to run whilst the cache is disabled.\n(e.g. SPI Flash write).", - "id": "DMA2D_ISR_IRAM_SAFE", - "name": "DMA2D_ISR_IRAM_SAFE", - "range": null, - "title": "2D-DMA ISR IRAM-Safe", - "type": "bool" - } - ], - "depends_on": "SOC_DMA2D_SUPPORTED", - "id": "component-config-hardware-settings-2d-dma-configurations", - "title": "2D-DMA Configurations", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "XTAL_FREQ_32", - "name": "XTAL_FREQ_32", - "range": null, - "title": "32 MHz", - "type": "bool" - } - ], - "depends_on": null, - "help": "This option selects the operating frequency of the XTAL (crystal) clock used to drive the ESP target.\nThe selected value MUST reflect the frequency of the given hardware.", - "id": "component-config-hardware-settings-main-xtal-config-main-xtal-frequency", - "name": "XTAL_FREQ", - "title": "Main XTAL frequency", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "XTAL_FREQ", - "name": "XTAL_FREQ", - "range": null, - "title": null, - "type": "int" - } - ], - "depends_on": null, - "id": "component-config-hardware-settings-main-xtal-config", - "title": "Main XTAL Config", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_BROWNOUT_DET_LVL_SEL_7", - "name": "ESP_BROWNOUT_DET_LVL_SEL_7", - "range": null, - "title": "2.94V", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_BROWNOUT_DET_LVL_SEL_6", - "name": "ESP_BROWNOUT_DET_LVL_SEL_6", - "range": null, - "title": "2.88V", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_BROWNOUT_DET_LVL_SEL_5", - "name": "ESP_BROWNOUT_DET_LVL_SEL_5", - "range": null, - "title": "2.83V", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_BROWNOUT_DET_LVL_SEL_4", - "name": "ESP_BROWNOUT_DET_LVL_SEL_4", - "range": null, - "title": "2.78V", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_BROWNOUT_DET_LVL_SEL_3", - "name": "ESP_BROWNOUT_DET_LVL_SEL_3", - "range": null, - "title": "2.73V", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_BROWNOUT_DET_LVL_SEL_2", - "name": "ESP_BROWNOUT_DET_LVL_SEL_2", - "range": null, - "title": "2.67V", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_BROWNOUT_DET_LVL_SEL_1", - "name": "ESP_BROWNOUT_DET_LVL_SEL_1", - "range": null, - "title": "2.62V", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_BROWNOUT_DET_LVL_SEL_0", - "name": "ESP_BROWNOUT_DET_LVL_SEL_0", - "range": null, - "title": "2.57V", - "type": "bool" - } - ], - "depends_on": "ESP_BROWNOUT_DET", - "help": "The brownout detector will reset the chip when the supply voltage is approximately\nbelow this level. Note that there may be some variation of brownout voltage level\nbetween each chip.\n\n#The voltage levels here are estimates, more work needs to be done to figure out the exact voltages\n#of the brownout threshold levels.", - "id": "component-config-hardware-settings-power-supplier-brownout-detector-hardware-brownout-detect-reset-brownout-voltage-level", - "name": "ESP_BROWNOUT_DET_LVL_SEL", - "title": "Brownout voltage level", - "type": "choice" - } - ], - "depends_on": "!IDF_ENV_FPGA", - "help": "The ESP32-H2 has a built-in brownout detector which can detect if the voltage is lower than\na specific value. If this happens, it will reset the chip in order to prevent unintended\nbehaviour.", - "id": "ESP_BROWNOUT_DET", - "name": "ESP_BROWNOUT_DET", - "range": null, - "title": "Hardware brownout detect & reset", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_BROWNOUT_DET_LVL", - "name": "ESP_BROWNOUT_DET_LVL", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "This config allows to trigger an interrupt when brownout detected. Software restart will be done\nat the end of the default callback.\nThis is because for some special workflow, the chip needs do more things when brownout happens\nbefore restart instead of restarting directly. This part needs to be done in callback function\nof interrupt.", - "id": "ESP_BROWNOUT_USE_INTR", - "name": "ESP_BROWNOUT_USE_INTR", - "range": null, - "title": null, - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-hardware-settings-power-supplier-brownout-detector", - "title": "Brownout Detector", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "SOC_VBAT_SUPPORTED && ESP_VBAT_INIT_AUTO", - "help": "Ensure the VBAT interrupt is IRAM-Safe by allowing the interrupt handler to be\nexecutable when the cache is disabled (e.g. SPI Flash write).", - "id": "ESP_VBAT_ISR_CACHE_SAFE", - "name": "ESP_VBAT_ISR_CACHE_SAFE", - "range": null, - "title": "VBAT ISR IRAM-Safe", - "type": "bool" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_VBAT_DET_LVL_LOW_SEL_7", - "name": "ESP_VBAT_DET_LVL_LOW_SEL_7", - "range": null, - "title": "2.94V", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_VBAT_DET_LVL_LOW_SEL_6", - "name": "ESP_VBAT_DET_LVL_LOW_SEL_6", - "range": null, - "title": "2.88V", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_VBAT_DET_LVL_LOW_SEL_5", - "name": "ESP_VBAT_DET_LVL_LOW_SEL_5", - "range": null, - "title": "2.83V", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_VBAT_DET_LVL_LOW_SEL_4", - "name": "ESP_VBAT_DET_LVL_LOW_SEL_4", - "range": null, - "title": "2.78V", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_VBAT_DET_LVL_LOW_SEL_3", - "name": "ESP_VBAT_DET_LVL_LOW_SEL_3", - "range": null, - "title": "2.73V", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_VBAT_DET_LVL_LOW_SEL_2", - "name": "ESP_VBAT_DET_LVL_LOW_SEL_2", - "range": null, - "title": "2.67V", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_VBAT_DET_LVL_LOW_SEL_1", - "name": "ESP_VBAT_DET_LVL_LOW_SEL_1", - "range": null, - "title": "2.62V", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_VBAT_DET_LVL_LOW_SEL_0", - "name": "ESP_VBAT_DET_LVL_LOW_SEL_0", - "range": null, - "title": "2.57V", - "type": "bool" - } - ], - "depends_on": "ESP_VBAT_USE_RECHARGEABLE_BATTERY", - "help": "The brownout detector will start charging when the supply voltage drops below the selected threshold.\nThis ensures that the power supply is maintained at a stable level.", - "id": "component-config-hardware-settings-power-supplier-rtc-backup-battery-enable-vbat-power-supply-for-rtc-battery-the-battery-for-rtc-battery-is-a-rechargeable-battery-vbat-start-charging-voltage-level", - "name": "ESP_VBAT_DET_LVL_LOW_SEL", - "title": "VBAT start charging voltage level", - "type": "choice" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_VBAT_DET_LVL_HIGH_SEL_7", - "name": "ESP_VBAT_DET_LVL_HIGH_SEL_7", - "range": null, - "title": "2.94V", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_VBAT_DET_LVL_HIGH_SEL_6", - "name": "ESP_VBAT_DET_LVL_HIGH_SEL_6", - "range": null, - "title": "2.88V", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_VBAT_DET_LVL_HIGH_SEL_5", - "name": "ESP_VBAT_DET_LVL_HIGH_SEL_5", - "range": null, - "title": "2.83V", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_VBAT_DET_LVL_HIGH_SEL_4", - "name": "ESP_VBAT_DET_LVL_HIGH_SEL_4", - "range": null, - "title": "2.78V", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_VBAT_DET_LVL_HIGH_SEL_3", - "name": "ESP_VBAT_DET_LVL_HIGH_SEL_3", - "range": null, - "title": "2.73V", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_VBAT_DET_LVL_HIGH_SEL_2", - "name": "ESP_VBAT_DET_LVL_HIGH_SEL_2", - "range": null, - "title": "2.67V", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_VBAT_DET_LVL_HIGH_SEL_1", - "name": "ESP_VBAT_DET_LVL_HIGH_SEL_1", - "range": null, - "title": "2.62V", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_VBAT_DET_LVL_HIGH_SEL_0", - "name": "ESP_VBAT_DET_LVL_HIGH_SEL_0", - "range": null, - "title": "2.57V", - "type": "bool" - } - ], - "depends_on": "ESP_VBAT_USE_RECHARGEABLE_BATTERY", - "help": "The brownout detector will stop charging when the supply voltage arrives the selected threshold.", - "id": "component-config-hardware-settings-power-supplier-rtc-backup-battery-enable-vbat-power-supply-for-rtc-battery-the-battery-for-rtc-battery-is-a-rechargeable-battery-vbat-stop-charging-voltage-level", - "name": "ESP_VBAT_DET_LVL_HIGH_SEL", - "title": "VBAT stop charging voltage level", - "type": "choice" - } - ], - "depends_on": "ESP_VBAT_INIT_AUTO", - "help": "Select this option if the RTC backup battery used in your design is a rechargeable battery.\n\nWhen enabled, the system will configure the RTC battery management circuitry to operate\nin a mode suitable for charging a rechargeable battery. This includes enabling\ncharging current regulation via resistor and voltage monitoring to ensure safe and efficient charging.\n\nUse this option carefully to avoid damage to non-rechargeable batteries.", - "id": "ESP_VBAT_USE_RECHARGEABLE_BATTERY", - "name": "ESP_VBAT_USE_RECHARGEABLE_BATTERY", - "range": null, - "title": "The battery for RTC battery is a rechargeable battery", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_VBAT_BROWNOUT_DET_LVL_SEL_7", - "name": "ESP_VBAT_BROWNOUT_DET_LVL_SEL_7", - "range": null, - "title": "2.94V", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_VBAT_BROWNOUT_DET_LVL_SEL_6", - "name": "ESP_VBAT_BROWNOUT_DET_LVL_SEL_6", - "range": null, - "title": "2.88V", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_VBAT_BROWNOUT_DET_LVL_SEL_5", - "name": "ESP_VBAT_BROWNOUT_DET_LVL_SEL_5", - "range": null, - "title": "2.83V", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_VBAT_BROWNOUT_DET_LVL_SEL_4", - "name": "ESP_VBAT_BROWNOUT_DET_LVL_SEL_4", - "range": null, - "title": "2.78V", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_VBAT_BROWNOUT_DET_LVL_SEL_3", - "name": "ESP_VBAT_BROWNOUT_DET_LVL_SEL_3", - "range": null, - "title": "2.73V", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_VBAT_BROWNOUT_DET_LVL_SEL_2", - "name": "ESP_VBAT_BROWNOUT_DET_LVL_SEL_2", - "range": null, - "title": "2.67V", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_VBAT_BROWNOUT_DET_LVL_SEL_1", - "name": "ESP_VBAT_BROWNOUT_DET_LVL_SEL_1", - "range": null, - "title": "2.62V", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_VBAT_BROWNOUT_DET_LVL_SEL_0", - "name": "ESP_VBAT_BROWNOUT_DET_LVL_SEL_0", - "range": null, - "title": "2.57V", - "type": "bool" - } - ], - "depends_on": "ESP_VBAT_INIT_AUTO", - "help": "The brownout detector will git a brownout signal when vbat brownout detected.", - "id": "component-config-hardware-settings-power-supplier-rtc-backup-battery-enable-vbat-power-supply-for-rtc-battery-vbat-brownout-voltage-level", - "name": "ESP_VBAT_BROWNOUT_DET_LVL_SEL", - "title": "VBAT brownout voltage level", - "type": "choice" - } - ], - "depends_on": "SOC_VBAT_SUPPORTED", - "help": "Enable this option to allow the use of a button cell battery to power the RTC (Real-Time Clock) domain.\nWhen this option is enabled, the hardware will configure VBAT as the power supply source for the RTC.\n\n- Ensure a compatible battery (2.5V ~ 3.6V) is connected to the VBAT pin.\n- The VBAT battery provides power to retain RTC state and keep low-power peripherals active\n during deep sleep.\n- When this option is disabled, the RTC battery input (VBAT) must not be left floating.", - "id": "ESP_VBAT_INIT_AUTO", - "name": "ESP_VBAT_INIT_AUTO", - "range": null, - "title": "Enable VBAT power supply for RTC battery", - "type": "bool" - }, - { - "children": [], - "depends_on": "!ESP_VBAT_USE_RECHARGEABLE_BATTERY", - "help": "Wake up the chip if the vbat voltage drops below the brownout voltage during deepsleep.", - "id": "ESP_VBAT_WAKEUP_CHIP_ON_VBAT_BROWNOUT", - "name": "ESP_VBAT_WAKEUP_CHIP_ON_VBAT_BROWNOUT", - "range": null, - "title": "Wake up chip in deepsleep if VBAT brownout", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_VBAT_USE_RECHARGEABLE_BATTERY", - "help": null, - "id": "ESP_VBAT_DET_LVL_LOW", - "name": "ESP_VBAT_DET_LVL_LOW", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_VBAT_USE_RECHARGEABLE_BATTERY", - "help": null, - "id": "ESP_VBAT_DET_LVL_HIGH", - "name": "ESP_VBAT_DET_LVL_HIGH", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_VBAT_BROWNOUT_DET_LVL", - "name": "ESP_VBAT_BROWNOUT_DET_LVL", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_VBAT_USE_RECHARGEABLE_BATTERY", - "help": "The resistor value of charger circuit.", - "id": "ESP_VBAT_CHARGER_CIRCUIT_RESISTOR_VAL", - "name": "ESP_VBAT_CHARGER_CIRCUIT_RESISTOR_VAL", - "range": null, - "title": "vbat charger circuit resistor value (ohms), should be multiple of 500", - "type": "int" - } - ], - "depends_on": null, - "id": "component-config-hardware-settings-power-supplier-rtc-backup-battery", - "title": "RTC Backup Battery", - "type": "menu" - } - ], - "depends_on": null, - "id": "component-config-hardware-settings-power-supplier", - "title": "Power Supplier", - "type": "menu" - }, - { - "children": [], - "depends_on": null, - "help": "This option is only used for new chip bringup, when\nclock support isn't done yet. So with this option,\nwe use xtal on FPGA as the clock source.", - "id": "ESP_BRINGUP_BYPASS_CPU_CLK_SETTING", - "name": "ESP_BRINGUP_BYPASS_CPU_CLK_SETTING", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "This option is only used for new chip bringup, when\nRNG isn't done yet. So with this option, we use 0x5A\nto fill the random buffers", - "id": "ESP_BRINGUP_BYPASS_RANDOM_SETTING", - "name": "ESP_BRINGUP_BYPASS_RANDOM_SETTING", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_SPI_BUS_LOCK_ISR_FUNCS_IN_IRAM", - "name": "ESP_SPI_BUS_LOCK_ISR_FUNCS_IN_IRAM", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_SPI_BUS_LOCK_FUNCS_IN_IRAM", - "name": "ESP_SPI_BUS_LOCK_FUNCS_IN_IRAM", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Due to the poor low-temperature characteristics of\nRC32K (it cannot operate below -40 degrees Celsius),\nplease avoid using it whenever possible", - "id": "ESP_CLK_RC32K_NOT_TO_USE", - "name": "ESP_CLK_RC32K_NOT_TO_USE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_PMU_PVT_SUPPORTED", - "help": "If enabled, hp & lp voltage can be auto adjust by PVT characteristic.\nOtherwise, internal voltage will be set to fix dbias.\nThis is a must for stable mass production. Disable for debugging only.", - "id": "ESP_ENABLE_PVT", - "name": "ESP_ENABLE_PVT", - "range": null, - "title": "Auto adjust hp & lp voltage using pvt function (MUST ENABLE FOR MP)", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_INTR_IN_IRAM", - "name": "ESP_INTR_IN_IRAM", - "range": null, - "title": "Place esp_intr_alloc functions in IRAM", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-hardware-settings", - "title": "Hardware Settings", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "ESP_MM_CACHE_MSYNC_C2M_CHUNKED_OPS", - "help": "Max len in bytes per C2M chunk, operations with size over the max len will be\nsliced into multiple chunks.", - "id": "ESP_MM_CACHE_MSYNC_C2M_CHUNKED_OPS_MAX_LEN", - "name": "ESP_MM_CACHE_MSYNC_C2M_CHUNKED_OPS_MAX_LEN", - "range": null, - "title": "Max len in bytes per C2M chunk", - "type": "hex" - } - ], - "depends_on": "SOC_CACHE_WRITEBACK_SUPPORTED", - "help": "`esp_cache_msync` C2M direction takes critical sections, which means during\nthe operation, the interrupts are disabled. Whereas Cache writebacks for\nlarge buffers could be especially time intensive, and might cause interrupts\nto be disabled for a significant amount of time.\n\nSometimes you want other ISRs to be responded during this C2M process.\nThis option is to slice one C2M operation into multiple chunks,\nwith CONFIG_ESP_MM_CACHE_MSYNC_C2M_CHUNKED_OPS_MAX_LEN max len. This will give you\na breath during the C2M process as sometimes the C2M process is quite long.\n\nNote if the buffer processed by the `esp_cache_msync` (C2M sliced) is interrupted by an ISR,\nand this ISR also accesses this buffer, this may lead to data coherence issue.", - "id": "ESP_MM_CACHE_MSYNC_C2M_CHUNKED_OPS", - "name": "ESP_MM_CACHE_MSYNC_C2M_CHUNKED_OPS", - "range": null, - "title": "Enable esp_cache_msync C2M chunked operation", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-esp-mm-memory-management-configurations", - "title": "ESP-MM: Memory Management Configurations", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": "The value of 0 indicates the IP lost timer is disabled, otherwise the timer is enabled.\n\nThe IP address may be lost because of some reasons, e.g. when the station disconnects\nfrom soft-AP, or when DHCP IP renew fails etc. If the IP lost timer is enabled, it will\nbe started every time the IP is lost. Event SYSTEM_EVENT_STA_LOST_IP will be raised if\nthe timer expires. The IP lost timer is stopped if the station get the IP again before\nthe timer expires.", - "id": "ESP_NETIF_IP_LOST_TIMER_INTERVAL", - "name": "ESP_NETIF_IP_LOST_TIMER_INTERVAL", - "range": [ - 0, - 65535 - ], - "title": "IP Address lost timer interval (seconds)", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "No implementation of ESP-NETIF functions is provided.\nThis option is used for adding a custom TCP/IP stack and defining related\nesp_netif functionality", - "id": "ESP_NETIF_PROVIDE_CUSTOM_IMPLEMENTATION", - "name": "ESP_NETIF_PROVIDE_CUSTOM_IMPLEMENTATION", - "range": null, - "title": "Use only ESP-NETIF headers", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "LWIP_ENABLE && ", - "help": "lwIP is a small independent implementation of the TCP/IP protocol suite.", - "id": "ESP_NETIF_TCPIP_LWIP", - "name": "ESP_NETIF_TCPIP_LWIP", - "range": null, - "title": "LwIP", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "Dummy implementation of esp-netif functionality which connects driver transmit\nto receive function. This option is for testing purpose only", - "id": "ESP_NETIF_LOOPBACK", - "name": "ESP_NETIF_LOOPBACK", - "range": null, - "title": "Loopback", - "type": "bool" - } - ], - "depends_on": "!ESP_NETIF_PROVIDE_CUSTOM_IMPLEMENTATION", - "help": "Choose the TCP/IP Stack to work, for example, LwIP, uIP, etc.", - "id": "component-config-esp-netif-adapter-tcp-ip-stack-library", - "name": "ESP_NETIF_USE_TCPIP_STACK_LIB", - "title": "TCP/IP Stack Library", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_NETIF_USES_TCPIP_WITH_BSD_API", - "name": "ESP_NETIF_USES_TCPIP_WITH_BSD_API", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enable if esp_netif_transmit() and esp_netif_receive() should generate events. This can be useful\nto blink data traffic indication lights.", - "id": "ESP_NETIF_REPORT_DATA_TRAFFIC", - "name": "ESP_NETIF_REPORT_DATA_TRAFFIC", - "range": null, - "title": "Report data traffic via events", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enable if esp_netif_receive() should return error code. This is useful to inform upper layers\nthat packet input to TCP/IP stack failed, so the upper layers could implement flow control.\nThis option is disabled by default due to backward compatibility and will be enabled in v6.0 (IDF-7194)", - "id": "ESP_NETIF_RECEIVE_REPORT_ERRORS", - "name": "ESP_NETIF_RECEIVE_REPORT_ERRORS", - "range": null, - "title": "Use esp_err_t to report errors from esp_netif_receive", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "ESP_NETIF_L2_TAP", - "help": "Maximum number of opened File descriptors (FD's) associated with ESP TAP device. ESP TAP FD's take up\na certain amount of memory, and allowing fewer FD's to be opened at the same time conserves memory.", - "id": "ESP_NETIF_L2_TAP_MAX_FDS", - "name": "ESP_NETIF_L2_TAP_MAX_FDS", - "range": null, - "title": "Maximum number of opened L2 TAP File descriptors", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_NETIF_L2_TAP", - "help": "Maximum number of frames queued in opened File descriptor. Once the queue is full, the newly arriving\nframes are dropped until the queue has enough room to accept incoming traffic (Tail Drop queue\nmanagement).", - "id": "ESP_NETIF_L2_TAP_RX_QUEUE_SIZE", - "name": "ESP_NETIF_L2_TAP_RX_QUEUE_SIZE", - "range": null, - "title": "Size of L2 TAP Rx queue", - "type": "int" - } - ], - "depends_on": null, - "help": "A user program can read/write link layer (L2) frames from/to ESP TAP device.\nThe ESP TAP device can be currently associated only with Ethernet physical interfaces.", - "id": "ESP_NETIF_L2_TAP", - "name": "ESP_NETIF_L2_TAP", - "range": null, - "title": "Enable netif L2 TAP support", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_NETIF_TCPIP_LWIP", - "help": "Enable LwIP IEEE 802.1D bridge support in ESP-NETIF. Note that \"Number of clients store data in netif\"\n(LWIP_NUM_NETIF_CLIENT_DATA) option needs to be properly configured to be LwIP bridge available!", - "id": "ESP_NETIF_BRIDGE_EN", - "name": "ESP_NETIF_BRIDGE_EN", - "range": null, - "title": "Enable LwIP IEEE 802.1D bridge", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enable this option to use the DNS server which belongs to the selected default network interface.\nThis feature collects DNS server and netif information from LWIP core modules.\nWhenever a new default netif is selected, global DNS servers in LWIP are updated with the netif\nrelated servers.", - "id": "ESP_NETIF_SET_DNS_PER_DEFAULT_NETIF", - "name": "ESP_NETIF_SET_DNS_PER_DEFAULT_NETIF", - "range": null, - "title": "Enable DNS server per interface", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-esp-netif-adapter", - "title": "ESP NETIF Adapter", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "IDF_TARGET_LINUX", - "help": "This option enables gathering host test statistics and SPI flash wear levelling simulation.", - "id": "ESP_PARTITION_ENABLE_STATS", - "name": "ESP_PARTITION_ENABLE_STATS", - "range": null, - "title": "Host test statistics enabled", - "type": "bool" - }, - { - "children": [], - "depends_on": "IDF_TARGET_LINUX", - "help": "This option controls whether the partition implementation checks\nif the flash is erased before writing to it.\nThis is necessary for SPIFFS, which expects to be able to write without erasing first.", - "id": "ESP_PARTITION_ERASE_CHECK", - "name": "ESP_PARTITION_ERASE_CHECK", - "range": null, - "title": "Check if flash is erased before writing", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-partition-api-configuration", - "title": "Partition API Configuration", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_PHY_ENABLED", - "name": "ESP_PHY_ENABLED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_PHY_ENABLED", - "help": "If this option is enabled, NVS will be initialized and calibration data will be loaded from there.\nPHY calibration will be skipped on deep sleep wakeup. If calibration data is not found, full\ncalibration will be performed and stored in NVS. Normally, only partial calibration will be performed.\nIf this option is disabled, full calibration will be performed.\n\nIf it's easy that your board calibrate bad data, choose 'n'.\nTwo cases for example, you should choose 'n':\n1.If your board is easy to be booted up with antenna disconnected.\n2.Because of your board design, each time when you do calibration, the result are too unstable.\nIf unsure, choose 'y'.", - "id": "ESP_PHY_CALIBRATION_AND_DATA_STORAGE", - "name": "ESP_PHY_CALIBRATION_AND_DATA_STORAGE", - "range": null, - "title": "Store phy calibration data in NVS", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "ESP_PHY_INIT_DATA_IN_PARTITION && ESP_PHY_ENABLED", - "help": "If enabled, PHY init data will be restored to default if\nit cannot be verified successfully to avoid endless bootloops.\n\nIf unsure, choose 'n'.", - "id": "ESP_PHY_DEFAULT_INIT_IF_INVALID", - "name": "ESP_PHY_DEFAULT_INIT_IF_INVALID", - "range": null, - "title": "Reset default PHY init data if invalid", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "ESP_PHY_MULTIPLE_INIT_DATA_BIN && ESP_PHY_INIT_DATA_IN_PARTITION && ESP_PHY_ENABLED", - "help": "If enabled, multiple phy init data bin will embedded into app bin\nIf not enabled, multiple phy init data bin will still leave alone, and need to be flashed by users.", - "id": "ESP_PHY_MULTIPLE_INIT_DATA_BIN_EMBED", - "name": "ESP_PHY_MULTIPLE_INIT_DATA_BIN_EMBED", - "range": null, - "title": "Support embedded multiple phy init data bin to app bin", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_PHY_MULTIPLE_INIT_DATA_BIN && ESP_PHY_INIT_DATA_IN_PARTITION && ESP_PHY_ENABLED", - "help": "If enabled, when an error occurs while the PHY init data is updated,\nthe program will terminate and restart.\nIf not enabled, the PHY init data will not be updated when an error occurs.", - "id": "ESP_PHY_INIT_DATA_ERROR", - "name": "ESP_PHY_INIT_DATA_ERROR", - "range": null, - "title": "Terminate operation when PHY init data error", - "type": "bool" - } - ], - "depends_on": "ESP_PHY_INIT_DATA_IN_PARTITION && ESP_PHY_INIT_DATA_IN_PARTITION && ESP_PHY_ENABLED", - "help": "If enabled, the corresponding PHY init data type can be automatically switched\naccording to the country code. China's PHY init data bin is used by default.\nCan be modified by country information in API esp_wifi_set_country().\nThe priority of switching the PHY init data type is:\n1. Country configured by API esp_wifi_set_country()\nand the parameter policy is WIFI_COUNTRY_POLICY_MANUAL.\n2. Country notified by the connected AP.\n3. Country configured by API esp_wifi_set_country()\nand the parameter policy is WIFI_COUNTRY_POLICY_AUTO.", - "id": "ESP_PHY_MULTIPLE_INIT_DATA_BIN", - "name": "ESP_PHY_MULTIPLE_INIT_DATA_BIN", - "range": null, - "title": "Support multiple PHY init data bin", - "type": "bool" - } - ], - "depends_on": "SOC_WIFI_SUPPORTED && ESP_PHY_ENABLED", - "help": "If enabled, PHY init data will be loaded from a partition.\nWhen using a custom partition table, make sure that PHY data\npartition is included (type: 'data', subtype: 'phy').\nWith default partition tables, this is done automatically.\nIf PHY init data is stored in a partition, it has to be flashed there,\notherwise runtime error will occur.\n\nIf this option is not enabled, PHY init data will be embedded\ninto the application binary.\n\nIf unsure, choose 'n'.", - "id": "ESP_PHY_INIT_DATA_IN_PARTITION", - "is_menuconfig": true, - "name": "ESP_PHY_INIT_DATA_IN_PARTITION", - "range": null, - "title": "Use a partition to store PHY init data", - "type": "menu" - }, - { - "children": [], - "depends_on": "ESP_PHY_ENABLED", - "help": "Set maximum transmit power for WiFi radio. Actual transmit power for high\ndata rates may be lower than this setting.", - "id": "ESP_PHY_MAX_WIFI_TX_POWER", - "name": "ESP_PHY_MAX_WIFI_TX_POWER", - "range": [ - 10, - 20 - ], - "title": "Max WiFi TX power (dBm)", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_PHY_ENABLED", - "help": null, - "id": "ESP_PHY_MAX_TX_POWER", - "name": "ESP_PHY_MAX_TX_POWER", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": "SOC_PM_SUPPORT_MAC_BB_PD && FREERTOS_USE_TICKLESS_IDLE && ESP_PHY_ENABLED", - "help": "If enabled, the MAC and baseband of Wi-Fi and Bluetooth will be powered\ndown when PHY is disabled. Enabling this setting reduces power consumption\nby a small amount but increases RAM use by approximately 4 KB(Wi-Fi only),\n2 KB(Bluetooth only) or 5.3 KB(Wi-Fi + Bluetooth).", - "id": "ESP_PHY_MAC_BB_PD", - "name": "ESP_PHY_MAC_BB_PD", - "range": null, - "title": "Power down MAC and baseband of Wi-Fi and Bluetooth when PHY is disabled", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_BROWNOUT_DET && ESP_PHY_ENABLED", - "help": "When brownout reset occurs, reduce PHY TX power to keep the code running.", - "id": "ESP_PHY_REDUCE_TX_POWER", - "name": "ESP_PHY_REDUCE_TX_POWER", - "range": null, - "title": "Reduce PHY TX power when brownout reset", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_WIFI_PHY_NEEDS_USB_WORKAROUND && ESP_PHY_ENABLED", - "help": "On some ESP targets, the USB PHY can interfere with WiFi thus lowering WiFi performance.\nAs a result, on those affected ESP targets, the ESP PHY library's initialization will automatically\ndisable the USB PHY to get best WiFi performance.\nThis option controls whether or not the ESP PHY library will keep the USB PHY enabled on\ninitialization.\n\nNote: This option can be disabled to increase WiFi performance. However, disabling this option will\nalso mean that the USB PHY cannot be used while WiFi is enabled.", - "id": "ESP_PHY_ENABLE_USB", - "name": "ESP_PHY_ENABLE_USB", - "range": null, - "title": "Keep the USB PHY enabled when initializing WiFi", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_PHY_ENABLED", - "help": "If enabled, you can use RF certification test APIs.", - "id": "ESP_PHY_ENABLE_CERT_TEST", - "name": "ESP_PHY_ENABLE_CERT_TEST", - "range": null, - "title": "Enable RF certification test functions", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_PHY_RF_CAL_PARTIAL", - "name": "ESP_PHY_RF_CAL_PARTIAL", - "range": null, - "title": "Calibration partial", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_PHY_RF_CAL_NONE", - "name": "ESP_PHY_RF_CAL_NONE", - "range": null, - "title": "Calibration none", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_PHY_RF_CAL_FULL", - "name": "ESP_PHY_RF_CAL_FULL", - "range": null, - "title": "Calibration full", - "type": "bool" - } - ], - "depends_on": "ESP_PHY_ENABLED", - "help": "Select PHY calibration mode. During RF initialization, the partial calibration\nmethod is used by default for RF calibration. Full calibration takes about 100ms\nmore than partial calibration. If boot duration is not critical, it is suggested\nto use the full calibration method. No calibration method is only used when the\ndevice wakes up from deep sleep.", - "id": "component-config-phy-calibration-mode", - "name": "ESP_PHY_CALIBRATION_MODE", - "title": "Calibration mode", - "type": "choice" - }, - { - "children": [], - "depends_on": "ESP_PHY_ENABLED", - "help": null, - "id": "ESP_PHY_CALIBRATION_MODE", - "name": "ESP_PHY_CALIBRATION_MODE", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": "SOC_PHY_IMPROVE_RX_11B && ESP_PHY_ENABLED", - "help": "This is a workaround to improve Wi-Fi receive 11b pkts for some modules using AC-DC power supply with\nhigh interference, enable this option will sacrifice Wi-Fi OFDM receive performance.\nBut to guarantee 11b receive performance serves as a bottom line in this case.", - "id": "ESP_PHY_IMPROVE_RX_11B", - "name": "ESP_PHY_IMPROVE_RX_11B", - "range": null, - "title": "Improve Wi-Fi receive 11b pkts", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_PHY_ENABLED", - "help": "Set the period of the pll track.", - "id": "ESP_PHY_PLL_TRACK_PERIOD_MS", - "name": "ESP_PHY_PLL_TRACK_PERIOD_MS", - "range": null, - "title": "Set the period of the pll track", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_PHY_ENABLED", - "help": "If enabled, there will be some logs while pll tracking", - "id": "ESP_PHY_PLL_TRACK_DEBUG", - "name": "ESP_PHY_PLL_TRACK_DEBUG", - "range": null, - "title": "Enable pll track logging", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_PHY_ENABLED", - "help": "Select to support record and query phy used time.", - "id": "ESP_PHY_RECORD_USED_TIME", - "name": "ESP_PHY_RECORD_USED_TIME", - "range": null, - "title": "Record PHY used time", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_PHY_ENABLED", - "help": "Select this option to place frequently called PHY library functions in IRAM.\nWhen this option is disabled, more than 1.1Kbytes of IRAM memory will be saved,\nbut PHY performance will be reduced. This config only affect esp32c2 now.", - "id": "ESP_PHY_IRAM_OPT", - "name": "ESP_PHY_IRAM_OPT", - "range": null, - "title": "PHY IRAM speed optimization", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "ESP_PHY_DEBUG && ESP_PHY_ENABLED", - "help": "Disable pll track. This configuration option is used for experimental.\nPLL track helps the PHY module adapt to temperature changes, ensuring stable performance.\nWhen pll enabled, the ESP PHY module will periodically track and adjust PLL parameters.", - "id": "ESP_PHY_DISABLE_PLL_TRACK", - "name": "ESP_PHY_DISABLE_PLL_TRACK", - "range": null, - "title": "Disable phy pll track(only for experimental)", - "type": "bool" - } - ], - "depends_on": "ESP_PHY_ENABLED", - "help": "Enabling this option allows different kinds of phy debugging features.", - "id": "ESP_PHY_DEBUG", - "is_menuconfig": true, - "name": "ESP_PHY_DEBUG", - "range": null, - "title": "Enable PHY Debug", - "type": "menu" - } - ], - "depends_on": null, - "id": "component-config-phy", - "title": "PHY", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": null, - "id": "PM_SLEEP_FUNC_IN_IRAM", - "name": "PM_SLEEP_FUNC_IN_IRAM", - "range": null, - "title": "Place Power Management module functions in IRAM", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "PM_ENABLE", - "help": "If enabled, startup code configures dynamic frequency scaling.\nMax CPU frequency is set to DEFAULT_CPU_FREQ_MHZ setting,\nmin frequency is set to XTAL frequency.\nIf disabled, DFS will not be active until the application\nconfigures it using esp_pm_configure function.", - "id": "PM_DFS_INIT_AUTO", - "name": "PM_DFS_INIT_AUTO", - "range": null, - "title": "Enable dynamic frequency scaling (DFS) at startup", - "type": "bool" - }, - { - "children": [], - "depends_on": "PM_ENABLE", - "help": "If enabled, esp_pm_* functions will keep track of the amount of time\neach of the power management locks has been held, and esp_pm_dump_locks\nfunction will print this information.\nThis feature can be used to analyze which locks are preventing the chip\nfrom going into a lower power state, and see what time the chip spends\nin each power saving mode. This feature does incur some run-time\noverhead, so should typically be disabled in production builds.", - "id": "PM_PROFILING", - "name": "PM_PROFILING", - "range": null, - "title": "Enable profiling counters for PM locks", - "type": "bool" - }, - { - "children": [], - "depends_on": "PM_ENABLE", - "help": "If enabled, some GPIOs will be used to signal events such as RTOS ticks,\nfrequency switching, entry/exit from idle state. Refer to pm_trace.c\nfile for the list of GPIOs.\nThis feature is intended to be used when analyzing/debugging behavior\nof power management implementation, and should be kept disabled in\napplications.", - "id": "PM_TRACE", - "name": "PM_TRACE", - "range": null, - "title": "Enable debug tracing of PM using GPIOs", - "type": "bool" - } - ], - "depends_on": "(!FREERTOS_SMP && SOC_PM_SUPPORTED) || __DOXYGEN__", - "help": "If enabled, application is compiled with support for power management.\nThis option has run-time overhead (increased interrupt latency,\nlonger time to enter idle state), and it also reduces accuracy of\nRTOS ticks and timers used for timekeeping.\nEnable this option if application uses power management APIs.", - "id": "PM_ENABLE", - "name": "PM_ENABLE", - "range": null, - "title": "Support for power management", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_LIGHT_SLEEP_SUPPORTED", - "help": "If enabled, about 2.1KB of lightsleep related source code would be in IRAM and chip would sleep\nlonger for 310us at 160MHz CPU frequency most each time.\nThis feature is intended to be used when lower power consumption is needed\nwhile there is enough place in IRAM to place source code.", - "id": "PM_SLP_IRAM_OPT", - "name": "PM_SLP_IRAM_OPT", - "range": null, - "title": "Put lightsleep related codes in internal RAM", - "type": "bool" - }, - { - "children": [], - "depends_on": "FREERTOS_USE_TICKLESS_IDLE", - "help": "If enabled, about 180Bytes of RTOS_IDLE related source code would be in IRAM and chip would sleep\nlonger for 20us at 160MHz CPU frequency most each time.\nThis feature is intended to be used when lower power consumption is needed\nwhile there is enough place in IRAM to place source code.", - "id": "PM_RTOS_IDLE_OPT", - "name": "PM_RTOS_IDLE_OPT", - "range": null, - "title": "Put RTOS IDLE related codes in internal RAM", - "type": "bool" - }, - { - "children": [], - "depends_on": "FREERTOS_USE_TICKLESS_IDLE", - "help": "This feature is intended to disable all GPIO pins at automantic sleep to get a lower power mode.\nIf enabled, chips will disable all GPIO pins at automantic sleep to reduce about 200~300 uA current.\nIf you want to specifically use some pins normally as chip wakes when chip sleeps,\nyou can call 'gpio_sleep_sel_dis' to disable this feature on those pins.\nYou can also keep this feature on and call 'gpio_sleep_set_direction' and 'gpio_sleep_set_pull_mode'\nto have a different GPIO configuration at sleep.\nWarning: If you want to enable this option on ESP32, you should enable `GPIO_ESP32_SUPPORT_SWITCH_SLP_PULL`\nat first, otherwise you will not be able to switch pullup/pulldown mode.", - "id": "PM_SLP_DISABLE_GPIO", - "name": "PM_SLP_DISABLE_GPIO", - "range": null, - "title": "Disable all GPIO when chip at sleep", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "PM_SLP_DEFAULT_PARAMS_OPT", - "name": "PM_SLP_DEFAULT_PARAMS_OPT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "PM_POWER_DOWN_CPU_IN_LIGHT_SLEEP || (SOC_CPU_IN_TOP_DOMAIN && PM_POWER_DOWN_PERIPHERAL_IN_LIGHT_SLEEP)", - "help": "This option is invisible to users, and it is only used for ci testing,\nenabling it in the application will increase the sleep and wake-up time overhead", - "id": "PM_CHECK_SLEEP_RETENTION_FRAME", - "name": "PM_CHECK_SLEEP_RETENTION_FRAME", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "PM_ENABLE", - "help": "The value of this option determines the calibration interval of the RTC_FAST/SLOW clock during sleep when\npower management is enabled. When it is configured as N, the RTC_FAST/SLOW clock will be calibrated\nevery N times of lightsleep.\nDecreasing this value will increase the time the chip is in the active state, thereby increasing the\naverage power consumption of the chip.\nIncreasing this value can reduce the average power consumption, but when the external environment changes\ndrastically and the chip RTC_FAST/SLOW oscillator frequency drifts, it may cause system instability.", - "id": "PM_LIGHTSLEEP_RTC_OSC_CAL_INTERVAL", - "name": "PM_LIGHTSLEEP_RTC_OSC_CAL_INTERVAL", - "range": null, - "title": "Calibrate the RTC_FAST/SLOW clock every N times of light sleep", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "IDF_TARGET_ESP32S3 && PM_POWER_DOWN_CPU_IN_LIGHT_SLEEP", - "help": "Cache tag memory and CPU both belong to the CPU power domain.\nESP chips supports saving and restoring Cache tag memory before and after sleep,\nthis feature supports accesses to the external memory that was cached before sleep still\nbe cached when the CPU wakes up from a powerdowned CPU lightsleep.\nThis option controls the restore method for Cache tag memory in lightsleep.\nIf this option is enabled, the I/D-cache tag memory will be backuped to the internal RAM\nbefore sleep and restored upon wakeup.\nDepending on the the cache configuration, if this option is enabled,\nit will consume up to 9 KB of internal RAM.\nIf this option is disabled, all cached data won't be kept after sleep,\nthe DCache will be writeback before sleep and invalid all cached data after sleep,\nall accesses to external memory(Flash/PSRAM) will be cache missed after waking up,\nresulting in performance degradation due to increased memory accesses latency.", - "id": "PM_RESTORE_CACHE_TAGMEM_AFTER_LIGHT_SLEEP", - "name": "PM_RESTORE_CACHE_TAGMEM_AFTER_LIGHT_SLEEP", - "range": null, - "title": "Restore I/D-cache tag memory after power down CPU light sleep", - "type": "bool" - } - ], - "depends_on": "SOC_PM_SUPPORT_CPU_PD", - "help": "If enabled, the CPU will be powered down in light sleep,\nESP chips supports saving and restoring CPU's running context before and after light sleep,\nthe feature provides applications with seamless CPU powerdowned lightsleep without user awareness.\nBut this will takes up some internal memory.\nOn esp32c3 soc, enabling this option will consume 1.68 KB of internal RAM\nand will reduce sleep current consumption by about 100 uA.\nOn esp32s3 soc, enabling this option will consume 8.58 KB of internal RAM\nand will reduce sleep current consumption by about 650 uA.", - "id": "PM_POWER_DOWN_CPU_IN_LIGHT_SLEEP", - "name": "PM_POWER_DOWN_CPU_IN_LIGHT_SLEEP", - "range": null, - "title": "Power down CPU in light sleep", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_PM_SUPPORT_TOP_PD && SOC_PAU_SUPPORTED", - "help": "If enabled, digital peripherals will try to powered down in light sleep, then all related peripherals will\nnot be available during sleep, including wake-up sources from the peripherals (For detailed availability\ninformation, see the note of the corresponding wakeup source enable function).\nThe chip will automatically save/restore register context during sleep/wakeup to make the upper layer\nuser unaware of the peripheral powerdown during sleep. Enabling this option will increase static RAM and\nheap usage but will also significantly reduce power.\nconsumption during lightsleep, the actual memory cost depends on the peripherals you have initialized,\nfor specific power consumption data in this mode, please refer to Electrical Characteristics section\nin the chip datasheet.\n(In order to save/restore the context of the necessary hardware for FreeRTOS to run, it will need\nat least 4.55 KB free heap at sleep time. Otherwise sleep will not power down the peripherals.)\n\nNote1: Please use this option with caution, the current IDF does not support the retention of\nall peripherals. When the digital peripherals are powered off and a sleep and wake-up is completed,\nthe peripherals that have not saved the running context are equivalent to performing a reset.\n!!! Please confirm the peripherals used in your application and their sleep retention support status\nbefore enabling this option, peripherals sleep retention driver support status is tracked in\npower_management.rst\n\nNote2: When this option is enabled simultaneously with FREERTOS_USE_TICKLESS_IDLE, since the UART will\nbe powered down, the uart FIFO will be flushed before sleep to avoid data loss, however, this has the\npotential to block the sleep process and cause the wakeup time to be skipped, which will cause the tick\nof freertos to not be compensated correctly when returning from sleep and cause the system to crash.\nTo avoid this, you can increase FREERTOS_IDLE_TIME_BEFORE_SLEEP threshold in menuconfig.\n\nNote3: Enabling this option does not necessarily mean that the peripheral power domain will be\nturned down during sleep. The control priority of `esp_sleep_pd_config` is higher than this option,\nuser code can still prevent the peripheral power domain from powering down during sleep by\n`esp_sleep_pd_config(ESP_PD_DOMAIN_TOP, ESP_PD_OPTION_ON)`. In addition, whether the peripheral power\ndomain is powered down during sleep also depends on the sleep working strategy selected by the driver.\nIf any module belonging to the peripheral power domain chooses not to be powered down during sleep,\nthen the peripheral power domain will not be powered off either.", - "id": "PM_POWER_DOWN_PERIPHERAL_IN_LIGHT_SLEEP", - "name": "PM_POWER_DOWN_PERIPHERAL_IN_LIGHT_SLEEP", - "range": null, - "title": "Power down Digital Peripheral in light sleep (EXPERIMENTAL)", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "PM_UPDATE_CCOMPARE_HLI_WORKAROUND", - "name": "PM_UPDATE_CCOMPARE_HLI_WORKAROUND", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "FREERTOS_USE_TICKLESS_IDLE", - "help": "If enabled, it allows user to register entry and exit callbacks which are called before and after\nentering auto light sleep.\n\nNOTE: These callbacks are executed from the IDLE task context hence you cannot have any blocking calls\nin your callbacks.\n\nNOTE: Enabling these callbacks may change sleep duration calculations based on time spent in callback and\nhence it is highly recommended to keep them as short as possible", - "id": "PM_LIGHT_SLEEP_CALLBACKS", - "name": "PM_LIGHT_SLEEP_CALLBACKS", - "range": null, - "title": "Enable registration of pm light sleep callbacks", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-power-management", - "title": "Power Management", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "RINGBUF_PLACE_FUNCTIONS_INTO_FLASH", - "help": "Place ISR ringbuf functions (like xRingbufferSendFromISR/xRingbufferReceiveFromISR) into flash.\nThis frees up IRAM, but the functions can no longer be called when the cache is disabled\nor from an IRAM interrupt context.\n\nThis option is not compatible with ESP-IDF drivers which are configured to\nrun the ISR from an IRAM context, e.g. CONFIG_UART_ISR_IN_IRAM.", - "id": "RINGBUF_PLACE_ISR_FUNCTIONS_INTO_FLASH", - "name": "RINGBUF_PLACE_ISR_FUNCTIONS_INTO_FLASH", - "range": null, - "title": "Place ISR ringbuf functions into flash", - "type": "bool" - } - ], - "depends_on": null, - "help": "Place non-ISR ringbuf functions (like xRingbufferCreate/xRingbufferSend) into flash.\nThis frees up IRAM, but the functions can no longer be called when the cache is disabled.", - "id": "RINGBUF_PLACE_FUNCTIONS_INTO_FLASH", - "name": "RINGBUF_PLACE_FUNCTIONS_INTO_FLASH", - "range": null, - "title": "Place non-ISR ringbuf functions into flash", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-esp-ringbuf", - "title": "ESP Ringbuf", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_ROM_PRINT_IN_IRAM", - "name": "ESP_ROM_PRINT_IN_IRAM", - "range": null, - "title": "Place print functions in IRAM", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-esp-rom", - "title": "ESP-ROM", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_CRYPTO_DPA_PROTECTION_LEVEL_LOW", - "name": "ESP_CRYPTO_DPA_PROTECTION_LEVEL_LOW", - "range": null, - "title": "Security level low", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_CRYPTO_DPA_PROTECTION_LEVEL_MEDIUM", - "name": "ESP_CRYPTO_DPA_PROTECTION_LEVEL_MEDIUM", - "range": null, - "title": "Security level medium", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_CRYPTO_DPA_PROTECTION_LEVEL_HIGH", - "name": "ESP_CRYPTO_DPA_PROTECTION_LEVEL_HIGH", - "range": null, - "title": "Security level high", - "type": "bool" - } - ], - "depends_on": "ESP_CRYPTO_DPA_PROTECTION_AT_STARTUP && SOC_CRYPTO_DPA_PROTECTION_SUPPORTED", - "help": "Configure the DPA protection security level", - "id": "component-config-esp-security-specific-crypto-dpa-protection-enable-crypto-dpa-protection-at-startup-dpa-protection-level", - "name": "ESP_CRYPTO_DPA_PROTECTION_LEVEL", - "title": "DPA protection level", - "type": "choice" - } - ], - "depends_on": "SOC_CRYPTO_DPA_PROTECTION_SUPPORTED", - "help": "This config controls the DPA (Differential Power Analysis) protection\nknob for the crypto peripherals. DPA protection dynamically adjusts\nclock frequency of the crypto peripheral. DPA protection helps to make it\ndifficult to perform SCA attacks on the crypto peripherals. However,\nthere is also associated performance impact based on the security level\nset. Please refer to the TRM for more details.", - "id": "ESP_CRYPTO_DPA_PROTECTION_AT_STARTUP", - "name": "ESP_CRYPTO_DPA_PROTECTION_AT_STARTUP", - "range": null, - "title": "Enable crypto DPA protection at startup", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_CRYPTO_DPA_PROTECTION_SUPPORTED", - "help": null, - "id": "ESP_CRYPTO_DPA_PROTECTION_LEVEL", - "name": "ESP_CRYPTO_DPA_PROTECTION_LEVEL", - "range": null, - "title": null, - "type": "int" - } - ], - "depends_on": "SOC_CRYPTO_DPA_PROTECTION_SUPPORTED", - "id": "component-config-esp-security-specific-crypto-dpa-protection", - "title": "Crypto DPA Protection", - "type": "menu" - }, - { - "children": [], - "depends_on": "SOC_ECC_CONSTANT_TIME_POINT_MUL", - "help": "If enabled, the app startup code will burn the ECC_FORCE_CONST_TIME efuse bit to force the\nECC peripheral to always perform constant time point multiplication operations,\nirrespective of the ECC_MULT_SECURITY_MODE status bit that is present in the ECC_MULT_CONF_REG\nregister. By default, ESP-IDF configures the ECC peripheral to perform constant time point\nmultiplication operations, so enabling this config would provide security enhancement only in\nthe cases when trusted boot is not enabled and the attacker tries carrying out non-constant\ntime point multiplication operations by changing the default ESP-IDF configurations.\nPerforming constant time operations protect the ECC multiplication operations from timing attacks.", - "id": "ESP_CRYPTO_FORCE_ECC_CONSTANT_TIME_POINT_MUL", - "name": "ESP_CRYPTO_FORCE_ECC_CONSTANT_TIME_POINT_MUL", - "range": null, - "title": "Forcefully enable ECC constant time point multiplication operations", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_ECDSA_P192_CURVE_DEFAULT_DISABLED", - "help": "By default, only the 256-bit curve operations are allowed. If this configuration is enabled,\nit will set the eFuse to allow ECDSA operations using both the 192-bit and 256-bit curves.", - "id": "ESP_ECDSA_ENABLE_P192_CURVE", - "name": "ESP_ECDSA_ENABLE_P192_CURVE", - "range": null, - "title": "Enable ECDSA 192-curve operations", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-esp-security-specific", - "title": "ESP Security Specific", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "IDF_ENV_FPGA && ", - "help": null, - "id": "ESP_DEFAULT_CPU_FREQ_MHZ_16", - "name": "ESP_DEFAULT_CPU_FREQ_MHZ_16", - "range": null, - "title": "16 MHz", - "type": "bool" - }, - { - "children": [], - "depends_on": "IDF_ENV_FPGA && ", - "help": null, - "id": "ESP_DEFAULT_CPU_FREQ_MHZ_32", - "name": "ESP_DEFAULT_CPU_FREQ_MHZ_32", - "range": null, - "title": "32 MHz", - "type": "bool" - }, - { - "children": [], - "depends_on": "!IDF_ENV_FPGA && ", - "help": null, - "id": "ESP_DEFAULT_CPU_FREQ_MHZ_48", - "name": "ESP_DEFAULT_CPU_FREQ_MHZ_48", - "range": null, - "title": "48 MHz", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_DEFAULT_CPU_FREQ_MHZ_64", - "name": "ESP_DEFAULT_CPU_FREQ_MHZ_64", - "range": null, - "title": "64 MHz", - "type": "bool" - }, - { - "children": [], - "depends_on": "!IDF_ENV_FPGA && ", - "help": null, - "id": "ESP_DEFAULT_CPU_FREQ_MHZ_96", - "name": "ESP_DEFAULT_CPU_FREQ_MHZ_96", - "range": null, - "title": "96 MHz", - "type": "bool" - } - ], - "depends_on": null, - "help": "CPU frequency to be set on application startup.", - "id": "component-config-esp-system-settings-cpu-frequency", - "name": "ESP_DEFAULT_CPU_FREQ_MHZ", - "title": "CPU frequency", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_DEFAULT_CPU_FREQ_MHZ", - "name": "ESP_DEFAULT_CPU_FREQ_MHZ", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "The following system functions will be placed in IRAM if this option is enabled:\n- system startup\n- system time\n- system error\n- system restart\n- system crosscore\n- system debug\n- system APB backup DMA lock\n- system application tick hook\n- Unified Behavior Sanitizer (UBSAN) hook\n- Interrupt watchdog handler\n- XTAL32K watchdog timer\n- USB CDC functions for the esp_rom_printf (if ESP_CONSOLE_USB_CDC_SUPPORT_ETS_PRINTF=y)\n- IPC and IPC ISR", - "id": "ESP_SYSTEM_IN_IRAM", - "name": "ESP_SYSTEM_IN_IRAM", - "range": null, - "title": "Place system functions in IRAM", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "!ESP_SYSTEM_GDBSTUB_RUNTIME && ", - "help": "Outputs the relevant registers over the serial port and halt the\nprocessor. Needs a manual reset to restart.", - "id": "ESP_SYSTEM_PANIC_PRINT_HALT", - "name": "ESP_SYSTEM_PANIC_PRINT_HALT", - "range": null, - "title": "Print registers and halt", - "type": "bool" - }, - { - "children": [], - "depends_on": "!ESP_SYSTEM_GDBSTUB_RUNTIME && ", - "help": "Outputs the relevant registers over the serial port and immediately\nreset the processor.", - "id": "ESP_SYSTEM_PANIC_PRINT_REBOOT", - "name": "ESP_SYSTEM_PANIC_PRINT_REBOOT", - "range": null, - "title": "Print registers and reboot", - "type": "bool" - }, - { - "children": [], - "depends_on": "!ESP_SYSTEM_GDBSTUB_RUNTIME && ", - "help": "Just resets the processor without outputting anything", - "id": "ESP_SYSTEM_PANIC_SILENT_REBOOT", - "name": "ESP_SYSTEM_PANIC_SILENT_REBOOT", - "range": null, - "title": "Silent reboot", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_GDBSTUB_ENABLED && ", - "help": "Invoke gdbstub on the serial port, allowing for gdb to attach to it to do a postmortem\nof the crash.", - "id": "ESP_SYSTEM_PANIC_GDBSTUB", - "name": "ESP_SYSTEM_PANIC_GDBSTUB", - "range": null, - "title": "GDBStub on panic", - "type": "bool" - } - ], - "depends_on": null, - "help": "If FreeRTOS detects unexpected behaviour or an unhandled exception, the panic handler is\ninvoked. Configure the panic handler's action here.", - "id": "component-config-esp-system-settings-panic-handler-behaviour", - "name": "ESP_SYSTEM_PANIC", - "title": "Panic handler behaviour", - "type": "choice" - }, - { - "children": [], - "depends_on": "ESP_SYSTEM_PANIC_PRINT_REBOOT", - "help": "After the panic handler executes, you can specify a number of seconds to\nwait before the device reboots.", - "id": "ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS", - "name": "ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS", - "range": null, - "title": "Panic reboot delay (Seconds)", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Only initialize and use the main core.", - "id": "ESP_SYSTEM_SINGLE_CORE_MODE", - "name": "ESP_SYSTEM_SINGLE_CORE_MODE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_SYSTEM_RTC_EXT_XTAL", - "name": "ESP_SYSTEM_RTC_EXT_XTAL", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_SYSTEM_RTC_EXT_OSC", - "name": "ESP_SYSTEM_RTC_EXT_OSC", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_SYSTEM_RTC_EXT_XTAL", - "help": "To reduce the startup time of an external RTC crystal,\nwe bootstrap it with a 32kHz square wave for a fixed number of cycles.\nSetting 0 will disable bootstrapping (if disabled, the crystal may take\nlonger to start up or fail to oscillate under some conditions).\n\nIf this value is too high, a faulty crystal may initially start and then fail.\nIf this value is too low, an otherwise good crystal may not start.\n\nTo accurately determine if the crystal has started,\nset a larger \"Number of cycles for RTC_SLOW_CLK calibration\" (about 3000).", - "id": "ESP_SYSTEM_RTC_EXT_XTAL_BOOTSTRAP_CYCLES", - "name": "ESP_SYSTEM_RTC_EXT_XTAL_BOOTSTRAP_CYCLES", - "range": null, - "title": "Bootstrap cycles for external 32kHz crystal", - "type": "int" - }, - { - "children": [], - "depends_on": "SOC_RTC_FAST_MEM_SUPPORTED", - "help": null, - "id": "ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK", - "name": "ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK", - "help": "This config option allows to add RTC fast memory region to system heap with capability\nsimilar to that of DRAM region but without DMA. Speed wise RTC fast memory operates on\nAPB clock and hence does not have much performance impact.", - "id": "ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP", - "name": "ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP", - "range": null, - "title": "Enable RTC fast memory for dynamic allocations", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": "When selected, no backtracing will be performed at runtime. By using idf.py monitor, it\nis still possible to get a backtrace when a panic occurs.", - "id": "ESP_SYSTEM_NO_BACKTRACE", - "name": "ESP_SYSTEM_NO_BACKTRACE", - "range": null, - "title": "No backtracing", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "Generate DWARF information for each function of the project. These information will parsed and used to\nperform backtracing when panics occur. Activating this option will activate asynchronous frame\nunwinding and generation of both .eh_frame and .eh_frame_hdr sections, resulting in a bigger binary\nsize (20% to 100% larger). The main purpose of this option is to be able to have a backtrace parsed\nand printed by the program itself, regardless of the serial monitor used.\nThis option is not recommended to be used for production.", - "id": "ESP_SYSTEM_USE_EH_FRAME", - "name": "ESP_SYSTEM_USE_EH_FRAME", - "range": null, - "title": "Generate and use eh_frame for backtracing", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "This configuration allows the compiler to allocate CPU register s0 as the frame pointer. The main usage\nof the frame pointer is to be able to generate a backtrace from the panic handler on exception.\nEnabling this option results in bigger and slightly slower code since all functions will have\nto populate this register and won't be able to use it as a general-purpose register anymore.", - "id": "ESP_SYSTEM_USE_FRAME_POINTER", - "name": "ESP_SYSTEM_USE_FRAME_POINTER", - "range": null, - "title": "Use CPU Frame Pointer register", - "type": "bool" - } - ], - "depends_on": "IDF_TARGET_ARCH_RISCV", - "help": "Configure how backtracing will be performed at runtime when a panic occurs.", - "id": "component-config-esp-system-settings-backtracing-method", - "name": "ESP_BACKTRACING_METHOD", - "title": "Backtracing method", - "type": "choice" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "IDF_TARGET_ARCH_RISCV && SOC_LP_CORE_SUPPORTED && ESP_SYSTEM_PMP_IDRAM_SPLIT", - "help": "If enabled, user can run code available in LP Core image.\n\nWarning: on ESP32-P4 this will also mark the memory area used for BOOTLOADER_RESERVE_RTC_MEM\nas executable. If you consider this a security risk then do not activate this option.", - "id": "ESP_SYSTEM_PMP_LP_CORE_RESERVE_MEM_EXECUTABLE", - "name": "ESP_SYSTEM_PMP_LP_CORE_RESERVE_MEM_EXECUTABLE", - "range": null, - "title": "Make LP core reserved memory executable from HP core", - "type": "bool" - } - ], - "depends_on": "SOC_CPU_IDRAM_SPLIT_USING_PMP && !SECURE_ENABLE_TEE", - "help": "If enabled, the CPU watches all the memory access and raises an exception in case\nof any memory violation. This feature automatically splits\nthe SRAM memory, using PMP, into data and instruction segments and sets Read/Execute permissions\nfor the instruction part (below given splitting address) and Read/Write permissions\nfor the data part (above the splitting address). The memory protection is effective\non all access through the IRAM0 and DRAM0 buses.", - "id": "ESP_SYSTEM_PMP_IDRAM_SPLIT", - "name": "ESP_SYSTEM_PMP_IDRAM_SPLIT", - "range": null, - "title": "Enable IRAM/DRAM split protection", - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_ENABLE_TEE", - "help": "This option enables the default memory protection provided by TEE.", - "id": "ESP_SYSTEM_MEMPROT_FEATURE_VIA_TEE", - "name": "ESP_SYSTEM_MEMPROT_FEATURE_VIA_TEE", - "range": null, - "title": "Enable memory protection (via TEE)", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "ESP_SYSTEM_MEMPROT_FEATURE", - "help": "Once locked, memory protection settings cannot be changed anymore.\nThe lock is reset only on the chip startup.", - "id": "ESP_SYSTEM_MEMPROT_FEATURE_LOCK", - "name": "ESP_SYSTEM_MEMPROT_FEATURE_LOCK", - "range": null, - "title": "Lock memory protection settings", - "type": "bool" - } - ], - "depends_on": "SOC_MEMPROT_SUPPORTED", - "help": "If enabled, the permission control module watches all the memory access and fires the panic handler\nif a permission violation is detected. This feature automatically splits\nthe SRAM memory into data and instruction segments and sets Read/Execute permissions\nfor the instruction part (below given splitting address) and Read/Write permissions\nfor the data part (above the splitting address). The memory protection is effective\non all access through the IRAM0 and DRAM0 buses.", - "id": "ESP_SYSTEM_MEMPROT_FEATURE", - "name": "ESP_SYSTEM_MEMPROT_FEATURE", - "range": null, - "title": "Enable memory protection", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-esp-system-settings-memory-protection", - "title": "Memory protection", - "type": "menu" - }, - { - "children": [], - "depends_on": null, - "help": "Config system event queue size in different application.", - "id": "ESP_SYSTEM_EVENT_QUEUE_SIZE", - "name": "ESP_SYSTEM_EVENT_QUEUE_SIZE", - "range": null, - "title": "System event queue size", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Config system event task stack size in different application.", - "id": "ESP_SYSTEM_EVENT_TASK_STACK_SIZE", - "name": "ESP_SYSTEM_EVENT_TASK_STACK_SIZE", - "range": null, - "title": "Event loop task stack size", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Configure the \"main task\" stack size. This is the stack of the task\nwhich calls app_main(). If app_main() returns then this task is deleted\nand its stack memory is freed.", - "id": "ESP_MAIN_TASK_STACK_SIZE", - "name": "ESP_MAIN_TASK_STACK_SIZE", - "range": null, - "title": "Main task stack size", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_MAIN_TASK_AFFINITY_CPU0", - "name": "ESP_MAIN_TASK_AFFINITY_CPU0", - "range": null, - "title": "CPU0", - "type": "bool" - }, - { - "children": [], - "depends_on": "!FREERTOS_UNICORE && ", - "help": null, - "id": "ESP_MAIN_TASK_AFFINITY_CPU1", - "name": "ESP_MAIN_TASK_AFFINITY_CPU1", - "range": null, - "title": "CPU1", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_MAIN_TASK_AFFINITY_NO_AFFINITY", - "name": "ESP_MAIN_TASK_AFFINITY_NO_AFFINITY", - "range": null, - "title": "No affinity", - "type": "bool" - } - ], - "depends_on": null, - "help": "Configure the \"main task\" core affinity. This is the used core of the task\nwhich calls app_main(). If app_main() returns then this task is deleted.", - "id": "component-config-esp-system-settings-main-task-core-affinity", - "name": "ESP_MAIN_TASK_AFFINITY", - "title": "Main task core affinity", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_MAIN_TASK_AFFINITY", - "name": "ESP_MAIN_TASK_AFFINITY", - "range": null, - "title": null, - "type": "hex" - }, - { - "children": [], - "depends_on": null, - "help": "Minimal value of size, in bytes, accepted to execute a expression\nwith shared stack.", - "id": "ESP_MINIMAL_SHARED_STACK_SIZE", - "name": "ESP_MINIMAL_SHARED_STACK_SIZE", - "range": null, - "title": "Minimal allowed size for shared stack", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_CONSOLE_UART_DEFAULT", - "name": "ESP_CONSOLE_UART_DEFAULT", - "range": null, - "title": "Default: UART0", - "type": "bool" - }, - { - "children": [], - "depends_on": "(IDF_TARGET_ESP32S2 || IDF_TARGET_ESP32S3) && !TINY_USB && ", - "help": null, - "id": "ESP_CONSOLE_USB_CDC", - "name": "ESP_CONSOLE_USB_CDC", - "range": null, - "title": "USB CDC", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_USB_SERIAL_JTAG_SUPPORTED && ", - "help": null, - "id": "ESP_CONSOLE_USB_SERIAL_JTAG", - "name": "ESP_CONSOLE_USB_SERIAL_JTAG", - "range": null, - "title": "USB Serial/JTAG Controller", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_CONSOLE_UART_CUSTOM", - "name": "ESP_CONSOLE_UART_CUSTOM", - "range": null, - "title": "Custom UART", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_CONSOLE_NONE", - "name": "ESP_CONSOLE_NONE", - "range": null, - "title": "None", - "type": "bool" - } - ], - "depends_on": null, - "help": "Select where to send console output (through stdout and stderr).\n\n- Default is to use UART0 on pre-defined GPIOs.\n- If \"Custom\" is selected, UART0 or UART1 can be chosen,\n and any pins can be selected.\n- If \"None\" is selected, there will be no console output on any UART, except\n for initial output from ROM bootloader. This ROM output can be suppressed by\n GPIO strapping or EFUSE, refer to chip datasheet for details.\n- On chips with USB OTG peripheral, \"USB CDC\" option redirects output to the\n CDC port. This option uses the CDC driver in the chip ROM.\n This option is incompatible with TinyUSB stack.\n- On chips with an USB serial/JTAG debug controller, selecting the option\n for that redirects output to the CDC/ACM (serial port emulation) component\n of that device.", - "id": "component-config-esp-system-settings-channel-for-console-output", - "name": "ESP_CONSOLE_UART", - "title": "Channel for console output", - "type": "choice" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_CONSOLE_SECONDARY_NONE", - "name": "ESP_CONSOLE_SECONDARY_NONE", - "range": null, - "title": "No secondary console", - "type": "bool" - }, - { - "children": [], - "depends_on": "!ESP_CONSOLE_USB_SERIAL_JTAG && ", - "help": "This option supports output through USB_SERIAL_JTAG port when the UART0 port is not connected.\nThe output currently only supports non-blocking mode without using the console.\nIf you want to output in blocking mode with REPL or input through USB_SERIAL_JTAG port,\nplease change the primary config to ESP_CONSOLE_USB_SERIAL_JTAG above.", - "id": "ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG", - "name": "ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG", - "range": null, - "title": "USB_SERIAL_JTAG PORT", - "type": "bool" - } - ], - "depends_on": "SOC_USB_SERIAL_JTAG_SUPPORTED", - "help": "This secondary option supports output through other specific port like USB_SERIAL_JTAG\nwhen UART0 port as a primary is selected but not connected. This secondary output currently only supports\nnon-blocking mode without using REPL. If you want to output in blocking mode with REPL or\ninput through this secondary port, please change the primary config to this port\nin `Channel for console output` menu.", - "id": "component-config-esp-system-settings-channel-for-console-secondary-output", - "name": "ESP_CONSOLE_SECONDARY", - "title": "Channel for console secondary output", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED", - "name": "ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_CONSOLE_UART", - "name": "ESP_CONSOLE_UART", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_CONSOLE_UART_CUSTOM_NUM_0", - "name": "ESP_CONSOLE_UART_CUSTOM_NUM_0", - "range": null, - "title": "UART0", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_CONSOLE_UART_CUSTOM_NUM_1", - "name": "ESP_CONSOLE_UART_CUSTOM_NUM_1", - "range": null, - "title": "UART1", - "type": "bool" - } - ], - "depends_on": "ESP_CONSOLE_UART_CUSTOM", - "help": "This UART peripheral is used for console output from the ESP-IDF Bootloader and the app.\n\nIf the configuration is different in the Bootloader binary compared to the app binary, UART\nis reconfigured after the bootloader exits and the app starts.\n\nDue to an ESP32 ROM bug, UART2 is not supported for console output\nvia esp_rom_printf.", - "id": "component-config-esp-system-settings-uart-peripheral-to-use-for-console-output-0-1-", - "name": "ESP_CONSOLE_UART_NUM", - "title": "UART peripheral to use for console output (0-1)", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_CONSOLE_UART_NUM", - "name": "ESP_CONSOLE_UART_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_CONSOLE_ROM_SERIAL_PORT_NUM", - "name": "ESP_CONSOLE_ROM_SERIAL_PORT_NUM", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_CONSOLE_UART_CUSTOM", - "help": "This GPIO is used for console UART TX output in the ESP-IDF Bootloader and the app (including\nboot log output and default standard output and standard error of the app). Value -1 means to\ncontinue using the default console UART TX pin.\n\nIf the configuration is different in the Bootloader binary compared to the app binary, UART\nis reconfigured after the bootloader exits and the app starts.", - "id": "ESP_CONSOLE_UART_TX_GPIO", - "name": "ESP_CONSOLE_UART_TX_GPIO", - "range": null, - "title": "UART TX on GPIO", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_CONSOLE_UART_CUSTOM", - "help": "This GPIO is used for console UART RX input in the ESP-IDF Bootloader and the app (including\ndefault standard input of the app). Value -1 means to continue using the default console UART\nRX pin.\n\nNote: The default ESP-IDF Bootloader configures this pin but doesn't read anything from the UART.\n\nIf the configuration is different in the Bootloader binary compared to the app binary, UART\nis reconfigured after the bootloader exits and the app starts.", - "id": "ESP_CONSOLE_UART_RX_GPIO", - "name": "ESP_CONSOLE_UART_RX_GPIO", - "range": null, - "title": "UART RX on GPIO", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_CONSOLE_UART", - "help": "This baud rate is used by both the ESP-IDF Bootloader and the app (including\nboot log output and default standard input/output/error of the app).\n\nThe app's maximum baud rate depends on the UART clock source. If Power Management is disabled,\nthe UART clock source is the APB clock and all baud rates in the available range will be sufficiently\naccurate. If Power Management is enabled, REF_TICK clock source is used so the baud rate is divided\nfrom 1MHz. Baud rates above 1Mbps are not possible and values between 500Kbps and 1Mbps may not be\naccurate.\n\nIf the configuration is different in the Bootloader binary compared to the app binary, UART\nis reconfigured after the bootloader exits and the app starts.", - "id": "ESP_CONSOLE_UART_BAUDRATE", - "name": "ESP_CONSOLE_UART_BAUDRATE", - "range": [ - 1200, - 4000000 - ], - "title": "UART console baud rate", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_CONSOLE_USB_CDC", - "help": "Set the size of USB CDC RX buffer. Increase the buffer size if your application\nis often receiving data over USB CDC.", - "id": "ESP_CONSOLE_USB_CDC_RX_BUF_SIZE", - "name": "ESP_CONSOLE_USB_CDC_RX_BUF_SIZE", - "range": null, - "title": "Size of USB CDC RX buffer", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_CONSOLE_USB_CDC", - "help": "If enabled, esp_rom_printf and ESP_EARLY_LOG output will also be sent over USB CDC.\nDisabling this option saves about 1kB or RAM.", - "id": "ESP_CONSOLE_USB_CDC_SUPPORT_ETS_PRINTF", - "name": "ESP_CONSOLE_USB_CDC_SUPPORT_ETS_PRINTF", - "range": null, - "title": "Enable esp_rom_printf / ESP_EARLY_LOG via USB CDC", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "ESP_INT_WDT", - "help": "The timeout of the watchdog, in milliseconds. Make this higher than the FreeRTOS tick rate.", - "id": "ESP_INT_WDT_TIMEOUT_MS", - "name": "ESP_INT_WDT_TIMEOUT_MS", - "range": [ - 10, - 10000 - ], - "title": "Interrupt watchdog timeout (ms)", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_INT_WDT && !FREERTOS_UNICORE", - "help": "Also detect if interrupts on CPU 1 are disabled for too long.", - "id": "ESP_INT_WDT_CHECK_CPU1", - "name": "ESP_INT_WDT_CHECK_CPU1", - "range": null, - "title": "Also watch CPU1 tick interrupt", - "type": "bool" - } - ], - "depends_on": null, - "help": "This watchdog timer can detect if the FreeRTOS tick interrupt has not been called for a certain time,\neither because a task turned off interrupts and did not turn them on for a long time, or because an\ninterrupt handler did not return. It will try to invoke the panic handler first and failing that\nreset the SoC.", - "id": "ESP_INT_WDT", - "name": "ESP_INT_WDT", - "range": null, - "title": "Interrupt watchdog", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "ESP_TASK_WDT_EN", - "help": null, - "id": "ESP_TASK_WDT_USE_ESP_TIMER", - "name": "ESP_TASK_WDT_USE_ESP_TIMER", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "ESP_TASK_WDT_INIT", - "help": "If this option is enabled, the Task Watchdog Timer will be configured to\ntrigger the panic handler when it times out. This can also be configured\nat run time (see Task Watchdog Timer API Reference)", - "id": "ESP_TASK_WDT_PANIC", - "name": "ESP_TASK_WDT_PANIC", - "range": null, - "title": "Invoke panic handler on Task Watchdog timeout", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_TASK_WDT_INIT", - "help": "Timeout period configuration for the Task Watchdog Timer in seconds.\nThis is also configurable at run time (see Task Watchdog Timer API Reference)", - "id": "ESP_TASK_WDT_TIMEOUT_S", - "name": "ESP_TASK_WDT_TIMEOUT_S", - "range": [ - 1, - 60 - ], - "title": "Task Watchdog timeout period (seconds)", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_TASK_WDT_INIT", - "help": "If this option is enabled, the Task Watchdog Timer will watch the CPU0\nIdle Task. Having the Task Watchdog watch the Idle Task allows for detection\nof CPU starvation as the Idle Task not being called is usually a symptom of\nCPU starvation. Starvation of the Idle Task is detrimental as FreeRTOS household\ntasks depend on the Idle Task getting some runtime every now and then.", - "id": "ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0", - "name": "ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0", - "range": null, - "title": "Watch CPU0 Idle Task", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_TASK_WDT_INIT && !FREERTOS_UNICORE", - "help": "If this option is enabled, the Task Watchdog Timer will wach the CPU1\nIdle Task.", - "id": "ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1", - "name": "ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1", - "range": null, - "title": "Watch CPU1 Idle Task", - "type": "bool" - } - ], - "depends_on": "ESP_TASK_WDT_EN", - "help": "Enabling this option will cause the Task Watchdog Timer to be initialized\nautomatically at startup.", - "id": "ESP_TASK_WDT_INIT", - "name": "ESP_TASK_WDT_INIT", - "range": null, - "title": "Initialize Task Watchdog Timer on startup", - "type": "bool" - } - ], - "depends_on": null, - "help": "The Task Watchdog Timer can be used to make sure individual tasks are still\nrunning. Enabling this option will enable the Task Watchdog Timer. It can be\neither initialized automatically at startup or initialized after startup\n(see Task Watchdog Timer API Reference)", - "id": "ESP_TASK_WDT_EN", - "name": "ESP_TASK_WDT_EN", - "range": null, - "title": "Enable Task Watchdog Timer", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "ESP_XT_WDT", - "help": "Timeout period configuration for the XTAL32K watchdog timer based on RTC_CLK.", - "id": "ESP_XT_WDT_TIMEOUT", - "name": "ESP_XT_WDT_TIMEOUT", - "range": null, - "title": "XTAL32K watchdog timeout period", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_XT_WDT", - "help": "Enable this to automatically switch to BACKUP32K_CLK as the source of RTC_SLOW_CLK when\nthe watchdog timer expires.", - "id": "ESP_XT_WDT_BACKUP_CLK_ENABLE", - "name": "ESP_XT_WDT_BACKUP_CLK_ENABLE", - "range": null, - "title": "Automatically switch to BACKUP32K_CLK when timer expires", - "type": "bool" - } - ], - "depends_on": "SOC_XT_WDT_SUPPORTED && (ESP_SYSTEM_RTC_EXT_OSC || ESP_SYSTEM_RTC_EXT_XTAL)", - "help": "This watchdog timer can detect oscillation failure of the XTAL32K_CLK. When such a failure\nis detected the hardware can be set up to automatically switch to BACKUP32K_CLK and generate\nan interrupt.", - "id": "ESP_XT_WDT", - "name": "ESP_XT_WDT", - "range": null, - "title": "Initialize XTAL32K watchdog timer on startup", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "If this option is disabled (default), the panic handler code is placed in flash not IRAM.\nThis means that if ESP-IDF crashes while flash cache is disabled, the panic handler will\nautomatically re-enable flash cache before running GDB Stub or Core Dump. This adds some minor\nrisk, if the flash cache status is also corrupted during the crash.\n\nIf this option is enabled, the panic handler code (including required UART functions) is placed\nin IRAM. This may be necessary to debug some complex issues with crashes while flash cache is\ndisabled (for example, when writing to SPI flash) or when flash cache is corrupted when an exception\nis triggered.", - "id": "ESP_PANIC_HANDLER_IRAM", - "name": "ESP_PANIC_HANDLER_IRAM", - "range": null, - "title": "Place panic handler code in IRAM", - "type": "bool" - }, - { - "children": [], - "depends_on": "!ESP32_TRAX && !ESP32S2_TRAX && !ESP32S3_TRAX", - "help": "Debug stubs are used by OpenOCD to execute pre-compiled onboard code\nwhich does some useful debugging stuff, e.g. GCOV data dump.", - "id": "ESP_DEBUG_STUBS_ENABLE", - "name": "ESP_DEBUG_STUBS_ENABLE", - "range": null, - "title": "OpenOCD debug stubs", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_DEBUG_HAVE_OCD_STUB_BINS", - "help": "OpenOCD uses stub code to access flash during programming or when inserting and removing\nSW flash breakpoints.\nTo execute stub code, OpenOCD allocates memory on the target device, backs up the existing memory,\nloads the stub binary, runs the binary, and then restores the original memory.\nThis process can be time-consuming, especially when using USB serial JTAG.\nBy enabling this option, 8K of memory in RAM will be preallocated with the stub code,\neliminating the need to back up and restore the memory region.", - "id": "ESP_DEBUG_INCLUDE_OCD_STUB_BINS", - "name": "ESP_DEBUG_INCLUDE_OCD_STUB_BINS", - "range": null, - "title": "Preload OpenOCD stub binaries to speed up debugging. 8K memory will be reserved", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "The FreeRTOS panic and unhandled exception handlers can detect a JTAG OCD debugger and\ninstead of panicking, have the debugger stop on the offending instruction.", - "id": "ESP_DEBUG_OCDAWARE", - "name": "ESP_DEBUG_OCDAWARE", - "range": null, - "title": "Make exception and panic handlers JTAG/OCD aware", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "IDF_TARGET_ESP32 && ", - "help": "Using level 5 interrupt for Interrupt Watchdog, IPC_ISR and other system checks.", - "id": "ESP_SYSTEM_CHECK_INT_LEVEL_5", - "name": "ESP_SYSTEM_CHECK_INT_LEVEL_5", - "range": null, - "title": "Level 5 interrupt", - "type": "bool" - }, - { - "children": [], - "depends_on": "!BTDM_CTRL_HLI && ", - "help": "Using level 4 interrupt for Interrupt Watchdog, IPC_ISR and other system checks.", - "id": "ESP_SYSTEM_CHECK_INT_LEVEL_4", - "name": "ESP_SYSTEM_CHECK_INT_LEVEL_4", - "range": null, - "title": "Level 4 interrupt", - "type": "bool" - } - ], - "depends_on": null, - "help": "Interrupt level to use for Interrupt Watchdog, IPC_ISR and other system checks.", - "id": "component-config-esp-system-settings-interrupt-level-to-use-for-interrupt-watchdog-and-other-system-checks", - "name": "ESP_SYSTEM_CHECK_INT_LEVEL", - "title": "Interrupt level to use for Interrupt Watchdog and other system checks", - "type": "choice" - }, - { - "children": [], - "depends_on": "SOC_ASSIST_DEBUG_SUPPORTED && !SECURE_ENABLE_TEE", - "help": "This config allows to trigger a panic interrupt when Stack Pointer register goes out of allocated stack\nmemory bounds.", - "id": "ESP_SYSTEM_HW_STACK_GUARD", - "name": "ESP_SYSTEM_HW_STACK_GUARD", - "range": null, - "title": "Hardware stack guard", - "type": "bool" - }, - { - "children": [], - "depends_on": "IDF_TARGET_ESP32C2 || IDF_TARGET_ESP32S3 || IDF_TARGET_ESP32C6 || IDF_TARGET_ESP32H2", - "help": "This configuration helps to address an BBPLL inaccurate issue when boot from certain bootloader version,\nwhich may increase about the boot-up time by about 200 us. Disable this when your bootloader is built with\nESP-IDF version v5.2 and above.", - "id": "ESP_SYSTEM_BBPLL_RECALIB", - "name": "ESP_SYSTEM_BBPLL_RECALIB", - "range": null, - "title": "Re-calibration BBPLL at startup", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_ASSIST_DEBUG_SUPPORTED", - "help": "This option will enable the PC recording function of assist_debug module. The PC value of the CPU will be\nrecorded to PC record register in assist_debug module in real time. When an exception occurs and the CPU\nis reset, this register will be kept, then we can use the recorded PC to debug the causes of the reset.", - "id": "ESP_SYSTEM_HW_PC_RECORD", - "name": "ESP_SYSTEM_HW_PC_RECORD", - "range": null, - "title": "Hardware PC recording", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-esp-system-settings", - "title": "ESP System Settings", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "!ESP_SYSTEM_SINGLE_CORE_MODE || APPTRACE_GCOV_ENABLE", - "help": null, - "id": "ESP_IPC_ENABLE", - "name": "ESP_IPC_ENABLE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Configure the IPC tasks stack size. An IPC task runs on each core (in dual core mode), and allows for\ncross-core function calls. See IPC documentation for more details. The default IPC stack size should be\nenough for most common simple use cases. However, users can increase/decrease the stack size to their\nneeds.", - "id": "ESP_IPC_TASK_STACK_SIZE", - "name": "ESP_IPC_TASK_STACK_SIZE", - "range": [ - 512, - 65536 - ], - "title": "Inter-Processor Call (IPC) task stack size", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_IPC_ENABLE", - "help": "If this option is not enabled then the IPC task will keep behavior same as prior to that of ESP-IDF v4.0,\nhence IPC task will run at (configMAX_PRIORITIES - 1) priority.", - "id": "ESP_IPC_USES_CALLERS_PRIORITY", - "name": "ESP_IPC_USES_CALLERS_PRIORITY", - "range": null, - "title": "IPC runs at caller's priority", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "The IPC ISR feature is similar to the IPC feature except that the callback function is executed in the\ncontext of a High Priority Interrupt. The IPC ISR feature is intended for low latency execution of simple\ncallbacks written in assembly on another CPU. Due to being run in a High Priority Interrupt, the assembly\ncallbacks must be written with particular restrictions (see \"IPC\" and \"High-Level Interrupt\" docs for more\ndetails).", - "id": "ESP_IPC_ISR_ENABLE", - "name": "ESP_IPC_ISR_ENABLE", - "range": null, - "title": null, - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-ipc-inter-processor-call-", - "title": "IPC (Inter-Processor Call)", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_TIMER_IN_IRAM", - "name": "ESP_TIMER_IN_IRAM", - "range": null, - "title": "Place esp_timer functions in IRAM", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "If enabled, esp_timer_dump will dump information such as number of times the timer was started,\nnumber of times the timer has triggered, and the total time it took for the callback to run.\nThis option has some effect on timer performance and the amount of memory used for timer\nstorage, and should only be used for debugging/testing purposes.", - "id": "ESP_TIMER_PROFILING", - "name": "ESP_TIMER_PROFILING", - "range": null, - "title": "Enable esp_timer profiling features", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_TIME_FUNCS_USE_RTC_TIMER", - "name": "ESP_TIME_FUNCS_USE_RTC_TIMER", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_TIME_FUNCS_USE_ESP_TIMER", - "name": "ESP_TIME_FUNCS_USE_ESP_TIMER", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_TIME_FUNCS_USE_NONE", - "name": "ESP_TIME_FUNCS_USE_NONE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Configure the stack size of \"timer_task\" task. This task is used\nto dispatch callbacks of timers created using ets_timer and esp_timer\nAPIs. If you are seeing stack overflow errors in timer task, increase\nthis value.\n\nNote that this is not the same as FreeRTOS timer task. To configure\nFreeRTOS timer task size, see \"FreeRTOS timer task stack size\" option\nin \"FreeRTOS\".", - "id": "ESP_TIMER_TASK_STACK_SIZE", - "name": "ESP_TIMER_TASK_STACK_SIZE", - "range": [ - 2048, - 65536 - ], - "title": "High-resolution timer task stack size", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "This sets the interrupt priority level for esp_timer ISR.\nA higher value reduces interrupt latency by minimizing the timer processing delay.", - "id": "ESP_TIMER_INTERRUPT_LEVEL", - "name": "ESP_TIMER_INTERRUPT_LEVEL", - "range": [ - 1, - 1 - ], - "title": "Interrupt level", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "This shows some hidden features of esp_timer.\nNote that they may break other features, use them with care.", - "id": "ESP_TIMER_SHOW_EXPERIMENTAL", - "name": "ESP_TIMER_SHOW_EXPERIMENTAL", - "range": null, - "title": "show esp_timer's experimental features", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_TIMER_TASK_AFFINITY", - "name": "ESP_TIMER_TASK_AFFINITY", - "range": null, - "title": null, - "type": "hex" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_TIMER_TASK_AFFINITY_CPU0", - "name": "ESP_TIMER_TASK_AFFINITY_CPU0", - "range": null, - "title": "CPU0", - "type": "bool" - }, - { - "children": [], - "depends_on": "!FREERTOS_UNICORE && ESP_TIMER_SHOW_EXPERIMENTAL && ", - "help": null, - "id": "ESP_TIMER_TASK_AFFINITY_CPU1", - "name": "ESP_TIMER_TASK_AFFINITY_CPU1", - "range": null, - "title": "CPU1", - "type": "bool" - }, - { - "children": [], - "depends_on": "!FREERTOS_UNICORE && ESP_TIMER_SHOW_EXPERIMENTAL && ", - "help": null, - "id": "ESP_TIMER_TASK_AFFINITY_NO_AFFINITY", - "name": "ESP_TIMER_TASK_AFFINITY_NO_AFFINITY", - "range": null, - "title": "No affinity", - "type": "bool" - } - ], - "depends_on": null, - "help": "The default settings: timer TASK on CPU0 and timer ISR on CPU0.\nOther settings may help in certain cases, but note that they may break\nother features, use them with care.\n- \"CPU0\": (default) esp_timer task is processed by CPU0.\n- \"CPU1\": esp_timer task is processed by CPU1.\n- \"No affinity\": esp_timer task can be processed by any CPU.", - "id": "component-config-esp-timer-high-resolution-timer--esp_timer-task-core-affinity", - "name": "ESP_TIMER_TASK_AFFINITY", - "title": "esp_timer task core affinity", - "type": "choice" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_TIMER_ISR_AFFINITY_CPU0", - "name": "ESP_TIMER_ISR_AFFINITY_CPU0", - "range": null, - "title": "CPU0", - "type": "bool" - }, - { - "children": [], - "depends_on": "!FREERTOS_UNICORE && ESP_TIMER_SHOW_EXPERIMENTAL && ", - "help": null, - "id": "ESP_TIMER_ISR_AFFINITY_CPU1", - "name": "ESP_TIMER_ISR_AFFINITY_CPU1", - "range": null, - "title": "CPU1", - "type": "bool" - }, - { - "children": [], - "depends_on": "!FREERTOS_UNICORE && ESP_TIMER_SHOW_EXPERIMENTAL && ", - "help": null, - "id": "ESP_TIMER_ISR_AFFINITY_NO_AFFINITY", - "name": "ESP_TIMER_ISR_AFFINITY_NO_AFFINITY", - "range": null, - "title": "No affinity", - "type": "bool" - } - ], - "depends_on": null, - "help": "The default settings: timer TASK on CPU0 and timer ISR on CPU0.\nOther settings may help in certain cases, but note that they may break\nother features, use them with care.\n- \"CPU0\": (default) timer interrupt is processed by CPU0.\n- \"CPU1\": timer interrupt is processed by CPU1.\n- \"No affinity\": timer interrupt can be processed by any CPU. It helps\nto reduce latency but there is a disadvantage it leads to the timer ISR\nrunning on every core. It increases the CPU time usage for timer ISRs\nby N on an N-core system.", - "id": "component-config-esp-timer-high-resolution-timer--timer-interrupt-core-affinity", - "name": "ESP_TIMER_ISR_AFFINITY", - "title": "timer interrupt core affinity", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": "Allows using ESP_TIMER_ISR dispatch method (ESP_TIMER_TASK dispatch method is also available).\n- ESP_TIMER_TASK - Timer callbacks are dispatched from a high-priority esp_timer task.\n- ESP_TIMER_ISR - Timer callbacks are dispatched directly from the timer interrupt handler.\nThe ISR dispatch can be used, in some cases, when a callback is very simple\nor need a lower-latency.", - "id": "ESP_TIMER_SUPPORTS_ISR_DISPATCH_METHOD", - "name": "ESP_TIMER_SUPPORTS_ISR_DISPATCH_METHOD", - "range": null, - "title": "Support ISR dispatch method", - "type": "bool" - }, - { - "children": [], - "depends_on": "IDF_TARGET_ESP32", - "help": null, - "id": "ESP_TIMER_IMPL_TG0_LAC", - "name": "ESP_TIMER_IMPL_TG0_LAC", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "!IDF_TARGET_ESP32", - "help": null, - "id": "ESP_TIMER_IMPL_SYSTIMER", - "name": "ESP_TIMER_IMPL_SYSTIMER", - "range": null, - "title": null, - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-esp-timer-high-resolution-timer-", - "title": "ESP Timer (High Resolution Timer)", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": null, - "id": "ESP_WIFI_ENABLED", - "name": "ESP_WIFI_ENABLED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "ESP_HOST_WIFI_ENABLED", - "help": null, - "id": "ESP_WIFI_CONTROLLER_TARGET", - "name": "ESP_WIFI_CONTROLLER_TARGET", - "range": null, - "title": null, - "type": "string" - }, - { - "children": [], - "depends_on": "ESP_HOST_WIFI_ENABLED", - "help": null, - "id": "ESP_WIFI_TARGET_ESP32", - "name": "ESP_WIFI_TARGET_ESP32", - "range": null, - "title": null, - "type": "bool" - } - ], - "depends_on": "SOC_WIRELESS_HOST_SUPPORTED", - "help": null, - "id": "ESP_HOST_WIFI_ENABLED", - "name": "ESP_HOST_WIFI_ENABLED", - "range": null, - "title": "Host WiFi Enable", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", - "help": "Set the number of WiFi static RX buffers. Each buffer takes approximately 1.6KB of RAM.\nThe static rx buffers are allocated when esp_wifi_init is called, they are not freed\nuntil esp_wifi_deinit is called.\n\nWiFi hardware use these buffers to receive all 802.11 frames.\nA higher number may allow higher throughput but increases memory use. If ESP_WIFI_AMPDU_RX_ENABLED\nis enabled, this value is recommended to set equal or bigger than ESP_WIFI_RX_BA_WIN in order to\nachieve better throughput and compatibility with both stations and APs.", - "id": "ESP_WIFI_STATIC_RX_BUFFER_NUM", - "name": "ESP_WIFI_STATIC_RX_BUFFER_NUM", - "range": null, - "title": "Max number of WiFi static RX buffers", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", - "help": "Set the number of WiFi dynamic RX buffers, 0 means unlimited RX buffers will be allocated\n(provided sufficient free RAM). The size of each dynamic RX buffer depends on the size of\nthe received data frame.\n\nFor each received data frame, the WiFi driver makes a copy to an RX buffer and then delivers\nit to the high layer TCP/IP stack. The dynamic RX buffer is freed after the higher layer has\nsuccessfully received the data frame.\n\nFor some applications, WiFi data frames may be received faster than the application can\nprocess them. In these cases we may run out of memory if RX buffer number is unlimited (0).\n\nIf a dynamic RX buffer limit is set, it should be at least the number of static RX buffers.", - "id": "ESP_WIFI_DYNAMIC_RX_BUFFER_NUM", - "name": "ESP_WIFI_DYNAMIC_RX_BUFFER_NUM", - "range": null, - "title": "Max number of WiFi dynamic RX buffers", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_WIFI_STATIC_TX_BUFFER", - "name": "ESP_WIFI_STATIC_TX_BUFFER", - "range": null, - "title": "Static", - "type": "bool" - }, - { - "children": [], - "depends_on": "!(SPIRAM_TRY_ALLOCATE_WIFI_LWIP && !SPIRAM_IGNORE_NOTFOUND) && ", - "help": null, - "id": "ESP_WIFI_DYNAMIC_TX_BUFFER", - "name": "ESP_WIFI_DYNAMIC_TX_BUFFER", - "range": null, - "title": "Dynamic", - "type": "bool" - } - ], - "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", - "help": "Select type of WiFi TX buffers:\n\nIf \"Static\" is selected, WiFi TX buffers are allocated when WiFi is initialized and released\nwhen WiFi is de-initialized. The size of each static TX buffer is fixed to about 1.6KB.\n\nIf \"Dynamic\" is selected, each WiFi TX buffer is allocated as needed when a data frame is\ndelivered to the Wifi driver from the TCP/IP stack. The buffer is freed after the data frame\nhas been sent by the WiFi driver. The size of each dynamic TX buffer depends on the length\nof each data frame sent by the TCP/IP layer.\n\nIf PSRAM is enabled, \"Static\" should be selected to guarantee enough WiFi TX buffers.\nIf PSRAM is disabled, \"Dynamic\" should be selected to improve the utilization of RAM.", - "id": "component-config-wi-fi-type-of-wifi-tx-buffers", - "name": "ESP_WIFI_TX_BUFFER", - "title": "Type of WiFi TX buffers", - "type": "choice" - }, - { - "children": [], - "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", - "help": null, - "id": "ESP_WIFI_TX_BUFFER_TYPE", - "name": "ESP_WIFI_TX_BUFFER_TYPE", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_WIFI_STATIC_TX_BUFFER && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Set the number of WiFi static TX buffers. Each buffer takes approximately 1.6KB of RAM.\nThe static RX buffers are allocated when esp_wifi_init() is called, they are not released\nuntil esp_wifi_deinit() is called.\n\nFor each transmitted data frame from the higher layer TCP/IP stack, the WiFi driver makes a\ncopy of it in a TX buffer. For some applications especially UDP applications, the upper\nlayer can deliver frames faster than WiFi layer can transmit. In these cases, we may run out\nof TX buffers.", - "id": "ESP_WIFI_STATIC_TX_BUFFER_NUM", - "name": "ESP_WIFI_STATIC_TX_BUFFER_NUM", - "range": null, - "title": "Max number of WiFi static TX buffers", - "type": "int" - }, - { - "children": [], - "depends_on": "SPIRAM_TRY_ALLOCATE_WIFI_LWIP && !SPIRAM_IGNORE_NOTFOUND && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Set the number of WiFi cache TX buffer number.\n\nFor each TX packet from uplayer, such as LWIP etc, WiFi driver needs to allocate a static TX\nbuffer and makes a copy of uplayer packet. If WiFi driver fails to allocate the static TX buffer,\nit caches the uplayer packets to a dedicated buffer queue, this option is used to configure the\nsize of the cached TX queue.", - "id": "ESP_WIFI_CACHE_TX_BUFFER_NUM", - "name": "ESP_WIFI_CACHE_TX_BUFFER_NUM", - "range": null, - "title": "Max number of WiFi cache TX buffers", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_WIFI_DYNAMIC_TX_BUFFER && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Set the number of WiFi dynamic TX buffers. The size of each dynamic TX buffer is not fixed,\nit depends on the size of each transmitted data frame.\n\nFor each transmitted frame from the higher layer TCP/IP stack, the WiFi driver makes a copy\nof it in a TX buffer. For some applications, especially UDP applications, the upper layer\ncan deliver frames faster than WiFi layer can transmit. In these cases, we may run out of TX\nbuffers.", - "id": "ESP_WIFI_DYNAMIC_TX_BUFFER_NUM", - "name": "ESP_WIFI_DYNAMIC_TX_BUFFER_NUM", - "range": null, - "title": "Max number of WiFi dynamic TX buffers", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_WIFI_STATIC_RX_MGMT_BUFFER", - "name": "ESP_WIFI_STATIC_RX_MGMT_BUFFER", - "range": null, - "title": "Static", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_WIFI_DYNAMIC_RX_MGMT_BUFFER", - "name": "ESP_WIFI_DYNAMIC_RX_MGMT_BUFFER", - "range": null, - "title": "Dynamic", - "type": "bool" - } - ], - "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", - "help": "Select type of WiFi RX MGMT buffers:\n\nIf \"Static\" is selected, WiFi RX MGMT buffers are allocated when WiFi is initialized and released\nwhen WiFi is de-initialized. The size of each static RX MGMT buffer is fixed to about 500 Bytes.\n\nIf \"Dynamic\" is selected, each WiFi RX MGMT buffer is allocated as needed when a MGMT data frame is\nreceived. The MGMT buffer is freed after the MGMT data frame has been processed by the WiFi driver.", - "id": "component-config-wi-fi-type-of-wifi-rx-mgmt-buffers", - "name": "ESP_WIFI_MGMT_RX_BUFFER", - "title": "Type of WiFi RX MGMT buffers", - "type": "choice" - }, - { - "children": [], - "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", - "help": null, - "id": "ESP_WIFI_DYNAMIC_RX_MGMT_BUF", - "name": "ESP_WIFI_DYNAMIC_RX_MGMT_BUF", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", - "help": "Set the number of WiFi RX_MGMT buffers.\n\nFor Management buffers, the number of dynamic and static management buffers is the same.\nIn order to prevent memory fragmentation, the management buffer type should be set to static first.", - "id": "ESP_WIFI_RX_MGMT_BUF_NUM_DEF", - "name": "ESP_WIFI_RX_MGMT_BUF_NUM_DEF", - "range": null, - "title": "Max number of WiFi RX MGMT buffers", - "type": "int" - }, - { - "children": [], - "depends_on": "SOC_WIFI_CSI_SUPPORT && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Select this option to enable CSI(Channel State Information) feature. CSI takes about\nCONFIG_ESP_WIFI_STATIC_RX_BUFFER_NUM KB of RAM. If CSI is not used, it is better to disable\nthis feature in order to save memory.", - "id": "ESP_WIFI_CSI_ENABLED", - "name": "ESP_WIFI_CSI_ENABLED", - "range": null, - "title": "WiFi CSI(Channel State Information)", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "ESP_WIFI_AMPDU_TX_ENABLED && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Set the size of WiFi Block Ack TX window. Generally a bigger value means higher throughput but\nmore memory. Most of time we should NOT change the default value unless special reason, e.g.\ntest the maximum UDP TX throughput with iperf etc. For iperf test in shieldbox, the recommended\nvalue is 9~12.", - "id": "ESP_WIFI_TX_BA_WIN", - "name": "ESP_WIFI_TX_BA_WIN", - "range": null, - "title": "WiFi AMPDU TX BA window size", - "type": "int" - } - ], - "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", - "help": "Select this option to enable AMPDU TX feature", - "id": "ESP_WIFI_AMPDU_TX_ENABLED", - "name": "ESP_WIFI_AMPDU_TX_ENABLED", - "range": null, - "title": "WiFi AMPDU TX", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "ESP_WIFI_AMPDU_RX_ENABLED && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Set the size of WiFi Block Ack RX window. Generally a bigger value means higher throughput and better\ncompatibility but more memory. Most of time we should NOT change the default value unless special\nreason, e.g. test the maximum UDP RX throughput with iperf etc. For iperf test in shieldbox, the\nrecommended value is 9~12. If PSRAM is used and WiFi memory is preferred to allocate in PSRAM first,\nthe default and minimum value should be 16 to achieve better throughput and compatibility with both\nstations and APs.", - "id": "ESP_WIFI_RX_BA_WIN", - "name": "ESP_WIFI_RX_BA_WIN", - "range": null, - "title": "WiFi AMPDU RX BA window size", - "type": "int" - } - ], - "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", - "help": "Select this option to enable AMPDU RX feature", - "id": "ESP_WIFI_AMPDU_RX_ENABLED", - "name": "ESP_WIFI_AMPDU_RX_ENABLED", - "range": null, - "title": "WiFi AMPDU RX", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_WIFI_CACHE_TX_BUFFER_NUM >= 2 && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Select this option to enable AMSDU TX feature", - "id": "ESP_WIFI_AMSDU_TX_ENABLED", - "name": "ESP_WIFI_AMSDU_TX_ENABLED", - "range": null, - "title": "WiFi AMSDU TX", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", - "help": "Select this option to enable WiFi NVS flash", - "id": "ESP_WIFI_NVS_ENABLED", - "name": "ESP_WIFI_NVS_ENABLED", - "range": null, - "title": "WiFi NVS flash", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_WIFI_TASK_PINNED_TO_CORE_0", - "name": "ESP_WIFI_TASK_PINNED_TO_CORE_0", - "range": null, - "title": "Core 0", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_WIFI_TASK_PINNED_TO_CORE_1", - "name": "ESP_WIFI_TASK_PINNED_TO_CORE_1", - "range": null, - "title": "Core 1", - "type": "bool" - } - ], - "depends_on": "!FREERTOS_UNICORE && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Pinned WiFi task to core 0 or core 1.", - "id": "component-config-wi-fi-wifi-task-core-id", - "name": "ESP_WIFI_TASK_CORE_ID", - "title": "WiFi Task Core ID", - "type": "choice" - }, - { - "children": [], - "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", - "help": "ESP-MESH utilizes beacon frames to detect and resolve root node conflicts (see documentation). However\nthe default length of a beacon frame can simultaneously hold only five root node identifier structures,\nmeaning that a root node conflict of up to five nodes can be detected at one time. In the occurrence of\nmore root nodes conflict involving more than five root nodes, the conflict resolution process will\ndetect five of the root nodes, resolve the conflict, and re-detect more root nodes. This process will\nrepeat until all root node conflicts are resolved. However this process can generally take a very long\ntime.\n\nTo counter this situation, the beacon frame length can be increased such that more root nodes can be\ndetected simultaneously. Each additional root node will require 36 bytes and should be added on top of\nthe default beacon frame length of\n752 bytes. For example, if you want to detect 10 root nodes simultaneously, you need to set the beacon\nframe length as\n932 (752+36*5).\n\nSetting a longer beacon length also assists with debugging as the conflicting root nodes can be\nidentified more quickly.", - "id": "ESP_WIFI_SOFTAP_BEACON_MAX_LEN", - "name": "ESP_WIFI_SOFTAP_BEACON_MAX_LEN", - "range": null, - "title": "Max length of WiFi SoftAP Beacon", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", - "help": "Set the maximum number of Wi-Fi management short buffers. These buffers are dynamically allocated,\nwith their size determined by the length of the management packet to be sent. When a management\npacket is less than 64 bytes, the Wi-Fi driver classifies it as a short management packet and\nassigns it to one of these buffers.", - "id": "ESP_WIFI_MGMT_SBUF_NUM", - "name": "ESP_WIFI_MGMT_SBUF_NUM", - "range": null, - "title": "WiFi mgmt short buffer number", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", - "help": "Select this option to place frequently called Wi-Fi library functions in IRAM.\nWhen this option is disabled, more than 10Kbytes of IRAM memory will be saved\nbut Wi-Fi throughput will be reduced.", - "id": "ESP_WIFI_IRAM_OPT", - "name": "ESP_WIFI_IRAM_OPT", - "range": null, - "title": "WiFi IRAM speed optimization", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", - "help": "Select this option to place additional frequently called Wi-Fi library functions\nin IRAM. When this option is disabled, more than 5Kbytes of IRAM memory will be saved\nbut Wi-Fi throughput will be reduced.", - "id": "ESP_WIFI_EXTRA_IRAM_OPT", - "name": "ESP_WIFI_EXTRA_IRAM_OPT", - "range": null, - "title": "WiFi EXTRA IRAM speed optimization", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", - "help": "Select this option to place frequently called Wi-Fi library RX functions in IRAM.\nWhen this option is disabled, more than 17Kbytes of IRAM memory will be saved\nbut Wi-Fi performance will be reduced.", - "id": "ESP_WIFI_RX_IRAM_OPT", - "name": "ESP_WIFI_RX_IRAM_OPT", - "range": null, - "title": "WiFi RX IRAM speed optimization", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "ESP_WIFI_ENABLE_WPA3_SAE && ESP_WIFI_ENABLE_SAE_H2E && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Select this option to enable SAE-PK", - "id": "ESP_WIFI_ENABLE_SAE_PK", - "name": "ESP_WIFI_ENABLE_SAE_PK", - "range": null, - "title": "Enable SAE-PK", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_WIFI_ENABLE_WPA3_SAE && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Select this option to enable SAE-H2E", - "id": "ESP_WIFI_ENABLE_SAE_H2E", - "name": "ESP_WIFI_ENABLE_SAE_H2E", - "range": null, - "title": "Enable SAE-H2E", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_WIFI_ENABLE_WPA3_SAE && ESP_WIFI_SOFTAP_SUPPORT && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Select this option to enable SAE support in softAP mode.", - "id": "ESP_WIFI_SOFTAP_SAE_SUPPORT", - "name": "ESP_WIFI_SOFTAP_SAE_SUPPORT", - "range": null, - "title": "Enable WPA3 Personal(SAE) SoftAP", - "type": "bool" - } - ], - "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", - "help": "Select this option to allow the device to establish a WPA3-Personal connection with eligible AP's.\nPMF (Protected Management Frames) is a prerequisite feature for a WPA3 connection, it needs to be\nexplicitly configured before attempting connection. Please refer to the Wi-Fi Driver API Guide\nfor details.", - "id": "ESP_WIFI_ENABLE_WPA3_SAE", - "name": "ESP_WIFI_ENABLE_WPA3_SAE", - "range": null, - "title": "Enable WPA3-Personal", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", - "help": "Select this option to allow the device to establish OWE connection with eligible AP's.\nPMF (Protected Management Frames) is a prerequisite feature for a WPA3 connection, it needs to be\nexplicitly configured before attempting connection. Please refer to the Wi-Fi Driver API Guide\nfor details.", - "id": "ESP_WIFI_ENABLE_WPA3_OWE_STA", - "name": "ESP_WIFI_ENABLE_WPA3_OWE_STA", - "range": null, - "title": "Enable OWE STA", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", - "help": "Select this option to place called Wi-Fi library TBTT process and receive beacon functions in IRAM.\nSome functions can be put in IRAM either by ESP_WIFI_IRAM_OPT and ESP_WIFI_RX_IRAM_OPT, or this one.\nIf already enabled ESP_WIFI_IRAM_OPT, the other 7.3KB IRAM memory would be taken by this option.\nIf already enabled ESP_WIFI_RX_IRAM_OPT, the other 1.3KB IRAM memory would be taken by this option.\nIf neither of them are enabled, the other 7.4KB IRAM memory would be taken by this option.\nWi-Fi power-save mode average current would be reduced if this option is enabled.", - "id": "ESP_WIFI_SLP_IRAM_OPT", - "name": "ESP_WIFI_SLP_IRAM_OPT", - "range": null, - "title": "WiFi SLP IRAM speed optimization", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", - "help": "Only for station in WIFI_PS_MIN_MODEM or WIFI_PS_MAX_MODEM. When the station enters the active state,\nit will work for at least ESP_WIFI_SLP_DEFAULT_MIN_ACTIVE_TIME. If a data packet is received or sent\nduring this period, the time will be refreshed. If the time is up, but the station still has packets\nto receive or send, the time will also be refreshed. unit: milliseconds.", - "id": "ESP_WIFI_SLP_DEFAULT_MIN_ACTIVE_TIME", - "name": "ESP_WIFI_SLP_DEFAULT_MIN_ACTIVE_TIME", - "range": null, - "title": "Minimum active time", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", - "help": "Enables bss max idle support for Station and SoftAP. BSS max idle period enables an SoftAP to indicate\na time period during which the AP does not disassociate a STA due to nonreceipt of frames from the STA.\nFor station, max idle period is default 10 (1000TUs) and can be set through\nESP_WIFI_SLP_DEFAULT_MAX_ACTIVE_TIME. For softap, bss max idle parameters will be set through\nbss_max_idle_cfg in wifi_ap_config_t.", - "id": "ESP_WIFI_BSS_MAX_IDLE_SUPPORT", - "name": "ESP_WIFI_BSS_MAX_IDLE_SUPPORT", - "range": null, - "title": "Enable bss max idle support", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", - "help": "Only for station. If no packet has been sent within ESP_WIFI_SLP_DEFAULT_MAX_ACTIVE_TIME, a null data\npacket will be sent to maintain the connection with the AP. If ESP_WIFI_BSS_MAX_IDLE_SUPPORT is set,\nit will be sent as bss max idle period in association request. unit: seconds.", - "id": "ESP_WIFI_SLP_DEFAULT_MAX_ACTIVE_TIME", - "name": "ESP_WIFI_SLP_DEFAULT_MAX_ACTIVE_TIME", - "range": null, - "title": "Maximum keep alive time", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", - "help": "Only for station in WIFI_PS_MIN_MODEM or WIFI_PS_MAX_MODEM. When the station knows through the beacon\nthat AP will send broadcast packet, it will wait for ESP_WIFI_SLP_DEFAULT_WAIT_BROADCAST_DATA_TIME\nbefore entering the sleep process. If a broadcast packet is received with more data bits, the time\nwill refreshed. unit: milliseconds.", - "id": "ESP_WIFI_SLP_DEFAULT_WAIT_BROADCAST_DATA_TIME", - "name": "ESP_WIFI_SLP_DEFAULT_WAIT_BROADCAST_DATA_TIME", - "range": null, - "title": "Minimum wait broadcast data time", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "ESP_WIFI_FTM_ENABLE && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": null, - "id": "ESP_WIFI_FTM_INITIATOR_SUPPORT", - "name": "ESP_WIFI_FTM_INITIATOR_SUPPORT", - "range": null, - "title": "FTM Initiator support", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_WIFI_FTM_ENABLE && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": null, - "id": "ESP_WIFI_FTM_RESPONDER_SUPPORT", - "name": "ESP_WIFI_FTM_RESPONDER_SUPPORT", - "range": null, - "title": "FTM Responder support", - "type": "bool" - } - ], - "depends_on": "SOC_WIFI_FTM_SUPPORT && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Enable feature Fine Timing Measurement for calculating WiFi Round-Trip-Time (RTT).", - "id": "ESP_WIFI_FTM_ENABLE", - "name": "ESP_WIFI_FTM_ENABLE", - "range": null, - "title": "WiFi FTM", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", - "help": "Select this option to enable power_management for station when disconnected.\nChip will do modem-sleep when rf module is not in use any more.", - "id": "ESP_WIFI_STA_DISCONNECTED_PM_ENABLE", - "name": "ESP_WIFI_STA_DISCONNECTED_PM_ENABLE", - "range": null, - "title": "Power Management for station at disconnected", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_WIFI_GCMP_SUPPORT && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Select this option to enable GCMP support. GCMP support is compulsory for WiFi Suite-B support.", - "id": "ESP_WIFI_GCMP_SUPPORT", - "name": "ESP_WIFI_GCMP_SUPPORT", - "range": null, - "title": "WiFi GCMP Support(GCMP128 and GCMP256)", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", - "help": "Select this option to enable GMAC support. GMAC support is compulsory for WiFi 192 bit certification.", - "id": "ESP_WIFI_GMAC_SUPPORT", - "name": "ESP_WIFI_GMAC_SUPPORT", - "range": null, - "title": "WiFi GMAC Support(GMAC128 and GMAC256)", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", - "help": "WiFi module can be compiled without SoftAP to save code size.", - "id": "ESP_WIFI_SOFTAP_SUPPORT", - "name": "ESP_WIFI_SOFTAP_SUPPORT", - "range": null, - "title": "WiFi SoftAP Support", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_PHY_MAC_BB_PD && SOC_PM_SUPPORT_BEACON_WAKEUP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "The wifi modem automatically receives the beacon frame during light sleep.", - "id": "ESP_WIFI_ENHANCED_LIGHT_SLEEP", - "name": "ESP_WIFI_ENHANCED_LIGHT_SLEEP", - "range": null, - "title": "WiFi modem automatically receives the beacon", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "ESP_WIFI_SLP_BEACON_LOST_OPT && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Timeout time for close rf phy when beacon loss occurs, Unit: 1024 microsecond.", - "id": "ESP_WIFI_SLP_BEACON_LOST_TIMEOUT", - "name": "ESP_WIFI_SLP_BEACON_LOST_TIMEOUT", - "range": null, - "title": "Beacon loss timeout", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_WIFI_SLP_BEACON_LOST_OPT && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Maximum number of consecutive lost beacons allowed, the WiFi Rx state behaviour\nwill be determined by ESP_WIFI_SLP_BEACON_LOST_OVER_THRESHOLD_POLICY\nwhen the number of consecutive beacons lost is greater than the given threshold.", - "id": "ESP_WIFI_SLP_BEACON_LOST_THRESHOLD", - "name": "ESP_WIFI_SLP_BEACON_LOST_THRESHOLD", - "range": null, - "title": "Maximum number of consecutive lost beacons allowed", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_WIFI_SLP_BEACON_LOST_OPT && SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Delta early time for rf phy on, When the beacon is lost, the next rf phy on will\nbe earlier the time specified by the configuration item, Unit: 32 microsecond.", - "id": "ESP_WIFI_SLP_PHY_ON_DELTA_EARLY_TIME", - "name": "ESP_WIFI_SLP_PHY_ON_DELTA_EARLY_TIME", - "range": null, - "title": "Delta early time for RF PHY on", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_WIFI_SLP_BEACON_LOST_OPT && SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Delta timeout time for rf phy off, When the beacon is lost, the next rf phy off will\nbe delayed for the time specified by the configuration item. Unit: 1024 microsecond.", - "id": "ESP_WIFI_SLP_PHY_OFF_DELTA_TIMEOUT_TIME", - "name": "ESP_WIFI_SLP_PHY_OFF_DELTA_TIMEOUT_TIME", - "range": null, - "title": "Delta timeout time for RF PHY off", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_WIFI_SLP_BEACON_LOST_OVER_THRESHOLD_RECEIVE", - "name": "ESP_WIFI_SLP_BEACON_LOST_OVER_THRESHOLD_RECEIVE", - "range": null, - "title": "Receive beacon", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_WIFI_SLP_BEACON_LOST_OVER_THRESHOLD_DROP", - "name": "ESP_WIFI_SLP_BEACON_LOST_OVER_THRESHOLD_DROP", - "range": null, - "title": "Drop beacon", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "ESP_WIFI_SLP_BEACON_LOST_OVER_THRESHOLD_AUTO", - "name": "ESP_WIFI_SLP_BEACON_LOST_OVER_THRESHOLD_AUTO", - "range": null, - "title": "Auto", - "type": "bool" - } - ], - "depends_on": "ESP_WIFI_SLP_BEACON_LOST_OPT && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Select the strategy to apply when the number of lost beacons exceeds the threshold.\n\n- \"Receive beacon\": Keep RF on until a beacon is successfully received.\n\n- \"Drop beacon\": Turn off RF and skip beacon reception during this period.\n\n- \"Auto\": Beacon will been dropped only if ESP_WIFI_SLP_SAMPLE_BEACON_FEATURE enabled\n and expected rx beacon probability stays below the standard.", - "id": "component-config-wi-fi-wifi-sleep-optimize-when-beacon-lost-beacon-strategy-when-beacon-loss-exceeds-threshold", - "name": "ESP_WIFI_SLP_BEACON_LOST_OVER_THRESHOLD_POLICY", - "title": "Beacon strategy when beacon loss exceeds threshold", - "type": "choice" - }, - { - "children": [], - "depends_on": "ESP_WIFI_SLP_BEACON_LOST_OPT && !ESP_WIFI_ENHANCED_LIGHT_SLEEP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Select to enable feature sampling beacons to calculate beacon offset.", - "id": "ESP_WIFI_SLP_SAMPLE_BEACON_FEATURE", - "name": "ESP_WIFI_SLP_SAMPLE_BEACON_FEATURE", - "range": null, - "title": "Sample beacon to calculate beacon offset", - "type": "bool" - } - ], - "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", - "help": "Enable wifi sleep optimization when beacon loss occurs and immediately enter\nsleep mode when the WiFi module detects beacon loss.", - "id": "ESP_WIFI_SLP_BEACON_LOST_OPT", - "name": "ESP_WIFI_SLP_BEACON_LOST_OPT", - "range": null, - "title": "Wifi sleep optimize when beacon lost", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "ESP_WIFI_SLP_SAMPLE_BEACON_FEATURE && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Numble of sampled beacons at wifi connected to adjust beacon parameters.", - "id": "ESP_WIFI_SLP_SAMPLE_BEACON_COUNT", - "name": "ESP_WIFI_SLP_SAMPLE_BEACON_COUNT", - "range": null, - "title": "Sample beacons at wifi connected to adjust beacon parameters", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_WIFI_SLP_SAMPLE_BEACON_FEATURE && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Difference triggers event WIFI_EVENT_STA_BEACON_OFFSET_UNSTABLE\nwhen the actual rx beacon probability continuously falls below\nthe expected probability by this value.\nunit: percentage", - "id": "ESP_WIFI_SLP_SAMPLE_BEACON_DIFFERENCE_PERCENT", - "name": "ESP_WIFI_SLP_SAMPLE_BEACON_DIFFERENCE_PERCENT", - "range": null, - "title": "Difference percentage triggers unstable event", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_WIFI_SLP_SAMPLE_BEACON_FEATURE && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Standard triggers beacon drop when the expected rx beacon probability\nfalls below this value under ESP_WIFI_SLP_BEACON_LOST_DROP_BEACON_AUTO mode.\nunit: percentage", - "id": "ESP_WIFI_SLP_SAMPLE_BEACON_STANDARD_PERCENT", - "name": "ESP_WIFI_SLP_SAMPLE_BEACON_STANDARD_PERCENT", - "range": null, - "title": "Standard percentage triggers beacon drop", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_WIFI_SLP_SAMPLE_BEACON_FEATURE && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Resample period if beacon drop is active under ESP_WIFI_SLP_BEACON_LOST_DROP_BEACON_AUTO mode.\nIt means never resample if setting this value to 0.\nunit: hours", - "id": "ESP_WIFI_SLP_SAMPLE_BEACON_RESAMPLE_PERIOD", - "name": "ESP_WIFI_SLP_SAMPLE_BEACON_RESAMPLE_PERIOD", - "range": null, - "title": "Resample period", - "type": "int" - } - ], - "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", - "id": "component-config-wi-fi-beacon-sample-configuration-options", - "title": "Beacon Sample Configuration Options", - "type": "menu" - }, - { - "children": [], - "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", - "help": "Maximum number of encrypted peers supported by espnow.\nThe number of hardware keys for encryption is fixed. And the espnow and SoftAP share the same\nhardware keys. So this configuration will affect the maximum connection number of SoftAP.\nMaximum espnow encrypted peers number + maximum number of connections of SoftAP = Max hardware\nkeys number. When using ESP mesh, this value should be set to a maximum of 6.", - "id": "ESP_WIFI_ESPNOW_MAX_ENCRYPT_NUM", - "name": "ESP_WIFI_ESPNOW_MAX_ENCRYPT_NUM", - "range": null, - "title": "Maximum espnow encrypt peers number", - "type": "int" - }, - { - "children": [], - "depends_on": "SOC_WIFI_NAN_SUPPORT && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Enable WiFi Aware (NAN) feature.", - "id": "ESP_WIFI_NAN_ENABLE", - "name": "ESP_WIFI_NAN_ENABLE", - "range": null, - "title": "WiFi Aware", - "type": "bool" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "ESP_WIFI_MBEDTLS_TLS_CLIENT && IDF_EXPERIMENTAL_FEATURES && ESP_WIFI_MBEDTLS_CRYPTO && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Select this option to support EAP with TLS v1.3.\nThis configuration still supports compatibility with EAP-TLS v1.2.\nPlease note that enabling this configuration will cause every application which\nuses TLS go for TLS1.3 if server supports that. TLS1.3 is still in development in mbedtls\nand there may be interoperability issues with this. Please modify your application to set\nmax version as TLS1.2 if you want to enable TLS1.3 only for WiFi connection.", - "id": "ESP_WIFI_EAP_TLS1_3", - "name": "ESP_WIFI_EAP_TLS1_3", - "range": null, - "title": "Enable EAP-TLS v1.3 Support for WiFi Enterprise connection", - "type": "bool" - } - ], - "depends_on": "ESP_WIFI_ENTERPRISE_SUPPORT && ESP_WIFI_MBEDTLS_CRYPTO && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Select this option to use MbedTLS TLS client for WPA2 enterprise connection.\nPlease note that from MbedTLS-3.0 onwards, MbedTLS does not support SSL-3.0\nTLS-v1.0, TLS-v1.1 versions. In case your server is using one of these version,\nit is advisable to update your server.\nPlease disable this option for compatibility with older TLS versions.", - "id": "ESP_WIFI_MBEDTLS_TLS_CLIENT", - "name": "ESP_WIFI_MBEDTLS_TLS_CLIENT", - "range": null, - "title": "Use MbedTLS TLS client for WiFi Enterprise connection", - "type": "bool" - } - ], - "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", - "help": "Select this option to enable the use of MbedTLS crypto APIs.\nThe internal crypto support within the supplicant is limited\nand may not suffice for all new security features, including WPA3.\n\nIt is recommended to always keep this option enabled. Additionally,\nnote that MbedTLS can leverage hardware acceleration if available,\nresulting in significantly faster cryptographic operations.", - "id": "ESP_WIFI_MBEDTLS_CRYPTO", - "name": "ESP_WIFI_MBEDTLS_CRYPTO", - "range": null, - "title": "Use MbedTLS crypto APIs", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_WIFI_WAPI_SUPPORT && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Select this option to enable WAPI-PSK\nwhich is a Chinese National Standard Encryption for Wireless LANs (GB 15629.11-2003).", - "id": "ESP_WIFI_WAPI_PSK", - "name": "ESP_WIFI_WAPI_PSK", - "range": null, - "title": "Enable WAPI PSK support", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_WIFI_GCMP_SUPPORT && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Select this option to enable 192 bit NSA suite-B.\nThis is necessary to support WPA3 192 bit security.", - "id": "ESP_WIFI_SUITE_B_192", - "name": "ESP_WIFI_SUITE_B_192", - "range": null, - "title": "Enable NSA suite B support with 192 bit key", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "ESP_WIFI_11KV_SUPPORT && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Select this option to enable 802.11k APIs(RRM support).\nOnly APIs which are helpful for network assisted roaming\nare supported for now.\nEnable this option with RRM enabled in sta config\nto make device ready for network assisted roaming.\nRRM: Radio measurements enable STAs to understand the radio environment,\nit enables STAs to observe and gather data on radio link performance\nand on the radio environment. Current implementation adds beacon report,\nlink measurement, neighbor report.", - "id": "ESP_WIFI_RRM_SUPPORT", - "name": "ESP_WIFI_RRM_SUPPORT", - "range": null, - "title": "Enable 802.11k APIs Support", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_WIFI_11KV_SUPPORT && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Select this option to enable 802.11v APIs(BTM support).\nOnly APIs which are helpful for network assisted roaming\nare supported for now.\nEnable this option with BTM enabled in sta config\nto make device ready for network assisted roaming.\nBTM: BSS transition management enables an AP to request a station to transition\nto a specific AP, or to indicate to a station a set of preferred APs.", - "id": "ESP_WIFI_WNM_SUPPORT", - "name": "ESP_WIFI_WNM_SUPPORT", - "range": null, - "title": "Enable 802.11v APIs Support", - "type": "bool" - } - ], - "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", - "help": "Select this option to enable 802.11k 802.11v APIs(RRM and BTM support).", - "id": "ESP_WIFI_11KV_SUPPORT", - "name": "ESP_WIFI_11KV_SUPPORT", - "range": null, - "title": "Enable 802.11k, 802.11v APIs Support", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_WIFI_RRM_SUPPORT && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Keep scan results in cache, if not enabled, those\nwill be flushed immediately.", - "id": "ESP_WIFI_SCAN_CACHE", - "name": "ESP_WIFI_SCAN_CACHE", - "range": null, - "title": "Keep scan results in cache", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", - "help": "Select this option to enable WiFi Multiband operation certification support.", - "id": "ESP_WIFI_MBO_SUPPORT", - "name": "ESP_WIFI_MBO_SUPPORT", - "range": null, - "title": "Enable Multi Band Operation Certification Support", - "type": "bool" - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "ESP_WIFI_ROAMING_LOW_RSSI_ROAMING && ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "WiFi RSSI threshold to trigger roaming value in dBm (-99 to -1). Values under -30 dbm\nmight lead to a flood of low rssi events. This interferes with normal functioning and\nTX/Rx performance.", - "id": "ESP_WIFI_ROAMING_LOW_RSSI_THRESHOLD", - "name": "ESP_WIFI_ROAMING_LOW_RSSI_THRESHOLD", - "range": null, - "title": "WiFi RSSI threshold to trigger roaming", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_WIFI_ROAMING_LOW_RSSI_ROAMING && ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Decide the offset by which to decrease the Low RSSI threshold set by ESP_WIFI_ROAMING_LOW_RSSI_THRESHOLD\nafter each failed attempt to roam. This allows for the station to keep scanning for better AP's after\nthe Low RSSI threshold is reached in a stepped manner, rather than only attempting to roam the first time\nthe current AP's RSSI breaches the set RSSI threshold.\nSetting 0 here may cause station to be flooded with low rssi events,\ntherefore that's not recommended to be kept.", - "id": "ESP_WIFI_ROAMING_LOW_RSSI_OFFSET", - "name": "ESP_WIFI_ROAMING_LOW_RSSI_OFFSET", - "range": null, - "title": "Offset by which to reset the RSSI Threshold after attempt to roam.", - "type": "int" - } - ], - "depends_on": "ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Enable to use a RSSI threshold to trigger roaming.", - "id": "ESP_WIFI_ROAMING_LOW_RSSI_ROAMING", - "name": "ESP_WIFI_ROAMING_LOW_RSSI_ROAMING", - "range": null, - "title": "Use Low RSSI to trigger roaming.", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "ESP_WIFI_ROAMING_PERIODIC_SCAN_MONITOR && ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Threshold at which the station will begin scanning to find an AP with better RSSI.", - "id": "ESP_WIFI_ROAMING_PERIODIC_SCAN_THRESHOLD", - "name": "ESP_WIFI_ROAMING_PERIODIC_SCAN_THRESHOLD", - "range": null, - "title": "Threshold at which to begin periodic scanning for a better AP.", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_WIFI_ROAMING_PERIODIC_SCAN_MONITOR && ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Intervals at which station will periodically scan to check if better AP is available", - "id": "ESP_WIFI_ROAMING_SCAN_MONITOR_INTERVAL", - "name": "ESP_WIFI_ROAMING_SCAN_MONITOR_INTERVAL", - "range": null, - "title": "Time intervals (in seconds) at which station will initiate a scan", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_WIFI_ROAMING_PERIODIC_SCAN_MONITOR && ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Minimum RSSI difference b/w current AP and a potential roaming candidate AP\nto trigger a roaming attempt.", - "id": "ESP_WIFI_ROAMING_SCAN_ROAM_RSSI_DIFF", - "name": "ESP_WIFI_ROAMING_SCAN_ROAM_RSSI_DIFF", - "range": null, - "title": "RSSI difference b/w current AP and candidate AP to initiate connection", - "type": "int" - } - ], - "depends_on": "ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Conduct periodic scans periodically to check if a better AP is available.", - "id": "ESP_WIFI_ROAMING_PERIODIC_SCAN_MONITOR", - "name": "ESP_WIFI_ROAMING_PERIODIC_SCAN_MONITOR", - "range": null, - "title": "Conduct periodic scans to check if a better AP is available", - "type": "bool" - } - ], - "depends_on": "ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "id": "component-config-wi-fi-advanced-support-for-wi-fi-roaming-experimental--configure-roaming-app-roaming-triggers", - "title": "Roaming triggers", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Roaming between APs that do not support 802.11v.\nThis will allow station to roam even when connection is not BTM supported,\nby forcefully disconnecting from current AP and connecting to better AP.", - "id": "ESP_WIFI_ROAMING_LEGACY_ROAMING", - "name": "ESP_WIFI_ROAMING_LEGACY_ROAMING", - "range": null, - "title": "Support Legacy roaming approach", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "ESP_WIFI_ROAMING_NETWORK_ASSISTED_ROAM && ESP_WIFI_ROAMING_LEGACY_ROAMING && ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Retry threshold after which the station should stop using Network Assisted\nroaming methods and start using legacy roaming instead.", - "id": "ESP_WIFI_NETWORK_ASSISTED_ROAMING_RETRY_COUNT", - "name": "ESP_WIFI_NETWORK_ASSISTED_ROAMING_RETRY_COUNT", - "range": null, - "title": "Retry count after which to switch to legacy roaming", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_WIFI_ROAMING_NETWORK_ASSISTED_ROAM && ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Station will not ask for IP renew after a BTM based roaming. Before enabling please\nmake sure your network supports this.", - "id": "ESP_WIFI_NETWORK_ASSISTED_ROAMING_IP_RENEW_SKIP", - "name": "ESP_WIFI_NETWORK_ASSISTED_ROAMING_IP_RENEW_SKIP", - "range": null, - "title": "Skip IP renew during BTM based roaming", - "type": "bool" - } - ], - "depends_on": "ESP_WIFI_WNM_SUPPORT && ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Roaming between APs using network assisted Roaming.\nThis involves BSS Transition Management mechanisms outlined in 802.11v.\nNote that this moves the responsibility to the AP's network, and hence isn't\nguaranteed to cause the station to attempt to roam each time.", - "id": "ESP_WIFI_ROAMING_NETWORK_ASSISTED_ROAM", - "name": "ESP_WIFI_ROAMING_NETWORK_ASSISTED_ROAM", - "range": null, - "title": "Support Network Assisted roaming using 802.11v", - "type": "bool" - } - ], - "depends_on": "ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "id": "component-config-wi-fi-advanced-support-for-wi-fi-roaming-experimental--configure-roaming-app-roaming-methods", - "title": "Roaming Methods", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Minimum duration of active scanning per channel in milliseconds.", - "id": "ESP_WIFI_ROAMING_SCAN_MIN_SCAN_TIME", - "name": "ESP_WIFI_ROAMING_SCAN_MIN_SCAN_TIME", - "range": null, - "title": "Minimum duration (in milliseconds) of station's per channel active scan", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Maximum duration of active scanning per channel in milliseconds.", - "id": "ESP_WIFI_ROAMING_SCAN_MAX_SCAN_TIME", - "name": "ESP_WIFI_ROAMING_SCAN_MAX_SCAN_TIME", - "range": null, - "title": "Maximum duration (in milliseconds) of station's per channel active scan time", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "If connected, duration for which the station will return to it's home channel for Tx/Rx of\nframes stored in buffers between scanning on consecutive channels.", - "id": "ESP_WIFI_ROAMING_HOME_CHANNEL_DWELL_TIME", - "name": "ESP_WIFI_ROAMING_HOME_CHANNEL_DWELL_TIME", - "range": null, - "title": "Home channel dwell time scanning between consecutive channels", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Channels your wireless network operates on to allow for faster scanning.\nSpecify the channels(between 1-14) in a comma separated manner.", - "id": "ESP_WIFI_ROAMING_SCAN_CHAN_LIST", - "name": "ESP_WIFI_ROAMING_SCAN_CHAN_LIST", - "range": null, - "title": "Preferred channel list for scanning", - "type": "string" - }, - { - "children": [], - "depends_on": "ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Duration for which the results from the most recent scans can be used\nby the roaming app for determining the roaming candidates.", - "id": "ESP_WIFI_ROAMING_SCAN_EXPIRY_WINDOW", - "name": "ESP_WIFI_ROAMING_SCAN_EXPIRY_WINDOW", - "range": null, - "title": "Scan results expiry window (in seconds)", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Max candidates that can be considered while scanning as a part of the\nnetwork at one time.", - "id": "ESP_WIFI_ROAMING_MAX_CANDIDATES", - "name": "ESP_WIFI_ROAMING_MAX_CANDIDATES", - "range": null, - "title": "Max Candidates in the network", - "type": "int" - } - ], - "depends_on": "ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "id": "component-config-wi-fi-advanced-support-for-wi-fi-roaming-experimental--configure-roaming-app-scan-configuration", - "title": "Scan Configuration", - "type": "menu" - }, - { - "children": [], - "depends_on": "ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Time to wait (in seconds) by station before registering for the RSSI event again\nor start continuous montoring to find better AP.", - "id": "ESP_WIFI_ROAMING_BACKOFF_TIME", - "name": "ESP_WIFI_ROAMING_BACKOFF_TIME", - "range": null, - "title": "Default time to wait between subsequent roaming attempts.", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "ESP_WIFI_ROAMING_PERIODIC_RRM_MONITORING && ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Enable this to send periodic neighbor report requests to the AP.\nThese neighbor report requests provide information about other APs in the same managed\nnetwork. This information is used for more intelligent roaming.", - "id": "ESP_WIFI_ROAMING_RRM_MONITOR_TIME", - "name": "ESP_WIFI_ROAMING_RRM_MONITOR_TIME", - "range": null, - "title": "Time interval (in seconds) between neighbor report requests to an AP", - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_WIFI_ROAMING_PERIODIC_RRM_MONITORING && ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "The RSSI threshold beyond which we start sending periodic neighbor report requests.", - "id": "ESP_WIFI_ROAMING_RRM_MONITOR_THRESHOLD", - "name": "ESP_WIFI_ROAMING_RRM_MONITOR_THRESHOLD", - "range": null, - "title": "Threshold for sending periodic neighbor report requests", - "type": "int" - } - ], - "depends_on": "ESP_WIFI_RRM_SUPPORT && ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "This option will enable station to keep sending RRM neighbor list request to AP and\nupdate its internal list.", - "id": "ESP_WIFI_ROAMING_PERIODIC_RRM_MONITORING", - "name": "ESP_WIFI_ROAMING_PERIODIC_RRM_MONITORING", - "range": null, - "title": "Send periodic neighbor report request to AP for internal list updation", - "type": "bool" - } - ], - "depends_on": "ESP_WIFI_ENABLE_ROAMING_APP && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "id": "component-config-wi-fi-advanced-support-for-wi-fi-roaming-experimental--configure-roaming-app", - "title": "Configure roaming App", - "type": "menu" - } - ], - "depends_on": "IDF_EXPERIMENTAL_FEATURES && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Enable Espressif's roaming app to allow for efficient Wi-Fi roaming.\nThis includes configurable periodic environment scans, maintaining a cache of the\nbest APs, handling low rssi events etc.\n\nRisk Warning\nPlease note that this feature is still experimental and enabling this potentially can\nlead to unpredictable scanning, connection and roaming attempts.\nWe are still working on tuning and optimising this feature to ensure reliable and stable use.", - "id": "ESP_WIFI_ENABLE_ROAMING_APP", - "name": "ESP_WIFI_ENABLE_ROAMING_APP", - "range": null, - "title": "Advanced support for Wi-Fi Roaming (Experimental)", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", - "help": "Select this option to enable WiFi Easy Connect Support.", - "id": "ESP_WIFI_DPP_SUPPORT", - "name": "ESP_WIFI_DPP_SUPPORT", - "range": null, - "title": "Enable DPP support", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", - "help": "Select this option to enable WiFi Fast Transition Support.", - "id": "ESP_WIFI_11R_SUPPORT", - "name": "ESP_WIFI_11R_SUPPORT", - "range": null, - "title": "Enable 802.11R (Fast Transition) Support", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_WIFI_SOFTAP_SUPPORT && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Select this option to enable WPS registrar support in softAP mode.", - "id": "ESP_WIFI_WPS_SOFTAP_REGISTRAR", - "name": "ESP_WIFI_WPS_SOFTAP_REGISTRAR", - "range": null, - "title": "Add WPS Registrar support in SoftAP mode", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_WIFI_HE_SUPPORT && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Enable Wi-Fi transmission statistics. Total support 4 access category. Each access category\nwill use 346 bytes memory.", - "id": "ESP_WIFI_ENABLE_WIFI_TX_STATS", - "name": "ESP_WIFI_ENABLE_WIFI_TX_STATS", - "range": null, - "title": "Enable Wi-Fi transmission statistics", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "ESP_WIFI_ENABLE_WIFI_RX_STATS && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Enable Wi-Fi DL MU-MIMO and DL OFDMA reception statistics. Will use 10932 bytes memory.", - "id": "ESP_WIFI_ENABLE_WIFI_RX_MU_STATS", - "name": "ESP_WIFI_ENABLE_WIFI_RX_MU_STATS", - "range": null, - "title": "Enable Wi-Fi DL MU-MIMO and DL OFDMA reception statistics", - "type": "bool" - } - ], - "depends_on": "SOC_WIFI_HE_SUPPORT && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Enable Wi-Fi reception statistics. Total support 2 access category. Each access category\nwill use 190 bytes memory.", - "id": "ESP_WIFI_ENABLE_WIFI_RX_STATS", - "name": "ESP_WIFI_ENABLE_WIFI_RX_STATS", - "range": null, - "title": "Enable Wi-Fi reception statistics", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_WIFI_HE_SUPPORT && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Set the maximum number of queue that can be aggregated by the STA in the A-MPDU carried in the\nHE TB PPDU.", - "id": "ESP_WIFI_TX_HETB_QUEUE_NUM", - "name": "ESP_WIFI_TX_HETB_QUEUE_NUM", - "range": null, - "title": "WiFi TX HE TB QUEUE number for STA HE TB PPDU transmission", - "type": "int" - }, - { - "children": [], - "depends_on": "SOC_WIFI_SUPPORT_5G && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Enable Wi-Fi dump HE-SIGB which is contained in DL HE MU PPDUs.", - "id": "ESP_WIFI_ENABLE_DUMP_HESIGB", - "name": "ESP_WIFI_ENABLE_DUMP_HESIGB", - "range": null, - "title": "Enable Wi-Fi dump HE-SIGB which is contained in DL HE MU PPDUs", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_WIFI_SUPPORT_5G && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Enable Wi-Fi dump MU CFO.", - "id": "ESP_WIFI_ENABLE_DUMP_MU_CFO", - "name": "ESP_WIFI_ENABLE_DUMP_MU_CFO", - "range": null, - "title": "Enable Wi-Fi dump MU CFO", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_WIFI_SUPPORT_5G && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Enable Wi-Fi dump NDPA frames.", - "id": "ESP_WIFI_ENABLE_DUMP_CTRL_NDPA", - "name": "ESP_WIFI_ENABLE_DUMP_CTRL_NDPA", - "range": null, - "title": "Enable Wi-Fi dump NDPA frames", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_WIFI_SUPPORT_5G && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Enable Wi-Fi dump BFRP frames.", - "id": "ESP_WIFI_ENABLE_DUMP_CTRL_BFRP", - "name": "ESP_WIFI_ENABLE_DUMP_CTRL_BFRP", - "range": null, - "title": "Enable Wi-Fi dump BFRP frames", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", - "help": "Select this option to enable validate each WPS attribute\nrigorously. Disabling this add the workarounds with various APs.\nEnabling this may cause inter operability issues with some APs.", - "id": "ESP_WIFI_WPS_STRICT", - "name": "ESP_WIFI_WPS_STRICT", - "range": null, - "title": "Strictly validate all WPS attributes", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", - "help": "Select this option to get passphrase during WPS configuration.\nThis option fakes the virtual display capabilities to get the\nconfiguration in passphrase mode.\nNot recommended to be used since WPS credentials should not\nbe shared to other devices, making it in readable format increases\nthat risk, also passphrase requires pbkdf2 to convert in psk.", - "id": "ESP_WIFI_WPS_PASSPHRASE", - "name": "ESP_WIFI_WPS_PASSPHRASE", - "range": null, - "title": "Get WPA2 passphrase in WPS config", - "type": "bool" - } - ], - "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", - "id": "component-config-wi-fi-wps-configuration-options", - "title": "WPS Configuration Options", - "type": "menu" - }, - { - "children": [], - "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", - "help": "Select this option to print logging information from WPA supplicant,\nthis includes handshake information and key hex dumps depending\non the project logging level.\n\nEnabling this could increase the build size ~60kb\ndepending on the project logging level.", - "id": "ESP_WIFI_DEBUG_PRINT", - "name": "ESP_WIFI_DEBUG_PRINT", - "range": null, - "title": "Print debug messages from WPA Supplicant", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", - "help": "Select this to enable unity test for DPP.", - "id": "ESP_WIFI_TESTING_OPTIONS", - "name": "ESP_WIFI_TESTING_OPTIONS", - "range": null, - "title": "Add DPP testing code", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "ESP_WIFI_ENTERPRISE_SUPPORT && (ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED)", - "help": "Select this configuration to free dynamic buffers during WiFi enterprise connection.\nThis will enable chip to reduce heap consumption during WiFi enterprise connection.", - "id": "ESP_WIFI_ENT_FREE_DYNAMIC_BUFFER", - "name": "ESP_WIFI_ENT_FREE_DYNAMIC_BUFFER", - "range": null, - "title": "Free dynamic buffers during WiFi enterprise connection", - "type": "bool" - } - ], - "depends_on": "ESP_WIFI_ENABLED || ESP_HOST_WIFI_ENABLED", - "help": "Select this to enable/disable enterprise connection support.\n\ndisabling this will reduce binary size.\ndisabling this will disable the use of any esp_wifi_sta_wpa2_ent_* (as APIs will be meaningless)\n\nNote that when using bigger certificates on low-power chips without crypto\nhardware acceleration, it is recommended to adjust the task watchdog timer (TWDT)\nif it is enabled. For precise information on timing requirements, you can check\nperformance numbers at https://github.com/espressif/mbedtls/wiki/Performance-Numbers.", - "id": "ESP_WIFI_ENTERPRISE_SUPPORT", - "name": "ESP_WIFI_ENTERPRISE_SUPPORT", - "range": null, - "title": "Enable enterprise option", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-wi-fi", - "title": "Wi-Fi", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "!IDF_TARGET_ESP32P4", - "help": "Amazon has released an SMP version of the FreeRTOS Kernel which can be found via the following link:\nhttps://github.com/FreeRTOS/FreeRTOS-Kernel/tree/smp\n\nIDF has added an experimental port of this SMP kernel located in\ncomponents/freertos/FreeRTOS-Kernel-SMP. Enabling this option will cause IDF to use the Amazon SMP\nkernel. Note that THIS FEATURE IS UNDER ACTIVE DEVELOPMENT, users use this at their own risk.\n\nLeaving this option disabled will mean the IDF FreeRTOS kernel is used instead, which is located in:\ncomponents/freertos/FreeRTOS-Kernel. Both kernel versions are SMP capable, but differ in\ntheir implementation and features.", - "id": "FREERTOS_SMP", - "name": "FREERTOS_SMP", - "range": null, - "title": "Run the Amazon SMP FreeRTOS kernel instead (FEATURE UNDER DEVELOPMENT)", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "This version of FreeRTOS normally takes control of all cores of the CPU. Select this if you only want\nto start it on the first core. This is needed when e.g. another process needs complete control over the\nsecond core.", - "id": "FREERTOS_UNICORE", - "name": "FREERTOS_UNICORE", - "range": null, - "title": "Run FreeRTOS only on first core", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Sets the FreeRTOS tick interrupt frequency in Hz (see configTICK_RATE_HZ documentation for more\ndetails).", - "id": "FREERTOS_HZ", - "name": "FREERTOS_HZ", - "range": [ - 1, - 1000 - ], - "title": "configTICK_RATE_HZ", - "type": "int" - }, - { - "children": [], - "depends_on": "FREERTOS_UNICORE && !FREERTOS_SMP", - "help": "Enables port specific task selection method. This option can speed up the search of ready tasks\nwhen scheduling (see configUSE_PORT_OPTIMISED_TASK_SELECTION documentation for more details).", - "id": "FREERTOS_OPTIMIZED_SCHEDULER", - "name": "FREERTOS_OPTIMIZED_SCHEDULER", - "range": null, - "title": "configUSE_PORT_OPTIMISED_TASK_SELECTION", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": "Do not check for stack overflows (configCHECK_FOR_STACK_OVERFLOW = 0)", - "id": "FREERTOS_CHECK_STACKOVERFLOW_NONE", - "name": "FREERTOS_CHECK_STACKOVERFLOW_NONE", - "range": null, - "title": "No checking", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "Check for stack overflows on each context switch by checking if the stack pointer is in a valid\nrange. Quick but does not detect stack overflows that happened between context switches\n(configCHECK_FOR_STACK_OVERFLOW = 1)", - "id": "FREERTOS_CHECK_STACKOVERFLOW_PTRVAL", - "name": "FREERTOS_CHECK_STACKOVERFLOW_PTRVAL", - "range": null, - "title": "Check by stack pointer value (Method 1)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "Places some magic bytes at the end of the stack area and on each context switch, check if these\nbytes are still intact. More thorough than just checking the pointer, but also slightly slower.\n(configCHECK_FOR_STACK_OVERFLOW = 2)", - "id": "FREERTOS_CHECK_STACKOVERFLOW_CANARY", - "name": "FREERTOS_CHECK_STACKOVERFLOW_CANARY", - "range": null, - "title": "Check using canary bytes (Method 2)", - "type": "bool" - } - ], - "depends_on": null, - "help": "Enables FreeRTOS to check for stack overflows (see configCHECK_FOR_STACK_OVERFLOW documentation for\nmore details).\n\nNote: If users do not provide their own ``vApplicationStackOverflowHook()`` function, a default\nfunction will be provided by ESP-IDF.", - "id": "component-config-freertos-kernel-configcheck_for_stack_overflow", - "name": "FREERTOS_CHECK_STACKOVERFLOW", - "title": "configCHECK_FOR_STACK_OVERFLOW", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": "Set the number of thread local storage pointers in each task (see\nconfigNUM_THREAD_LOCAL_STORAGE_POINTERS documentation for more details).\n\nNote: In ESP-IDF, this value must be at least 1. Index 0 is reserved for use by the pthreads API\nthread-local-storage. Other indexes can be used for any desired purpose.", - "id": "FREERTOS_THREAD_LOCAL_STORAGE_POINTERS", - "name": "FREERTOS_THREAD_LOCAL_STORAGE_POINTERS", - "range": [ - 1, - 256 - ], - "title": "configNUM_THREAD_LOCAL_STORAGE_POINTERS", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Sets the idle task stack size in bytes (see configMINIMAL_STACK_SIZE documentation for more details).\n\nNote:\n\n- ESP-IDF specifies stack sizes in bytes instead of words.\n- The default size is enough for most use cases.\n- The stack size may need to be increased above the default if the app installs idle or thread local\n storage cleanup hooks that use a lot of stack memory.\n- Conversely, the stack size can be reduced to the minimum if non of the idle features are used.", - "id": "FREERTOS_IDLE_TASK_STACKSIZE", - "name": "FREERTOS_IDLE_TASK_STACKSIZE", - "range": [ - 768, - 32768 - ], - "title": "configMINIMAL_STACK_SIZE (Idle task stack size)", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Enables the idle task application hook (see configUSE_IDLE_HOOK documentation for more details).\n\nNote:\n\n- The application must provide the hook function ``void vApplicationIdleHook( void );``\n- ``vApplicationIdleHook()`` is called from FreeRTOS idle task(s)\n- The FreeRTOS idle hook is NOT the same as the ESP-IDF Idle Hook, but both can be enabled\n simultaneously.", - "id": "FREERTOS_USE_IDLE_HOOK", - "name": "FREERTOS_USE_IDLE_HOOK", - "range": null, - "title": "configUSE_IDLE_HOOK", - "type": "bool" - }, - { - "children": [], - "depends_on": "FREERTOS_SMP", - "help": "Enables the minimal idle task application hook (see configUSE_IDLE_HOOK documentation for more\ndetails).\n\nNote:\n\n- The application must provide the hook function ``void vApplicationPassiveIdleHook( void );``\n- ``vApplicationPassiveIdleHook()`` is called from FreeRTOS minimal idle task(s)", - "id": "FREERTOS_USE_PASSIVE_IDLE_HOOK", - "name": "FREERTOS_USE_PASSIVE_IDLE_HOOK", - "range": null, - "title": "Use FreeRTOS minimal idle hook", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enables the tick hook (see configUSE_TICK_HOOK documentation for more details).\n\nNote:\n\n- The application must provide the hook function ``void vApplicationTickHook( void );``\n- ``vApplicationTickHook()`` is called from FreeRTOS's tick handling function ``xTaskIncrementTick()``\n- The FreeRTOS tick hook is NOT the same as the ESP-IDF Tick Interrupt Hook, but both can be enabled\n simultaneously.", - "id": "FREERTOS_USE_TICK_HOOK", - "name": "FREERTOS_USE_TICK_HOOK", - "range": null, - "title": "configUSE_TICK_HOOK", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Sets the maximum number of characters for task names (see configMAX_TASK_NAME_LEN documentation for\nmore details).\n\nNote: For most uses, the default of 16 characters is sufficient.", - "id": "FREERTOS_MAX_TASK_NAME_LEN", - "name": "FREERTOS_MAX_TASK_NAME_LEN", - "range": [ - 1, - 256 - ], - "title": "configMAX_TASK_NAME_LEN", - "type": "int" - }, - { - "children": [], - "depends_on": "!IDF_TARGET_LINUX", - "help": "Enable backward compatibility with APIs prior to FreeRTOS v8.0.0. (see\nconfigENABLE_BACKWARD_COMPATIBILITY documentation for more details).", - "id": "FREERTOS_ENABLE_BACKWARD_COMPATIBILITY", - "name": "FREERTOS_ENABLE_BACKWARD_COMPATIBILITY", - "range": null, - "title": "configENABLE_BACKWARD_COMPATIBILITY", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "FREERTOS_USE_TIMERS", - "help": "Sets the timer task's name (see configTIMER_SERVICE_TASK_NAME documentation for more details).", - "id": "FREERTOS_TIMER_SERVICE_TASK_NAME", - "name": "FREERTOS_TIMER_SERVICE_TASK_NAME", - "range": null, - "title": "configTIMER_SERVICE_TASK_NAME", - "type": "string" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "FREERTOS_TIMER_TASK_AFFINITY_CPU0", - "name": "FREERTOS_TIMER_TASK_AFFINITY_CPU0", - "range": null, - "title": "CPU0", - "type": "bool" - }, - { - "children": [], - "depends_on": "!FREERTOS_UNICORE && ", - "help": null, - "id": "FREERTOS_TIMER_TASK_AFFINITY_CPU1", - "name": "FREERTOS_TIMER_TASK_AFFINITY_CPU1", - "range": null, - "title": "CPU1", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "FREERTOS_TIMER_TASK_NO_AFFINITY", - "name": "FREERTOS_TIMER_TASK_NO_AFFINITY", - "range": null, - "title": "No affinity", - "type": "bool" - } - ], - "depends_on": "FREERTOS_USE_TIMERS", - "help": "Sets the timer task's core affinity\n(see configTIMER_SERVICE_TASK_CORE_AFFINITY documentation for more details).", - "id": "component-config-freertos-kernel-configuse_timers-configtimer_service_task_core_affinity", - "name": "FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY", - "title": "configTIMER_SERVICE_TASK_CORE_AFFINITY", - "type": "choice" - }, - { - "children": [], - "depends_on": "FREERTOS_USE_TIMERS", - "help": null, - "id": "FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY", - "name": "FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY", - "range": null, - "title": null, - "type": "hex" - }, - { - "children": [], - "depends_on": "FREERTOS_USE_TIMERS", - "help": "Sets the timer task's priority (see configTIMER_TASK_PRIORITY documentation for more details).", - "id": "FREERTOS_TIMER_TASK_PRIORITY", - "name": "FREERTOS_TIMER_TASK_PRIORITY", - "range": [ - 1, - 25 - ], - "title": "configTIMER_TASK_PRIORITY", - "type": "int" - }, - { - "children": [], - "depends_on": "FREERTOS_USE_TIMERS", - "help": "Set the timer task's stack size (see configTIMER_TASK_STACK_DEPTH documentation for more details).", - "id": "FREERTOS_TIMER_TASK_STACK_DEPTH", - "name": "FREERTOS_TIMER_TASK_STACK_DEPTH", - "range": [ - 1536, - 32768 - ], - "title": "configTIMER_TASK_STACK_DEPTH", - "type": "int" - }, - { - "children": [], - "depends_on": "FREERTOS_USE_TIMERS", - "help": "Set the timer task's command queue length (see configTIMER_QUEUE_LENGTH documentation for more\ndetails).", - "id": "FREERTOS_TIMER_QUEUE_LENGTH", - "name": "FREERTOS_TIMER_QUEUE_LENGTH", - "range": [ - 5, - 20 - ], - "title": "configTIMER_QUEUE_LENGTH", - "type": "int" - } - ], - "depends_on": null, - "help": "Enable FreeRTOS Software Timers. Normally the timer task will only get pulled into the build\nand created if any software timer related functions are used. This is achieved through IDF\ndefining a weak empty function for xTimerCreateTimerTask, which should take effect if timers.c\nis not pulled into the build.\n\nIn certain special cases (if you use configUSE_TRACE_FACILITY=y and event groups) the linker will\nstill pull in the xTimerCreateTimerTask from timers.c even if the function that utilized it gets\ndiscarded due to not being used.\n\nIn these cases you can use this option to force the timer task to be disabled.", - "id": "FREERTOS_USE_TIMERS", - "name": "FREERTOS_USE_TIMERS", - "range": null, - "title": "configUSE_TIMERS", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Set the size of the queue registry (see configQUEUE_REGISTRY_SIZE documentation for more details).\n\nNote: A value of 0 will disable queue registry functionality", - "id": "FREERTOS_QUEUE_REGISTRY_SIZE", - "name": "FREERTOS_QUEUE_REGISTRY_SIZE", - "range": [ - 0, - 20 - ], - "title": "configQUEUE_REGISTRY_SIZE", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Set the size of the task notification array of each task. When increasing this value, keep in\nmind that this means additional memory for each and every task on the system.\nHowever, task notifications in general are more light weight compared to alternatives\nsuch as semaphores.", - "id": "FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES", - "name": "FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES", - "range": [ - 1, - 32 - ], - "title": "configTASK_NOTIFICATION_ARRAY_ENTRIES", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "FREERTOS_USE_TRACE_FACILITY", - "help": "Set configUSE_TRACE_FACILITY and configUSE_STATS_FORMATTING_FUNCTIONS to 1 to include the\n``vTaskList()`` and ``vTaskGetRunTimeStats()`` functions in the build (see\nconfigUSE_STATS_FORMATTING_FUNCTIONS documentation for more details).", - "id": "FREERTOS_USE_STATS_FORMATTING_FUNCTIONS", - "name": "FREERTOS_USE_STATS_FORMATTING_FUNCTIONS", - "range": null, - "title": "configUSE_STATS_FORMATTING_FUNCTIONS", - "type": "bool" - } - ], - "depends_on": null, - "help": "Enables additional structure members and functions to assist with execution visualization and tracing\n(see configUSE_TRACE_FACILITY documentation for more details).", - "id": "FREERTOS_USE_TRACE_FACILITY", - "name": "FREERTOS_USE_TRACE_FACILITY", - "range": null, - "title": "configUSE_TRACE_FACILITY", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enable list integrity checker\n(see configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES documentation for more details).", - "id": "FREERTOS_USE_LIST_DATA_INTEGRITY_CHECK_BYTES", - "name": "FREERTOS_USE_LIST_DATA_INTEGRITY_CHECK_BYTES", - "range": null, - "title": "configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES", - "type": "bool" - }, - { - "children": [], - "depends_on": "!FREERTOS_SMP && FREERTOS_USE_STATS_FORMATTING_FUNCTIONS", - "help": "If enabled, this will include an extra column when vTaskList is called to display the CoreID the task\nis pinned to (0,1) or -1 if not pinned.", - "id": "FREERTOS_VTASKLIST_INCLUDE_COREID", - "name": "FREERTOS_VTASKLIST_INCLUDE_COREID", - "range": null, - "title": "Enable display of xCoreID in vTaskList", - "type": "bool" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": "configRUN_TIME_COUNTER_TYPE is set to uint32_t", - "id": "FREERTOS_RUN_TIME_COUNTER_TYPE_U32", - "name": "FREERTOS_RUN_TIME_COUNTER_TYPE_U32", - "range": null, - "title": "uint32_t", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "configRUN_TIME_COUNTER_TYPE is set to uint64_t", - "id": "FREERTOS_RUN_TIME_COUNTER_TYPE_U64", - "name": "FREERTOS_RUN_TIME_COUNTER_TYPE_U64", - "range": null, - "title": "uint64_t", - "type": "bool" - } - ], - "depends_on": "FREERTOS_GENERATE_RUN_TIME_STATS && !FREERTOS_SMP", - "help": "Sets the data type used for the FreeRTOS run time stats. A larger data type can be used to reduce the\nfrequency of the counter overflowing.", - "id": "component-config-freertos-kernel-configgenerate_run_time_stats-configrun_time_counter_type", - "name": "FREERTOS_RUN_TIME_COUNTER_TYPE", - "title": "configRUN_TIME_COUNTER_TYPE", - "type": "choice" - } - ], - "depends_on": null, - "help": "Enables collection of run time statistics for each task (see configGENERATE_RUN_TIME_STATS\ndocumentation for more details).\n\nNote: The clock used for run time statistics can be configured in FREERTOS_RUN_TIME_STATS_CLK.", - "id": "FREERTOS_GENERATE_RUN_TIME_STATS", - "name": "FREERTOS_GENERATE_RUN_TIME_STATS", - "range": null, - "title": "configGENERATE_RUN_TIME_STATS", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "FREERTOS_USE_TICKLESS_IDLE", - "help": "FreeRTOS will enter light sleep mode if no tasks need to run for this number of ticks.\nYou can enable PM_PROFILING feature in esp_pm components and dump the sleep status with\nesp_pm_dump_locks, if the proportion of rejected sleeps is too high, please increase\nthis value to improve scheduling efficiency", - "id": "FREERTOS_IDLE_TIME_BEFORE_SLEEP", - "name": "FREERTOS_IDLE_TIME_BEFORE_SLEEP", - "range": null, - "title": "configEXPECTED_IDLE_TIME_BEFORE_SLEEP", - "type": "int" - } - ], - "depends_on": "PM_ENABLE", - "help": "If power management support is enabled, FreeRTOS will be able to put the system into light sleep mode\nwhen no tasks need to run for a number of ticks. This number can be set using\nFREERTOS_IDLE_TIME_BEFORE_SLEEP option. This feature is also known as \"automatic light sleep\".\n\nNote that timers created using esp_timer APIs may prevent the system from entering sleep mode, even\nwhen no tasks need to run. To skip unnecessary wake-up initialize a timer with the\n\"skip_unhandled_events\" option as true.\n\nIf disabled, automatic light sleep support will be disabled.", - "id": "FREERTOS_USE_TICKLESS_IDLE", - "name": "FREERTOS_USE_TICKLESS_IDLE", - "range": null, - "title": "configUSE_TICKLESS_IDLE", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enables task tagging functionality and its associated API (see configUSE_APPLICATION_TASK_TAG\ndocumentation for more details).", - "id": "FREERTOS_USE_APPLICATION_TASK_TAG", - "name": "FREERTOS_USE_APPLICATION_TASK_TAG", - "range": null, - "title": "configUSE_APPLICATION_TASK_TAG", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-freertos-kernel", - "title": "Kernel", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "COMPILER_OPTIMIZATION_DEBUG || ESP_COREDUMP_ENABLE || ESP_SYSTEM_PANIC_GDBSTUB || ESP_SYSTEM_GDBSTUB_RUNTIME", - "help": "If enabled, all FreeRTOS task functions will be enclosed in a wrapper function. If a task function\nmistakenly returns (i.e. does not delete), the call flow will return to the wrapper function. The\nwrapper function will then log an error and abort the application. This option is also required for GDB\nbacktraces and C++ exceptions to work correctly inside top-level task functions.", - "id": "FREERTOS_TASK_FUNCTION_WRAPPER", - "name": "FREERTOS_TASK_FUNCTION_WRAPPER", - "range": null, - "title": "Wrap task functions", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "FreeRTOS can check if a stack has overflown its bounds by checking either the value of the stack\npointer or by checking the integrity of canary bytes. (See FREERTOS_CHECK_STACKOVERFLOW for more\ninformation.) These checks only happen on a context switch, and the situation that caused the stack\noverflow may already be long gone by then. This option will use the last debug memory watchpoint to\nallow breaking into the debugger (or panic'ing) as soon as any of the last 32 bytes on the stack of a\ntask are overwritten. The side effect is that using gdb, you effectively have one hardware watchpoint\nless because the last one is overwritten as soon as a task switch happens.\n\nAnother consequence is that due to alignment requirements of the watchpoint, the usable stack size\ndecreases by up to 60 bytes. This is because the watchpoint region has to be aligned to its size and\nthe size for the stack watchpoint in IDF is 32 bytes.\n\nThis check only triggers if the stack overflow writes within 32 bytes near the end of the stack, rather\nthan overshooting further, so it is worth combining this approach with one of the other stack overflow\ncheck methods.\n\nWhen this watchpoint is hit, gdb will stop with a SIGTRAP message. When no JTAG OCD is attached,\nesp-idf will panic on an unhandled debug exception.", - "id": "FREERTOS_WATCHPOINT_END_OF_STACK", - "name": "FREERTOS_WATCHPOINT_END_OF_STACK", - "range": null, - "title": "Enable stack overflow debug watchpoint", - "type": "bool" - }, - { - "children": [], - "depends_on": "FREERTOS_THREAD_LOCAL_STORAGE_POINTERS > 0", - "help": "ESP-IDF provides users with the ability to free TLSP memory by registering TLSP deletion callbacks.\nThese callbacks are automatically called by FreeRTOS when a task is deleted. When this option is turned\non, the memory reserved for TLSPs in the TCB is doubled to make space for storing the deletion\ncallbacks. If the user does not wish to use TLSP deletion callbacks then this option could be turned\noff to save space in the TCB memory.", - "id": "FREERTOS_TLSP_DELETION_CALLBACKS", - "name": "FREERTOS_TLSP_DELETION_CALLBACKS", - "range": null, - "title": "Enable thread local storage pointers deletion callbacks", - "type": "bool" - }, - { - "children": [], - "depends_on": "!FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP", - "help": "Enable this option to make FreeRTOS call a user provided hook function right before it deletes a task\n(i.e., frees/releases a dynamically/statically allocated task's memory). This is useful if users want\nto know when a task is actually deleted (in case the task's deletion is delegated to the IDLE task).\n\nIf this config option is enabled, users must define a ``void vTaskPreDeletionHook( void * pxTCB )``\nhook function in their application.", - "id": "FREERTOS_TASK_PRE_DELETION_HOOK", - "name": "FREERTOS_TASK_PRE_DELETION_HOOK", - "range": null, - "title": "Enable task pre-deletion hook", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "THIS OPTION IS DEPRECATED. Use FREERTOS_TASK_PRE_DELETION_HOOK instead.\n\nEnable this option to make FreeRTOS call the static task clean up hook when a task is deleted.\n\nNote: Users will need to provide a ``void vPortCleanUpTCB ( void *pxTCB )`` callback", - "id": "FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP", - "name": "FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP", - "range": null, - "title": "Enable static task clean up hook (DEPRECATED)", - "type": "bool" - }, - { - "children": [], - "depends_on": "!FREERTOS_SMP", - "help": "If enabled, assert that when a mutex semaphore is given, the task giving the semaphore is the task\nwhich is currently holding the mutex.", - "id": "FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER", - "name": "FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER", - "range": null, - "title": "Check that mutex semaphore is given by owner task", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "The interrupt handlers have their own stack. The size of the stack can be defined here. Each processor\nhas its own stack, so the total size occupied will be twice this.", - "id": "FREERTOS_ISR_STACKSIZE", - "name": "FREERTOS_ISR_STACKSIZE", - "range": [ - 1536, - 32768 - ], - "title": "ISR stack size", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "If this option is enabled, interrupt stack frame will be modified to point to the code of the\ninterrupted task as its return address. This helps the debugger (or the panic handler) show a backtrace\nfrom the interrupt to the task which was interrupted. This also works for nested interrupts: higher\nlevel interrupt stack can be traced back to the lower level interrupt. This option adds 4 instructions\nto the interrupt dispatching code.", - "id": "FREERTOS_INTERRUPT_BACKTRACE", - "name": "FREERTOS_INTERRUPT_BACKTRACE", - "range": null, - "title": "Enable backtrace from interrupt to task context", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_CPU_HAS_FPU && (IDF_TARGET_ESP32 || IDF_TARGET_ESP32S3)", - "help": "When enabled, the usage of float type is allowed inside Level 1 ISRs. Note that usage of float types in\nhigher level interrupts is still not permitted.", - "id": "FREERTOS_FPU_IN_ISR", - "name": "FREERTOS_FPU_IN_ISR", - "range": null, - "title": "Use float in Level 1 ISR", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "FREERTOS_TICK_SUPPORT_CORETIMER", - "name": "FREERTOS_TICK_SUPPORT_CORETIMER", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "FREERTOS_TICK_SUPPORT_SYSTIMER", - "name": "FREERTOS_TICK_SUPPORT_SYSTIMER", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "FREERTOS_TICK_SUPPORT_CORETIMER && ", - "help": "Select this to use timer 0", - "id": "FREERTOS_CORETIMER_0", - "name": "FREERTOS_CORETIMER_0", - "range": null, - "title": "Timer 0 (int 6, level 1)", - "type": "bool" - }, - { - "children": [], - "depends_on": "FREERTOS_TICK_SUPPORT_CORETIMER && ", - "help": "Select this to use timer 1", - "id": "FREERTOS_CORETIMER_1", - "name": "FREERTOS_CORETIMER_1", - "range": null, - "title": "Timer 1 (int 15, level 3)", - "type": "bool" - }, - { - "children": [], - "depends_on": "FREERTOS_TICK_SUPPORT_SYSTIMER && ", - "help": "Select this to use systimer with the 1 interrupt priority.", - "id": "FREERTOS_CORETIMER_SYSTIMER_LVL1", - "name": "FREERTOS_CORETIMER_SYSTIMER_LVL1", - "range": null, - "title": "SYSTIMER 0 (level 1)", - "type": "bool" - }, - { - "children": [], - "depends_on": "FREERTOS_TICK_SUPPORT_SYSTIMER && ", - "help": "Select this to use systimer with the 3 interrupt priority.", - "id": "FREERTOS_CORETIMER_SYSTIMER_LVL3", - "name": "FREERTOS_CORETIMER_SYSTIMER_LVL3", - "range": null, - "title": "SYSTIMER 0 (level 3)", - "type": "bool" - } - ], - "depends_on": null, - "help": "FreeRTOS needs a timer with an associated interrupt to use as the main tick source to increase\ncounters, run timers and do pre-emptive multitasking with. There are multiple timers available to do\nthis, with different interrupt priorities.", - "id": "component-config-freertos-port-tick-timer-source-xtensa-only-", - "name": "FREERTOS_CORETIMER", - "title": "Tick timer source (Xtensa Only)", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "FREERTOS_SYSTICK_USES_SYSTIMER", - "name": "FREERTOS_SYSTICK_USES_SYSTIMER", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "FREERTOS_SYSTICK_USES_CCOUNT", - "name": "FREERTOS_SYSTICK_USES_CCOUNT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": "ESP Timer will be used as the clock source for FreeRTOS run time stats. The ESP Timer runs at a\nfrequency of 1MHz regardless of Dynamic Frequency Scaling. Therefore the ESP Timer will overflow in\napproximately 4290 seconds.", - "id": "FREERTOS_RUN_TIME_STATS_USING_ESP_TIMER", - "name": "FREERTOS_RUN_TIME_STATS_USING_ESP_TIMER", - "range": null, - "title": "Use ESP TIMER for run time stats", - "type": "bool" - }, - { - "children": [], - "depends_on": "FREERTOS_SYSTICK_USES_CCOUNT && ", - "help": "CPU Clock will be used as the clock source for the generation of run time stats. The CPU Clock has\na frequency dependent on ESP_DEFAULT_CPU_FREQ_MHZ and Dynamic Frequency Scaling (DFS). Therefore\nthe CPU Clock frequency can fluctuate between 80 to 240MHz. Run time stats generated using the CPU\nClock represents the number of CPU cycles each task is allocated and DOES NOT reflect the amount of\ntime each task runs for (as CPU clock frequency can change). If the CPU clock consistently runs at\nthe maximum frequency of 240MHz, it will overflow in approximately 17 seconds.", - "id": "FREERTOS_RUN_TIME_STATS_USING_CPU_CLK", - "name": "FREERTOS_RUN_TIME_STATS_USING_CPU_CLK", - "range": null, - "title": "Use CPU Clock for run time stats", - "type": "bool" - } - ], - "depends_on": "FREERTOS_GENERATE_RUN_TIME_STATS", - "help": "Choose the clock source for FreeRTOS run time stats. Options are CPU0's CPU Clock or the ESP Timer.\nBoth clock sources are 32 bits. The CPU Clock can run at a higher frequency hence provide a finer\nresolution but will overflow much quicker. Note that run time stats are only valid until the clock\nsource overflows.", - "id": "component-config-freertos-port-choose-the-clock-source-for-run-time-stats", - "name": "FREERTOS_RUN_TIME_STATS_CLK", - "title": "Choose the clock source for run time stats", - "type": "choice" - }, - { - "children": [ - { - "children": [], - "depends_on": "SPI_FLASH_AUTO_SUSPEND && FREERTOS_PLACE_FUNCTIONS_INTO_FLASH", - "help": "When enabled additional FreeRTOS functions which maybe called from an ISR context are\nalso placed in Flash, thus freeing up more IRAM.\nThis option is only applicable when the SPI_FLASH_AUTO_SUSPEND feature is supported.", - "id": "FREERTOS_PLACE_ISR_FUNCTIONS_INTO_FLASH", - "name": "FREERTOS_PLACE_ISR_FUNCTIONS_INTO_FLASH", - "range": null, - "title": "Place FreeRTOS functions called from ISR context into Flash", - "type": "bool" - } - ], - "depends_on": null, - "help": "When enabled the selected Non-ISR FreeRTOS functions will be placed into Flash memory instead of IRAM.\nThis saves up to 8KB of IRAM depending on which functions are used.", - "id": "FREERTOS_PLACE_FUNCTIONS_INTO_FLASH", - "name": "FREERTOS_PLACE_FUNCTIONS_INTO_FLASH", - "range": null, - "title": "Place FreeRTOS functions into Flash", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "If enabled, context of port*_CRITICAL calls (ISR or Non-ISR) would be checked to be in compliance with\nVanilla FreeRTOS. e.g Calling port*_CRITICAL from ISR context would cause assert failure", - "id": "FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE", - "name": "FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE", - "range": null, - "title": "Tests compliance with Vanilla FreeRTOS port*_CRITICAL calls", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-freertos-port", - "title": "Port", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "SPIRAM && FREERTOS_SUPPORT_STATIC_ALLOCATION", - "help": "Accessing memory in PSRAM has certain restrictions, so task stacks allocated by xTaskCreate\nare by default allocated from internal RAM.\n\nThis option allows for passing memory allocated from SPIRAM to be passed to xTaskCreateStatic.\nThis should only be used for tasks where the stack is never accessed while the cache is disabled.\n\nExtra notes for ESP32:\n\nBecause some bits of the ESP32 code environment cannot be recompiled with the cache workaround,\nnormally tasks cannot be safely run with their stack residing in external memory; for this reason\nxTaskCreate (and related task creation functions) always allocate stack in internal memory and\nxTaskCreateStatic will check if the memory passed to it is in internal memory.\nIf you have a task that needs a large amount of stack and does not call on ROM code in any way\n(no direct calls, but also no Bluetooth/WiFi), you can try enable this to\ncause xTaskCreateStatic to allow tasks stack in external memory.", - "id": "FREERTOS_TASK_CREATE_ALLOW_EXT_MEM", - "name": "FREERTOS_TASK_CREATE_ALLOW_EXT_MEM", - "range": null, - "title": "Allow external memory as an argument to xTaskCreateStatic (READ HELP)", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-freertos-extra", - "title": "Extra", - "type": "menu" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "FREERTOS_PORT", - "name": "FREERTOS_PORT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "FREERTOS_NO_AFFINITY", - "name": "FREERTOS_NO_AFFINITY", - "range": null, - "title": null, - "type": "hex" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "FREERTOS_SUPPORT_STATIC_ALLOCATION", - "name": "FREERTOS_SUPPORT_STATIC_ALLOCATION", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Hidden option, gets selected by CONFIG_ESP_DEBUG_OCDAWARE", - "id": "FREERTOS_DEBUG_OCDAWARE", - "name": "FREERTOS_DEBUG_OCDAWARE", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "FREERTOS_ENABLE_TASK_SNAPSHOT", - "name": "FREERTOS_ENABLE_TASK_SNAPSHOT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "!ESP_PANIC_HANDLER_IRAM", - "help": null, - "id": "FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH", - "name": "FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "FREERTOS_NUMBER_OF_CORES", - "name": "FREERTOS_NUMBER_OF_CORES", - "range": [ - 1, - 2 - ], - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "FREERTOS_IN_IRAM", - "name": "FREERTOS_IN_IRAM", - "range": null, - "title": null, - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-freertos", - "title": "FreeRTOS", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "HAL_ASSERTION_EQUALS_SYSTEM", - "name": "HAL_ASSERTION_EQUALS_SYSTEM", - "range": null, - "title": "Same as system assertion level", - "type": "bool" - }, - { - "children": [], - "depends_on": "COMPILER_OPTIMIZATION_ASSERTION_LEVEL >= 0 && ", - "help": null, - "id": "HAL_ASSERTION_DISABLE", - "name": "HAL_ASSERTION_DISABLE", - "range": null, - "title": "Disabled", - "type": "bool" - }, - { - "children": [], - "depends_on": "COMPILER_OPTIMIZATION_ASSERTION_LEVEL >= 1 && ", - "help": null, - "id": "HAL_ASSERTION_SILENT", - "name": "HAL_ASSERTION_SILENT", - "range": null, - "title": "Silent", - "type": "bool" - }, - { - "children": [], - "depends_on": "COMPILER_OPTIMIZATION_ASSERTION_LEVEL >= 2 && ", - "help": null, - "id": "HAL_ASSERTION_ENABLE", - "name": "HAL_ASSERTION_ENABLE", - "range": null, - "title": "Enabled", - "type": "bool" - } - ], - "depends_on": null, - "help": "Set the assert behavior / level for HAL component.\nHAL component assert level can be set separately,\nbut the level can't exceed the system assertion level.\ne.g. If the system assertion is disabled, then the HAL\nassertion can't be enabled either. If the system assertion\nis enable, then the HAL assertion can still be disabled\nby this Kconfig option.", - "id": "component-config-hardware-abstraction-layer-hal-and-low-level-ll--default-hal-assertion-level", - "name": "HAL_DEFAULT_ASSERTION_LEVEL", - "title": "Default HAL assertion level", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "HAL_DEFAULT_ASSERTION_LEVEL", - "name": "HAL_DEFAULT_ASSERTION_LEVEL", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "HAL_LOG_LEVEL_NONE", - "name": "HAL_LOG_LEVEL_NONE", - "range": null, - "title": "No output", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "HAL_LOG_LEVEL_ERROR", - "name": "HAL_LOG_LEVEL_ERROR", - "range": null, - "title": "Error", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "HAL_LOG_LEVEL_WARN", - "name": "HAL_LOG_LEVEL_WARN", - "range": null, - "title": "Warning", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "HAL_LOG_LEVEL_INFO", - "name": "HAL_LOG_LEVEL_INFO", - "range": null, - "title": "Info", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "HAL_LOG_LEVEL_DEBUG", - "name": "HAL_LOG_LEVEL_DEBUG", - "range": null, - "title": "Debug", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "HAL_LOG_LEVEL_VERBOSE", - "name": "HAL_LOG_LEVEL_VERBOSE", - "range": null, - "title": "Verbose", - "type": "bool" - } - ], - "depends_on": "!LOG_DEFAULT_LEVEL_NONE && !LOG_DEFAULT_LEVEL_ERROR && !LOG_DEFAULT_LEVEL_WARN && !LOG_DEFAULT_LEVEL_INFO && !LOG_DEFAULT_LEVEL_DEBUG && !LOG_DEFAULT_LEVEL_VERBOSE", - "help": "Specify how much output to see in HAL logs.", - "id": "component-config-hardware-abstraction-layer-hal-and-low-level-ll--hal-layer-log-verbosity", - "name": "HAL_LOG_LEVEL", - "title": "HAL layer log verbosity", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "HAL_LOG_LEVEL", - "name": "HAL_LOG_LEVEL", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": "ESP_ROM_HAS_HAL_SYSTIMER", - "help": "Enable this flag to use HAL functions from ROM instead of ESP-IDF.\n\nIf keeping this as \"n\" in your project, you will have less free IRAM.\nIf making this as \"y\" in your project, you will increase free IRAM,\nbut you will lose the possibility to debug this module, and some new\nfeatures will be added and bugs will be fixed in the IDF source\nbut cannot be synced to ROM.", - "id": "HAL_SYSTIMER_USE_ROM_IMPL", - "name": "HAL_SYSTIMER_USE_ROM_IMPL", - "range": null, - "title": "Use ROM implementation of SysTimer HAL driver", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_ROM_HAS_HAL_WDT", - "help": "Enable this flag to use HAL functions from ROM instead of ESP-IDF.\n\nIf keeping this as \"n\" in your project, you will have less free IRAM.\nIf making this as \"y\" in your project, you will increase free IRAM,\nbut you will lose the possibility to debug this module, and some new\nfeatures will be added and bugs will be fixed in the IDF source\nbut cannot be synced to ROM.", - "id": "HAL_WDT_USE_ROM_IMPL", - "name": "HAL_WDT_USE_ROM_IMPL", - "range": null, - "title": "Use ROM implementation of WDT HAL driver", - "type": "bool" - }, - { - "children": [], - "depends_on": "IDF_TARGET_ESP32H2", - "help": "Enable this option to apply the countermeasure for ECDSA signature operation\nThis countermeasure masks the real ECDSA sign operation\nunder dummy sign operations to add randomness in the generated power signature.\nThis countermeasure is only necessary for ESP32-H2 < v1.2.", - "id": "HAL_ECDSA_GEN_SIG_CM", - "name": "HAL_ECDSA_GEN_SIG_CM", - "range": null, - "title": "Enable countermeasure for ECDSA signature generation", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-hardware-abstraction-layer-hal-and-low-level-ll-", - "title": "Hardware Abstraction Layer (HAL) and Low Level (LL)", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "HEAP_POISONING_DISABLED", - "name": "HEAP_POISONING_DISABLED", - "range": null, - "title": "Basic (no poisoning)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "HEAP_POISONING_LIGHT", - "name": "HEAP_POISONING_LIGHT", - "range": null, - "title": "Light impact", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "HEAP_POISONING_COMPREHENSIVE", - "name": "HEAP_POISONING_COMPREHENSIVE", - "range": null, - "title": "Comprehensive", - "type": "bool" - } - ], - "depends_on": null, - "help": "Enable heap poisoning features to detect heap corruption caused by out-of-bounds access to heap memory.\n\nSee the \"Heap Memory Debugging\" page of the IDF documentation\nfor a description of each level of heap corruption detection.", - "id": "component-config-heap-memory-debugging-heap-corruption-detection", - "name": "HEAP_CORRUPTION_DETECTION", - "title": "Heap corruption detection", - "type": "choice" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "HEAP_TRACING_OFF", - "name": "HEAP_TRACING_OFF", - "range": null, - "title": "Disabled", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "HEAP_TRACING_STANDALONE", - "name": "HEAP_TRACING_STANDALONE", - "range": null, - "title": "Standalone", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "HEAP_TRACING_TOHOST", - "name": "HEAP_TRACING_TOHOST", - "range": null, - "title": "Host-based", - "type": "bool" - } - ], - "depends_on": null, - "help": "Enables the heap tracing API defined in esp_heap_trace.h.\n\nThis function causes a moderate increase in IRAM code side and a minor increase in heap function\n(malloc/free/realloc) CPU overhead, even when the tracing feature is not used.\nSo it's best to keep it disabled unless tracing is being used.", - "id": "component-config-heap-memory-debugging-heap-tracing", - "name": "HEAP_TRACING_DEST", - "title": "Heap tracing", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": "Enables/disables heap tracing API.", - "id": "HEAP_TRACING", - "name": "HEAP_TRACING", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "SPIRAM && HEAP_TRACE_HASH_MAP", - "help": "When enabled this configuration forces the hash map to be placed in external RAM.", - "id": "HEAP_TRACE_HASH_MAP_IN_EXT_RAM", - "name": "HEAP_TRACE_HASH_MAP_IN_EXT_RAM", - "range": null, - "title": "Place hash map in external RAM", - "type": "bool" - }, - { - "children": [], - "depends_on": "HEAP_TRACE_HASH_MAP", - "help": "Defines the number of entries in the heap trace hashmap. Each entry takes 8 bytes.\nThe bigger this number is, the better the performance. Recommended range: 200 - 2000.", - "id": "HEAP_TRACE_HASH_MAP_SIZE", - "name": "HEAP_TRACE_HASH_MAP_SIZE", - "range": null, - "title": "The number of entries in the hash map", - "type": "int" - } - ], - "depends_on": "HEAP_TRACING_STANDALONE", - "help": "Enable this flag to use a hash map to increase performance in handling\nheap trace records.\n\nHeap trace standalone supports storing records as a list, or a list + hash map.\n\nUsing only a list takes less memory, but calls to 'free' will get slower as the\nlist grows. This is particularly affected when using HEAP_TRACE_ALL mode.\n\nBy using a list + hash map, calls to 'free' remain fast, at the cost of\nadditional memory to store the hash map.", - "id": "HEAP_TRACE_HASH_MAP", - "name": "HEAP_TRACE_HASH_MAP", - "range": null, - "title": "Use hash map mechanism to access heap trace records", - "type": "bool" - }, - { - "children": [], - "depends_on": "HEAP_TRACING", - "help": "Number of stack frames to save when tracing heap operation callers.\n\nMore stack frames uses more memory in the heap trace buffer (and slows down allocation), but\ncan provide useful information.", - "id": "HEAP_TRACING_STACK_DEPTH", - "name": "HEAP_TRACING_STACK_DEPTH", - "range": null, - "title": "Heap tracing stack depth", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Enable the user to implement function hooks triggered for each successful allocation and free.", - "id": "HEAP_USE_HOOKS", - "name": "HEAP_USE_HOOKS", - "range": null, - "title": "Use allocation and free hooks", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "HEAP_TASK_TRACKING", - "help": "When enabled, this configuration allows the user to keep trace of the memory usage\nof a task that has been deleted.\n\nThis allows the user to verify that no memory allocated within a task remains unfreed\nbefore terminating the task\n\nNote that this feature cannot keep track of a task deletion if the task is allocated statically", - "id": "HEAP_TRACK_DELETED_TASKS", - "name": "HEAP_TRACK_DELETED_TASKS", - "range": null, - "title": "Keep information about the memory usage of deleted tasks", - "type": "bool" - } - ], - "depends_on": null, - "help": "Enables tracking the task responsible for each heap allocation.\n\nNote: Allocating or freeing memory or using the task tracking API will lead to a crash when the\nscheduler is not working (e.g, after calling vTaskSuspendAll).", - "id": "HEAP_TASK_TRACKING", - "name": "HEAP_TASK_TRACKING", - "range": null, - "title": "Enable heap task tracking", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "When enabled, if a memory allocation operation fails it will cause a system abort.", - "id": "HEAP_ABORT_WHEN_ALLOCATION_FAILS", - "name": "HEAP_ABORT_WHEN_ALLOCATION_FAILS", - "range": null, - "title": "Abort if memory allocation fails", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_ROM_HAS_HEAP_TLSF", - "help": "Enable this flag to use heap functions from ROM instead of ESP-IDF.\n\nIf keeping this as \"n\" in your project, you will have less free IRAM.\nIf making this as \"y\" in your project, you will increase free IRAM,\nbut you will lose the possibility to debug this module, and some new\nfeatures will be added and bugs will be fixed in the IDF source\nbut cannot be synced to ROM.", - "id": "HEAP_TLSF_USE_ROM_IMPL", - "name": "HEAP_TLSF_USE_ROM_IMPL", - "range": null, - "title": "Use ROM implementation of heap tlsf library", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enable this flag to save up RAM space by placing the heap component in the flash memory\n\nNote that it is only safe to enable this configuration if no functions from esp_heap_caps.h\nor esp_heap_trace.h are called from IRAM ISR which runs when cache is disabled.", - "id": "HEAP_PLACE_FUNCTION_INTO_FLASH", - "name": "HEAP_PLACE_FUNCTION_INTO_FLASH", - "range": null, - "title": "Force the entire heap component to be placed in flash memory", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-heap-memory-debugging", - "title": "Heap memory debugging", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "IEEE802154_ENABLED", - "help": "The number of 802.15.4 receive buffers", - "id": "IEEE802154_RX_BUFFER_SIZE", - "name": "IEEE802154_RX_BUFFER_SIZE", - "range": [ - 2, - 100 - ], - "title": "The number of 802.15.4 receive buffers", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": "configure the CCA mode to Carrier sense only", - "id": "IEEE802154_CCA_CARRIER", - "name": "IEEE802154_CCA_CARRIER", - "range": null, - "title": "Carrier sense only", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "configure the CCA mode to Energy above threshold", - "id": "IEEE802154_CCA_ED", - "name": "IEEE802154_CCA_ED", - "range": null, - "title": "Energy above threshold", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "configure the CCA mode to Carrier sense OR energy above threshold", - "id": "IEEE802154_CCA_CARRIER_OR_ED", - "name": "IEEE802154_CCA_CARRIER_OR_ED", - "range": null, - "title": "Carrier sense OR energy above threshold", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "configure the CCA mode to Carrier sense AND energy above threshold", - "id": "IEEE802154_CCA_CARRIER_AND_ED", - "name": "IEEE802154_CCA_CARRIER_AND_ED", - "range": null, - "title": "Carrier sense AND energy above threshold", - "type": "bool" - } - ], - "depends_on": "IEEE802154_ENABLED", - "help": "configure the CCA mode", - "id": "component-config-ieee-802-15-4-ieee802154-enable-clear-channel-assessment-cca-mode", - "name": "IEEE802154_CCA_MODE", - "title": "Clear Channel Assessment (CCA) mode", - "type": "choice" - }, - { - "children": [], - "depends_on": "IEEE802154_ENABLED", - "help": null, - "id": "IEEE802154_CCA_MODE", - "name": "IEEE802154_CCA_MODE", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": "IEEE802154_ENABLED", - "help": "set the CCA threshold, in dB", - "id": "IEEE802154_CCA_THRESHOLD", - "name": "IEEE802154_CCA_THRESHOLD", - "range": [ - -120, - 0 - ], - "title": "CCA detection threshold", - "type": "int" - }, - { - "children": [], - "depends_on": "IEEE802154_ENABLED", - "help": "set the pending table size", - "id": "IEEE802154_PENDING_TABLE_SIZE", - "name": "IEEE802154_PENDING_TABLE_SIZE", - "range": [ - 1, - 100 - ], - "title": "Pending table size", - "type": "int" - }, - { - "children": [], - "depends_on": "IEEE802154_ENABLED", - "help": "Enable IEEE802154 multi-pan", - "id": "IEEE802154_MULTI_PAN_ENABLE", - "name": "IEEE802154_MULTI_PAN_ENABLE", - "range": null, - "title": "Enable multi-pan feature for frame filter", - "type": "bool" - }, - { - "children": [], - "depends_on": "IEEE802154_ENABLED", - "help": "Enabling this option increases throughput by ~5% at the expense of ~2.1k\nIRAM code size increase.", - "id": "IEEE802154_TIMING_OPTIMIZATION", - "name": "IEEE802154_TIMING_OPTIMIZATION", - "range": null, - "title": "Enable throughput optimization", - "type": "bool" - }, - { - "children": [], - "depends_on": "PM_ENABLE && IEEE802154_ENABLED", - "help": "Enabling this option allows the IEEE802.15.4 module to be powered down during automatic light sleep,\nwhich reduces current consumption.", - "id": "IEEE802154_SLEEP_ENABLE", - "name": "IEEE802154_SLEEP_ENABLE", - "range": null, - "title": "Enable IEEE802154 light sleep", - "type": "bool" - }, - { - "children": [], - "depends_on": "IEEE802154_ENABLED", - "help": "Enabling this option allows different kinds of IEEE802154 debug output.\nAll IEEE802154 debug features increase the size of the final binary.", - "id": "IEEE802154_DEBUG", - "is_menuconfig": true, - "name": "IEEE802154_DEBUG", - "range": null, - "title": "Enable IEEE802154 Debug", - "type": "menu" - }, - { - "children": [], - "depends_on": "IEEE802154_ENABLED", - "help": "Enabling this option to monitor and detect certain abnormal or unexpected\nstates during the operation of the IEEE 802.15.4. When this option is enabled,\nit will perform additional runtime checks and assertions.", - "id": "IEEE802154_DEBUG_ASSERT_MONITOR", - "name": "IEEE802154_DEBUG_ASSERT_MONITOR", - "range": null, - "title": "Enable IEEE802154 assert monitor", - "type": "bool" - } - ], - "depends_on": null, - "help": null, - "id": "IEEE802154_ENABLED", - "name": "IEEE802154_ENABLED", - "range": null, - "title": "IEEE802154 Enable", - "type": "bool" - }, - { - "children": [], - "depends_on": "IEEE802154_DEBUG", - "help": "Enabling this option to count IEEE802154 rx buffer when allocating or freeing.", - "id": "IEEE802154_RX_BUFFER_STATISTIC", - "name": "IEEE802154_RX_BUFFER_STATISTIC", - "range": null, - "title": "Rx buffer statistic", - "type": "bool" - }, - { - "children": [], - "depends_on": "IEEE802154_DEBUG", - "help": "Enabling this option to print more information when assert.", - "id": "IEEE802154_ASSERT", - "name": "IEEE802154_ASSERT", - "range": null, - "title": "Enrich the assert information", - "type": "bool" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "IEEE802154_RECORD_EVENT", - "help": "set the record event table size", - "id": "IEEE802154_RECORD_EVENT_SIZE", - "name": "IEEE802154_RECORD_EVENT_SIZE", - "range": null, - "title": "Record event table size", - "type": "int" - } - ], - "depends_on": "IEEE802154_RECORD", - "help": "Enabling this option to record event, when assert, the recorded event will be printed.", - "id": "IEEE802154_RECORD_EVENT", - "name": "IEEE802154_RECORD_EVENT", - "range": null, - "title": "Enable record event information for debugging", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "IEEE802154_RECORD_STATE", - "help": "set the record state table size", - "id": "IEEE802154_RECORD_STATE_SIZE", - "name": "IEEE802154_RECORD_STATE_SIZE", - "range": null, - "title": "Record state table size", - "type": "int" - } - ], - "depends_on": "IEEE802154_RECORD", - "help": "Enabling this option to record state, when assert, the recorded state will be printed.", - "id": "IEEE802154_RECORD_STATE", - "name": "IEEE802154_RECORD_STATE", - "range": null, - "title": "Enable record state information for debugging", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "IEEE802154_RECORD_CMD", - "help": "set the record command table size", - "id": "IEEE802154_RECORD_CMD_SIZE", - "name": "IEEE802154_RECORD_CMD_SIZE", - "range": null, - "title": "Record command table size", - "type": "int" - } - ], - "depends_on": "IEEE802154_RECORD", - "help": "Enabling this option to record the command, when assert, the recorded\ncommand will be printed.", - "id": "IEEE802154_RECORD_CMD", - "name": "IEEE802154_RECORD_CMD", - "range": null, - "title": "Enable record command information for debugging", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "IEEE802154_RECORD_ABORT", - "help": "set the record abort table size", - "id": "IEEE802154_RECORD_ABORT_SIZE", - "name": "IEEE802154_RECORD_ABORT_SIZE", - "range": null, - "title": "Record abort table size", - "type": "int" - } - ], - "depends_on": "IEEE802154_RECORD", - "help": "Enabling this option to record the abort, when assert, the recorded\nabort will be printed.", - "id": "IEEE802154_RECORD_ABORT", - "name": "IEEE802154_RECORD_ABORT", - "range": null, - "title": "Enable record abort information for debugging", - "type": "bool" - } - ], - "depends_on": "IEEE802154_DEBUG", - "help": "Enabling this option to add some probe codes in the driver, and record these information.", - "id": "IEEE802154_RECORD", - "name": "IEEE802154_RECORD", - "range": null, - "title": "Record the information with IEEE802154 state and event", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "IEEE802154_RECORD_TXRX_FRAME", - "help": "set the record frame table size", - "id": "IEEE802154_RECORD_TXRX_FRAME_SIZE", - "name": "IEEE802154_RECORD_TXRX_FRAME_SIZE", - "range": null, - "title": "Record frame table size", - "type": "int" - } - ], - "depends_on": "IEEE802154_DEBUG", - "help": "Enabling this option to record the tx and rx packets", - "id": "IEEE802154_RECORD_TXRX_FRAME", - "name": "IEEE802154_RECORD_TXRX_FRAME", - "range": null, - "title": "Enable record txrx packets for debugging", - "type": "bool" - }, - { - "children": [], - "depends_on": "IEEE802154_DEBUG", - "help": "Enabling this option to record the tx and rx", - "id": "IEEE802154_TXRX_STATISTIC", - "name": "IEEE802154_TXRX_STATISTIC", - "range": null, - "title": "Enable record tx/rx packets information for debugging", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-ieee-802-15-4", - "title": "IEEE 802.15.4", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": "Select this option to use Log V1. Recommended for projects with strict stack constraints\nor that prioritize performance over flexibility.", - "id": "LOG_VERSION_1", - "name": "LOG_VERSION_1", - "range": null, - "title": "V1", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "Select this option to use Log V2. Recommended for projects that require smaller binaries,\nruntime log formatting configuration, or advanced logging features.", - "id": "LOG_VERSION_2", - "name": "LOG_VERSION_2", - "range": null, - "title": "V2", - "type": "bool" - } - ], - "depends_on": null, - "help": "Select the log version to be used by the ESP log component.\n\n- \"V1\": This version integrates log formatting into the format string provided by the user.\n Logs are processed and formatted during compile time, leading to a larger binary file.\n Example: ESP_LOGI(\"boot\", \"chip revision: v%d.%d\", major, minor);\n Output: I (56) boot: chip revision: v3.0\n Note: Log strings are stored in Flash with added formatting characters.\n Format string on flash: \"[0;32mI (%lu) %s: chip revision: v%d.%d [0m\"\n\n- \"V2\": This version centralizes log formatting within the esp_log() function.\n User-supplied format strings are stored without added formatting, reducing binary size.\n Example: ESP_LOGI(\"boot\", \"chip revision: v%d.%d\", major, minor);\n Output: I (56) boot: chip revision: v3.0\n Note: This version supports runtime configuration of formatting and is more flexible,\n logging from constrained environments (ex.: ISR, Startup, Cache disabled).\n It may consumes a bit more stack and affect performance.\n Format string on flash: \"chip revision: v%d.%d\"\n\nUse V1 for minimal stack usage and simpler implementation.\nUse V2 for smaller binary sizes, more flexible log formatting, and advanced features like disabling\ncolors or timestamps.", - "id": "component-config-log-log-version", - "name": "LOG_VERSION", - "title": "Log version", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": "This configuration sets the log version number based on the chosen log version.", - "id": "LOG_VERSION", - "name": "LOG_VERSION", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "LOG_DEFAULT_LEVEL_NONE", - "name": "LOG_DEFAULT_LEVEL_NONE", - "range": null, - "title": "No output", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LOG_DEFAULT_LEVEL_ERROR", - "name": "LOG_DEFAULT_LEVEL_ERROR", - "range": null, - "title": "Error", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LOG_DEFAULT_LEVEL_WARN", - "name": "LOG_DEFAULT_LEVEL_WARN", - "range": null, - "title": "Warning", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LOG_DEFAULT_LEVEL_INFO", - "name": "LOG_DEFAULT_LEVEL_INFO", - "range": null, - "title": "Info", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LOG_DEFAULT_LEVEL_DEBUG", - "name": "LOG_DEFAULT_LEVEL_DEBUG", - "range": null, - "title": "Debug", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LOG_DEFAULT_LEVEL_VERBOSE", - "name": "LOG_DEFAULT_LEVEL_VERBOSE", - "range": null, - "title": "Verbose", - "type": "bool" - } - ], - "depends_on": null, - "help": "Specify how much output to see in logs by default.\nYou can set lower verbosity level at runtime using\nesp_log_level_set() function if LOG_DYNAMIC_LEVEL_CONTROL\nis enabled.\n\nBy default, this setting limits which log statements\nare compiled into the program. For example, selecting\n\"Warning\" would mean that changing log level to \"Debug\"\nat runtime will not be possible. To allow increasing log\nlevel above the default at runtime, see the next option.", - "id": "component-config-log-log-level-default-log-verbosity", - "name": "LOG_DEFAULT_LEVEL", - "title": "Default log verbosity", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "LOG_DEFAULT_LEVEL", - "name": "LOG_DEFAULT_LEVEL", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "LOG_MAXIMUM_EQUALS_DEFAULT", - "name": "LOG_MAXIMUM_EQUALS_DEFAULT", - "range": null, - "title": "Same as default", - "type": "bool" - }, - { - "children": [], - "depends_on": "LOG_DEFAULT_LEVEL < 1 && ", - "help": null, - "id": "LOG_MAXIMUM_LEVEL_ERROR", - "name": "LOG_MAXIMUM_LEVEL_ERROR", - "range": null, - "title": "Error", - "type": "bool" - }, - { - "children": [], - "depends_on": "LOG_DEFAULT_LEVEL < 2 && ", - "help": null, - "id": "LOG_MAXIMUM_LEVEL_WARN", - "name": "LOG_MAXIMUM_LEVEL_WARN", - "range": null, - "title": "Warning", - "type": "bool" - }, - { - "children": [], - "depends_on": "LOG_DEFAULT_LEVEL < 3 && ", - "help": null, - "id": "LOG_MAXIMUM_LEVEL_INFO", - "name": "LOG_MAXIMUM_LEVEL_INFO", - "range": null, - "title": "Info", - "type": "bool" - }, - { - "children": [], - "depends_on": "LOG_DEFAULT_LEVEL < 4 && ", - "help": null, - "id": "LOG_MAXIMUM_LEVEL_DEBUG", - "name": "LOG_MAXIMUM_LEVEL_DEBUG", - "range": null, - "title": "Debug", - "type": "bool" - }, - { - "children": [], - "depends_on": "LOG_DEFAULT_LEVEL < 5 && ", - "help": null, - "id": "LOG_MAXIMUM_LEVEL_VERBOSE", - "name": "LOG_MAXIMUM_LEVEL_VERBOSE", - "range": null, - "title": "Verbose", - "type": "bool" - } - ], - "depends_on": null, - "help": "This config option sets the highest log verbosity that it's possible to select\nat runtime by calling esp_log_level_set(). This level may be higher than\nthe default verbosity level which is set when the app starts up.\n\nThis can be used enable debugging output only at a critical point, for a particular\ntag, or to minimize startup time but then enable more logs once the firmware has\nloaded.\n\nNote that increasing the maximum available log level will increase the firmware\nbinary size.\n\nThis option only applies to logging from the app, the bootloader log level is\nfixed at compile time to the separate \"Bootloader log verbosity\" setting.", - "id": "component-config-log-log-level-maximum-log-verbosity", - "name": "LOG_MAXIMUM_LEVEL", - "title": "Maximum log verbosity", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "LOG_MAXIMUM_LEVEL", - "name": "LOG_MAXIMUM_LEVEL", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": "Enables an additional global \"master\" log level check that occurs before a log tag cache\nlookup. This is useful if you want to compile in a lot of logs that are selectable at\nruntime, but avoid the performance hit during periods where you don't want log output.\n\nExamples include remote log forwarding, or disabling logs during a time-critical or\nCPU-intensive section and re-enabling them later. Results in larger program size\ndepending on number of logs compiled in.\n\nIf enabled, defaults to LOG_DEFAULT_LEVEL and can be set using\nesp_log_set_level_master(). This check takes precedence over ESP_LOG_LEVEL_LOCAL.", - "id": "LOG_MASTER_LEVEL", - "name": "LOG_MASTER_LEVEL", - "range": null, - "title": "Enable global master log level", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enabling this option allows dynamic changes to the log level at runtime\n(using esp_log_level_set()), providing the ability to increase or decrease\nthe log level during program execution.\nIf disabled, the log level remains static once set at compile-time and calling\nesp_log_level_set() will have no effect.\nIf binary size is a critical consideration and dynamic log level changes are not needed,\nconsider disabling this option when LOG_TAG_LEVEL_IMPL_NONE=y to minimize program size.", - "id": "LOG_DYNAMIC_LEVEL_CONTROL", - "name": "LOG_DYNAMIC_LEVEL_CONTROL", - "range": null, - "title": "Enable dynamic log level changes at runtime", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": "This option disables the ability to set the log level per tag.\nThe ability to change the log level at runtime depends on LOG_DYNAMIC_LEVEL_CONTROL.\nIf LOG_DYNAMIC_LEVEL_CONTROL is disabled, then changing the log level at runtime\nusing `esp_log_level_set()` is not possible.\nThis implementation is suitable for highly constrained environments.", - "id": "LOG_TAG_LEVEL_IMPL_NONE", - "name": "LOG_TAG_LEVEL_IMPL_NONE", - "range": null, - "title": "None", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "Select this option to use the linked list-only implementation (no cache) for log level retrieval.\nThis approach searches the linked list of all tags for the log level, which may be slower\nfor a large number of tags but may have lower memory requirements than the CACHE approach.\nThe linked list approach compares the whole strings of log tags for finding the log level.", - "id": "LOG_TAG_LEVEL_IMPL_LINKED_LIST", - "name": "LOG_TAG_LEVEL_IMPL_LINKED_LIST", - "range": null, - "title": "Linked List", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "Select this option to use a hybrid mode: cache in combination with the linked list\nfor log tag level checks. This hybrid approach offers a balance between speed and memory usage.\n\nThe cache stores recently accessed log tags and their corresponding log levels, providing\nfaster lookups for frequently used tags. The cache approach compares the tag pointers, which is\nfaster than comparing the whole strings.\n\nFor less frequently used tags, the linked list is used to search for the log level, which may be\nslower for a large number of tags but has lower memory requirements compared to a full cache.\n\nThis hybrid approach aims to improve the efficiency of log level retrieval by combining the benefits\nof both cache and linked list implementations.", - "id": "LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST", - "name": "LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST", - "range": null, - "title": "Cache + Linked List", - "type": "bool" - } - ], - "depends_on": null, - "help": "Choose the per-tag log level implementation for the log library. This functionality is used\nto enable/disable logs for a particular tag at run time. Applicable only for\napplication logs (i.e., not bootloader logs).", - "id": "component-config-log-log-level-level-settings-method-of-tag-level-checks", - "name": "LOG_TAG_LEVEL_IMPL", - "title": "Method of tag level checks", - "type": "choice" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": "This option enables the use of a simple array-based cache implementation for storing and\nretrieving log tag levels. There is no additional code that reorders the cache for fast lookups.\nSuitable for projects where memory usage optimization is crucial and the simplicity of implementation\nis preferred.", - "id": "LOG_TAG_LEVEL_CACHE_ARRAY", - "name": "LOG_TAG_LEVEL_CACHE_ARRAY", - "range": null, - "title": "Array", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "This option enables the use of a binary min-heap-based cache implementation for efficient\nstorage and retrieval of log tag levels. It does automatically optimizing cache for fast lookups.\nSuitable for projects where speed of lookup is critical and memory usage can accommodate\nthe overhead of maintaining a binary min-heap structure.", - "id": "LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP", - "name": "LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP", - "range": null, - "title": "Binary Min-Heap", - "type": "bool" - } - ], - "depends_on": "LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST", - "help": "The cache stores recently accessed log tags (address of tag) and their corresponding log levels,\nproviding faster lookups for frequently used tags. Cache size can be configured using the\nLOG_TAG_LEVEL_IMPL_CACHE_SIZE option. The cache approach compares the tag pointers, which is\nfaster than comparing the whole strings.", - "id": "component-config-log-log-level-level-settings-cache-implementation", - "name": "LOG_TAG_LEVEL_CACHE_IMPL", - "title": "Cache implementation", - "type": "choice" - }, - { - "children": [], - "depends_on": "LOG_TAG_LEVEL_CACHE_ARRAY || LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP", - "help": "This option sets the size of the cache used for log tag entries. The cache stores recently accessed\nlog tags and their corresponding log levels, which helps improve the efficiency of log level retrieval.\nThe value must be a power of 2 minus 1 (e.g., 1, 3, 7, 15, 31, 63, 127, 255, ...)\nto ensure proper cache behavior. For LOG_TAG_LEVEL_CACHE_ARRAY option the value can be any,\nwithout restrictions.\n\nNote: A larger cache size can improve lookup performance for frequently used log tags but may consume\nmore memory. Conversely, a smaller cache size reduces memory usage but may lead to more frequent cache\nevictions for less frequently used log tags.", - "id": "LOG_TAG_LEVEL_IMPL_CACHE_SIZE", - "name": "LOG_TAG_LEVEL_IMPL_CACHE_SIZE", - "range": null, - "title": "Log Tag Cache Size", - "type": "int" - } - ], - "depends_on": null, - "id": "component-config-log-log-level-level-settings", - "title": "Level Settings", - "type": "menu" - } - ], - "depends_on": null, - "id": "component-config-log-log-level", - "title": "Log Level", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": "Enable ANSI terminal color codes. Logs (info, errors, warnings) will contain color codes.\nIn order to view these, your terminal program must support ANSI color codes.\n\nThis is disabled by default, as colors are added in IDF Monitor. If you want to use new lines\nin the messages or you are using a different terminal program, you may want to enable this option.", - "id": "LOG_COLORS", - "name": "LOG_COLORS", - "range": null, - "title": "Color", - "type": "bool" - }, - { - "children": [], - "depends_on": "LOG_VERSION_2", - "help": "Enables support for color codes in the esp_log() function. If CONFIG_LOG_COLORS is enabled, this option\nis always active. If CONFIG_LOG_COLORS is disabled, this option allows you to still handle color codes\nin specific files by defining ESP_LOG_COLOR_DISABLED as 0 before including esp_log.h.\n\nNote that enabling this option may slightly increase IRAM usage due to additional color handling\nfunctionality. It provides flexibility to manage color output even when CONFIG_LOG_COLORS is turned off.", - "id": "LOG_COLORS_SUPPORT", - "name": "LOG_COLORS_SUPPORT", - "range": null, - "title": "Allow enabling color output at run time", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "LOG_VERSION_2 && ", - "help": null, - "id": "LOG_TIMESTAMP_SOURCE_NONE", - "name": "LOG_TIMESTAMP_SOURCE_NONE", - "range": null, - "title": "None", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LOG_TIMESTAMP_SOURCE_RTOS", - "name": "LOG_TIMESTAMP_SOURCE_RTOS", - "range": null, - "title": "Milliseconds Since Boot", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LOG_TIMESTAMP_SOURCE_SYSTEM", - "name": "LOG_TIMESTAMP_SOURCE_SYSTEM", - "range": null, - "title": "System Time (HH:MM:SS.sss)", - "type": "bool" - }, - { - "children": [], - "depends_on": "LOG_VERSION_2 && ", - "help": null, - "id": "LOG_TIMESTAMP_SOURCE_SYSTEM_FULL", - "name": "LOG_TIMESTAMP_SOURCE_SYSTEM_FULL", - "range": null, - "title": "System Time (YY-MM-DD HH:MM:SS.sss)", - "type": "bool" - }, - { - "children": [], - "depends_on": "LOG_VERSION_2 && ", - "help": null, - "id": "LOG_TIMESTAMP_SOURCE_UNIX", - "name": "LOG_TIMESTAMP_SOURCE_UNIX", - "range": null, - "title": "Unix time in milliseconds", - "type": "bool" - } - ], - "depends_on": null, - "help": "Choose what sort of timestamp is displayed in the log output:\n\n- \"None\" - The log will only contain the actual log messages themselves\n without any time-related information. Avoiding timestamps can help conserve\n processing power and memory. It might useful when you\n perform log analysis or debugging, sometimes it's more straightforward\n to work with logs that lack timestamps, especially if the time of occurrence\n is not critical for understanding the issues.\n\n- \"Milliseconds since boot\" is calculated from the RTOS tick count multiplied\n by the tick period. This time will reset after a software reboot.\n e.g. (90000)\n\n- \"System time (HH:MM:SS.sss)\" is taken from POSIX time functions which use the chip's\n RTC and high resolution timers to maintain an accurate time. The system time is\n initialized to 0 on startup, it can be set with an SNTP sync, or with\n POSIX time functions. This time will not reset after a software reboot.\n e.g. (00:01:30.000)\n\n- \"System time (YY-MM-DD HH:MM:SS.sss)\" it is the same as the above,\n but also prints the date as well.\n\n- \"Unix time in milliseconds\" is the same as the two above,\n but in Unix time format and in milliseconds.\n e.g. (1718795571035).\n\n- NOTE: Currently this will not get used in logging from binary blobs\n (i.e WiFi & Bluetooth libraries), these will always print\n milliseconds since boot.", - "id": "component-config-log-format-timestamp", - "name": "LOG_TIMESTAMP_SOURCE", - "title": "Timestamp", - "type": "choice" - }, - { - "children": [], - "depends_on": "LOG_VERSION_2", - "help": "Enables support for timestamp in the esp_log() function.\nIf CONFIG_LOG_TIMESTAMP_SOURCE_NONE, this option allows you to still handle timestamp\nin specific files by defining ESP_LOG_TIMESTAMP_DISABLED as 0 before including esp_log.h.\n\nNote that enabling this option may slightly increase IRAM usage due to additional timestamp handling\nfunctionality. It provides flexibility to manage timestamp output even when\nCONFIG_LOG_TIMESTAMP_SOURCE_NONE.", - "id": "LOG_TIMESTAMP_SUPPORT", - "name": "LOG_TIMESTAMP_SUPPORT", - "range": null, - "title": "Allow enabling timestamp output at run time", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-log-format", - "title": "Format", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": null, - "id": "LOG_MODE_TEXT_EN", - "name": "LOG_MODE_TEXT_EN", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "LOG_MODE_BINARY_EN", - "name": "LOG_MODE_BINARY_EN", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": "Enables text-based logging, where log messages are stored in a human-readable format.\nThis mode is useful for development and debugging, as it allows logs to be easily\nread and interpreted without additional processing.", - "id": "LOG_MODE_TEXT", - "name": "LOG_MODE_TEXT", - "range": null, - "title": "Text Log Mode", - "type": "bool" - }, - { - "children": [], - "depends_on": "LOG_VERSION_2 && ", - "help": "Enables binary logging with host-side format string expansion. In this mode, the\nformat argument of ESP_LOGx, ESP_EARLY_LOG, and ESP_DRAM_LOG macros is stored in a\nNOLOAD section, not included in the final binary file. This reduces flash usage by\napproximately 10% - 35%. The esp_log() function uses the binary log handler to output\nmessages. Instead of sending the full log string, the chip transmits only the\naddresses of these strings (if present in the ELF file). If the format string\ncannot be found in the ELF file, the chip sends the entire string. The host-side\nmonitor tool, which has access to the ELF file, reconstructs the log message using\nthe format string.\nThis reduces firmware size by eliminating format strings from\nflash memory and removing the usage of printf-like functions, potentially freeing up\na few kilobytes of space. To further reduce firmware size, wrap string data with ESP_LOG_ATTR_STR.", - "id": "LOG_MODE_BINARY", - "name": "LOG_MODE_BINARY", - "range": null, - "title": "Binary Log Mode", - "type": "bool" - } - ], - "depends_on": null, - "help": null, - "id": "component-config-log-settings-log-mode", - "name": "LOG_MODE", - "title": "Log Mode", - "type": "choice" - } - ], - "depends_on": null, - "id": "component-config-log-settings", - "title": "Settings", - "type": "menu" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "LOG_IN_IRAM", - "name": "LOG_IN_IRAM", - "range": null, - "title": "Place logging functions in IRAM", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-log", - "title": "Log", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": "Builds normally if selected. Excludes LwIP from build if unselected, even if it is a\ndependency of a component or application.\nSome applications can switch their IP stacks, e.g., when switching between chip\nand Linux targets (LwIP stack vs. Linux IP stack). Since the LwIP dependency cannot\neasily be excluded based on a Kconfig option, it has to be a dependency in all cases.\nThis switch allows the LwIP stack to be built selectively, even if it is a dependency.", - "id": "LWIP_ENABLE", - "name": "LWIP_ENABLE", - "range": null, - "title": "Enable LwIP stack", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "The default name this device will report to other devices on the network.\nCould be updated at runtime with esp_netif_set_hostname()", - "id": "LWIP_LOCAL_HOSTNAME", - "name": "LWIP_LOCAL_HOSTNAME", - "range": null, - "title": "Local netif hostname", - "type": "string" - }, - { - "children": [], - "depends_on": null, - "help": "LWIP tcpip task priority. In case of high throughput, this parameter\ncould be changed up to (configMAX_PRIORITIES-1).", - "id": "LWIP_TCPIP_TASK_PRIO", - "name": "LWIP_TCPIP_TASK_PRIO", - "range": [ - 1, - 24 - ], - "title": "LWIP TCP/IP Task Priority", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "LWIP_TCPIP_CORE_LOCKING", - "help": "when LWIP_TCPIP_CORE_LOCKING is enabled, this lets tcpip_input() grab the\nmutex for input packets as well, instead of allocating a message and passing\nit to tcpip_thread.", - "id": "LWIP_TCPIP_CORE_LOCKING_INPUT", - "name": "LWIP_TCPIP_CORE_LOCKING_INPUT", - "range": null, - "title": "Enable tcpip core locking input", - "type": "bool" - } - ], - "depends_on": null, - "help": "If Enable tcpip core locking,Creates a global mutex that is held\nduring TCPIP thread operations.Can be locked by client code to perform\nlwIP operations without changing into TCPIP thread using callbacks.\nSee LOCK_TCPIP_CORE() and UNLOCK_TCPIP_CORE().\n\nIf disable tcpip core locking,TCP IP will perform tasks through context switching", - "id": "LWIP_TCPIP_CORE_LOCKING", - "name": "LWIP_TCPIP_CORE_LOCKING", - "range": null, - "title": "Enable tcpip core locking", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enable to check that the project does not violate lwip thread safety.\nIf enabled, all lwip functions that require thread awareness run an assertion\nto verify that the TCP/IP core functionality is either locked or accessed\nfrom the correct thread.", - "id": "LWIP_CHECK_THREAD_SAFETY", - "name": "LWIP_CHECK_THREAD_SAFETY", - "range": null, - "title": "Checks that lwip API runs in expected context", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "If this feature is enabled, standard API such as gethostbyname\nsupport .local addresses by sending one shot multicast mDNS\nquery", - "id": "LWIP_DNS_SUPPORT_MDNS_QUERIES", - "name": "LWIP_DNS_SUPPORT_MDNS_QUERIES", - "range": null, - "title": "Enable mDNS queries in resolving host name", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "If this feature is enabled, all traffic from layer2(WIFI Driver) will be\ncopied to a new buffer before sending it to layer3(LWIP stack), freeing\nthe layer2 buffer.\nPlease be notified that the total layer2 receiving buffer is fixed and\nESP32 currently supports 25 layer2 receiving buffer, when layer2 buffer\nruns out of memory, then the incoming packets will be dropped in hardware.\nThe layer3 buffer is allocated from the heap, so the total layer3 receiving\nbuffer depends on the available heap size, when heap runs out of memory,\nno copy will be sent to layer3 and packet will be dropped in layer2.\nPlease make sure you fully understand the impact of this feature before\nenabling it.", - "id": "LWIP_L2_TO_L3_COPY", - "name": "LWIP_L2_TO_L3_COPY", - "range": null, - "title": "Enable copy between Layer2 and Layer3 packets", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "If this feature is enabled, some functions relating to RX/TX in LWIP will be\nput into IRAM, it can improve UDP/TCP throughput by >10% for single core mode,\nit doesn't help too much for dual core mode. On the other hand, it needs about\n10KB IRAM for these optimizations.\n\nIf this feature is disabled, all lwip functions will be put into FLASH.", - "id": "LWIP_IRAM_OPTIMIZATION", - "name": "LWIP_IRAM_OPTIMIZATION", - "range": null, - "title": "Enable LWIP IRAM optimization", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "If this feature is enabled, some tcp part functions relating to RX/TX in LWIP will be\nput into IRAM, it can improve TCP throughput. On the other hand, it needs about 17KB\nIRAM for these optimizations.", - "id": "LWIP_EXTRA_IRAM_OPTIMIZATION", - "name": "LWIP_EXTRA_IRAM_OPTIMIZATION", - "range": null, - "title": "Enable LWIP IRAM optimization for TCP part", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "If this feature is enabled, IGMP and MLD6 timers will be activated only\nwhen joining groups or receiving QUERY packets.\n\nThis feature will reduce the power consumption for applications which do not\nuse IGMP and MLD6.", - "id": "LWIP_TIMERS_ONDEMAND", - "name": "LWIP_TIMERS_ONDEMAND", - "range": null, - "title": "Enable LWIP Timers on demand", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "LWIP_ND6", - "help": "This option is used to set the the router flag for the NA packets.\nWhen enabled, the router flag in NA packet will always set to 1,\notherwise, never set router flag for NA packets.", - "id": "LWIP_FORCE_ROUTER_FORWARDING", - "name": "LWIP_FORCE_ROUTER_FORWARDING", - "range": null, - "title": "LWIP Force Router Forwarding Enable/Disable", - "type": "bool" - } - ], - "depends_on": "LWIP_IPV6", - "help": "This option is used to disable the Network Discovery Protocol (NDP) if it is not required.\nPlease use this option with caution, as the NDP is essential for IPv6 functionality within a local network.", - "id": "LWIP_ND6", - "name": "LWIP_ND6", - "range": null, - "title": "LWIP NDP6 Enable/Disable", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "The practical maximum limit is\ndetermined by available heap memory at runtime.\n\nSockets take up a certain amount of memory, and allowing fewer\nsockets to be open at the same time conserves memory. Specify\nthe maximum amount of sockets here. The valid value is from 1\nto 253. If using value above 61, update CMakeLists defining\nFD_SETSIZE to the number of sockets used plus the\nexpected open files (minimum of +3 for stdout, stderr and stdin).", - "id": "LWIP_MAX_SOCKETS", - "name": "LWIP_MAX_SOCKETS", - "range": [ - 1, - 253 - ], - "title": "Max number of open sockets", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "This option is deprecated. Do not use this option, use VFS_SUPPORT_SELECT instead.", - "id": "LWIP_USE_ONLY_LWIP_SELECT", - "name": "LWIP_USE_ONLY_LWIP_SELECT", - "range": null, - "title": "Support LWIP socket select() only (DEPRECATED)", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enabling this option allows SO_LINGER processing.\nl_onoff = 1,l_linger can set the timeout.\n\nIf l_linger=0, When a connection is closed, TCP will terminate the connection.\nThis means that TCP will discard any data packets stored in the socket send buffer\nand send an RST to the peer.\n\nIf l_linger!=0,Then closesocket() calls to block the process until\nthe remaining data packets has been sent or timed out.", - "id": "LWIP_SO_LINGER", - "name": "LWIP_SO_LINGER", - "range": null, - "title": "Enable SO_LINGER processing", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "LWIP_SO_REUSE", - "help": "Enabling this option means that any incoming broadcast or multicast\npacket will be copied to all of the local sockets that it matches\n(may be more than one if SO_REUSEADDR is set on the socket.)\n\nThis increases memory overhead as the packets need to be copied,\nhowever they are only copied per matching socket. You can safely\ndisable it if you don't plan to receive broadcast or multicast\ntraffic on more than one socket at a time.", - "id": "LWIP_SO_REUSE_RXTOALL", - "name": "LWIP_SO_REUSE_RXTOALL", - "range": null, - "title": "SO_REUSEADDR copies broadcast/multicast to all matches", - "type": "bool" - } - ], - "depends_on": null, - "help": "Enabling this option allows binding to a port which remains in\nTIME_WAIT.", - "id": "LWIP_SO_REUSE", - "name": "LWIP_SO_REUSE", - "range": null, - "title": "Enable SO_REUSEADDR option", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enabling this option allows checking for available data on a netconn.", - "id": "LWIP_SO_RCVBUF", - "name": "LWIP_SO_RCVBUF", - "range": null, - "title": "Enable SO_RCVBUF option", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enabling this option allows checking for the destination address\nof a received IPv4 Packet.", - "id": "LWIP_NETBUF_RECVINFO", - "name": "LWIP_NETBUF_RECVINFO", - "range": null, - "title": "Enable IP_PKTINFO option", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Set value for Time-To-Live used by transport layers.", - "id": "LWIP_IP_DEFAULT_TTL", - "name": "LWIP_IP_DEFAULT_TTL", - "range": [ - 1, - 255 - ], - "title": "The value for Time-To-Live used by transport layers", - "type": "int" - }, - { - "children": [], - "depends_on": "LWIP_IPV4", - "help": "Enabling this option allows fragmenting outgoing IP4 packets if their size\nexceeds MTU.", - "id": "LWIP_IP4_FRAG", - "name": "LWIP_IP4_FRAG", - "range": null, - "title": "Enable fragment outgoing IP4 packets", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_IPV6", - "help": "Enabling this option allows fragmenting outgoing IP6 packets if their size\nexceeds MTU.", - "id": "LWIP_IP6_FRAG", - "name": "LWIP_IP6_FRAG", - "range": null, - "title": "Enable fragment outgoing IP6 packets", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_IPV4", - "help": "Enabling this option allows reassemblying incoming fragmented IP4 packets.", - "id": "LWIP_IP4_REASSEMBLY", - "name": "LWIP_IP4_REASSEMBLY", - "range": null, - "title": "Enable reassembly incoming fragmented IP4 packets", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_IPV6", - "help": "Enabling this option allows reassemblying incoming fragmented IP6 packets.", - "id": "LWIP_IP6_REASSEMBLY", - "name": "LWIP_IP6_REASSEMBLY", - "range": null, - "title": "Enable reassembly incoming fragmented IP6 packets", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Set the maximum amount of pbufs waiting to be reassembled.", - "id": "LWIP_IP_REASS_MAX_PBUFS", - "name": "LWIP_IP_REASS_MAX_PBUFS", - "range": [ - 10, - 100 - ], - "title": "The maximum amount of pbufs waiting to be reassembled", - "type": "int" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "LWIP_IPV4_NAPT", - "help": "Enabling this option allows Port Forwarding or Port mapping.", - "id": "LWIP_IPV4_NAPT_PORTMAP", - "name": "LWIP_IPV4_NAPT_PORTMAP", - "range": null, - "title": "Enable NAT Port Mapping", - "type": "bool" - } - ], - "depends_on": "LWIP_IP_FORWARD", - "help": "Enabling this option allows Network Address and Port Translation.", - "id": "LWIP_IPV4_NAPT", - "name": "LWIP_IPV4_NAPT", - "range": null, - "title": "Enable NAT", - "type": "bool" - } - ], - "depends_on": null, - "help": "Enabling this option allows packets forwarding across multiple interfaces.", - "id": "LWIP_IP_FORWARD", - "name": "LWIP_IP_FORWARD", - "range": null, - "title": "Enable IP forwarding", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enabling this option allows LWIP statistics", - "id": "LWIP_STATS", - "name": "LWIP_STATS", - "range": null, - "title": "Enable LWIP statistics", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "LWIP_ESP_GRATUITOUS_ARP", - "help": "Set the timer interval for gratuitous ARP. The default value is 60s", - "id": "LWIP_GARP_TMR_INTERVAL", - "name": "LWIP_GARP_TMR_INTERVAL", - "range": null, - "title": "GARP timer interval(seconds)", - "type": "int" - } - ], - "depends_on": "LWIP_IPV4", - "help": "Enable this option allows to send gratuitous ARP periodically.\n\nThis option solve the compatibility issues.If the ARP table of the AP is old, and the AP\ndoesn't send ARP request to update it's ARP table, this will lead to the STA sending IP packet fail.\nThus we send gratuitous ARP periodically to let AP update it's ARP table.", - "id": "LWIP_ESP_GRATUITOUS_ARP", - "name": "LWIP_ESP_GRATUITOUS_ARP", - "range": null, - "title": "Send gratuitous ARP periodically", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "LWIP_ESP_MLDV6_REPORT", - "help": "Set the timer interval for mldv6 report. The default value is 30s", - "id": "LWIP_MLDV6_TMR_INTERVAL", - "name": "LWIP_MLDV6_TMR_INTERVAL", - "range": null, - "title": "mldv6 report timer interval(seconds)", - "type": "int" - } - ], - "depends_on": "LWIP_IPV6", - "help": "Enable this option allows to send mldv6 report periodically.\n\nThis option solve the issue that failed to receive multicast data.\nSome routers fail to forward multicast packets.\nTo solve this problem, send multicast mdlv6 report to routers regularly.", - "id": "LWIP_ESP_MLDV6_REPORT", - "name": "LWIP_ESP_MLDV6_REPORT", - "range": null, - "title": "Send mldv6 report periodically", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Set TCPIP task receive mail box size. Generally bigger value means higher throughput\nbut more memory. The value should be bigger than UDP/TCP mail box size.", - "id": "LWIP_TCPIP_RECVMBOX_SIZE", - "name": "LWIP_TCPIP_RECVMBOX_SIZE", - "range": [ - 6, - 64 - ], - "title": "TCPIP task receive mail box size", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "!LWIP_AUTOIP && ", - "help": null, - "id": "LWIP_DHCP_DOES_ARP_CHECK", - "name": "LWIP_DHCP_DOES_ARP_CHECK", - "range": null, - "title": "DHCP provides simple ARP check", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LWIP_DHCP_DOES_ACD_CHECK", - "name": "LWIP_DHCP_DOES_ACD_CHECK", - "range": null, - "title": "DHCP provides Address Conflict Detection (ACD)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LWIP_DHCP_DOES_NOT_CHECK_OFFERED_IP", - "name": "LWIP_DHCP_DOES_NOT_CHECK_OFFERED_IP", - "range": null, - "title": "DHCP does not detect conflict on the offered IP", - "type": "bool" - } - ], - "depends_on": "LWIP_IPV4", - "help": "Choose the preferred way of DHCP client to check if the offered address\nis available:\n* Using Address Conflict Detection (ACD) module assures that the offered IP address\nis properly probed and announced before binding in DHCP. This conforms to RFC5227,\nbut takes several seconds.\n* Using ARP check, we only send two ARP requests to check for replies. This process\nlasts 1 - 2 seconds.\n* No conflict detection: We directly bind the offered address.", - "id": "component-config-lwip-choose-how-dhcp-validates-offered-ip", - "name": "LWIP_DHCP_CHECKS_OFFERED_ADDRESS", - "title": "Choose how DHCP validates offered IP", - "type": "choice" - }, - { - "children": [], - "depends_on": "LWIP_IPV4", - "help": "This option could be used to disable DHCP client identification with its MAC address.\n(Client id is used by DHCP servers to uniquely identify clients and are included\nin the DHCP packets as an option 61)\nSet this option to \"y\" in order to exclude option 61 from DHCP packets.", - "id": "LWIP_DHCP_DISABLE_CLIENT_ID", - "name": "LWIP_DHCP_DISABLE_CLIENT_ID", - "range": null, - "title": "DHCP: Disable Use of HW address as client identification", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_IPV4", - "help": "This option could be used to disable DHCP client vendor class identification.\nSet this option to \"y\" in order to exclude option 60 from DHCP packets.", - "id": "LWIP_DHCP_DISABLE_VENDOR_CLASS_ID", - "name": "LWIP_DHCP_DISABLE_VENDOR_CLASS_ID", - "range": null, - "title": "DHCP: Disable Use of vendor class identification", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_IPV4", - "help": "When this option is enabled, DHCP client tries to re-obtain last valid IP address obtained from DHCP\nserver. Last valid DHCP configuration is stored in nvs and restored after reset/power-up. If IP is still\navailable, there is no need for sending discovery message to DHCP server and save some time.", - "id": "LWIP_DHCP_RESTORE_LAST_IP", - "name": "LWIP_DHCP_RESTORE_LAST_IP", - "range": null, - "title": "DHCP: Restore last IP obtained from DHCP server", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_IPV4", - "help": "Set total length of outgoing DHCP option msg. Generally bigger value means it can carry more\noptions and values. If your code meets LWIP_ASSERT due to option value is too long.\nPlease increase the LWIP_DHCP_OPTIONS_LEN value.", - "id": "LWIP_DHCP_OPTIONS_LEN", - "name": "LWIP_DHCP_OPTIONS_LEN", - "range": [ - 69, - 255 - ], - "title": "DHCP total option length", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Number of clients that may store data in client_data member array of struct netif.", - "id": "LWIP_NUM_NETIF_CLIENT_DATA", - "name": "LWIP_NUM_NETIF_CLIENT_DATA", - "range": [ - 0, - 256 - ], - "title": "Number of clients store data in netif", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Set DHCP coarse interval in seconds.\nA higher value will be less precise but cost less power consumption.", - "id": "LWIP_DHCP_COARSE_TIMER_SECS", - "name": "LWIP_DHCP_COARSE_TIMER_SECS", - "range": [ - 1, - 10 - ], - "title": "DHCP coarse timer interval(s)", - "type": "int" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "LWIP_DHCPS", - "help": "The DHCP server is calculating lease time multiplying the sent\nand received times by this number of seconds per unit.\nThe default is 60, that equals one minute.", - "id": "LWIP_DHCPS_LEASE_UNIT", - "name": "LWIP_DHCPS_LEASE_UNIT", - "range": [ - 1, - 3600 - ], - "title": "Multiplier for lease time, in seconds", - "type": "int" - }, - { - "children": [], - "depends_on": "LWIP_DHCPS", - "help": "The maximum number of DHCP clients that are connected to the server.\nAfter this number is exceeded, DHCP server removes of the oldest device\nfrom it's address pool, without notification.", - "id": "LWIP_DHCPS_MAX_STATION_NUM", - "name": "LWIP_DHCPS_MAX_STATION_NUM", - "range": [ - 1, - 64 - ], - "title": "Maximum number of stations", - "type": "int" - }, - { - "children": [], - "depends_on": "LWIP_DHCPS", - "help": "Enabling this option allows DHCP server to support temporary static ARP entries\nfor DHCP Client. This will help the DHCP server to send the DHCP OFFER and DHCP ACK using IP unicast.", - "id": "LWIP_DHCPS_STATIC_ENTRIES", - "name": "LWIP_DHCPS_STATIC_ENTRIES", - "range": null, - "title": "Enable ARP static entries", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_DHCPS", - "help": "This allows the DNS option to be optional in the DHCP offers,\ndepending on the server's runtime configuration.\nWhen enabled, the DHCP server will always add the DNS option to DHCP responses.\nIf a DNS server is not explicitly configured, the server's IP address will be used\nas the fallback for the DNS option.\nWhen disabled, the DHCP server will only include the DNS option in responses\nif a DNS server has been explicitly configured.\nThis option will be removed in IDF v6.x", - "id": "LWIP_DHCPS_ADD_DNS", - "name": "LWIP_DHCPS_ADD_DNS", - "range": null, - "title": "Always add DNS option in DHCP responses", - "type": "bool" - } - ], - "depends_on": "LWIP_IPV4", - "help": "Enabling this option allows the device to run the DHCP server\n(to dynamically assign IPv4 addresses to clients).", - "id": "LWIP_DHCPS", - "name": "LWIP_DHCPS", - "range": null, - "title": "DHCPS: Enable IPv4 Dynamic Host Configuration Protocol Server (DHCPS)", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-lwip-dhcp-server", - "title": "DHCP server", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "LWIP_AUTOIP", - "help": "DHCP client will send this many probes before self-assigning a\nlink local address.\n\nFrom LWIP help: \"This can be set as low as 1 to get an AutoIP\naddress very quickly, but you should be prepared to handle a\nchanging IP address when DHCP overrides AutoIP.\" (In the case of\nESP-IDF, this means multiple SYSTEM_EVENT_STA_GOT_IP events.)", - "id": "LWIP_AUTOIP_TRIES", - "name": "LWIP_AUTOIP_TRIES", - "range": null, - "title": "DHCP Probes before self-assigning IPv4 LL address", - "type": "int" - }, - { - "children": [], - "depends_on": "LWIP_AUTOIP", - "help": "If the AUTOIP functionality detects this many IP conflicts while\nself-assigning an address, it will go into a rate limited mode.", - "id": "LWIP_AUTOIP_MAX_CONFLICTS", - "name": "LWIP_AUTOIP_MAX_CONFLICTS", - "range": null, - "title": "Max IP conflicts before rate limiting", - "type": "int" - }, - { - "children": [], - "depends_on": "LWIP_AUTOIP", - "help": "If rate limiting self-assignment requests, wait this long between\neach request.", - "id": "LWIP_AUTOIP_RATE_LIMIT_INTERVAL", - "name": "LWIP_AUTOIP_RATE_LIMIT_INTERVAL", - "range": null, - "title": "Rate limited interval (seconds)", - "type": "int" - } - ], - "depends_on": "LWIP_IPV4", - "help": "Enabling this option allows the device to self-assign an address\nin the 169.256/16 range if none is assigned statically or via DHCP.\n\nSee RFC 3927.", - "id": "LWIP_AUTOIP", - "is_menuconfig": true, - "name": "LWIP_AUTOIP", - "range": null, - "title": "Enable IPV4 Link-Local Addressing (AUTOIP)", - "type": "menu" - }, - { - "children": [], - "depends_on": null, - "help": "Enable IPv4 stack. If you want to use IPv6 only TCP/IP stack, disable this.", - "id": "LWIP_IPV4", - "name": "LWIP_IPV4", - "range": null, - "title": "Enable IPv4", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "LWIP_IPV6", - "help": "Enabling this option allows the devices to IPV6 stateless address autoconfiguration (SLAAC).\n\nSee RFC 4862.", - "id": "LWIP_IPV6_AUTOCONFIG", - "name": "LWIP_IPV6_AUTOCONFIG", - "range": null, - "title": "Enable IPV6 stateless address autoconfiguration (SLAAC)", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_IPV6", - "help": "The maximum number of IPv6 addresses on each interface. Any additional\naddresses will be discarded.", - "id": "LWIP_IPV6_NUM_ADDRESSES", - "name": "LWIP_IPV6_NUM_ADDRESSES", - "range": null, - "title": "Number of IPv6 addresses on each network interface", - "type": "int" - }, - { - "children": [], - "depends_on": "LWIP_IPV6", - "help": "Forwarding IPv6 packets between interfaces is only required when acting as\na router.", - "id": "LWIP_IPV6_FORWARD", - "name": "LWIP_IPV6_FORWARD", - "range": null, - "title": "Enable IPv6 forwarding between interfaces", - "type": "bool" - } - ], - "depends_on": null, - "help": "Enable IPv6 function. If not use IPv6 function, set this option to n.\nIf disabling LWIP_IPV6 then some other components (asio) will\nno longer be available.", - "id": "LWIP_IPV6", - "name": "LWIP_IPV6", - "range": null, - "title": "Enable IPv6", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_IPV6_AUTOCONFIG", - "help": "Use IPv6 Router Advertisement Recursive DNS Server Option (as per RFC 6106) to\ncopy a defined maximum number of DNS servers to the DNS module.\nSet this option to a number of desired DNS servers advertised in the RA protocol.\nThis feature is disabled when set to 0.", - "id": "LWIP_IPV6_RDNSS_MAX_DNS_SERVERS", - "name": "LWIP_IPV6_RDNSS_MAX_DNS_SERVERS", - "range": null, - "title": "Use IPv6 Router Advertisement Recursive DNS Server Option", - "type": "int" - }, - { - "children": [], - "depends_on": "LWIP_IPV6_AUTOCONFIG", - "help": "Enable DHCPv6 for IPv6 stateless address autoconfiguration.\nNote that the dhcpv6 client has to be started using dhcp6_enable_stateless(netif);\nNote that the stateful address autoconfiguration is not supported.", - "id": "LWIP_IPV6_DHCP6", - "name": "LWIP_IPV6_DHCP6", - "range": null, - "title": "Enable DHCPv6 stateless address autoconfiguration", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enable callbacks when the network interface is up/down and addresses are changed.", - "id": "LWIP_NETIF_STATUS_CALLBACK", - "name": "LWIP_NETIF_STATUS_CALLBACK", - "range": null, - "title": "Enable status callback for network interfaces", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "LWIP_NETIF_LOOPBACK", - "help": "Configure the maximum number of packets which can be queued for\nloopback on a given interface. Reducing this number may cause packets\nto be dropped, but will avoid filling memory with queued packet data.", - "id": "LWIP_LOOPBACK_MAX_PBUFS", - "name": "LWIP_LOOPBACK_MAX_PBUFS", - "range": [ - 0, - 16 - ], - "title": "Max queued loopback packets per interface", - "type": "int" - } - ], - "depends_on": null, - "help": "Enabling this option means that if a packet is sent with a destination\naddress equal to the interface's own IP address, it will \"loop back\" and\nbe received by this interface.\nDisabling this option disables support of loopback interface in lwIP", - "id": "LWIP_NETIF_LOOPBACK", - "is_menuconfig": true, - "name": "LWIP_NETIF_LOOPBACK", - "range": null, - "title": "Support per-interface loopback", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": "The maximum number of simultaneously active TCP\nconnections. The practical maximum limit is\ndetermined by available heap memory at runtime.\n\nChanging this value by itself does not substantially\nchange the memory usage of LWIP, except for preventing\nnew TCP connections after the limit is reached.", - "id": "LWIP_MAX_ACTIVE_TCP", - "name": "LWIP_MAX_ACTIVE_TCP", - "range": [ - 1, - 1024 - ], - "title": "Maximum active TCP Connections", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "The maximum number of simultaneously listening TCP\nconnections. The practical maximum limit is\ndetermined by available heap memory at runtime.\n\nChanging this value by itself does not substantially\nchange the memory usage of LWIP, except for preventing\nnew listening TCP connections after the limit is reached.", - "id": "LWIP_MAX_LISTENING_TCP", - "name": "LWIP_MAX_LISTENING_TCP", - "range": [ - 1, - 1024 - ], - "title": "Maximum listening TCP Connections", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Speed up the TCP retransmission interval. If disabled,\nit is recommended to change the number of SYN retransmissions to 6,\nand TCP initial rto time to 3000.", - "id": "LWIP_TCP_HIGH_SPEED_RETRANSMISSION", - "name": "LWIP_TCP_HIGH_SPEED_RETRANSMISSION", - "range": null, - "title": "TCP high speed retransmissions", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Set maximum number of retransmissions of data segments.", - "id": "LWIP_TCP_MAXRTX", - "name": "LWIP_TCP_MAXRTX", - "range": [ - 3, - 12 - ], - "title": "Maximum number of retransmissions of data segments", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Set maximum number of retransmissions of SYN segments.", - "id": "LWIP_TCP_SYNMAXRTX", - "name": "LWIP_TCP_SYNMAXRTX", - "range": [ - 3, - 12 - ], - "title": "Maximum number of retransmissions of SYN segments", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Set maximum segment size for TCP transmission.\n\nCan be set lower to save RAM, the default value 1460(ipv4)/1440(ipv6) will give best throughput.\nIPv4 TCP_MSS Range: 576 <= TCP_MSS <= 1460\nIPv6 TCP_MSS Range: 1220<= TCP_MSS <= 1440", - "id": "LWIP_TCP_MSS", - "name": "LWIP_TCP_MSS", - "range": [ - 536, - 1460 - ], - "title": "Maximum Segment Size (MSS)", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Set TCP timer interval in milliseconds.\n\nCan be used to speed connections on bad networks.\nA lower value will redeliver unacked packets faster.", - "id": "LWIP_TCP_TMR_INTERVAL", - "name": "LWIP_TCP_TMR_INTERVAL", - "range": null, - "title": "TCP timer interval(ms)", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Set maximum segment lifetime in milliseconds.", - "id": "LWIP_TCP_MSL", - "name": "LWIP_TCP_MSL", - "range": null, - "title": "Maximum segment lifetime (MSL)", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Set maximum segment lifetime in milliseconds.", - "id": "LWIP_TCP_FIN_WAIT_TIMEOUT", - "name": "LWIP_TCP_FIN_WAIT_TIMEOUT", - "range": null, - "title": "Maximum FIN segment lifetime", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Set default send buffer size for new TCP sockets.\n\nPer-socket send buffer size can be changed at runtime\nwith lwip_setsockopt(s, TCP_SNDBUF, ...).\n\nThis value must be at least 2x the MSS size, and the default\nis 4x the default MSS size.\n\nSetting a smaller default SNDBUF size can save some RAM, but\nwill decrease performance.", - "id": "LWIP_TCP_SND_BUF_DEFAULT", - "name": "LWIP_TCP_SND_BUF_DEFAULT", - "range": [ - 2440, - 65535 - ], - "title": "Default send buffer size", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Set default TCP receive window size for new TCP sockets.\n\nPer-socket receive window size can be changed at runtime\nwith lwip_setsockopt(s, TCP_WINDOW, ...).\n\nSetting a smaller default receive window size can save some RAM,\nbut will significantly decrease performance.", - "id": "LWIP_TCP_WND_DEFAULT", - "name": "LWIP_TCP_WND_DEFAULT", - "range": [ - 2440, - 65535 - ], - "title": "Default receive window size", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Set TCP receive mail box size. Generally bigger value means higher throughput\nbut more memory. The recommended value is: LWIP_TCP_WND_DEFAULT/TCP_MSS + 2, e.g. if\nLWIP_TCP_WND_DEFAULT=14360, TCP_MSS=1436, then the recommended receive mail box size is\n(14360/1436 + 2) = 12.\n\nTCP receive mail box is a per socket mail box, when the application receives packets\nfrom TCP socket, LWIP core firstly posts the packets to TCP receive mail box and the\napplication then fetches the packets from mail box. It means LWIP can caches maximum\nLWIP_TCP_RECCVMBOX_SIZE packets for each TCP socket, so the maximum possible cached TCP packets\nfor all TCP sockets is LWIP_TCP_RECCVMBOX_SIZE multiples the maximum TCP socket number. In other\nwords, the bigger LWIP_TCP_RECVMBOX_SIZE means more memory.\nOn the other hand, if the receive mail box is too small, the mail box may be full. If the\nmail box is full, the LWIP drops the packets. So generally we need to make sure the TCP\nreceive mail box is big enough to avoid packet drop between LWIP core and application.", - "id": "LWIP_TCP_RECVMBOX_SIZE", - "name": "LWIP_TCP_RECVMBOX_SIZE", - "range": [ - 6, - 64 - ], - "title": "Default TCP receive mail box size", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Set TCP accept mail box size. Generally bigger value means supporting larger backlogs\nbut more memory. The recommended value is 6, but applications can set it to a lower value\nif listening servers are meant to have a smaller backlog.\n\nTCP accept mail box is a per socket mail box, when the application listens for connections\nwith a given listening TCP socket. If the mailbox is full, LWIP will send a RST packet and\nthe client will fail to connect.", - "id": "LWIP_TCP_ACCEPTMBOX_SIZE", - "name": "LWIP_TCP_ACCEPTMBOX_SIZE", - "range": [ - 1, - 64 - ], - "title": "Default TCP accept mail box size", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "LWIP_TCP_QUEUE_OOSEQ", - "help": "The timeout value is TCP_OOSEQ_TIMEOUT * RTO.", - "id": "LWIP_TCP_OOSEQ_TIMEOUT", - "name": "LWIP_TCP_OOSEQ_TIMEOUT", - "range": [ - 1, - 30 - ], - "title": "Timeout for each pbuf queued in TCP OOSEQ, in RTOs.", - "type": "int" - }, - { - "children": [], - "depends_on": "LWIP_TCP_QUEUE_OOSEQ", - "help": "If LWIP_TCP_OOSEQ_MAX_PBUFS = 0, TCP will not control the number of OOSEQ pbufs.\n\nIn a poor network environment, many out-of-order tcp pbufs will be received.\nThese out-of-order pbufs will be cached in the TCP out-of-order queue which will\ncause Wi-Fi/Ethernet fail to release RX buffer in time.\nIt is possible that all RX buffers for MAC layer are used by OOSEQ.\n\nControl the number of out-of-order pbufs to ensure\nthat the MAC layer has enough RX buffer to receive packets.\n\nIn the Wi-Fi scenario, recommended OOSEQ PBUFS Range:\n0 <= TCP_OOSEQ_MAX_PBUFS <= CONFIG_ESP_WIFI_DYNAMIC_RX_BUFFER_NUM/(MAX_TCP_NUMBER + 1)\n\nIn the Ethernet scenario,recommended Ethernet OOSEQ PBUFS Range:\n0 <= TCP_OOSEQ_MAX_PBUFS <= CONFIG_ETH_DMA_RX_BUFFER_NUM/(MAX_TCP_NUMBER + 1)\n\nWithin the recommended value range, the larger the value, the better the performance.\n\nMAX_TCP_NUMBER represent Maximum number of TCP connections in Wi-Fi(STA+SoftAP) and Ethernet scenario.", - "id": "LWIP_TCP_OOSEQ_MAX_PBUFS", - "name": "LWIP_TCP_OOSEQ_MAX_PBUFS", - "range": [ - 0, - 12 - ], - "title": "The maximum number of pbufs queued on OOSEQ per pcb", - "type": "int" - }, - { - "children": [], - "depends_on": "LWIP_TCP_QUEUE_OOSEQ", - "help": "TCP will support sending selective acknowledgements (SACKs).", - "id": "LWIP_TCP_SACK_OUT", - "name": "LWIP_TCP_SACK_OUT", - "range": null, - "title": "Support sending selective acknowledgements", - "type": "bool" - } - ], - "depends_on": null, - "help": "Queue incoming out-of-order segments for later use.\n\nDisable this option to save some RAM during TCP sessions, at the expense\nof increased retransmissions if segments arrive out of order.", - "id": "LWIP_TCP_QUEUE_OOSEQ", - "name": "LWIP_TCP_QUEUE_OOSEQ", - "range": null, - "title": "Queue incoming out-of-order segments", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "LWIP_TCP_OVERSIZE_MSS", - "name": "LWIP_TCP_OVERSIZE_MSS", - "range": null, - "title": "MSS", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LWIP_TCP_OVERSIZE_QUARTER_MSS", - "name": "LWIP_TCP_OVERSIZE_QUARTER_MSS", - "range": null, - "title": "25% MSS", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LWIP_TCP_OVERSIZE_DISABLE", - "name": "LWIP_TCP_OVERSIZE_DISABLE", - "range": null, - "title": "Disabled", - "type": "bool" - } - ], - "depends_on": null, - "help": "Allows enabling \"oversize\" allocation of TCP transmission pbufs ahead of time,\nwhich can reduce the length of pbuf chains used for transmission.\n\nThis will not make a difference to sockets where Nagle's algorithm\nis disabled.\n\nDefault value of MSS is fine for most applications, 25% MSS may save\nsome RAM when only transmitting small amounts of data. Disabled will\nhave worst performance and fragmentation characteristics, but uses\nleast RAM overall.", - "id": "component-config-lwip-tcp-pre-allocate-transmit-pbuf-size", - "name": "LWIP_TCP_OVERSIZE", - "title": "Pre-allocate transmit PBUF size", - "type": "choice" - }, - { - "children": [ - { - "children": [], - "depends_on": "LWIP_WND_SCALE", - "help": "Enable this feature to support TCP window scaling.", - "id": "LWIP_TCP_RCV_SCALE", - "name": "LWIP_TCP_RCV_SCALE", - "range": null, - "title": "Set TCP receiving window scaling factor", - "type": "int" - } - ], - "depends_on": "SPIRAM_TRY_ALLOCATE_WIFI_LWIP && !SPIRAM_IGNORE_NOTFOUND", - "help": "Enable this feature to support TCP window scaling.", - "id": "LWIP_WND_SCALE", - "name": "LWIP_WND_SCALE", - "range": null, - "title": "Support TCP window scale", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Set default TCP rto time for a reasonable initial rto.\nIn bad network environment, recommend set value of rto time to 1500.", - "id": "LWIP_TCP_RTO_TIME", - "name": "LWIP_TCP_RTO_TIME", - "range": null, - "title": "Default TCP rto time", - "type": "int" - } - ], - "depends_on": null, - "id": "component-config-lwip-tcp", - "title": "TCP", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": "The maximum number of active UDP \"connections\" (ie\nUDP sockets sending/receiving data).\nThe practical maximum limit is determined by available\nheap memory at runtime.", - "id": "LWIP_MAX_UDP_PCBS", - "name": "LWIP_MAX_UDP_PCBS", - "range": [ - 1, - 1024 - ], - "title": "Maximum active UDP control blocks", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Set UDP receive mail box size. The recommended value is 6.\n\nUDP receive mail box is a per socket mail box, when the application receives packets\nfrom UDP socket, LWIP core firstly posts the packets to UDP receive mail box and the\napplication then fetches the packets from mail box. It means LWIP can caches maximum\nUDP_RECCVMBOX_SIZE packets for each UDP socket, so the maximum possible cached UDP packets\nfor all UDP sockets is UDP_RECCVMBOX_SIZE multiples the maximum UDP socket number. In other\nwords, the bigger UDP_RECVMBOX_SIZE means more memory.\nOn the other hand, if the receive mail box is too small, the mail box may be full. If the\nmail box is full, the LWIP drops the packets. So generally we need to make sure the UDP\nreceive mail box is big enough to avoid packet drop between LWIP core and application.", - "id": "LWIP_UDP_RECVMBOX_SIZE", - "name": "LWIP_UDP_RECVMBOX_SIZE", - "range": [ - 6, - 64 - ], - "title": "Default UDP receive mail box size", - "type": "int" - } - ], - "depends_on": null, - "id": "component-config-lwip-udp", - "title": "UDP", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": "Enable checksum checking for received IP messages", - "id": "LWIP_CHECKSUM_CHECK_IP", - "name": "LWIP_CHECKSUM_CHECK_IP", - "range": null, - "title": "Enable LWIP IP checksums", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enable checksum checking for received UDP messages", - "id": "LWIP_CHECKSUM_CHECK_UDP", - "name": "LWIP_CHECKSUM_CHECK_UDP", - "range": null, - "title": "Enable LWIP UDP checksums", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enable checksum checking for received ICMP messages", - "id": "LWIP_CHECKSUM_CHECK_ICMP", - "name": "LWIP_CHECKSUM_CHECK_ICMP", - "range": null, - "title": "Enable LWIP ICMP checksums", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-lwip-checksums", - "title": "Checksums", - "type": "menu" - }, - { - "children": [], - "depends_on": null, - "help": "Configure TCP/IP task stack size, used by LWIP to process multi-threaded TCP/IP operations.\nSetting this stack too small will result in stack overflow crashes.", - "id": "LWIP_TCPIP_TASK_STACK_SIZE", - "name": "LWIP_TCPIP_TASK_STACK_SIZE", - "range": [ - 2048, - 65536 - ], - "title": "TCP/IP Task Stack Size", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "LWIP_TCPIP_TASK_AFFINITY_NO_AFFINITY", - "name": "LWIP_TCPIP_TASK_AFFINITY_NO_AFFINITY", - "range": null, - "title": "No affinity", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LWIP_TCPIP_TASK_AFFINITY_CPU0", - "name": "LWIP_TCPIP_TASK_AFFINITY_CPU0", - "range": null, - "title": "CPU0", - "type": "bool" - }, - { - "children": [], - "depends_on": "!FREERTOS_UNICORE && ", - "help": null, - "id": "LWIP_TCPIP_TASK_AFFINITY_CPU1", - "name": "LWIP_TCPIP_TASK_AFFINITY_CPU1", - "range": null, - "title": "CPU1", - "type": "bool" - } - ], - "depends_on": null, - "help": "Allows setting LwIP tasks affinity, i.e. whether the task is pinned to\nCPU0, pinned to CPU1, or allowed to run on any CPU.\nCurrently this applies to \"TCP/IP\" task and \"Ping\" task.", - "id": "component-config-lwip-tcp-ip-task-affinity", - "name": "LWIP_TCPIP_TASK_AFFINITY", - "title": "TCP/IP task affinity", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "LWIP_TCPIP_TASK_AFFINITY", - "name": "LWIP_TCPIP_TASK_AFFINITY", - "range": null, - "title": null, - "type": "hex" - }, - { - "children": [], - "depends_on": "LWIP_IPV6", - "help": "Config max number of IPv6 packets to queue during MAC resolution.", - "id": "LWIP_IPV6_MEMP_NUM_ND6_QUEUE", - "name": "LWIP_IPV6_MEMP_NUM_ND6_QUEUE", - "range": [ - 3, - 20 - ], - "title": "Max number of IPv6 packets to queue during MAC resolution", - "type": "int" - }, - { - "children": [], - "depends_on": "LWIP_IPV6", - "help": "Config max number of entries in IPv6 neighbor cache", - "id": "LWIP_IPV6_ND6_NUM_NEIGHBORS", - "name": "LWIP_IPV6_ND6_NUM_NEIGHBORS", - "range": [ - 3, - 10 - ], - "title": "Max number of entries in IPv6 neighbor cache", - "type": "int" - }, - { - "children": [], - "depends_on": "LWIP_IPV6", - "help": "Maximum number of entries in IPv6 on-link prefixes cache", - "id": "LWIP_IPV6_ND6_NUM_PREFIXES", - "name": "LWIP_IPV6_ND6_NUM_PREFIXES", - "range": null, - "title": "Max number of entries in IPv6 on-link prefixes cache", - "type": "int" - }, - { - "children": [], - "depends_on": "LWIP_IPV6", - "help": "Maximum number of entries in IPv6 default routers cache", - "id": "LWIP_IPV6_ND6_NUM_ROUTERS", - "name": "LWIP_IPV6_ND6_NUM_ROUTERS", - "range": null, - "title": "Max number of entries in IPv6 default routers cache", - "type": "int" - }, - { - "children": [], - "depends_on": "LWIP_IPV6", - "help": "Maximum number of entries in IPv6 destinations cache", - "id": "LWIP_IPV6_ND6_NUM_DESTINATIONS", - "name": "LWIP_IPV6_ND6_NUM_DESTINATIONS", - "range": null, - "title": "Max number of entries in IPv6 destinations cache", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "LWIP_PPP_SUPPORT && LWIP_IPV4", - "help": "Enable IPCP protocol in PPP negotiations, which assigns IPv4 addresses to the PPP client,\nas well as IPv4 DNS servers.\nYou can disable this if your modem supports IPv6 only.", - "id": "LWIP_PPP_ENABLE_IPV4", - "name": "LWIP_PPP_ENABLE_IPV4", - "range": null, - "title": "Enable IPV4 support for PPP connections (IPCP)", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_PPP_SUPPORT && LWIP_IPV6", - "help": "Enable IPV6 support in PPP for the local link between the DTE (processor) and DCE (modem).\nThere are some modems which do not support the IPV6 addressing in the local link.\nIf they are requested for IPV6CP negotiation, they may time out.\nThis would in turn fail the configuration for the whole link.\nIf your modem is not responding correctly to PPP Phase Network, try to disable IPV6 support.", - "id": "LWIP_PPP_ENABLE_IPV6", - "name": "LWIP_PPP_ENABLE_IPV6", - "range": null, - "title": "Enable IPV6 support for PPP connections (IPV6CP)", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_PPP_SUPPORT", - "help": "Enable to set a callback which is called on change of the internal PPP state machine.", - "id": "LWIP_PPP_NOTIFY_PHASE_SUPPORT", - "name": "LWIP_PPP_NOTIFY_PHASE_SUPPORT", - "range": null, - "title": "Enable Notify Phase Callback", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_PPP_SUPPORT", - "help": "Enable Password Authentication Protocol (PAP) support", - "id": "LWIP_PPP_PAP_SUPPORT", - "name": "LWIP_PPP_PAP_SUPPORT", - "range": null, - "title": "Enable PAP support", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_PPP_SUPPORT", - "help": "Enable Challenge Handshake Authentication Protocol (CHAP) support", - "id": "LWIP_PPP_CHAP_SUPPORT", - "name": "LWIP_PPP_CHAP_SUPPORT", - "range": null, - "title": "Enable CHAP support", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_PPP_SUPPORT", - "help": "Enable Microsoft version of the Challenge-Handshake Authentication Protocol (MSCHAP) support", - "id": "LWIP_PPP_MSCHAP_SUPPORT", - "name": "LWIP_PPP_MSCHAP_SUPPORT", - "range": null, - "title": "Enable MSCHAP support", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_PPP_SUPPORT", - "help": "Enable Microsoft Point-to-Point Encryption (MPPE) support", - "id": "LWIP_PPP_MPPE_SUPPORT", - "name": "LWIP_PPP_MPPE_SUPPORT", - "range": null, - "title": "Enable MPPE support", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_PPP_SUPPORT", - "help": "Enable to use PPP server", - "id": "LWIP_PPP_SERVER_SUPPORT", - "name": "LWIP_PPP_SERVER_SUPPORT", - "range": null, - "title": "Enable PPP server support", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_PPP_SUPPORT", - "help": "Enable support for VJ header compression.\nPlease disable this if you're using NAPT on PPP interface,\nsince the compressed IP header might not be correctly interpreted\nin NAT causing the compressed packet to be dropped.", - "id": "LWIP_PPP_VJ_HEADER_COMPRESSION", - "name": "LWIP_PPP_VJ_HEADER_COMPRESSION", - "range": null, - "title": "Enable VJ IP Header compression", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "LWIP_ENABLE_LCP_ECHO", - "help": "Interval in seconds between keepalive LCP echo requests, 0 to disable.", - "id": "LWIP_LCP_ECHOINTERVAL", - "name": "LWIP_LCP_ECHOINTERVAL", - "range": null, - "title": "Echo interval (s)", - "type": "int" - }, - { - "children": [], - "depends_on": "LWIP_ENABLE_LCP_ECHO", - "help": "Number of consecutive unanswered echo requests before failure is indicated.", - "id": "LWIP_LCP_MAXECHOFAILS", - "name": "LWIP_LCP_MAXECHOFAILS", - "range": null, - "title": "Maximum echo failures", - "type": "int" - } - ], - "depends_on": "LWIP_PPP_SUPPORT", - "help": "Enable LCP echo keepalive requests", - "id": "LWIP_ENABLE_LCP_ECHO", - "name": "LWIP_ENABLE_LCP_ECHO", - "range": null, - "title": "Enable LCP ECHO", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_PPP_SUPPORT", - "help": "Enable PPP debug log output", - "id": "LWIP_PPP_DEBUG_ON", - "name": "LWIP_PPP_DEBUG_ON", - "range": null, - "title": "Enable PPP debug log output", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_PPP_SUPPORT && !LWIP_PPP_MPPE_SUPPORT && !LWIP_PPP_MSCHAP_SUPPORT", - "help": "This option uses mbedTLS crypto functions (instead of internal PolarSSL\nimplementation) for PPP authentication modes (PAP, CHAP, etc.).\nYou can use this option to address symbol duplication issues, since\nthe internal functions are not namespaced (e.g. md5_init()).", - "id": "LWIP_USE_EXTERNAL_MBEDTLS", - "name": "LWIP_USE_EXTERNAL_MBEDTLS", - "range": null, - "title": "Use mbedTLS instead of internal polarSSL", - "type": "bool" - } - ], - "depends_on": null, - "help": "Enable PPP stack. Now only PPP over serial is possible.", - "id": "LWIP_PPP_SUPPORT", - "is_menuconfig": true, - "name": "LWIP_PPP_SUPPORT", - "range": null, - "title": "Enable PPP support", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "LWIP_SLIP_SUPPORT", - "help": "Enable SLIP debug log output", - "id": "LWIP_SLIP_DEBUG_ON", - "name": "LWIP_SLIP_DEBUG_ON", - "range": null, - "title": "Enable SLIP debug log output", - "type": "bool" - } - ], - "depends_on": null, - "help": "Enable SLIP stack. Now only SLIP over serial is possible.\n\nSLIP over serial support is experimental and unsupported.", - "id": "LWIP_SLIP_SUPPORT", - "is_menuconfig": true, - "name": "LWIP_SLIP_SUPPORT", - "range": null, - "title": "Enable SLIP support (new/experimental)", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": "Enable ICMP module for check network stability", - "id": "LWIP_ICMP", - "name": "LWIP_ICMP", - "range": null, - "title": "ICMP: Enable ICMP", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_ICMP6 || LWIP_ICMP", - "help": null, - "id": "LWIP_MULTICAST_PING", - "name": "LWIP_MULTICAST_PING", - "range": null, - "title": "Respond to multicast pings", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_ICMP", - "help": null, - "id": "LWIP_BROADCAST_PING", - "name": "LWIP_BROADCAST_PING", - "range": null, - "title": "Respond to broadcast pings", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-lwip-icmp", - "title": "ICMP", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": "The maximum number of simultaneously active LWIP\nRAW protocol control blocks. The practical maximum\nlimit is determined by available heap memory at runtime.", - "id": "LWIP_MAX_RAW_PCBS", - "name": "LWIP_MAX_RAW_PCBS", - "range": [ - 1, - 1024 - ], - "title": "Maximum LWIP RAW PCBs", - "type": "int" - } - ], - "depends_on": null, - "id": "component-config-lwip-lwip-raw-api", - "title": "LWIP RAW API", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": "Set maximum number of NTP servers used by LwIP SNTP module.\nFirst argument of sntp_setserver/sntp_setservername functions\nis limited to this value.", - "id": "LWIP_SNTP_MAX_SERVERS", - "name": "LWIP_SNTP_MAX_SERVERS", - "range": [ - 1, - 16 - ], - "title": "Maximum number of NTP servers", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "LWIP_DHCP_GET_NTP_SRV", - "help": "Set maximum number of NTP servers acquired via DHCP-offer.\nShould be less or equal to \"Maximum number of NTP servers\", any extra servers would be just ignored.", - "id": "LWIP_DHCP_MAX_NTP_SERVERS", - "name": "LWIP_DHCP_MAX_NTP_SERVERS", - "range": null, - "title": "Maximum number of NTP servers acquired via DHCP", - "type": "int" - } - ], - "depends_on": null, - "help": "If enabled, LWIP will add 'NTP' to Parameter-Request Option sent via DHCP-request.\nDHCP server might reply with an NTP server address in option 42.\nSNTP callback for such replies should be set accordingly (see sntp_servermode_dhcp() func.)", - "id": "LWIP_DHCP_GET_NTP_SRV", - "name": "LWIP_DHCP_GET_NTP_SRV", - "range": null, - "title": "Request NTP servers from DHCP", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "This option allows you to set the time update period via SNTP.\nDefault is 1 hour. Must not be below 15 seconds by specification.\n(SNTPv4 RFC 4330 enforces a minimum update time of 15 seconds).", - "id": "LWIP_SNTP_UPDATE_DELAY", - "name": "LWIP_SNTP_UPDATE_DELAY", - "range": [ - 15000, - 4294967295 - ], - "title": "Request interval to update time (ms)", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "LWIP_SNTP_STARTUP_DELAY", - "help": "RFC 4330 recommends a startup delay before sending the initial request.\nLWIP calculates this delay to a random number of milliseconds between 0 and this value.", - "id": "LWIP_SNTP_MAXIMUM_STARTUP_DELAY", - "name": "LWIP_SNTP_MAXIMUM_STARTUP_DELAY", - "range": [ - 100, - 300000 - ], - "title": "Maximum startup delay (ms)", - "type": "int" - } - ], - "depends_on": null, - "help": "It is recommended (RFC 4330) to delay the initial request after by a random timeout from 1 to 5 minutes\nto reduce potential load of NTP servers after simultaneous power-up of many devices.\nThis option disables this initial delay. Please use this option with care, it could improve\na single device responsiveness but might cause peaks on the network after reset.\nAnother option to address responsiveness of devices while using the initial random delay\nis to adjust LWIP_SNTP_MAXIMUM_STARTUP_DELAY.", - "id": "LWIP_SNTP_STARTUP_DELAY", - "name": "LWIP_SNTP_STARTUP_DELAY", - "range": null, - "title": "Enable SNTP startup delay", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-lwip-sntp", - "title": "SNTP", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": "Maximum number of IP addresses that can be returned by DNS queries for a single host.", - "id": "LWIP_DNS_MAX_HOST_IP", - "name": "LWIP_DNS_MAX_HOST_IP", - "range": null, - "title": "Maximum number of IP addresses per host", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Set maximum number of DNS servers.\nIf fallback DNS servers are supported,\nthe number of DNS servers needs to be greater than or equal to 3.", - "id": "LWIP_DNS_MAX_SERVERS", - "name": "LWIP_DNS_MAX_SERVERS", - "range": [ - 1, - 4 - ], - "title": "Maximum number of DNS servers", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "LWIP_FALLBACK_DNS_SERVER_SUPPORT", - "help": "This option allows you to config dns fallback server address.", - "id": "LWIP_FALLBACK_DNS_SERVER_ADDRESS", - "name": "LWIP_FALLBACK_DNS_SERVER_ADDRESS", - "range": null, - "title": "DNS fallback server address", - "type": "string" - } - ], - "depends_on": "LWIP_DNS_MAX_SERVERS >= 3", - "help": "Enable this feature to support DNS fallback server.", - "id": "LWIP_FALLBACK_DNS_SERVER_SUPPORT", - "name": "LWIP_FALLBACK_DNS_SERVER_SUPPORT", - "range": null, - "title": "Enable DNS fallback server support", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "This option allows collecting DNS server settings per netif using\nconfigurable callback function.\nIt's typically used with CONFIG_ESP_NETIF_SET_DNS_PER_DEFAULT_NETIF\nwhich configures a callback to collect the DNS info on esp_netif layer.", - "id": "LWIP_DNS_SETSERVER_WITH_NETIF", - "name": "LWIP_DNS_SETSERVER_WITH_NETIF", - "range": null, - "title": "Enable DNS server settings with netif", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_IPV4 && LWIP_IPV6", - "help": "Use esp_getaddrinfo() for DNS lookups instead of lwip_getaddrinfo().\nThis function correctly handles the AF_UNSPEC flag for resolving\nboth IPv4 and IPv6 addresses. Available only when both IPv4 and IPv6\nare enabled.", - "id": "LWIP_USE_ESP_GETADDRINFO", - "name": "LWIP_USE_ESP_GETADDRINFO", - "range": null, - "title": "Enable esp_getaddrinfo() instead of lwip_getaddrinfo()", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-lwip-dns", - "title": "DNS", - "type": "menu" - }, - { - "children": [], - "depends_on": null, - "help": "Set maximum number of ports a bridge can consists of.", - "id": "LWIP_BRIDGEIF_MAX_PORTS", - "name": "LWIP_BRIDGEIF_MAX_PORTS", - "range": [ - 1, - 63 - ], - "title": "Maximum number of bridge ports", - "type": "int" - }, - { - "children": [], - "depends_on": "!COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE", - "help": "Enable this option keeps LWIP assertion checks enabled.\nIt is recommended to keep this option enabled.\n\nIf asserts are disabled for the entire project, they are also disabled\nfor LWIP and this option is ignored.", - "id": "LWIP_ESP_LWIP_ASSERT", - "name": "LWIP_ESP_LWIP_ASSERT", - "range": null, - "title": "Enable LWIP ASSERT checks", - "type": "bool" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "LWIP_HOOK_TCP_ISN_NONE", - "name": "LWIP_HOOK_TCP_ISN_NONE", - "range": null, - "title": "No hook declared", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LWIP_HOOK_TCP_ISN_DEFAULT", - "name": "LWIP_HOOK_TCP_ISN_DEFAULT", - "range": null, - "title": "Default implementation", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LWIP_HOOK_TCP_ISN_CUSTOM", - "name": "LWIP_HOOK_TCP_ISN_CUSTOM", - "range": null, - "title": "Custom implementation", - "type": "bool" - } - ], - "depends_on": null, - "help": "Enables to define a TCP ISN hook to randomize initial sequence\nnumber in TCP connection.\nThe default TCP ISN algorithm used in IDF (standardized in RFC 6528)\nproduces ISN by combining an MD5 of the new TCP id and a stable\nsecret with the current time.\nThis is because the lwIP implementation (`tcp_next_iss`) is not\nvery strong, as it does not take into consideration any platform\nspecific entropy source.\n\nSet to LWIP_HOOK_TCP_ISN_CUSTOM to provide custom implementation.\nSet to LWIP_HOOK_TCP_ISN_NONE to use lwIP implementation.", - "id": "component-config-lwip-hooks-tcp-isn-hook", - "name": "LWIP_HOOK_TCP_ISN", - "title": "TCP ISN Hook", - "type": "choice" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "LWIP_HOOK_IP6_ROUTE_NONE", - "name": "LWIP_HOOK_IP6_ROUTE_NONE", - "range": null, - "title": "No hook declared", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LWIP_HOOK_IP6_ROUTE_DEFAULT", - "name": "LWIP_HOOK_IP6_ROUTE_DEFAULT", - "range": null, - "title": "Default (weak) implementation", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LWIP_HOOK_IP6_ROUTE_CUSTOM", - "name": "LWIP_HOOK_IP6_ROUTE_CUSTOM", - "range": null, - "title": "Custom implementation", - "type": "bool" - } - ], - "depends_on": "LWIP_IPV6", - "help": "Enables custom IPv6 route hook.\nSetting this to \"default\" provides weak implementation\nstub that could be overwritten in application code.\nSetting this to \"custom\" provides hook's declaration\nonly and expects the application to implement it.", - "id": "component-config-lwip-hooks-ipv6-route-hook", - "name": "LWIP_HOOK_IP6_ROUTE", - "title": "IPv6 route Hook", - "type": "choice" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "LWIP_HOOK_ND6_GET_GW_NONE", - "name": "LWIP_HOOK_ND6_GET_GW_NONE", - "range": null, - "title": "No hook declared", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LWIP_HOOK_ND6_GET_GW_DEFAULT", - "name": "LWIP_HOOK_ND6_GET_GW_DEFAULT", - "range": null, - "title": "Default (weak) implementation", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LWIP_HOOK_ND6_GET_GW_CUSTOM", - "name": "LWIP_HOOK_ND6_GET_GW_CUSTOM", - "range": null, - "title": "Custom implementation", - "type": "bool" - } - ], - "depends_on": "LWIP_IPV6", - "help": "Enables custom IPv6 route hook.\nSetting this to \"default\" provides weak implementation\nstub that could be overwritten in application code.\nSetting this to \"custom\" provides hook's declaration\nonly and expects the application to implement it.", - "id": "component-config-lwip-hooks-ipv6-get-gateway-hook", - "name": "LWIP_HOOK_ND6_GET_GW", - "title": "IPv6 get gateway Hook", - "type": "choice" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "LWIP_HOOK_IP6_SELECT_SRC_ADDR_NONE", - "name": "LWIP_HOOK_IP6_SELECT_SRC_ADDR_NONE", - "range": null, - "title": "No hook declared", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LWIP_HOOK_IP6_SELECT_SRC_ADDR_DEFAULT", - "name": "LWIP_HOOK_IP6_SELECT_SRC_ADDR_DEFAULT", - "range": null, - "title": "Default (weak) implementation", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LWIP_HOOK_IP6_SELECT_SRC_ADDR_CUSTOM", - "name": "LWIP_HOOK_IP6_SELECT_SRC_ADDR_CUSTOM", - "range": null, - "title": "Custom implementation", - "type": "bool" - } - ], - "depends_on": "LWIP_IPV6", - "help": "Enables custom IPv6 source address selection.\nSetting this to \"default\" provides weak implementation\nstub that could be overwritten in application code.\nSetting this to \"custom\" provides hook's declaration\nonly and expects the application to implement it.", - "id": "component-config-lwip-hooks-ipv6-source-address-selection-hook", - "name": "LWIP_HOOK_IP6_SELECT_SRC_ADDR", - "title": "IPv6 source address selection Hook", - "type": "choice" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "LWIP_HOOK_DHCP_EXTRA_OPTION_NONE", - "name": "LWIP_HOOK_DHCP_EXTRA_OPTION_NONE", - "range": null, - "title": "No hook declared", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LWIP_HOOK_DHCP_EXTRA_OPTION_DEFAULT", - "name": "LWIP_HOOK_DHCP_EXTRA_OPTION_DEFAULT", - "range": null, - "title": "Default (weak) implementation", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LWIP_HOOK_DHCP_EXTRA_OPTION_CUSTOM", - "name": "LWIP_HOOK_DHCP_EXTRA_OPTION_CUSTOM", - "range": null, - "title": "Custom implementation", - "type": "bool" - } - ], - "depends_on": null, - "help": "Enables custom hook to receive and parse extra DHCP options.\nSetting this to \"default\" provides weak implementation\nstub that could be overwritten in application code.\nSetting this to \"custom\" provides hook's declaration\nonly and expects the application to implement it.", - "id": "component-config-lwip-hooks-dhcp-extra-option-hook", - "name": "LWIP_HOOK_DHCP_EXTRA_OPTION", - "title": "DHCP extra option hook", - "type": "choice" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "LWIP_HOOK_NETCONN_EXT_RESOLVE_NONE", - "name": "LWIP_HOOK_NETCONN_EXT_RESOLVE_NONE", - "range": null, - "title": "No hook declared", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LWIP_HOOK_NETCONN_EXT_RESOLVE_DEFAULT", - "name": "LWIP_HOOK_NETCONN_EXT_RESOLVE_DEFAULT", - "range": null, - "title": "Default (weak) implementation", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LWIP_HOOK_NETCONN_EXT_RESOLVE_CUSTOM", - "name": "LWIP_HOOK_NETCONN_EXT_RESOLVE_CUSTOM", - "range": null, - "title": "Custom implementation", - "type": "bool" - } - ], - "depends_on": null, - "help": "Enables custom DNS resolve hook (without callback).\nSetting this to \"default\" provides weak implementation\nstub that could be overwritten in application code.\nSetting this to \"custom\" provides hook's declaration\nonly and expects the application to implement it.", - "id": "component-config-lwip-hooks-netconn-external-resolve-hook", - "name": "LWIP_HOOK_NETCONN_EXTERNAL_RESOLVE", - "title": "Netconn external resolve Hook", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": "This hidden option helps configure the DNS external resolve\nhook for external components like OpenThread. It ensures that\n`LWIP_HOOK_DNS_EXT_RESOLVE_CUSTOM` is selected without directly\nadding a dependency in the choice construct.", - "id": "LWIP_HOOK_DNS_EXTERNAL_RESOLVE_SELECT_CUSTOM", - "name": "LWIP_HOOK_DNS_EXTERNAL_RESOLVE_SELECT_CUSTOM", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "LWIP_HOOK_DNS_EXT_RESOLVE_NONE", - "name": "LWIP_HOOK_DNS_EXT_RESOLVE_NONE", - "range": null, - "title": "No hook declared", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LWIP_HOOK_DNS_EXT_RESOLVE_CUSTOM", - "name": "LWIP_HOOK_DNS_EXT_RESOLVE_CUSTOM", - "range": null, - "title": "Custom implementation", - "type": "bool" - } - ], - "depends_on": null, - "help": "Enables custom DNS resolve hook (with callback).\nSetting this to \"custom\" provides hook's declaration\nonly and expects the application to implement it.", - "id": "component-config-lwip-hooks-dns-external-resolve-hook", - "name": "LWIP_HOOK_DNS_EXTERNAL_RESOLVE", - "title": "DNS external resolve Hook", - "type": "choice" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "LWIP_HOOK_IP6_INPUT_NONE", - "name": "LWIP_HOOK_IP6_INPUT_NONE", - "range": null, - "title": "No hook declared", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LWIP_HOOK_IP6_INPUT_DEFAULT", - "name": "LWIP_HOOK_IP6_INPUT_DEFAULT", - "range": null, - "title": "Default (weak) implementation", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LWIP_HOOK_IP6_INPUT_CUSTOM", - "name": "LWIP_HOOK_IP6_INPUT_CUSTOM", - "range": null, - "title": "Custom implementation", - "type": "bool" - } - ], - "depends_on": "LWIP_IPV6", - "help": "Enables custom IPv6 packet input.\nSetting this to \"default\" provides weak IDF implementation,\nwhich drops all incoming IPv6 traffic if the interface has no link local address.\n(this default implementation is \"weak\" and could be still overwritten\nin the application if some additional IPv6 input packet filtering is needed)\nSetting this to \"none\" removes this default filter and conforms to the lwIP\nimplementation (which accepts multicasts even if the interface has no link local address)\nSetting this to \"custom\" provides hook's declaration\nonly and expects the application to implement it.", - "id": "component-config-lwip-hooks-ipv6-packet-input", - "name": "LWIP_HOOK_IP6_INPUT", - "title": "IPv6 packet input", - "type": "choice" - } - ], - "depends_on": null, - "id": "component-config-lwip-hooks", - "title": "Hooks", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "LWIP_DEBUG", - "help": "Enabling this option routes all enabled LWIP debugs through ESP_LOGD.", - "id": "LWIP_DEBUG_ESP_LOG", - "name": "LWIP_DEBUG_ESP_LOG", - "range": null, - "title": "Route LWIP debugs through ESP_LOG interface", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_DEBUG", - "help": null, - "id": "LWIP_NETIF_DEBUG", - "name": "LWIP_NETIF_DEBUG", - "range": null, - "title": "Enable netif debug messages", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_DEBUG", - "help": null, - "id": "LWIP_PBUF_DEBUG", - "name": "LWIP_PBUF_DEBUG", - "range": null, - "title": "Enable pbuf debug messages", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_DEBUG", - "help": null, - "id": "LWIP_ETHARP_DEBUG", - "name": "LWIP_ETHARP_DEBUG", - "range": null, - "title": "Enable etharp debug messages", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_DEBUG", - "help": null, - "id": "LWIP_API_LIB_DEBUG", - "name": "LWIP_API_LIB_DEBUG", - "range": null, - "title": "Enable api lib debug messages", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_DEBUG", - "help": null, - "id": "LWIP_SOCKETS_DEBUG", - "name": "LWIP_SOCKETS_DEBUG", - "range": null, - "title": "Enable socket debug messages", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_DEBUG", - "help": null, - "id": "LWIP_IP_DEBUG", - "name": "LWIP_IP_DEBUG", - "range": null, - "title": "Enable IP debug messages", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_DEBUG && LWIP_ICMP", - "help": null, - "id": "LWIP_ICMP_DEBUG", - "name": "LWIP_ICMP_DEBUG", - "range": null, - "title": "Enable ICMP debug messages", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_DEBUG", - "help": null, - "id": "LWIP_DHCP_STATE_DEBUG", - "name": "LWIP_DHCP_STATE_DEBUG", - "range": null, - "title": "Enable DHCP state tracking", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_DEBUG", - "help": null, - "id": "LWIP_DHCP_DEBUG", - "name": "LWIP_DHCP_DEBUG", - "range": null, - "title": "Enable DHCP debug messages", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_DEBUG", - "help": null, - "id": "LWIP_IP6_DEBUG", - "name": "LWIP_IP6_DEBUG", - "range": null, - "title": "Enable IP6 debug messages", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_DEBUG", - "help": null, - "id": "LWIP_ICMP6_DEBUG", - "name": "LWIP_ICMP6_DEBUG", - "range": null, - "title": "Enable ICMP6 debug messages", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_DEBUG", - "help": null, - "id": "LWIP_TCP_DEBUG", - "name": "LWIP_TCP_DEBUG", - "range": null, - "title": "Enable TCP debug messages", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_DEBUG", - "help": null, - "id": "LWIP_UDP_DEBUG", - "name": "LWIP_UDP_DEBUG", - "range": null, - "title": "Enable UDP debug messages", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_DEBUG", - "help": null, - "id": "LWIP_SNTP_DEBUG", - "name": "LWIP_SNTP_DEBUG", - "range": null, - "title": "Enable SNTP debug messages", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_DEBUG", - "help": null, - "id": "LWIP_DNS_DEBUG", - "name": "LWIP_DNS_DEBUG", - "range": null, - "title": "Enable DNS debug messages", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_DEBUG && LWIP_IPV4_NAPT", - "help": null, - "id": "LWIP_NAPT_DEBUG", - "name": "LWIP_NAPT_DEBUG", - "range": null, - "title": "Enable NAPT debug messages", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_DEBUG", - "help": null, - "id": "LWIP_BRIDGEIF_DEBUG", - "name": "LWIP_BRIDGEIF_DEBUG", - "range": null, - "title": "Enable bridge generic debug messages", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_DEBUG", - "help": null, - "id": "LWIP_BRIDGEIF_FDB_DEBUG", - "name": "LWIP_BRIDGEIF_FDB_DEBUG", - "range": null, - "title": "Enable bridge FDB debug messages", - "type": "bool" - }, - { - "children": [], - "depends_on": "LWIP_DEBUG", - "help": null, - "id": "LWIP_BRIDGEIF_FW_DEBUG", - "name": "LWIP_BRIDGEIF_FW_DEBUG", - "range": null, - "title": "Enable bridge forwarding debug messages", - "type": "bool" - } - ], - "depends_on": null, - "help": "Enabling this option allows different kinds of lwIP debug output.\n\nAll lwIP debug features increase the size of the final binary.", - "id": "LWIP_DEBUG", - "is_menuconfig": true, - "name": "LWIP_DEBUG", - "range": null, - "title": "Enable LWIP Debug", - "type": "menu" - } - ], - "depends_on": null, - "id": "component-config-lwip", - "title": "LWIP", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "MBEDTLS_INTERNAL_MEM_ALLOC", - "name": "MBEDTLS_INTERNAL_MEM_ALLOC", - "range": null, - "title": "Internal memory", - "type": "bool" - }, - { - "children": [], - "depends_on": "(SPIRAM_USE_CAPS_ALLOC || SPIRAM_USE_MALLOC) && ", - "help": null, - "id": "MBEDTLS_EXTERNAL_MEM_ALLOC", - "name": "MBEDTLS_EXTERNAL_MEM_ALLOC", - "range": null, - "title": "External SPIRAM", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "MBEDTLS_DEFAULT_MEM_ALLOC", - "name": "MBEDTLS_DEFAULT_MEM_ALLOC", - "range": null, - "title": "Default alloc mode", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "MBEDTLS_CUSTOM_MEM_ALLOC", - "name": "MBEDTLS_CUSTOM_MEM_ALLOC", - "range": null, - "title": "Custom alloc mode", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP32_IRAM_AS_8BIT_ACCESSIBLE_MEMORY && ", - "help": "Allows to use IRAM memory region as 8bit accessible region.\n\nTLS input and output buffers will be allocated in IRAM section which is 32bit aligned\nmemory. Every unaligned (8bit or 16bit) access will result in an exception\nand incur penalty of certain clock cycles per unaligned read/write.", - "id": "MBEDTLS_IRAM_8BIT_MEM_ALLOC", - "name": "MBEDTLS_IRAM_8BIT_MEM_ALLOC", - "range": null, - "title": "Internal IRAM", - "type": "bool" - } - ], - "depends_on": null, - "help": "Allocation strategy for mbedTLS, essentially provides ability to\nallocate all required dynamic allocations from,\n\n- Internal DRAM memory only\n- External SPIRAM memory only\n- Either internal or external memory based on default malloc()\n behavior in ESP-IDF\n- Custom allocation mode, by overwriting calloc()/free() using\n mbedtls_platform_set_calloc_free() function\n- Internal IRAM memory wherever applicable else internal DRAM\n\nRecommended mode here is always internal (*), since that is most preferred\nfrom security perspective. But if application requirement does not\nallow sufficient free internal memory then alternate mode can be\nselected.\n\n(*) In case of ESP32-S2/ESP32-S3, hardware allows encryption of external\nSPIRAM contents provided hardware flash encryption feature is enabled.\nIn that case, using external SPIRAM allocation strategy is also safe choice\nfrom security perspective.", - "id": "component-config-mbedtls-memory-allocation-strategy", - "name": "MBEDTLS_MEM_ALLOC_MODE", - "title": "Memory allocation strategy", - "type": "choice" - }, - { - "children": [], - "depends_on": "!MBEDTLS_ASYMMETRIC_CONTENT_LEN", - "help": "Maximum TLS message length (in bytes) supported by mbedTLS.\n\n16384 is the default and this value is required to comply\nfully with TLS standards.\n\nHowever you can set a lower value in order to save RAM. This\nis safe if the other end of the connection supports Maximum\nFragment Length Negotiation Extension (max_fragment_length,\nsee RFC6066) or you know for certain that it will never send a\nmessage longer than a certain number of bytes.\n\nIf the value is set too low, symptoms are a failed TLS\nhandshake or a return value of MBEDTLS_ERR_SSL_INVALID_RECORD\n(-0x7200).", - "id": "MBEDTLS_SSL_MAX_CONTENT_LEN", - "name": "MBEDTLS_SSL_MAX_CONTENT_LEN", - "range": null, - "title": "TLS maximum message content length", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "MBEDTLS_ASYMMETRIC_CONTENT_LEN", - "help": "This defines maximum incoming fragment length, overriding default\nmaximum content length (MBEDTLS_SSL_MAX_CONTENT_LEN).", - "id": "MBEDTLS_SSL_IN_CONTENT_LEN", - "name": "MBEDTLS_SSL_IN_CONTENT_LEN", - "range": [ - 512, - 16384 - ], - "title": "TLS maximum incoming fragment length", - "type": "int" - }, - { - "children": [], - "depends_on": "MBEDTLS_ASYMMETRIC_CONTENT_LEN", - "help": "This defines maximum outgoing fragment length, overriding default\nmaximum content length (MBEDTLS_SSL_MAX_CONTENT_LEN).", - "id": "MBEDTLS_SSL_OUT_CONTENT_LEN", - "name": "MBEDTLS_SSL_OUT_CONTENT_LEN", - "range": [ - 512, - 16384 - ], - "title": "TLS maximum outgoing fragment length", - "type": "int" - } - ], - "depends_on": null, - "help": "If enabled, this option allows customizing TLS in/out fragment length\nin asymmetric way. Please note that enabling this with default values\nsaves 12KB of dynamic memory per TLS connection.", - "id": "MBEDTLS_ASYMMETRIC_CONTENT_LEN", - "name": "MBEDTLS_ASYMMETRIC_CONTENT_LEN", - "range": null, - "title": "Asymmetric in/out fragment length", - "type": "bool" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "MBEDTLS_DYNAMIC_FREE_CONFIG_DATA", - "help": "Free CA certificate after its usage in the handshake process.\nThis option will decrease the heap footprint for the TLS handshake, but may lead to a problem:\nIf the respective ssl object needs to perform the TLS handshake again,\nthe CA certificate should once again be registered to the ssl object.", - "id": "MBEDTLS_DYNAMIC_FREE_CA_CERT", - "name": "MBEDTLS_DYNAMIC_FREE_CA_CERT", - "range": null, - "title": "Free SSL CA certificate after its usage", - "type": "bool" - } - ], - "depends_on": "MBEDTLS_DYNAMIC_BUFFER", - "help": "Free private key and DHM data after its usage in handshake process.\n\nThe option will decrease heap cost when handshake, but also lead to problem:\n\nBecause all certificate, private key and DHM data are freed so users should register\ncertificate and private key to ssl config object again.", - "id": "MBEDTLS_DYNAMIC_FREE_CONFIG_DATA", - "name": "MBEDTLS_DYNAMIC_FREE_CONFIG_DATA", - "range": null, - "title": "Free private key and DHM data after its usage", - "type": "bool" - } - ], - "depends_on": "!IDF_TARGET_LINUX && !MBEDTLS_SSL_PROTO_DTLS && !MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH", - "help": "Using dynamic TX/RX buffer. After enabling this option, mbedTLS will\nallocate TX buffer when need to send data and then free it if all data\nis sent, allocate RX buffer when need to receive data and then free it\nwhen all data is used or read by upper layer.\n\nBy default, when SSL is initialized, mbedTLS also allocate TX and\nRX buffer with the default value of \"MBEDTLS_SSL_OUT_CONTENT_LEN\" or\n\"MBEDTLS_SSL_IN_CONTENT_LEN\", so to save more heap, users can set\nthe options to be an appropriate value.", - "id": "MBEDTLS_DYNAMIC_BUFFER", - "name": "MBEDTLS_DYNAMIC_BUFFER", - "range": null, - "title": "Using dynamic TX/RX buffer", - "type": "bool" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "MBEDTLS_DEBUG_LEVEL_WARN", - "name": "MBEDTLS_DEBUG_LEVEL_WARN", - "range": null, - "title": "Warning", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "MBEDTLS_DEBUG_LEVEL_INFO", - "name": "MBEDTLS_DEBUG_LEVEL_INFO", - "range": null, - "title": "Info", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "MBEDTLS_DEBUG_LEVEL_DEBUG", - "name": "MBEDTLS_DEBUG_LEVEL_DEBUG", - "range": null, - "title": "Debug", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "MBEDTLS_DEBUG_LEVEL_VERBOSE", - "name": "MBEDTLS_DEBUG_LEVEL_VERBOSE", - "range": null, - "title": "Verbose", - "type": "bool" - } - ], - "depends_on": "MBEDTLS_DEBUG", - "help": "Set mbedTLS debugging level", - "id": "component-config-mbedtls-enable-mbedtls-debugging-set-mbedtls-debugging-level", - "name": "MBEDTLS_DEBUG_LEVEL", - "title": "Set mbedTLS debugging level", - "type": "choice" - } - ], - "depends_on": null, - "help": "Enable mbedTLS debugging functions at compile time.\n\nIf this option is enabled, you can include\n\"mbedtls/esp_debug.h\" and call mbedtls_esp_enable_debug_log()\nat runtime in order to enable mbedTLS debug output via the ESP\nlog mechanism.", - "id": "MBEDTLS_DEBUG", - "name": "MBEDTLS_DEBUG", - "range": null, - "title": "Enable mbedTLS debugging", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "MBEDTLS_DEBUG_LEVEL", - "name": "MBEDTLS_DEBUG_LEVEL", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "MBEDTLS_SSL_PROTO_TLS1_3", - "help": null, - "id": "MBEDTLS_SSL_TLS1_3_COMPATIBILITY_MODE", - "name": "MBEDTLS_SSL_TLS1_3_COMPATIBILITY_MODE", - "range": null, - "title": "TLS 1.3 middlebox compatibility mode", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_SSL_PROTO_TLS1_3", - "help": null, - "id": "MBEDTLS_SSL_TLS1_3_KEXM_PSK", - "name": "MBEDTLS_SSL_TLS1_3_KEXM_PSK", - "range": null, - "title": "TLS 1.3 PSK key exchange mode", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_SSL_PROTO_TLS1_3", - "help": null, - "id": "MBEDTLS_SSL_TLS1_3_KEXM_EPHEMERAL", - "name": "MBEDTLS_SSL_TLS1_3_KEXM_EPHEMERAL", - "range": null, - "title": "TLS 1.3 ephemeral key exchange mode", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_SSL_PROTO_TLS1_3", - "help": null, - "id": "MBEDTLS_SSL_TLS1_3_KEXM_PSK_EPHEMERAL", - "name": "MBEDTLS_SSL_TLS1_3_KEXM_PSK_EPHEMERAL", - "range": null, - "title": "TLS 1.3 PSK ephemeral key exchange mode", - "type": "bool" - } - ], - "depends_on": "MBEDTLS_SSL_PROTO_TLS1_3", - "id": "component-config-mbedtls-mbedtls-v3-x-related-support-tls-1-3-protocol-tls-1-3-related-configurations", - "title": "TLS 1.3 related configurations", - "type": "menu" - } - ], - "depends_on": "MBEDTLS_TLS_ENABLED && MBEDTLS_SSL_KEEP_PEER_CERTIFICATE", - "help": null, - "id": "MBEDTLS_SSL_PROTO_TLS1_3", - "name": "MBEDTLS_SSL_PROTO_TLS1_3", - "range": null, - "title": "Support TLS 1.3 protocol", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "This enables the SSL buffer to be resized automatically\nbased on the negotiated maximum fragment length in each direction.", - "id": "MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH", - "name": "MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH", - "range": null, - "title": "Variable SSL buffer length", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_ECDH_C && MBEDTLS_ECP_RESTARTABLE", - "help": "Use the legacy ECDH context format.\nDefine this option only if you enable MBEDTLS_ECP_RESTARTABLE or if you\nwant to access ECDH context fields directly.", - "id": "MBEDTLS_ECDH_LEGACY_CONTEXT", - "name": "MBEDTLS_ECDH_LEGACY_CONTEXT", - "range": null, - "title": "Use a backward compatible ECDH context (Experimental)", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enables users to configure the set of trusted certificates\nthrough a callback instead of a linked list.\n\nSee mbedTLS documentation for required API and more details.", - "id": "MBEDTLS_X509_TRUSTED_CERT_CALLBACK", - "name": "MBEDTLS_X509_TRUSTED_CERT_CALLBACK", - "range": null, - "title": "Enable trusted certificate callbacks", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_GCM_C || MBEDTLS_CCM_C || MBEDTLS_CHACHAPOLY_C", - "help": "Enable serialization of the TLS context structures\nThis is a local optimization in handling a single, potentially long-lived connection.\n\nSee mbedTLS documentation for required API and more details.\nDisabling this option will save some code size.", - "id": "MBEDTLS_SSL_CONTEXT_SERIALIZATION", - "name": "MBEDTLS_SSL_CONTEXT_SERIALIZATION", - "range": null, - "title": "Enable serialization of the TLS context structures", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Keep the peer's certificate after completion of the handshake.\nDisabling this option will save about 4kB of heap and some code size.\n\nSee mbedTLS documentation for required API and more details.", - "id": "MBEDTLS_SSL_KEEP_PEER_CERTIFICATE", - "name": "MBEDTLS_SSL_KEEP_PEER_CERTIFICATE", - "range": null, - "title": "Keep peer certificate after handshake completion", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_TLS_ENABLED", - "help": "Enable shared symmetric keys export for TLS sessions using mbedtls_ssl_export_keying_material()\nafter SSL handshake. The process for deriving the keys is specified in RFC 5705 for TLS 1.2\nand in RFC 8446, Section 7.5, for TLS 1.3.", - "id": "MBEDTLS_SSL_KEYING_MATERIAL_EXPORT", - "name": "MBEDTLS_SSL_KEYING_MATERIAL_EXPORT", - "range": null, - "title": "Enable keying material export", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_X509_CRL_PARSE_C", - "help": "Enable PKCS number 7 core for using PKCS number 7-formatted signatures.", - "id": "MBEDTLS_PKCS7_C", - "name": "MBEDTLS_PKCS7_C", - "range": null, - "title": "Enable PKCS number 7", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_SSL_PROTO_TLS1_3 || MBEDTLS_SSL_DTLS_CONNECTION_ID", - "help": "Controls the use of record plaintext padding in TLS 1.3 and\nwhen using the Connection ID extension in DTLS 1.2.\n\nThe padding will always be chosen so that the length of the\npadded plaintext is a multiple of the value of this option.\n\nNotes:\n A value of 1 means that no padding will be used for outgoing records.\n On systems lacking division instructions, a power of two should be preferred.", - "id": "MBEDTLS_SSL_CID_PADDING_GRANULARITY", - "name": "MBEDTLS_SSL_CID_PADDING_GRANULARITY", - "range": null, - "title": "Record plaintext padding", - "type": "int" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "MBEDTLS_SSL_DTLS_CONNECTION_ID && MBEDTLS_SSL_PROTO_DTLS", - "help": "Maximum length of CIDs used for incoming DTLS messages", - "id": "MBEDTLS_SSL_CID_IN_LEN_MAX", - "name": "MBEDTLS_SSL_CID_IN_LEN_MAX", - "range": null, - "title": "Maximum length of CIDs used for incoming DTLS messages", - "type": "int" - }, - { - "children": [], - "depends_on": "MBEDTLS_SSL_DTLS_CONNECTION_ID && MBEDTLS_SSL_PROTO_DTLS", - "help": "Maximum length of CIDs used for outgoing DTLS messages", - "id": "MBEDTLS_SSL_CID_OUT_LEN_MAX", - "name": "MBEDTLS_SSL_CID_OUT_LEN_MAX", - "range": null, - "title": "Maximum length of CIDs used for outgoing DTLS messages", - "type": "int" - } - ], - "depends_on": "MBEDTLS_SSL_PROTO_DTLS", - "help": "Enable support for the DTLS Connection ID extension which allows to\nidentify DTLS connections across changes in the underlying transport.", - "id": "MBEDTLS_SSL_DTLS_CONNECTION_ID", - "name": "MBEDTLS_SSL_DTLS_CONNECTION_ID", - "range": null, - "title": "Support for the DTLS Connection ID extension", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_SSL_PROTO_DTLS", - "help": "Enable support for negotiation of DTLS-SRTP (RFC 5764) through the use_srtp extension.\n\nSee mbedTLS documentation for required API and more details.\nDisabling this option will save some code size.", - "id": "MBEDTLS_SSL_DTLS_SRTP", - "name": "MBEDTLS_SSL_DTLS_SRTP", - "range": null, - "title": "Enable support for negotiation of DTLS-SRTP (RFC 5764)", - "type": "bool" - } - ], - "depends_on": "MBEDTLS_SSL_PROTO_DTLS", - "id": "component-config-mbedtls-mbedtls-v3-x-related-dtls-based-configurations", - "title": "DTLS-based configurations", - "type": "menu" - } - ], - "depends_on": null, - "id": "component-config-mbedtls-mbedtls-v3-x-related", - "title": "mbedTLS v3.x related", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_FULL", - "name": "MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_FULL", - "range": null, - "title": "Use the full default certificate bundle", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "Use only the most common certificates from the default bundles, reducing the size with 50%,\nwhile still having around 99% coverage.", - "id": "MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_CMN", - "name": "MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_CMN", - "range": null, - "title": "Use only the most common certificates from the default bundles", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_NONE", - "name": "MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_NONE", - "range": null, - "title": "Do not use the default certificate bundle", - "type": "bool" - } - ], - "depends_on": "MBEDTLS_CERTIFICATE_BUNDLE", - "help": null, - "id": "component-config-mbedtls-certificate-bundle-enable-trusted-root-certificate-bundle-default-certificate-bundle-options", - "name": "MBEDTLS_DEFAULT_CERTIFICATE_BUNDLE", - "title": "Default certificate bundle options", - "type": "choice" - }, - { - "children": [ - { - "children": [], - "depends_on": "MBEDTLS_CUSTOM_CERTIFICATE_BUNDLE", - "help": "Name of the custom certificate directory or file. This path is evaluated\nrelative to the project root directory.", - "id": "MBEDTLS_CUSTOM_CERTIFICATE_BUNDLE_PATH", - "name": "MBEDTLS_CUSTOM_CERTIFICATE_BUNDLE_PATH", - "range": null, - "title": "Custom certificate bundle path", - "type": "string" - } - ], - "depends_on": "MBEDTLS_CERTIFICATE_BUNDLE", - "help": null, - "id": "MBEDTLS_CUSTOM_CERTIFICATE_BUNDLE", - "name": "MBEDTLS_CUSTOM_CERTIFICATE_BUNDLE", - "range": null, - "title": "Add custom certificates to the default bundle", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_CERTIFICATE_BUNDLE && !MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_NONE", - "help": "Include the deprecated list of root certificates in the bundle.\nThis list gets updated when a certificate is removed from the Mozilla's\nNSS root certificate store. This config can be enabled if you would like\nto ensure that none of the certificates that were deployed in the product\nare affected because of the update to bundle. In turn, enabling this\nconfig keeps expired, retracted certificates in the bundle and it may\npose a security risk.\n\n- Deprecated cert list may grow based based on sync with upstream bundle\n- Deprecated certs would be be removed in ESP-IDF (next) major release", - "id": "MBEDTLS_CERTIFICATE_BUNDLE_DEPRECATED_LIST", - "name": "MBEDTLS_CERTIFICATE_BUNDLE_DEPRECATED_LIST", - "range": null, - "title": "Add deprecated root certificates", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_CERTIFICATE_BUNDLE", - "help": null, - "id": "MBEDTLS_CERTIFICATE_BUNDLE_MAX_CERTS", - "name": "MBEDTLS_CERTIFICATE_BUNDLE_MAX_CERTS", - "range": null, - "title": "Maximum no of certificates allowed in certificate bundle", - "type": "int" - } - ], - "depends_on": null, - "help": "Enable support for large number of default root certificates\n\nWhen enabled this option allows user to store default as well\nas customer specific root certificates in compressed format rather\nthan storing full certificate. For the root certificates the public key and the subject name\nwill be stored.", - "id": "MBEDTLS_CERTIFICATE_BUNDLE", - "name": "MBEDTLS_CERTIFICATE_BUNDLE", - "range": null, - "title": "Enable trusted root certificate bundle", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-mbedtls-certificate-bundle", - "title": "Certificate Bundle", - "type": "menu" - }, - { - "children": [], - "depends_on": "MBEDTLS_ECP_C", - "help": "Enable \"non-blocking\" ECC operations that can return early and be resumed.", - "id": "MBEDTLS_ECP_RESTARTABLE", - "name": "MBEDTLS_ECP_RESTARTABLE", - "range": null, - "title": "Enable mbedTLS ecp restartable", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_AES_C || MBEDTLS_DES_C", - "help": "Enable the CMAC (Cipher-based Message Authentication Code) mode for\nblock ciphers.", - "id": "MBEDTLS_CMAC_C", - "name": "MBEDTLS_CMAC_C", - "range": null, - "title": "Enable CMAC mode for block ciphers", - "type": "bool" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "MBEDTLS_AES_USE_INTERRUPT", - "help": "This config helps to set the interrupt priority level for the AES peripheral.\nValue 0 (default) means that there is no preference regarding the interrupt\npriority level and any level from 1 to 3 can be selected (based on the availability).\nNote: Higher value indicates high interrupt priority.", - "id": "MBEDTLS_AES_INTERRUPT_LEVEL", - "name": "MBEDTLS_AES_INTERRUPT_LEVEL", - "range": [ - 0, - 3 - ], - "title": "AES hardware interrupt level", - "type": "int" - } - ], - "depends_on": "!IDF_TARGET_ESP32 && MBEDTLS_HARDWARE_AES", - "help": "Use an interrupt to coordinate long AES operations.\n\nThis allows other code to run on the CPU while an AES operation is pending.\nOtherwise the CPU busy-waits.", - "id": "MBEDTLS_AES_USE_INTERRUPT", - "name": "MBEDTLS_AES_USE_INTERRUPT", - "range": null, - "title": "Use interrupt for long AES operations", - "type": "bool" - } - ], - "depends_on": "!SPIRAM_CACHE_WORKAROUND_STRATEGY_DUPLDST && SOC_AES_SUPPORTED", - "help": "Enable hardware accelerated AES encryption & decryption.\n\nNote that if the ESP32 CPU is running at 240MHz, hardware AES does not\noffer any speed boost over software AES.", - "id": "MBEDTLS_HARDWARE_AES", - "name": "MBEDTLS_HARDWARE_AES", - "range": null, - "title": "Enable hardware AES acceleration", - "type": "bool" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "MBEDTLS_AES_USE_PSEUDO_ROUND_FUNC_STRENGTH_LOW", - "name": "MBEDTLS_AES_USE_PSEUDO_ROUND_FUNC_STRENGTH_LOW", - "range": null, - "title": "Low", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "MBEDTLS_AES_USE_PSEUDO_ROUND_FUNC_STRENGTH_MEDIUM", - "name": "MBEDTLS_AES_USE_PSEUDO_ROUND_FUNC_STRENGTH_MEDIUM", - "range": null, - "title": "Medium", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "MBEDTLS_AES_USE_PSEUDO_ROUND_FUNC_STRENGTH_HIGH", - "name": "MBEDTLS_AES_USE_PSEUDO_ROUND_FUNC_STRENGTH_HIGH", - "range": null, - "title": "High", - "type": "bool" - } - ], - "depends_on": "MBEDTLS_AES_USE_PSEUDO_ROUND_FUNC", - "help": "The strength of the pseudo rounds functions can be configured to low, medium and high.\nYou can configure the strength of the pseudo rounds functions according to your use cases,\nfor example, increasing the strength would provide higher security but would slow down the\nhardware AES encryption/decryption operations.", - "id": "component-config-mbedtls-enable-aes-hardware-s-pseudo-round-function-strength-of-the-pseudo-rounds-function", - "name": "MBEDTLS_AES_USE_PSEUDO_ROUND_FUNC_STRENGTH", - "title": "Strength of the pseudo rounds function", - "type": "choice" - } - ], - "depends_on": "SOC_AES_SUPPORT_PSEUDO_ROUND_FUNCTION", - "help": "Enables the pseudo round function of the AES peripheral.\nEnabling this would impact the performance of the AES operations.\nFor more info regarding the performance impact, please checkout the pseudo round function section of the\nsecurity guide.", - "id": "MBEDTLS_AES_USE_PSEUDO_ROUND_FUNC", - "name": "MBEDTLS_AES_USE_PSEUDO_ROUND_FUNC", - "range": null, - "title": "Enable AES hardware's pseudo round function", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "MBEDTLS_AES_USE_PSEUDO_ROUND_FUNC_STRENGTH", - "name": "MBEDTLS_AES_USE_PSEUDO_ROUND_FUNC_STRENGTH", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": "SOC_AES_SUPPORT_GCM && MBEDTLS_HARDWARE_AES", - "help": "Enable partially hardware accelerated GCM. GHASH calculation is still done\nin software.\n\nIf MBEDTLS_HARDWARE_GCM is disabled and MBEDTLS_HARDWARE_AES is enabled then\nmbedTLS will still use the hardware accelerated AES block operation, but\non a single block at a time.", - "id": "MBEDTLS_HARDWARE_GCM", - "name": "MBEDTLS_HARDWARE_GCM", - "range": null, - "title": "Enable partially hardware accelerated GCM", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_HARDWARE_AES && MBEDTLS_GCM_C", - "help": "Enable this config to support fallback to software definitions for a non-AES\ncipher GCM operation as we support hardware acceleration only for AES cipher.\nSome of the non-AES ciphers used in a GCM operation are DES, ARIA, CAMELLIA,\nCHACHA20, BLOWFISH.\n\nIf this config is disabled, performing a non-AES cipher GCM operation with\nthe config MBEDTLS_HARDWARE_AES enabled will result in calculation of an\nAES-GCM operation instead for the given input values and thus could lead\nto failure in certificate validation which would ultimately lead to a SSL\nhandshake failure.\n\nThis config being by-default enabled leads to an increase in binary size\nfootprint of ~2.5KB.\nIn case you are sure that your use case (for example, client and server\nconfigurations in case of a TLS handshake) would not involve any GCM\noperations using a non-AES cipher, you can safely disable this config,\nleading to reduction in binary size footprint.", - "id": "MBEDTLS_GCM_SUPPORT_NON_AES_CIPHER", - "name": "MBEDTLS_GCM_SUPPORT_NON_AES_CIPHER", - "range": null, - "title": "Enable support for non-AES ciphers in GCM operation", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "MBEDTLS_HARDWARE_MPI", - "help": "Fallback to software implementation for RSA key lengths\nlarger than SOC_RSA_MAX_BIT_LEN. If this is not active\nthen the ESP will be unable to process keys greater\nthan SOC_RSA_MAX_BIT_LEN.", - "id": "MBEDTLS_LARGE_KEY_SOFTWARE_MPI", - "name": "MBEDTLS_LARGE_KEY_SOFTWARE_MPI", - "range": null, - "title": "Fallback to software implementation for larger MPI values", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "MBEDTLS_MPI_USE_INTERRUPT", - "help": "This config helps to set the interrupt priority level for the MPI peripheral.\nValue 0 (default) means that there is no preference regarding the interrupt\npriority level and any level from 1 to 3 can be selected (based on the availability).\nNote: Higher value indicates high interrupt priority.", - "id": "MBEDTLS_MPI_INTERRUPT_LEVEL", - "name": "MBEDTLS_MPI_INTERRUPT_LEVEL", - "range": [ - 0, - 3 - ], - "title": "MPI hardware interrupt level", - "type": "int" - } - ], - "depends_on": "!IDF_TARGET_ESP32 && MBEDTLS_HARDWARE_MPI", - "help": "Use an interrupt to coordinate long MPI operations.\n\nThis allows other code to run on the CPU while an MPI operation is pending.\nOtherwise the CPU busy-waits.", - "id": "MBEDTLS_MPI_USE_INTERRUPT", - "name": "MBEDTLS_MPI_USE_INTERRUPT", - "range": null, - "title": "Use interrupt for MPI exp-mod operations", - "type": "bool" - } - ], - "depends_on": "!SPIRAM_CACHE_WORKAROUND_STRATEGY_DUPLDST && SOC_MPI_SUPPORTED", - "help": "Enable hardware accelerated multiple precision integer operations.\n\nHardware accelerated multiplication, modulo multiplication,\nand modular exponentiation for up to SOC_RSA_MAX_BIT_LEN bit results.\n\nThese operations are used by RSA.", - "id": "MBEDTLS_HARDWARE_MPI", - "name": "MBEDTLS_HARDWARE_MPI", - "range": null, - "title": "Enable hardware MPI (bignum) acceleration", - "type": "bool" - }, - { - "children": [], - "depends_on": "!SPIRAM_CACHE_WORKAROUND_STRATEGY_DUPLDST && SOC_SHA_SUPPORTED", - "help": "Enable hardware accelerated SHA1, SHA256, SHA384 & SHA512 in mbedTLS.\n\nDue to a hardware limitation, on the ESP32 hardware acceleration is only\nguaranteed if SHA digests are calculated one at a time. If more\nthan one SHA digest is calculated at the same time, one will\nbe calculated fully in hardware and the rest will be calculated\n(at least partially calculated) in software. This happens automatically.\n\nSHA hardware acceleration is faster than software in some situations but\nslower in others. You should benchmark to find the best setting for you.", - "id": "MBEDTLS_HARDWARE_SHA", - "name": "MBEDTLS_HARDWARE_SHA", - "range": null, - "title": "Enable hardware SHA acceleration", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "MBEDTLS_HARDWARE_ECC", - "help": "Fallback to software implementation of ECC point multiplication and point verification\nfor curves not supported in hardware.", - "id": "MBEDTLS_ECC_OTHER_CURVES_SOFT_FALLBACK", - "name": "MBEDTLS_ECC_OTHER_CURVES_SOFT_FALLBACK", - "range": null, - "title": "Fallback to software implementation for curves not supported in hardware", - "type": "bool" - } - ], - "depends_on": "SOC_ECC_SUPPORTED", - "help": "Enable hardware accelerated ECC point multiplication and point verification for points\non curve SECP192R1 and SECP256R1 in mbedTLS", - "id": "MBEDTLS_HARDWARE_ECC", - "name": "MBEDTLS_HARDWARE_ECC", - "range": null, - "title": "Enable hardware ECC acceleration", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Use ROM MD5 in mbedTLS.", - "id": "MBEDTLS_ROM_MD5", - "name": "MBEDTLS_ROM_MD5", - "range": null, - "title": "Use MD5 implementation in ROM", - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_ECDSA_SUPPORTED", - "help": "Enable hardware accelerated ECDSA peripheral to sign data\non curve SECP192R1 and SECP256R1 in mbedTLS.\n\nNote that for signing, the private key has to be burnt in an efuse key block\nwith key purpose set to ECDSA_KEY.\nIf no key is burnt, it will report an error\n\nThe key should be burnt in little endian format. espefuse.py utility handles it internally\nbut care needs to be taken while burning using esp_efuse APIs", - "id": "MBEDTLS_HARDWARE_ECDSA_SIGN", - "name": "MBEDTLS_HARDWARE_ECDSA_SIGN", - "range": null, - "title": "Enable ECDSA signing using on-chip ECDSA peripheral", - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_ENABLE_TEE", - "help": null, - "id": "MBEDTLS_TEE_SEC_STG_ECDSA_SIGN", - "name": "MBEDTLS_TEE_SEC_STG_ECDSA_SIGN", - "range": null, - "title": "Enable ECDSA signing using TEE secure storage", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "MBEDTLS_HARDWARE_ECDSA_SIGN && IDF_TARGET_ESP32H2", - "help": "The ECDSA peripheral before ESP32-H2 v1.2 does not offer constant time ECDSA sign operation.\nThis time can be observed through power profiling of the device,\nmaking the ECDSA private key vulnerable to side-channel timing attacks.\nThis countermeasure masks the real ECDSA sign operation\nunder dummy sign operations to add randomness in the generated power signature.\nIt is highly recommended to also enable Secure Boot for the device in addition to this countermeasure\nso that only trusted software can execute on the device.\nThis countermeasure can be safely disabled for ESP32-H2 v1.2 and above.", - "id": "MBEDTLS_HARDWARE_ECDSA_SIGN_MASKING_CM", - "name": "MBEDTLS_HARDWARE_ECDSA_SIGN_MASKING_CM", - "range": null, - "title": "Mask original ECDSA sign operation under dummy sign operations", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_HARDWARE_ECDSA_SIGN && IDF_TARGET_ESP32H2", - "help": "This option adds a delay after the actual ECDSA signature operation\nso that the entire operation appears to be constant time for the software.\nThis fix helps in protecting the device only in case of remote timing attack on the ECDSA private key.\nFor e.g., When an interface is exposed by the device to perform ECDSA signature\nof an arbitrary message.\nThe signature time would appear to be constant to the external entity after enabling\nthis option.\nThis countermeasure can be safely disabled for ESP32-H2 v1.2 and above.", - "id": "MBEDTLS_HARDWARE_ECDSA_SIGN_CONSTANT_TIME_CM", - "name": "MBEDTLS_HARDWARE_ECDSA_SIGN_CONSTANT_TIME_CM", - "range": null, - "title": "Make ECDSA signature operation pseudo constant time for software", - "type": "bool" - } - ], - "depends_on": "MBEDTLS_HARDWARE_ECDSA_SIGN && IDF_TARGET_ESP32H2", - "id": "component-config-mbedtls-enable-software-countermeasure-for-ecdsa-signing-using-on-chip-ecdsa-peripheral", - "title": "Enable Software Countermeasure for ECDSA signing using on-chip ECDSA peripheral", - "type": "menu" - }, - { - "children": [], - "depends_on": "SOC_ECDSA_SUPPORTED", - "help": "Enable hardware accelerated ECDSA peripheral to verify signature\non curve SECP192R1 and SECP256R1 in mbedTLS.", - "id": "MBEDTLS_HARDWARE_ECDSA_VERIFY", - "name": "MBEDTLS_HARDWARE_ECDSA_VERIFY", - "range": null, - "title": "Enable ECDSA signature verification using on-chip ECDSA peripheral", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "This option enables hardware acceleration for ECDSA sign function, only\nwhen using ATECC608A cryptoauth chip.", - "id": "MBEDTLS_ATCA_HW_ECDSA_SIGN", - "name": "MBEDTLS_ATCA_HW_ECDSA_SIGN", - "range": null, - "title": "Enable hardware ECDSA sign acceleration when using ATECC608A", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "This option enables hardware acceleration for ECDSA sign function, only\nwhen using ATECC608A cryptoauth chip.", - "id": "MBEDTLS_ATCA_HW_ECDSA_VERIFY", - "name": "MBEDTLS_ATCA_HW_ECDSA_VERIFY", - "range": null, - "title": "Enable hardware ECDSA verify acceleration when using ATECC608A", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "MBEDTLS_HAVE_TIME", - "help": "Enabling this config will provide users with a function\n\"mbedtls_platform_set_time()\" that allows to set an alternative\ntime function pointer.", - "id": "MBEDTLS_PLATFORM_TIME_ALT", - "name": "MBEDTLS_PLATFORM_TIME_ALT", - "range": null, - "title": "Enable mbedtls time support: platform-specific", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_HAVE_TIME", - "help": "Enables X.509 certificate expiry checks in mbedTLS.\n\nIf this option is disabled (default) then X.509 certificate\n\"valid from\" and \"valid to\" timestamp fields are ignored.\n\nIf this option is enabled, these fields are compared with the\ncurrent system date and time. The time is retrieved using the\nstandard time() and gmtime() functions. If the certificate is not\nvalid for the current system time then verification will fail with\ncode MBEDTLS_X509_BADCERT_FUTURE or MBEDTLS_X509_BADCERT_EXPIRED.\n\nEnabling this option requires adding functionality in the firmware\nto set the system clock to a valid timestamp before using TLS. The\nrecommended way to do this is via ESP-IDF's SNTP functionality, but\nany method can be used.\n\nIn the case where only a small number of certificates are trusted by\nthe device, please carefully consider the tradeoffs of enabling this\noption. There may be undesired consequences, for example if all\ntrusted certificates expire while the device is offline and a TLS\nconnection is required to update. Or if an issue with the SNTP\nserver means that the system time is invalid for an extended period\nafter a reset.", - "id": "MBEDTLS_HAVE_TIME_DATE", - "name": "MBEDTLS_HAVE_TIME_DATE", - "range": null, - "title": "Enable mbedtls certificate expiry check", - "type": "bool" - } - ], - "depends_on": "!ESP_TIME_FUNCS_USE_NONE", - "help": "Enable use of time.h functions (time() and gmtime()) by mbedTLS.\n\nThis option doesn't require the system time to be correct, but enables\nfunctionality that requires relative timekeeping - for example periodic\nexpiry of TLS session tickets or session cache entries.\n\nDisabling this option will save some firmware size, particularly if\nthe rest of the firmware doesn't call any standard timekeeping\nfunctions.", - "id": "MBEDTLS_HAVE_TIME", - "name": "MBEDTLS_HAVE_TIME", - "range": null, - "title": "Enable mbedtls time support", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Standard ECDSA is \"fragile\" in the sense that lack of entropy when signing\nmay result in a compromise of the long-term signing key.", - "id": "MBEDTLS_ECDSA_DETERMINISTIC", - "name": "MBEDTLS_ECDSA_DETERMINISTIC", - "range": null, - "title": "Enable deterministic ECDSA", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enabling MBEDTLS_SHA1_C adds support for SHA-1.\nSHA-1 is considered a weak message digest and its use constitutes\na security risk.\nDisabling this configuration option could impact TLS 1.2 / Wi-Fi Enterprise compatibility\nwith certain older certificates that rely on SHA-1 for digital signatures.\nBefore proceeding, ensure that all your certificates are using stronger hash algorithms,\nsuch as SHA-256 (part of the SHA-2 family).\nIf you're using older certificates or if you're unsure about the impact on your product,\nplease consider testing the changes in a controlled environment for individual features\nlike OTA updates, cloud connectivity, secure local control, etc.", - "id": "MBEDTLS_SHA1_C", - "name": "MBEDTLS_SHA1_C", - "range": null, - "title": "Enable the SHA-1 cryptographic hash algorithm", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enable MBEDTLS_SHA512_C adds support for SHA-384 and SHA-512.", - "id": "MBEDTLS_SHA512_C", - "name": "MBEDTLS_SHA512_C", - "range": null, - "title": "Enable the SHA-384 and SHA-512 cryptographic hash algorithms", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enabling MBEDTLS_SHA3_C adds support for SHA3.\nEnabling this configuration option increases the flash footprint\nby almost 4KB.", - "id": "MBEDTLS_SHA3_C", - "name": "MBEDTLS_SHA3_C", - "range": null, - "title": "Enable the SHA3 cryptographic hash algorithm", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "MBEDTLS_TLS_SERVER_AND_CLIENT", - "name": "MBEDTLS_TLS_SERVER_AND_CLIENT", - "range": null, - "title": "Server & Client", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "MBEDTLS_TLS_SERVER_ONLY", - "name": "MBEDTLS_TLS_SERVER_ONLY", - "range": null, - "title": "Server", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "MBEDTLS_TLS_CLIENT_ONLY", - "name": "MBEDTLS_TLS_CLIENT_ONLY", - "range": null, - "title": "Client", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "MBEDTLS_TLS_DISABLED", - "name": "MBEDTLS_TLS_DISABLED", - "range": null, - "title": "None", - "type": "bool" - } - ], - "depends_on": null, - "help": "mbedTLS can be compiled with protocol support for the TLS\nserver, TLS client, or both server and client.\n\nReducing the number of TLS roles supported saves code size.", - "id": "component-config-mbedtls-tls-protocol-role", - "name": "MBEDTLS_TLS_MODE", - "title": "TLS Protocol Role", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "MBEDTLS_TLS_SERVER", - "name": "MBEDTLS_TLS_SERVER", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "MBEDTLS_TLS_CLIENT", - "name": "MBEDTLS_TLS_CLIENT", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "MBEDTLS_TLS_ENABLED", - "name": "MBEDTLS_TLS_ENABLED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "MBEDTLS_PSK_MODES && MBEDTLS_TLS_ENABLED", - "help": "Enable to support symmetric key PSK (pre-shared-key) TLS key exchange modes.", - "id": "MBEDTLS_KEY_EXCHANGE_PSK", - "name": "MBEDTLS_KEY_EXCHANGE_PSK", - "range": null, - "title": "Enable PSK based ciphersuite modes", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_PSK_MODES && MBEDTLS_DHM_C && MBEDTLS_TLS_ENABLED", - "help": "Enable to support Diffie-Hellman PSK (pre-shared-key) TLS authentication modes.", - "id": "MBEDTLS_KEY_EXCHANGE_DHE_PSK", - "name": "MBEDTLS_KEY_EXCHANGE_DHE_PSK", - "range": null, - "title": "Enable DHE-PSK based ciphersuite modes", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_PSK_MODES && MBEDTLS_ECDH_C && MBEDTLS_TLS_ENABLED", - "help": "Enable to support Elliptic-Curve-Diffie-Hellman PSK (pre-shared-key) TLS authentication modes.", - "id": "MBEDTLS_KEY_EXCHANGE_ECDHE_PSK", - "name": "MBEDTLS_KEY_EXCHANGE_ECDHE_PSK", - "range": null, - "title": "Enable ECDHE-PSK based ciphersuite modes", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_PSK_MODES && MBEDTLS_TLS_ENABLED", - "help": "Enable to support RSA PSK (pre-shared-key) TLS authentication modes.", - "id": "MBEDTLS_KEY_EXCHANGE_RSA_PSK", - "name": "MBEDTLS_KEY_EXCHANGE_RSA_PSK", - "range": null, - "title": "Enable RSA-PSK based ciphersuite modes", - "type": "bool" - } - ], - "depends_on": "MBEDTLS_TLS_ENABLED", - "help": "Enable to show configuration for different types of pre-shared-key TLS authentatication methods.\n\nLeaving this options disabled will save code size if they are not used.", - "id": "MBEDTLS_PSK_MODES", - "name": "MBEDTLS_PSK_MODES", - "range": null, - "title": "Enable pre-shared-key ciphersuites", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_TLS_ENABLED", - "help": "Enable to support ciphersuites with prefix TLS-RSA-WITH-", - "id": "MBEDTLS_KEY_EXCHANGE_RSA", - "name": "MBEDTLS_KEY_EXCHANGE_RSA", - "range": null, - "title": "Enable RSA-only based ciphersuite modes", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_DHM_C && MBEDTLS_TLS_ENABLED", - "help": "Enable to support ciphersuites with prefix TLS-DHE-RSA-WITH-", - "id": "MBEDTLS_KEY_EXCHANGE_DHE_RSA", - "name": "MBEDTLS_KEY_EXCHANGE_DHE_RSA", - "range": null, - "title": "Enable DHE-RSA based ciphersuite modes", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE && MBEDTLS_ECDH_C && MBEDTLS_TLS_ENABLED", - "help": "Enable to support ciphersuites with prefix TLS-ECDHE-RSA-WITH-", - "id": "MBEDTLS_KEY_EXCHANGE_ECDHE_RSA", - "name": "MBEDTLS_KEY_EXCHANGE_ECDHE_RSA", - "range": null, - "title": "Enable ECDHE-RSA based ciphersuite modes", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE && MBEDTLS_ECDH_C && MBEDTLS_ECDSA_C && MBEDTLS_TLS_ENABLED", - "help": "Enable to support ciphersuites with prefix TLS-ECDHE-ECDSA-WITH-", - "id": "MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA", - "name": "MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA", - "range": null, - "title": "Enable ECDHE-ECDSA based ciphersuite modes", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE && MBEDTLS_ECDH_C && MBEDTLS_ECDSA_C && MBEDTLS_TLS_ENABLED", - "help": "Enable to support ciphersuites with prefix TLS-ECDH-ECDSA-WITH-", - "id": "MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA", - "name": "MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA", - "range": null, - "title": "Enable ECDH-ECDSA based ciphersuite modes", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE && MBEDTLS_ECDH_C && MBEDTLS_TLS_ENABLED", - "help": "Enable to support ciphersuites with prefix TLS-ECDH-RSA-WITH-", - "id": "MBEDTLS_KEY_EXCHANGE_ECDH_RSA", - "name": "MBEDTLS_KEY_EXCHANGE_ECDH_RSA", - "range": null, - "title": "Enable ECDH-RSA based ciphersuite modes", - "type": "bool" - } - ], - "depends_on": "MBEDTLS_ECP_C && MBEDTLS_TLS_ENABLED", - "help": "Enable to show Elliptic Curve based ciphersuite mode options.\n\nDisabling all Elliptic Curve ciphersuites saves code size and\ncan give slightly faster TLS handshakes, provided the server supports\nRSA-only ciphersuite modes.", - "id": "MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE", - "name": "MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE", - "range": null, - "title": "Support Elliptic Curve based ciphersuites", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_ECJPAKE_C && MBEDTLS_ECP_DP_SECP256R1_ENABLED && MBEDTLS_TLS_ENABLED", - "help": "Enable to support ciphersuites with prefix TLS-ECJPAKE-WITH-", - "id": "MBEDTLS_KEY_EXCHANGE_ECJPAKE", - "name": "MBEDTLS_KEY_EXCHANGE_ECJPAKE", - "range": null, - "title": "Enable ECJPAKE based ciphersuite modes", - "type": "bool" - } - ], - "depends_on": "MBEDTLS_TLS_ENABLED", - "id": "component-config-mbedtls-tls-key-exchange-methods", - "title": "TLS Key Exchange Methods", - "type": "menu" - }, - { - "children": [], - "depends_on": "MBEDTLS_TLS_ENABLED && MBEDTLS_SSL_PROTO_TLS1_2", - "help": "The two main uses of renegotiation are (1) refresh keys on long-lived\nconnections and (2) client authentication after the initial handshake.\nIf you don't need renegotiation, disabling it will save code size and\nreduce the possibility of abuse/vulnerability.", - "id": "MBEDTLS_SSL_RENEGOTIATION", - "name": "MBEDTLS_SSL_RENEGOTIATION", - "range": null, - "title": "Support TLS renegotiation", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_TLS_ENABLED", - "help": null, - "id": "MBEDTLS_SSL_PROTO_TLS1_2", - "name": "MBEDTLS_SSL_PROTO_TLS1_2", - "range": null, - "title": "Support TLS 1.2 protocol", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_TLS_ENABLED", - "help": "Provisions for GM/T SSL 1.1 support", - "id": "MBEDTLS_SSL_PROTO_GMTSSL1_1", - "name": "MBEDTLS_SSL_PROTO_GMTSSL1_1", - "range": null, - "title": "Support GM/T SSL 1.1 protocol", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_SSL_PROTO_TLS1_2", - "help": "Requires TLS 1.2 to be enabled for DTLS 1.2", - "id": "MBEDTLS_SSL_PROTO_DTLS", - "name": "MBEDTLS_SSL_PROTO_DTLS", - "range": null, - "title": "Support DTLS protocol (all versions)", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_TLS_ENABLED", - "help": "Disabling this option will save some code size if it is not needed.", - "id": "MBEDTLS_SSL_ALPN", - "name": "MBEDTLS_SSL_ALPN", - "range": null, - "title": "Support ALPN (Application Layer Protocol Negotiation)", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_TLS_ENABLED", - "help": "Client support for RFC 5077 session tickets. See mbedTLS documentation for more details.\nDisabling this option will save some code size.", - "id": "MBEDTLS_CLIENT_SSL_SESSION_TICKETS", - "name": "MBEDTLS_CLIENT_SSL_SESSION_TICKETS", - "range": null, - "title": "TLS: Client Support for RFC 5077 SSL session tickets", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_TLS_ENABLED && (MBEDTLS_GCM_C || MBEDTLS_CCM_C || MBEDTLS_CHACHAPOLY_C)", - "help": "Server support for RFC 5077 session tickets. See mbedTLS documentation for more details.\nDisabling this option will save some code size.", - "id": "MBEDTLS_SERVER_SSL_SESSION_TICKETS", - "name": "MBEDTLS_SERVER_SSL_SESSION_TICKETS", - "range": null, - "title": "TLS: Server Support for RFC 5077 SSL session tickets", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": null, - "id": "MBEDTLS_AES_C", - "name": "MBEDTLS_AES_C", - "range": null, - "title": "AES block cipher", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "MBEDTLS_CAMELLIA_C", - "name": "MBEDTLS_CAMELLIA_C", - "range": null, - "title": "Camellia block cipher", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enables the DES block cipher to support 3DES-based TLS ciphersuites.\n\n3DES is vulnerable to the Sweet32 attack and should only be enabled\nif absolutely necessary.", - "id": "MBEDTLS_DES_C", - "name": "MBEDTLS_DES_C", - "range": null, - "title": "DES block cipher (legacy, insecure)", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enables the Blowfish block cipher (not used for TLS sessions.)\n\nThe Blowfish cipher is not used for mbedTLS TLS sessions but can be\nused for other purposes. Read up on the limitations of Blowfish (including\nSweet32) before enabling.", - "id": "MBEDTLS_BLOWFISH_C", - "name": "MBEDTLS_BLOWFISH_C", - "range": null, - "title": "Blowfish block cipher (read help)", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enables the XTEA block cipher.", - "id": "MBEDTLS_XTEA_C", - "name": "MBEDTLS_XTEA_C", - "range": null, - "title": "XTEA block cipher", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_AES_C || MBEDTLS_CAMELLIA_C", - "help": "Enable Counter with CBC-MAC (CCM) modes for AES and/or Camellia ciphers.\n\nDisabling this option saves some code size.", - "id": "MBEDTLS_CCM_C", - "name": "MBEDTLS_CCM_C", - "range": null, - "title": "CCM (Counter with CBC-MAC) block cipher modes", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_AES_C || MBEDTLS_CAMELLIA_C", - "help": "Enable Galois/Counter Mode for AES and/or Camellia ciphers.\n\nThis option is generally faster than CCM.", - "id": "MBEDTLS_GCM_C", - "name": "MBEDTLS_GCM_C", - "range": null, - "title": "GCM (Galois/Counter) block cipher modes", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_AES_C", - "help": "Enable NIST key wrapping and key wrapping padding.", - "id": "MBEDTLS_NIST_KW_C", - "name": "MBEDTLS_NIST_KW_C", - "range": null, - "title": "NIST key wrapping (KW) and KW padding (KWP)", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-mbedtls-symmetric-ciphers", - "title": "Symmetric Ciphers", - "type": "menu" - }, - { - "children": [], - "depends_on": null, - "help": "Enable the RIPEMD-160 hash algorithm.", - "id": "MBEDTLS_RIPEMD160_C", - "name": "MBEDTLS_RIPEMD160_C", - "range": null, - "title": "Enable RIPEMD-160 hash algorithm", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": "Enable decoding/parsing of PEM formatted certificates.\n\nIf your certificates are all in the simpler DER format, disabling\nthis option will save some code size.", - "id": "MBEDTLS_PEM_PARSE_C", - "name": "MBEDTLS_PEM_PARSE_C", - "range": null, - "title": "Read & Parse PEM formatted certificates", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enable writing of PEM formatted certificates.\n\nIf writing certificate data only in DER format, disabling this\noption will save some code size.", - "id": "MBEDTLS_PEM_WRITE_C", - "name": "MBEDTLS_PEM_WRITE_C", - "range": null, - "title": "Write PEM formatted certificates", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Support for parsing X.509 Certificate Revocation Lists.", - "id": "MBEDTLS_X509_CRL_PARSE_C", - "name": "MBEDTLS_X509_CRL_PARSE_C", - "range": null, - "title": "X.509 CRL parsing", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Support for parsing X.509 Certificate Signing Requests", - "id": "MBEDTLS_X509_CSR_PARSE_C", - "name": "MBEDTLS_X509_CSR_PARSE_C", - "range": null, - "title": "X.509 CSR parsing", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-mbedtls-certificates", - "title": "Certificates", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "MBEDTLS_ECP_C", - "help": "Enhance support for reading EC keys using variants of SEC1 not allowed by\nRFC 5915 and RFC 5480.", - "id": "MBEDTLS_PK_PARSE_EC_EXTENDED", - "name": "MBEDTLS_PK_PARSE_EC_EXTENDED", - "range": null, - "title": "Enhance support for reading EC keys", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_ECP_C", - "help": "Enable the support for parsing public keys of type Short Weierstrass\n(MBEDTLS_ECP_DP_SECP_XXX and MBEDTLS_ECP_DP_BP_XXX) which are using the\ncompressed point format. This parsing is done through ECP module's functions.", - "id": "MBEDTLS_PK_PARSE_EC_COMPRESSED", - "name": "MBEDTLS_PK_PARSE_EC_COMPRESSED", - "range": null, - "title": "Enable the support for parsing public keys of type Short Weierstrass", - "type": "bool" - } - ], - "depends_on": null, - "help": null, - "id": "MBEDTLS_ECP_C", - "is_menuconfig": true, - "name": "MBEDTLS_ECP_C", - "range": null, - "title": "Elliptic Curve Ciphers", - "type": "menu" - }, - { - "children": [], - "depends_on": null, - "help": "Enable DHM. Needed to use DHE-xxx TLS ciphersuites.\n\nNote that the security of Diffie-Hellman key exchanges depends on\na suitable prime being used for the exchange. Please see detailed\nwarning text about this in file `mbedtls/dhm.h` file.", - "id": "MBEDTLS_DHM_C", - "name": "MBEDTLS_DHM_C", - "range": null, - "title": "Diffie-Hellman-Merkle key exchange (DHM)", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "MBEDTLS_ECDH_C", - "help": "Enable ECDSA. Needed to use ECDSA-xxx TLS ciphersuites.", - "id": "MBEDTLS_ECDSA_C", - "name": "MBEDTLS_ECDSA_C", - "range": null, - "title": "Elliptic Curve DSA", - "type": "bool" - } - ], - "depends_on": "MBEDTLS_ECP_C", - "help": "Enable ECDH. Needed to use ECDHE-xxx TLS ciphersuites.", - "id": "MBEDTLS_ECDH_C", - "name": "MBEDTLS_ECDH_C", - "range": null, - "title": "Elliptic Curve Diffie-Hellman (ECDH)", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_ECP_C", - "help": "Enable ECJPAKE. Needed to use ECJPAKE-xxx TLS ciphersuites.", - "id": "MBEDTLS_ECJPAKE_C", - "name": "MBEDTLS_ECJPAKE_C", - "range": null, - "title": "Elliptic curve J-PAKE", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_ECP_C", - "help": "Enable support for SECP192R1 Elliptic Curve.", - "id": "MBEDTLS_ECP_DP_SECP192R1_ENABLED", - "name": "MBEDTLS_ECP_DP_SECP192R1_ENABLED", - "range": null, - "title": "Enable SECP192R1 curve", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_ECP_C", - "help": "Enable support for SECP224R1 Elliptic Curve.", - "id": "MBEDTLS_ECP_DP_SECP224R1_ENABLED", - "name": "MBEDTLS_ECP_DP_SECP224R1_ENABLED", - "range": null, - "title": "Enable SECP224R1 curve", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_ECP_C", - "help": "Enable support for SECP256R1 Elliptic Curve.", - "id": "MBEDTLS_ECP_DP_SECP256R1_ENABLED", - "name": "MBEDTLS_ECP_DP_SECP256R1_ENABLED", - "range": null, - "title": "Enable SECP256R1 curve", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_ECP_C", - "help": "Enable support for SECP384R1 Elliptic Curve.", - "id": "MBEDTLS_ECP_DP_SECP384R1_ENABLED", - "name": "MBEDTLS_ECP_DP_SECP384R1_ENABLED", - "range": null, - "title": "Enable SECP384R1 curve", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_ECP_C", - "help": "Enable support for SECP521R1 Elliptic Curve.", - "id": "MBEDTLS_ECP_DP_SECP521R1_ENABLED", - "name": "MBEDTLS_ECP_DP_SECP521R1_ENABLED", - "range": null, - "title": "Enable SECP521R1 curve", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_ECP_C", - "help": "Enable support for SECP192K1 Elliptic Curve.", - "id": "MBEDTLS_ECP_DP_SECP192K1_ENABLED", - "name": "MBEDTLS_ECP_DP_SECP192K1_ENABLED", - "range": null, - "title": "Enable SECP192K1 curve", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_ECP_C", - "help": "Enable support for SECP224K1 Elliptic Curve.", - "id": "MBEDTLS_ECP_DP_SECP224K1_ENABLED", - "name": "MBEDTLS_ECP_DP_SECP224K1_ENABLED", - "range": null, - "title": "Enable SECP224K1 curve", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_ECP_C", - "help": "Enable support for SECP256K1 Elliptic Curve.", - "id": "MBEDTLS_ECP_DP_SECP256K1_ENABLED", - "name": "MBEDTLS_ECP_DP_SECP256K1_ENABLED", - "range": null, - "title": "Enable SECP256K1 curve", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_ECP_C", - "help": "support for DP Elliptic Curve.", - "id": "MBEDTLS_ECP_DP_BP256R1_ENABLED", - "name": "MBEDTLS_ECP_DP_BP256R1_ENABLED", - "range": null, - "title": "Enable BP256R1 curve", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_ECP_C", - "help": "support for DP Elliptic Curve.", - "id": "MBEDTLS_ECP_DP_BP384R1_ENABLED", - "name": "MBEDTLS_ECP_DP_BP384R1_ENABLED", - "range": null, - "title": "Enable BP384R1 curve", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_ECP_C", - "help": "support for DP Elliptic Curve.", - "id": "MBEDTLS_ECP_DP_BP512R1_ENABLED", - "name": "MBEDTLS_ECP_DP_BP512R1_ENABLED", - "range": null, - "title": "Enable BP512R1 curve", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_ECP_C", - "help": "Enable support for CURVE25519 Elliptic Curve.", - "id": "MBEDTLS_ECP_DP_CURVE25519_ENABLED", - "name": "MBEDTLS_ECP_DP_CURVE25519_ENABLED", - "range": null, - "title": "Enable CURVE25519 curve", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_ECP_C", - "help": "NIST 'modulo p' optimisations increase Elliptic Curve operation performance.\n\nDisabling this option saves some code size.", - "id": "MBEDTLS_ECP_NIST_OPTIM", - "name": "MBEDTLS_ECP_NIST_OPTIM", - "range": null, - "title": "NIST 'modulo p' optimisations", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_ECP_C", - "help": "This configuration option enables optimizations to speedup (about 3 ~ 4 times) the ECP\nfixed point multiplication using pre-computed tables in the flash memory.\nEnabling this configuration option increases the flash footprint\n(about 29KB if all Elliptic Curve selected) in the application binary.\n\n# end of Elliptic Curve options", - "id": "MBEDTLS_ECP_FIXED_POINT_OPTIM", - "name": "MBEDTLS_ECP_FIXED_POINT_OPTIM", - "range": null, - "title": "Enable fixed-point multiplication optimisations", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enable support for Poly1305 MAC algorithm.", - "id": "MBEDTLS_POLY1305_C", - "name": "MBEDTLS_POLY1305_C", - "range": null, - "title": "Poly1305 MAC algorithm", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "MBEDTLS_CHACHA20_C && MBEDTLS_POLY1305_C", - "help": "Enable support for ChaCha20-Poly1305 AEAD algorithm.", - "id": "MBEDTLS_CHACHAPOLY_C", - "name": "MBEDTLS_CHACHAPOLY_C", - "range": null, - "title": "ChaCha20-Poly1305 AEAD algorithm", - "type": "bool" - } - ], - "depends_on": null, - "help": "Enable support for Chacha20 stream cipher.", - "id": "MBEDTLS_CHACHA20_C", - "name": "MBEDTLS_CHACHA20_C", - "range": null, - "title": "Chacha20 stream cipher", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enable support for the Hashed Message Authentication Code\n(HMAC)-based key derivation function (HKDF).", - "id": "MBEDTLS_HKDF_C", - "name": "MBEDTLS_HKDF_C", - "range": null, - "title": "HKDF algorithm (RFC 5869)", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "MBEDTLS_THREADING_C", - "help": "Enable threading alt to allow your own alternate threading implementation.", - "id": "MBEDTLS_THREADING_ALT", - "name": "MBEDTLS_THREADING_ALT", - "range": null, - "title": "Enable threading alternate implementation", - "type": "bool" - }, - { - "children": [], - "depends_on": "MBEDTLS_THREADING_C", - "help": "Enable the pthread wrapper layer for the threading layer.", - "id": "MBEDTLS_THREADING_PTHREAD", - "name": "MBEDTLS_THREADING_PTHREAD", - "range": null, - "title": "Enable threading pthread implementation", - "type": "bool" - } - ], - "depends_on": null, - "help": "If you do intend to use contexts between threads, you will need to enable\nthis layer to prevent race conditions.", - "id": "MBEDTLS_THREADING_C", - "name": "MBEDTLS_THREADING_C", - "range": null, - "title": "Enable the threading abstraction layer", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enables mbedtls_strerror() for converting error codes to error strings.\nDisabling this config can save some code/rodata size as the error\nstring conversion implementation is replaced with an empty stub.", - "id": "MBEDTLS_ERROR_STRINGS", - "name": "MBEDTLS_ERROR_STRINGS", - "range": null, - "title": "Enable error code to error string conversion", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_ROM_HAS_MBEDTLS_CRYPTO_LIB", - "help": "Enable this flag to use mbedtls crypto algorithm from ROM instead of ESP-IDF\nin case of a bootloader build.\nSimilar to the MBEDTLS_USE_CRYPTO_ROM_IMPL config but enables usage of the\nmbedtls crypto algorithm from ROM for the bootloader build.", - "id": "MBEDTLS_USE_CRYPTO_ROM_IMPL_BOOTLOADER", - "name": "MBEDTLS_USE_CRYPTO_ROM_IMPL_BOOTLOADER", - "range": null, - "title": "Use ROM implementation of the crypto algorithm in the bootloader", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_ROM_HAS_MBEDTLS_CRYPTO_LIB", - "help": "Enable this flag to use mbedtls crypto algorithm from ROM instead of ESP-IDF.\n\nThis configuration option saves flash footprint in the application binary.\nNote that the version of mbedtls crypto algorithm library in ROM(ECO1~ECO3) is v2.16.12,\nand the version of mbedtls crypto algorithm library in ROM(ECO4) is v3.6.0.\nWe have done the security analysis of the mbedtls revision in ROM (ECO1~ECO4)\nand ensured that affected symbols have been patched (removed). If in the future\nmbedtls revisions there are security issues that also affects the version in\nROM (ECO1~ECO4) then we shall patch the relevant symbols. This would increase\nthe flash footprint and hence care must be taken to keep some reserved space\nfor the application binary in flash layout.", - "id": "MBEDTLS_USE_CRYPTO_ROM_IMPL", - "name": "MBEDTLS_USE_CRYPTO_ROM_IMPL", - "range": null, - "title": "Use ROM implementation of the crypto algorithm", - "type": "bool" - }, - { - "children": [], - "depends_on": "(VFS_SUPPORT_IO && VFS_SUPPORT_DIR) || IDF_TARGET_LINUX", - "help": "This option enables functions in mbedTLS that use the filesystem.\nIt uses the default filesystem support for the target,\nwhich is added through vfs component for ESP32 based targets or by\nthe host system when the target is Linux.", - "id": "MBEDTLS_FS_IO", - "name": "MBEDTLS_FS_IO", - "range": null, - "title": "Enable functions that use the filesystem", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "This options allows weak certificate verification by skipping the hostname verification.\nIt is not recommended to use this option.", - "id": "MBEDTLS_ALLOW_WEAK_CERTIFICATE_VERIFICATION", - "name": "MBEDTLS_ALLOW_WEAK_CERTIFICATE_VERIFICATION", - "range": null, - "title": "Allow weak certificate verification", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-mbedtls", - "title": "mbedTLS", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "LIBC_NEWLIB", - "name": "LIBC_NEWLIB", - "range": null, - "title": "NewLib", - "type": "bool" - }, - { - "children": [], - "depends_on": "!IDF_TOOLCHAIN_CLANG && IDF_EXPERIMENTAL_FEATURES && ", - "help": null, - "id": "LIBC_PICOLIBC", - "name": "LIBC_PICOLIBC", - "range": null, - "title": "Picolibc (EXPERIMENTAL)", - "type": "bool" - } - ], - "depends_on": null, - "help": null, - "id": "component-config-libc-libc-to-build-application-with", - "name": "LIBC", - "title": "LibC to build application with", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "LIBC_MISC_IN_IRAM", - "name": "LIBC_MISC_IN_IRAM", - "range": null, - "title": "Place misc libc functions (abort/assert/stdatomics) in IRAM", - "type": "bool" - }, - { - "children": [], - "depends_on": "LIBC_NEWLIB", - "help": "Enable this option to include be able to call the lock API from\ncode that runs while cache is disabled, e.g. IRAM interrupts.", - "id": "LIBC_LOCKS_PLACE_IN_IRAM", - "name": "LIBC_LOCKS_PLACE_IN_IRAM", - "range": null, - "title": "Place lock API in IRAM", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "LIBC_STDOUT_LINE_ENDING_CRLF", - "name": "LIBC_STDOUT_LINE_ENDING_CRLF", - "range": null, - "title": "CRLF", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LIBC_STDOUT_LINE_ENDING_LF", - "name": "LIBC_STDOUT_LINE_ENDING_LF", - "range": null, - "title": "LF", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LIBC_STDOUT_LINE_ENDING_CR", - "name": "LIBC_STDOUT_LINE_ENDING_CR", - "range": null, - "title": "CR", - "type": "bool" - } - ], - "depends_on": "VFS_SUPPORT_IO", - "help": "This option allows configuring the desired line endings sent to console\nwhen a newline ('\\n', LF) appears on stdout.\nThree options are possible:\n\nCRLF: whenever LF is encountered, prepend it with CR\n\nLF: no modification is applied, stdout is sent as is\n\nCR: each occurrence of LF is replaced with CR\n\nThis option doesn't affect behavior of the UART driver (drivers/uart.h).", - "id": "component-config-libc-line-ending-for-console-output", - "name": "LIBC_STDOUT_LINE_ENDING", - "title": "Line ending for console output", - "type": "choice" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "LIBC_STDIN_LINE_ENDING_CRLF", - "name": "LIBC_STDIN_LINE_ENDING_CRLF", - "range": null, - "title": "CRLF", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LIBC_STDIN_LINE_ENDING_LF", - "name": "LIBC_STDIN_LINE_ENDING_LF", - "range": null, - "title": "LF", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LIBC_STDIN_LINE_ENDING_CR", - "name": "LIBC_STDIN_LINE_ENDING_CR", - "range": null, - "title": "CR", - "type": "bool" - } - ], - "depends_on": "VFS_SUPPORT_IO", - "help": "This option allows configuring which input sequence on console produces\na newline ('\\n', LF) on stdin.\nThree options are possible:\n\nCRLF: CRLF is converted to LF\n\nLF: no modification is applied, input is sent to stdin as is\n\nCR: each occurrence of CR is replaced with LF\n\nThis option doesn't affect behavior of the UART driver (drivers/uart.h).", - "id": "component-config-libc-line-ending-for-console-input", - "name": "LIBC_STDIN_LINE_ENDING", - "title": "Line ending for console input", - "type": "choice" - }, - { - "children": [], - "depends_on": "LIBC_NEWLIB", - "help": "In most chips the ROM contains parts of newlib C library, including printf/scanf family\nof functions. These functions have been compiled with so-called \"nano\"\nformatting option. This option doesn't support 64-bit integer formats and C99\nfeatures, such as positional arguments.\n\nFor more details about \"nano\" formatting option, please see newlib readme file,\nsearch for '--enable-newlib-nano-formatted-io':\nhttps://sourceware.org/git/?p=newlib-cygwin.git;a=blob_plain;f=newlib/README;hb=HEAD\n\nIf this option is enabled and the ROM contains functions from newlib-nano, the build system\nwill use functions available in ROM, reducing the application binary size.\nFunctions available in ROM run faster than functions which run from flash. Functions available\nin ROM can also run when flash instruction cache is disabled.\n\nSome chips (e.g. ESP32-C6) has the full formatting versions of printf/scanf in ROM instead of\nthe nano versions and in this building with newlib nano might actually increase the size of\nthe binary. Which functions are present in ROM can be seen from ROM caps:\nESP_ROM_HAS_NEWLIB_NANO_FORMAT and ESP_ROM_HAS_NEWLIB_NORMAL_FORMAT.\n\nIf you need 64-bit integer formatting support or C99 features, keep this\noption disabled.", - "id": "LIBC_NEWLIB_NANO_FORMAT", - "name": "LIBC_NEWLIB_NANO_FORMAT", - "range": null, - "title": "Enable 'nano' formatting options for printf/scanf family", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "LIBC_TIME_SYSCALL_USE_RTC_HRT", - "name": "LIBC_TIME_SYSCALL_USE_RTC_HRT", - "range": null, - "title": "RTC and high-resolution timer", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LIBC_TIME_SYSCALL_USE_RTC", - "name": "LIBC_TIME_SYSCALL_USE_RTC", - "range": null, - "title": "RTC", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LIBC_TIME_SYSCALL_USE_HRT", - "name": "LIBC_TIME_SYSCALL_USE_HRT", - "range": null, - "title": "High-resolution timer", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "LIBC_TIME_SYSCALL_USE_NONE", - "name": "LIBC_TIME_SYSCALL_USE_NONE", - "range": null, - "title": "None", - "type": "bool" - } - ], - "depends_on": null, - "help": "This setting defines which hardware timers are used to\nimplement 'gettimeofday' and 'time' functions in C library.\n\n- If both high-resolution (systimer for all targets except ESP32)\n and RTC timers are used, timekeeping will continue in deep sleep.\n Time will be reported at 1 microsecond resolution.\n This is the default, and the recommended option.\n- If only high-resolution timer (systimer) is used, gettimeofday will\n provide time at microsecond resolution.\n Time will not be preserved when going into deep sleep mode.\n- If only RTC timer is used, timekeeping will continue in\n deep sleep, but time will be measured at 6.(6) microsecond\n resolution. Also the gettimeofday function itself may take\n longer to run.\n- If no timers are used, gettimeofday and time functions\n return -1 and set errno to ENOSYS; they are defined as weak,\n so they could be overridden.\n If you want to customize gettimeofday() and other time functions,\n please choose this option and refer to the 'time.c' source file\n for the exact prototypes of these functions.\n\n- When RTC is used for timekeeping, two RTC_STORE registers are\n used to keep time in deep sleep mode.", - "id": "component-config-libc-timers-used-for-gettimeofday-function", - "name": "LIBC_TIME_SYSCALL", - "title": "Timers used for gettimeofday function", - "type": "choice" - }, - { - "children": [], - "depends_on": "ESP_ROM_HAS_SUBOPTIMAL_NEWLIB_ON_MISALIGNED_MEMORY", - "help": "Enables performance-optimized implementations of memory and string functions\nwhen handling misaligned memory.\n\nThis increases the image size by ~1000 bytes.\n\nOptimized functions include:\n - memcpy\n - memset\n - memmove\n - str[n]cpy\n - str[n]cmp", - "id": "LIBC_OPTIMIZED_MISALIGNED_ACCESS", - "name": "LIBC_OPTIMIZED_MISALIGNED_ACCESS", - "range": null, - "title": "Use performance-optimized memXXX/strXXX functions on misaligned memory access", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-libc", - "title": "LibC", - "type": "menu" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "STDATOMIC_S32C1I_SPIRAM_WORKAROUND", - "name": "STDATOMIC_S32C1I_SPIRAM_WORKAROUND", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "SECURE_FLASH_ENC_ENABLED || SOC_HMAC_SUPPORTED", - "help": "This option enables encryption for NVS. When enabled, XTS-AES is used to encrypt\nthe complete NVS data, except the page headers. It requires XTS encryption keys\nto be stored in an encrypted partition (enabling flash encryption is mandatory here)\nor to be derived from an HMAC key burnt in eFuse.", - "id": "NVS_ENCRYPTION", - "name": "NVS_ENCRYPTION", - "range": null, - "title": "Enable NVS encryption", - "type": "bool" - }, - { - "children": [], - "depends_on": "SECURE_FLASH_ENC_ENABLED", - "help": "Enabling this will ignore \"encrypted\" flag for NVS partitions. NVS encryption\nscheme is different than hardware flash encryption and hence it is not recommended\nto have \"encrypted\" flag for NVS partitions. This was not being checked in pre v4.3\nIDF. Hence, if you have any devices where this flag is kept enabled in partition\ntable then enabling this config will allow to have same behavior as pre v4.3 IDF.", - "id": "NVS_COMPATIBLE_PRE_V4_3_ENCRYPTION_FLAG", - "name": "NVS_COMPATIBLE_PRE_V4_3_ENCRYPTION_FLAG", - "range": null, - "title": "NVS partition encrypted flag compatible with ESP-IDF before v4.3", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "This option switches error checking type between assertions (y) or return codes (n).", - "id": "NVS_ASSERT_ERROR_CHECK", - "name": "NVS_ASSERT_ERROR_CHECK", - "range": null, - "title": "Use assertions for error checking", - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": "Enabling this option will switch the nvs_set() family of functions to the legacy mode:\nwhen called repeatedly with the same key but different data type, the existing value\nin the NVS remains active and the new value is just stored, actually not accessible through\ncorresponding nvs_get() call for the key given. Use this option only when your application\nrelies on such NVS API behaviour.", - "id": "NVS_LEGACY_DUP_KEYS_COMPATIBILITY", - "name": "NVS_LEGACY_DUP_KEYS_COMPATIBILITY", - "range": null, - "title": "Enable legacy nvs_set function behavior when same key is reused with different data types", - "type": "bool" - }, - { - "children": [], - "depends_on": "SPIRAM && (SPIRAM_USE_CAPS_ALLOC || SPIRAM_USE_MALLOC)", - "help": "Enabling this option lets NVS library try to allocate page cache and key hash list in SPIRAM\ninstead of internal RAM. It can help applications using large nvs partitions or large number\nof keys to save heap space in internal RAM. SPIRAM heap allocation negatively impacts speed\nof NVS operations as the CPU accesses NVS cache via SPI instead of direct access to the internal RAM.", - "id": "NVS_ALLOCATE_CACHE_IN_SPIRAM", - "name": "NVS_ALLOCATE_CACHE_IN_SPIRAM", - "range": null, - "title": "Prefers allocation of in-memory cache structures in SPI connected PSRAM", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-nvs", - "title": "NVS", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "OPENTHREAD_ENABLED", - "help": "The OpenThread package name.", - "id": "OPENTHREAD_PACKAGE_NAME", - "name": "OPENTHREAD_PACKAGE_NAME", - "range": null, - "title": "OpenThread package name", - "type": "string" - }, - { - "children": [], - "depends_on": "OPENTHREAD_ENABLED", - "help": "The OpenThread platform information.", - "id": "OPENTHREAD_PLATFORM_INFO", - "name": "OPENTHREAD_PLATFORM_INFO", - "range": null, - "title": "platform information", - "type": "string" - } - ], - "depends_on": "OPENTHREAD_ENABLED", - "id": "component-config-openthread-openthread-thread-version-message", - "title": "Thread Version Message", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "(ESP_CONSOLE_UART_DEFAULT || ESP_CONSOLE_UART_CUSTOM) && ", - "help": null, - "id": "OPENTHREAD_CONSOLE_TYPE_UART", - "name": "OPENTHREAD_CONSOLE_TYPE_UART", - "range": null, - "title": "OpenThread console type UART", - "type": "bool" - }, - { - "children": [], - "depends_on": "(ESP_CONSOLE_USB_SERIAL_JTAG || ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG) && ", - "help": null, - "id": "OPENTHREAD_CONSOLE_TYPE_USB_SERIAL_JTAG", - "name": "OPENTHREAD_CONSOLE_TYPE_USB_SERIAL_JTAG", - "range": null, - "title": "OpenThread console type USB Serial/JTAG Controller", - "type": "bool" - } - ], - "depends_on": "OPENTHREAD_ENABLED", - "help": "Select OpenThread console type", - "id": "component-config-openthread-openthread-thread-console-openthread-console-type", - "name": "OPENTHREAD_CONSOLE_TYPE", - "title": "OpenThread console type", - "type": "choice" - }, - { - "children": [], - "depends_on": "OPENTHREAD_ENABLED", - "help": "Select this option to enable Command-Line Interface in OpenThread.", - "id": "OPENTHREAD_CLI", - "name": "OPENTHREAD_CLI", - "range": null, - "title": "Enable Openthread Command-Line Interface", - "type": "bool" - }, - { - "children": [], - "depends_on": "OPENTHREAD_ENABLED", - "help": "A prefix string used before a Thread CLI command, allowing the ESP console to identify\nit and delegate the remaining command to the OpenThread callback for processing.", - "id": "OPENTHREAD_CONSOLE_COMMAND_PREFIX", - "name": "OPENTHREAD_CONSOLE_COMMAND_PREFIX", - "range": null, - "title": "The prefix of the openthread CLI command registered on the esp console", - "type": "string" - } - ], - "depends_on": "OPENTHREAD_ENABLED", - "id": "component-config-openthread-openthread-thread-console", - "title": "Thread Console", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "OPENTHREAD_ENABLED", - "help": null, - "id": "OPENTHREAD_NETWORK_NAME", - "name": "OPENTHREAD_NETWORK_NAME", - "range": null, - "title": "OpenThread network name", - "type": "string" - }, - { - "children": [], - "depends_on": "OPENTHREAD_ENABLED", - "help": "A string in the format \"
/\", where `
` is an IPv6\naddress and `` is a prefix length. For example \"fd00:db8:a0:0::/64\"", - "id": "OPENTHREAD_MESH_LOCAL_PREFIX", - "name": "OPENTHREAD_MESH_LOCAL_PREFIX", - "range": null, - "title": "OpenThread mesh local prefix, format
/", - "type": "string" - }, - { - "children": [], - "depends_on": "OPENTHREAD_ENABLED", - "help": null, - "id": "OPENTHREAD_NETWORK_CHANNEL", - "name": "OPENTHREAD_NETWORK_CHANNEL", - "range": [ - 11, - 26 - ], - "title": "OpenThread network channel", - "type": "int" - }, - { - "children": [], - "depends_on": "OPENTHREAD_ENABLED", - "help": null, - "id": "OPENTHREAD_NETWORK_PANID", - "name": "OPENTHREAD_NETWORK_PANID", - "range": [ - 0, - 65534 - ], - "title": "OpenThread network pan id", - "type": "hex" - }, - { - "children": [], - "depends_on": "OPENTHREAD_ENABLED", - "help": "The OpenThread network extended pan id in hex string format", - "id": "OPENTHREAD_NETWORK_EXTPANID", - "name": "OPENTHREAD_NETWORK_EXTPANID", - "range": null, - "title": "OpenThread extended pan id", - "type": "string" - }, - { - "children": [], - "depends_on": "OPENTHREAD_ENABLED", - "help": "The OpenThread network network key in hex string format", - "id": "OPENTHREAD_NETWORK_MASTERKEY", - "name": "OPENTHREAD_NETWORK_MASTERKEY", - "range": null, - "title": "OpenThread network key", - "type": "string" - }, - { - "children": [], - "depends_on": "OPENTHREAD_ENABLED", - "help": "The OpenThread pre-shared commissioner key in hex string format", - "id": "OPENTHREAD_NETWORK_PSKC", - "name": "OPENTHREAD_NETWORK_PSKC", - "range": null, - "title": "OpenThread pre-shared commissioner key", - "type": "string" - } - ], - "depends_on": "OPENTHREAD_ENABLED", - "id": "component-config-openthread-openthread-thread-core-features-thread-operational-dataset", - "title": "Thread Operational Dataset", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": "Select this to enable Full Thread Device which can act as router and leader in a Thread network.", - "id": "OPENTHREAD_FTD", - "name": "OPENTHREAD_FTD", - "range": null, - "title": "Full Thread Device", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "Select this to enable Minimal Thread Device which can only act as end device in a Thread network.\nThis will reduce the code size of the OpenThread stack.", - "id": "OPENTHREAD_MTD", - "name": "OPENTHREAD_MTD", - "range": null, - "title": "Minimal Thread Device", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "Select this to enable Radio Only Device which can only forward 15.4 packets to the host.\nThe OpenThread stack will be run on the host and OpenThread will have minimal footprint on the\nradio only device.", - "id": "OPENTHREAD_RADIO", - "name": "OPENTHREAD_RADIO", - "range": null, - "title": "Radio Only Device", - "type": "bool" - } - ], - "depends_on": "OPENTHREAD_ENABLED", - "help": "OpenThread can be configured to different device types (FTD, MTD, Radio)", - "id": "component-config-openthread-openthread-thread-core-features-thread-device-type", - "name": "OPENTHREAD_DEVICE_TYPE", - "title": "Thread device type", - "type": "choice" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "OPENTHREAD_RADIO_TREL && (EXAMPLE_CONNECT_WIFI || EXAMPLE_CONNECT_ETHERNET) && OPENTHREAD_ENABLED", - "help": "Configure the port number of TREL service.", - "id": "OPENTHREAD_TREL_PORT", - "name": "OPENTHREAD_TREL_PORT", - "range": null, - "title": "The port of openthread trel service", - "type": "int" - }, - { - "children": [], - "depends_on": "OPENTHREAD_RADIO_TREL && (EXAMPLE_CONNECT_WIFI || EXAMPLE_CONNECT_ETHERNET) && OPENTHREAD_ENABLED", - "help": "Configure the receive buffer size of TREL service.", - "id": "OPENTHREAD_TREL_BUFFER_SIZE", - "name": "OPENTHREAD_TREL_BUFFER_SIZE", - "range": null, - "title": "The receive buffer size of openthread trel", - "type": "int" - } - ], - "depends_on": "(EXAMPLE_CONNECT_WIFI || EXAMPLE_CONNECT_ETHERNET) && OPENTHREAD_ENABLED", - "help": "Select this option to enable Thread Radio Encapsulation Link.", - "id": "OPENTHREAD_RADIO_TREL", - "name": "OPENTHREAD_RADIO_TREL", - "range": null, - "title": "Enable Thread Radio Encapsulation Link (TREL)", - "type": "bool" - } - ], - "depends_on": "(EXAMPLE_CONNECT_WIFI || EXAMPLE_CONNECT_ETHERNET) && OPENTHREAD_ENABLED", - "id": "component-config-openthread-openthread-thread-core-features-thread-trel-radio-link", - "title": "Thread Trel Radio Link", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": "Select this to use the native 15.4 radio.", - "id": "OPENTHREAD_RADIO_NATIVE", - "name": "OPENTHREAD_RADIO_NATIVE", - "range": null, - "title": "Native 15.4 radio", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "Select this to connect to a Radio Co-Processor via UART.", - "id": "OPENTHREAD_RADIO_SPINEL_UART", - "name": "OPENTHREAD_RADIO_SPINEL_UART", - "range": null, - "title": "Connect via UART", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "Select this to connect to a Radio Co-Processor via SPI.", - "id": "OPENTHREAD_RADIO_SPINEL_SPI", - "name": "OPENTHREAD_RADIO_SPINEL_SPI", - "range": null, - "title": "Connect via SPI", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "Select this to disable the Thread radio based on 15.4 link.", - "id": "OPENTHREAD_RADIO_154_NONE", - "name": "OPENTHREAD_RADIO_154_NONE", - "range": null, - "title": "Disable the Thread radio based on 15.4 link", - "type": "bool" - } - ], - "depends_on": "OPENTHREAD_ENABLED", - "help": "Configure how OpenThread connects to the 15.4 radio", - "id": "component-config-openthread-openthread-thread-core-features-thread-15-4-radio-link-config-the-thread-radio-type-with-15-4-link", - "name": "OPENTHREAD_RADIO_TYPE", - "title": "Config the Thread radio type with 15.4 link", - "type": "choice" - } - ], - "depends_on": "OPENTHREAD_ENABLED", - "id": "component-config-openthread-openthread-thread-core-features-thread-15-4-radio-link", - "title": "Thread 15.4 Radio Link", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "", - "help": "Select this to enable UART connection to host.", - "id": "OPENTHREAD_RCP_UART", - "name": "OPENTHREAD_RCP_UART", - "range": null, - "title": "UART RCP", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": "Select this to enable SPI connection to host.", - "id": "OPENTHREAD_RCP_SPI", - "name": "OPENTHREAD_RCP_SPI", - "range": null, - "title": "SPI RCP", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG && !OPENTHREAD_CONSOLE_TYPE_USB_SERIAL_JTAG && ", - "help": "Select this to enable connection to host over USB JTAG serial.", - "id": "OPENTHREAD_RCP_USB_SERIAL_JTAG", - "name": "OPENTHREAD_RCP_USB_SERIAL_JTAG", - "range": null, - "title": "USB RCP", - "type": "bool" - } - ], - "depends_on": "OPENTHREAD_RADIO && OPENTHREAD_ENABLED", - "help": null, - "id": "component-config-openthread-openthread-thread-core-features-thread-radio-co-processor-feature-the-rcp-transport-type", - "name": "OPENTHREAD_RCP_TRANSPORT", - "title": "The RCP transport type", - "type": "choice" - }, - { - "children": [], - "depends_on": "OPENTHREAD_RADIO && OPENTHREAD_ENABLED", - "help": "Select this to enable OpenThread NCP vendor commands.", - "id": "OPENTHREAD_NCP_VENDOR_HOOK", - "name": "OPENTHREAD_NCP_VENDOR_HOOK", - "range": null, - "title": "Enable vendor command for RCP", - "type": "bool" - } - ], - "depends_on": "OPENTHREAD_RADIO && OPENTHREAD_ENABLED", - "id": "component-config-openthread-openthread-thread-core-features-thread-radio-co-processor-feature", - "title": "Thread Radio Co-Processor Feature", - "type": "menu" - }, - { - "children": [], - "depends_on": "OPENTHREAD_FTD && OPENTHREAD_ENABLED", - "help": "Select this option to enable border router features in OpenThread.", - "id": "OPENTHREAD_BORDER_ROUTER", - "name": "OPENTHREAD_BORDER_ROUTER", - "range": null, - "title": "Enable Border Router", - "type": "bool" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "OPENTHREAD_COMMISSIONER && OPENTHREAD_ENABLED", - "help": null, - "id": "OPENTHREAD_COMM_MAX_JOINER_ENTRIES", - "name": "OPENTHREAD_COMM_MAX_JOINER_ENTRIES", - "range": null, - "title": "The size of max commissioning joiner entries", - "type": "int" - } - ], - "depends_on": "OPENTHREAD_COMMISSIONER && OPENTHREAD_ENABLED", - "id": "component-config-openthread-openthread-thread-core-features-enable-commissioner-commissioner-configurations", - "title": "Commissioner Configurations", - "type": "menu" - } - ], - "depends_on": "OPENTHREAD_ENABLED", - "help": "Select this option to enable commissioner in OpenThread. This will enable the device to act as a\ncommissioner in the Thread network. A commissioner checks the pre-shared key from a joining device\nwith the Thread commissioning protocol and shares the network parameter with the joining device\nupon success.", - "id": "OPENTHREAD_COMMISSIONER", - "name": "OPENTHREAD_COMMISSIONER", - "range": null, - "title": "Enable Commissioner", - "type": "bool" - }, - { - "children": [], - "depends_on": "OPENTHREAD_ENABLED", - "help": "Select this option to enable Joiner in OpenThread. This allows a device to join the\nThread network with a pre-shared key using the Thread commissioning protocol.", - "id": "OPENTHREAD_JOINER", - "name": "OPENTHREAD_JOINER", - "range": null, - "title": "Enable Joiner", - "type": "bool" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "OPENTHREAD_SRP_CLIENT && OPENTHREAD_ENABLED", - "help": "Set the max buffer size of service entries in the SRP client service pool.", - "id": "OPENTHREAD_SRP_CLIENT_MAX_SERVICES", - "name": "OPENTHREAD_SRP_CLIENT_MAX_SERVICES", - "range": null, - "title": "Specifies number of service entries in the SRP client service pool", - "type": "int" - } - ], - "depends_on": "OPENTHREAD_SRP_CLIENT && OPENTHREAD_ENABLED", - "id": "component-config-openthread-openthread-thread-core-features-enable-srp-client-srp-client-configurations", - "title": "SRP Client Configurations", - "type": "menu" - } - ], - "depends_on": "OPENTHREAD_ENABLED", - "help": "Select this option to enable SRP Client in OpenThread.\nThis allows a device to register SRP services to SRP Server.", - "id": "OPENTHREAD_SRP_CLIENT", - "name": "OPENTHREAD_SRP_CLIENT", - "range": null, - "title": "Enable SRP Client", - "type": "bool" - }, - { - "children": [], - "depends_on": "OPENTHREAD_ENABLED", - "help": "Select this option to enable DNS Client in OpenThread.", - "id": "OPENTHREAD_DNS_CLIENT", - "name": "OPENTHREAD_DNS_CLIENT", - "range": null, - "title": "Enable DNS Client", - "type": "bool" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "OPENTHREAD_DNS64_CLIENT && OPENTHREAD_ENABLED", - "help": "Set the DNS server IPv4 address.", - "id": "OPENTHREAD_DNS_SERVER_ADDR", - "name": "OPENTHREAD_DNS_SERVER_ADDR", - "range": null, - "title": "DNS server address (IPv4)", - "type": "string" - } - ], - "depends_on": "OPENTHREAD_DNS64_CLIENT && OPENTHREAD_ENABLED", - "id": "component-config-openthread-openthread-thread-core-features-enable-dns64-client-dns64-client-configurations", - "title": "DNS64 Client Configurations", - "type": "menu" - } - ], - "depends_on": "LWIP_IPV4 && OPENTHREAD_ENABLED", - "help": "Select this option to acquire NAT64 address from dns servers.", - "id": "OPENTHREAD_DNS64_CLIENT", - "name": "OPENTHREAD_DNS64_CLIENT", - "range": null, - "title": "Enable DNS64 Client", - "type": "bool" - }, - { - "children": [], - "depends_on": "OPENTHREAD_ENABLED", - "help": "Select this option to enable link metrics feature", - "id": "OPENTHREAD_LINK_METRICS", - "name": "OPENTHREAD_LINK_METRICS", - "range": null, - "title": "Enable link metrics feature", - "type": "bool" - }, - { - "children": [], - "depends_on": "OPENTHREAD_ENABLED", - "help": "Select this option to enable border agent feature", - "id": "OPENTHREAD_BORDER_AGENT_ENABLE", - "name": "OPENTHREAD_BORDER_AGENT_ENABLE", - "range": null, - "title": "Enable border agent feature", - "type": "bool" - }, - { - "children": [], - "depends_on": "OPENTHREAD_ENABLED", - "help": "Select this option to enable mac filter feature", - "id": "OPENTHREAD_MACFILTER_ENABLE", - "name": "OPENTHREAD_MACFILTER_ENABLE", - "range": null, - "title": "Enable mac filter feature", - "type": "bool" - }, - { - "children": [], - "depends_on": "OPENTHREAD_ENABLED", - "help": "Select this option to enable CSL feature", - "id": "OPENTHREAD_CSL_ENABLE", - "name": "OPENTHREAD_CSL_ENABLE", - "range": null, - "title": "Enable CSL feature", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "OPENTHREAD_ENABLED", - "help": "The current accuracy of the clock used for scheduling CSL operations", - "id": "OPENTHREAD_CSL_ACCURACY", - "name": "OPENTHREAD_CSL_ACCURACY", - "range": null, - "title": "The current CSL rx/tx scheduling drift, in units of \u00b1 ppm", - "type": "int" - }, - { - "children": [], - "depends_on": "OPENTHREAD_ENABLED", - "help": "The fixed uncertainty of the Device for scheduling CSL Transmissions in units of 10 microseconds.", - "id": "OPENTHREAD_CSL_UNCERTAIN", - "name": "OPENTHREAD_CSL_UNCERTAIN", - "range": null, - "title": "The CSL Uncertainty in units of 10 us.", - "type": "int" - }, - { - "children": [], - "depends_on": "OPENTHREAD_ENABLED", - "help": "Select this option to set rx on when sleep in CSL feature, only for debug", - "id": "OPENTHREAD_CSL_DEBUG_ENABLE", - "name": "OPENTHREAD_CSL_DEBUG_ENABLE", - "range": null, - "title": "Enable CSL debug", - "type": "bool" - } - ], - "depends_on": "OPENTHREAD_ENABLED", - "id": "component-config-openthread-openthread-thread-core-features-csl-configurations", - "title": "CSL Configurations", - "type": "menu" - }, - { - "children": [], - "depends_on": "OPENTHREAD_ENABLED", - "help": "Select this option to enable time synchronization feature, the devices in the same Thread network could\nsync to the same network time.", - "id": "OPENTHREAD_TIME_SYNC", - "name": "OPENTHREAD_TIME_SYNC", - "range": null, - "title": "Enable the time synchronization service feature", - "type": "bool" - }, - { - "children": [], - "depends_on": "(OPENTHREAD_FTD || OPENTHREAD_MTD) && OPENTHREAD_ENABLED", - "help": "Select this option to enable the radio statistics feature, you can use radio\ncommand to print some radio Statistics information.", - "id": "OPENTHREAD_RADIO_STATS_ENABLE", - "name": "OPENTHREAD_RADIO_STATS_ENABLE", - "range": null, - "title": "Enable Radio Statistics feature", - "type": "bool" - }, - { - "children": [], - "depends_on": "OPENTHREAD_ENABLED", - "help": "Select this option to enable OpenThread radio capability rx on when idle.\nDo not support this feature when SW coexistence is enabled.", - "id": "OPENTHREAD_RX_ON_WHEN_IDLE", - "name": "OPENTHREAD_RX_ON_WHEN_IDLE", - "range": null, - "title": "Enable OpenThread radio capability rx on when idle", - "type": "bool" - }, - { - "children": [], - "depends_on": "OPENTHREAD_ENABLED", - "help": "Select this option to enable Diag in OpenThread. This will enable diag mode and a series of diag\ncommands in the OpenThread command line. These commands allow users to manipulate low-level\nfeatures of the storage and 15.4 radio.", - "id": "OPENTHREAD_DIAG", - "name": "OPENTHREAD_DIAG", - "range": null, - "title": "Enable diag", - "type": "bool" - }, - { - "children": [], - "depends_on": "OPENTHREAD_MTD && OPENTHREAD_ENABLED", - "help": "Select this option to enable \"Periodic Parent Search\" function for MTD. This checks the average\nRSS to its current parent every periodically and starts a parent search process if the average\nRSS is below OPENTHREAD_PARENT_SEARCH_RSS_THRESHOLD. This feature is always enabled for FTDs.", - "id": "OPENTHREAD_PARENT_SEARCH_MTD", - "name": "OPENTHREAD_PARENT_SEARCH_MTD", - "range": null, - "title": "Enable Parent Search", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "(OPENTHREAD_PARENT_SEARCH_MTD || OPENTHREAD_FTD) && OPENTHREAD_ENABLED", - "help": null, - "id": "OPENTHREAD_PARENT_SEARCH_CHECK_INTERVAL_MINS", - "name": "OPENTHREAD_PARENT_SEARCH_CHECK_INTERVAL_MINS", - "range": null, - "title": "The interval in minutes for a child to check the trigger condition to perform a parent search", - "type": "int" - }, - { - "children": [], - "depends_on": "(OPENTHREAD_PARENT_SEARCH_MTD || OPENTHREAD_FTD) && OPENTHREAD_ENABLED", - "help": null, - "id": "OPENTHREAD_PARENT_SEARCH_BACKOFF_INTERVAL_MINS", - "name": "OPENTHREAD_PARENT_SEARCH_BACKOFF_INTERVAL_MINS", - "range": null, - "title": "The backoff interval in minutes for a child to not perform a parent search after triggering one", - "type": "int" - }, - { - "children": [], - "depends_on": "(OPENTHREAD_PARENT_SEARCH_MTD || OPENTHREAD_FTD) && OPENTHREAD_ENABLED", - "help": null, - "id": "OPENTHREAD_PARENT_SEARCH_RSS_THRESHOLD", - "name": "OPENTHREAD_PARENT_SEARCH_RSS_THRESHOLD", - "range": null, - "title": "The RSS threshold used to trigger a parent search", - "type": "int" - }, - { - "children": [], - "depends_on": "(OPENTHREAD_PARENT_SEARCH_MTD || OPENTHREAD_FTD) && OPENTHREAD_ENABLED", - "help": null, - "id": "OPENTHREAD_PARENT_SEARCH_RESELECT_TIMEOUT_MINS", - "name": "OPENTHREAD_PARENT_SEARCH_RESELECT_TIMEOUT_MINS", - "range": null, - "title": "The parent reselect timeout duration in minutes used on FTD child devices", - "type": "int" - }, - { - "children": [], - "depends_on": "(OPENTHREAD_PARENT_SEARCH_MTD || OPENTHREAD_FTD) && OPENTHREAD_ENABLED", - "help": null, - "id": "OPENTHREAD_PARENT_SEARCH_RSS_MARGIN", - "name": "OPENTHREAD_PARENT_SEARCH_RSS_MARGIN", - "range": null, - "title": "The RSS margin over the current parent RSS used on FTD child devices", - "type": "int" - } - ], - "depends_on": "(OPENTHREAD_PARENT_SEARCH_MTD || OPENTHREAD_FTD) && OPENTHREAD_ENABLED", - "id": "component-config-openthread-openthread-thread-core-features-parent-search-configurations", - "title": "Parent Search Configurations", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "(SPIRAM_USE_CAPS_ALLOC || SPIRAM_USE_MALLOC) && OPENTHREAD_ENABLED", - "help": "Select this option to allocate buffer from PSRAM for Thread", - "id": "OPENTHREAD_PLATFORM_MALLOC_CAP_SPIRAM", - "name": "OPENTHREAD_PLATFORM_MALLOC_CAP_SPIRAM", - "range": null, - "title": "Allocate memory from PSRAM", - "type": "bool" - }, - { - "children": [], - "depends_on": "(SPIRAM_USE_CAPS_ALLOC || SPIRAM_USE_MALLOC) && OPENTHREAD_ENABLED", - "help": "If enabled, the message pool is managed by platform defined logic.", - "id": "OPENTHREAD_PLATFORM_MSGPOOL_MANAGEMENT", - "name": "OPENTHREAD_PLATFORM_MSGPOOL_MANAGEMENT", - "range": null, - "title": "Allocate message pool buffer from PSRAM", - "type": "bool" - } - ], - "depends_on": "(SPIRAM_USE_CAPS_ALLOC || SPIRAM_USE_MALLOC) && OPENTHREAD_ENABLED", - "id": "component-config-openthread-openthread-thread-core-features-thread-memory-allocation", - "title": "Thread Memory Allocation", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "(OPENTHREAD_FTD || OPENTHREAD_MTD) && OPENTHREAD_ENABLED", - "help": null, - "id": "OPENTHREAD_ADDRESS_QUERY_TIMEOUT", - "name": "OPENTHREAD_ADDRESS_QUERY_TIMEOUT", - "range": null, - "title": "Timeout (in seconds) for a address notification response after sending an address query.", - "type": "int" - }, - { - "children": [], - "depends_on": "(OPENTHREAD_FTD || OPENTHREAD_MTD) && OPENTHREAD_ENABLED", - "help": null, - "id": "OPENTHREAD_ADDRESS_QUERY_RETRY_DELAY", - "name": "OPENTHREAD_ADDRESS_QUERY_RETRY_DELAY", - "range": null, - "title": "Initial retry delay for address query (in seconds).", - "type": "int" - }, - { - "children": [], - "depends_on": "(OPENTHREAD_FTD || OPENTHREAD_MTD) && OPENTHREAD_ENABLED", - "help": null, - "id": "OPENTHREAD_ADDRESS_QUERY_MAX_RETRY_DELAY", - "name": "OPENTHREAD_ADDRESS_QUERY_MAX_RETRY_DELAY", - "range": null, - "title": "Maximum retry delay for address query (in seconds).", - "type": "int" - } - ], - "depends_on": "OPENTHREAD_ENABLED", - "id": "component-config-openthread-openthread-thread-core-features-openthread-stack-parameters-thread-address-query-config", - "title": "Thread Address Query Config", - "type": "menu" - }, - { - "children": [], - "depends_on": "OPENTHREAD_ENABLED", - "help": null, - "id": "OPENTHREAD_PREFERRED_CHANNEL_MASK", - "name": "OPENTHREAD_PREFERRED_CHANNEL_MASK", - "range": null, - "title": "Preferred channel mask", - "type": "hex" - }, - { - "children": [], - "depends_on": "OPENTHREAD_ENABLED", - "help": null, - "id": "OPENTHREAD_SUPPORTED_CHANNEL_MASK", - "name": "OPENTHREAD_SUPPORTED_CHANNEL_MASK", - "range": null, - "title": "Supported channel mask", - "type": "hex" - }, - { - "children": [], - "depends_on": "OPENTHREAD_ENABLED", - "help": null, - "id": "OPENTHREAD_NUM_MESSAGE_BUFFERS", - "name": "OPENTHREAD_NUM_MESSAGE_BUFFERS", - "range": null, - "title": "The number of openthread message buffers", - "type": "int" - }, - { - "children": [], - "depends_on": "OPENTHREAD_ENABLED", - "help": "The device's XTAL accuracy, in ppm.", - "id": "OPENTHREAD_XTAL_ACCURACY", - "name": "OPENTHREAD_XTAL_ACCURACY", - "range": null, - "title": "The accuracy of the XTAL", - "type": "int" - }, - { - "children": [], - "depends_on": "OPENTHREAD_ENABLED", - "help": "The device's bus latency, in us.", - "id": "OPENTHREAD_BUS_LATENCY", - "name": "OPENTHREAD_BUS_LATENCY", - "range": null, - "title": "The bus latency between host and radio chip", - "type": "int" - }, - { - "children": [], - "depends_on": "OPENTHREAD_ENABLED", - "help": null, - "id": "OPENTHREAD_MLE_MAX_CHILDREN", - "name": "OPENTHREAD_MLE_MAX_CHILDREN", - "range": null, - "title": "The size of max MLE children entries", - "type": "int" - }, - { - "children": [], - "depends_on": "OPENTHREAD_ENABLED", - "help": null, - "id": "OPENTHREAD_TMF_ADDR_CACHE_ENTRIES", - "name": "OPENTHREAD_TMF_ADDR_CACHE_ENTRIES", - "range": null, - "title": "The size of max TMF address cache entries", - "type": "int" - }, - { - "children": [], - "depends_on": "OPENTHREAD_ENABLED", - "help": "Set the OpenThread UART buffer size.", - "id": "OPENTHREAD_UART_BUFFER_SIZE", - "name": "OPENTHREAD_UART_BUFFER_SIZE", - "range": null, - "title": "The uart received buffer size of openthread", - "type": "int" - }, - { - "children": [], - "depends_on": "OPENTHREAD_ENABLED", - "help": "The maximum number of backoffs the CSMA-CA algorithm will attempt before declaring a channel access\nfailure.", - "id": "OPENTHREAD_MAC_MAX_CSMA_BACKOFFS_DIRECT", - "name": "OPENTHREAD_MAC_MAX_CSMA_BACKOFFS_DIRECT", - "range": null, - "title": "Maximum backoffs times before declaring a channel access failure.", - "type": "int" - } - ], - "depends_on": "OPENTHREAD_ENABLED", - "id": "component-config-openthread-openthread-thread-core-features-openthread-stack-parameters", - "title": "OpenThread Stack Parameters", - "type": "menu" - } - ], - "depends_on": "OPENTHREAD_ENABLED", - "id": "component-config-openthread-openthread-thread-core-features", - "title": "Thread Core Features", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "OPENTHREAD_ENABLED", - "help": "Select this option to enable dynamic log level control for OpenThread", - "id": "OPENTHREAD_LOG_LEVEL_DYNAMIC", - "name": "OPENTHREAD_LOG_LEVEL_DYNAMIC", - "range": null, - "title": "Enable dynamic log level control", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "OPENTHREAD_LOG_LEVEL_NONE", - "name": "OPENTHREAD_LOG_LEVEL_NONE", - "range": null, - "title": "No logs", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "OPENTHREAD_LOG_LEVEL_CRIT", - "name": "OPENTHREAD_LOG_LEVEL_CRIT", - "range": null, - "title": "Error logs", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "OPENTHREAD_LOG_LEVEL_WARN", - "name": "OPENTHREAD_LOG_LEVEL_WARN", - "range": null, - "title": "Warning logs", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "OPENTHREAD_LOG_LEVEL_NOTE", - "name": "OPENTHREAD_LOG_LEVEL_NOTE", - "range": null, - "title": "Notice logs", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "OPENTHREAD_LOG_LEVEL_INFO", - "name": "OPENTHREAD_LOG_LEVEL_INFO", - "range": null, - "title": "Info logs", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "OPENTHREAD_LOG_LEVEL_DEBG", - "name": "OPENTHREAD_LOG_LEVEL_DEBG", - "range": null, - "title": "Debug logs", - "type": "bool" - } - ], - "depends_on": "!OPENTHREAD_LOG_LEVEL_DYNAMIC && OPENTHREAD_ENABLED", - "help": "Select OpenThread log level.", - "id": "component-config-openthread-openthread-thread-log-openthread-log-verbosity", - "name": "OPENTHREAD_LOG_LEVEL", - "title": "OpenThread log verbosity", - "type": "choice" - }, - { - "children": [], - "depends_on": "!OPENTHREAD_LOG_LEVEL_DYNAMIC && OPENTHREAD_ENABLED", - "help": null, - "id": "OPENTHREAD_LOG_LEVEL", - "name": "OPENTHREAD_LOG_LEVEL", - "range": null, - "title": null, - "type": "int" - } - ], - "depends_on": "OPENTHREAD_ENABLED", - "id": "component-config-openthread-openthread-thread-log", - "title": "Thread Log", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "OPENTHREAD_HEADER_CUSTOM && OPENTHREAD_HEADER_CUSTOM && OPENTHREAD_ENABLED", - "help": "Please use relative paths with respect to the project folder.", - "id": "OPENTHREAD_CUSTOM_HEADER_PATH", - "name": "OPENTHREAD_CUSTOM_HEADER_PATH", - "range": null, - "title": "Path of custom header file", - "type": "string" - }, - { - "children": [], - "depends_on": "OPENTHREAD_HEADER_CUSTOM && OPENTHREAD_HEADER_CUSTOM && OPENTHREAD_ENABLED", - "help": "Name of custom header file.", - "id": "OPENTHREAD_CUSTOM_HEADER_FILE_NAME", - "name": "OPENTHREAD_CUSTOM_HEADER_FILE_NAME", - "range": null, - "title": "Name of custom header file", - "type": "string" - } - ], - "depends_on": "OPENTHREAD_HEADER_CUSTOM && OPENTHREAD_ENABLED", - "id": "component-config-openthread-openthread-thread-extensioned-features-use-a-header-file-defined-by-customer-openthread-custom-header-config", - "title": "OpenThread Custom Header Config", - "type": "menu" - } - ], - "depends_on": "OPENTHREAD_ENABLED", - "help": "This option allows users to tailor the values of openthread macros according to their requirements.\nThe openthread submodule contains numerous macros, each with a default value set. In the Kconfig of\nESP openthread, users can set specific openthread parameters, which will be applied for certain\nopenthread macros in the openthread-core-esp32x-xxx-config.h file. During compilation, the values\nspecified in openthread-core-esp32x-xxx-config.h will replace the default settings in the openthread\nsubmodule. However, Kconfig does not cover all openthread macros, particularly those typically\nusing default values. For such macros, users can enable the OPENTHREAD_HEADER_CUSTOM option in the\nKconfig and provide a custom header file. Macros defined in the custom header file will have the\nhighest priority.", - "id": "OPENTHREAD_HEADER_CUSTOM", - "name": "OPENTHREAD_HEADER_CUSTOM", - "range": null, - "title": "Use a header file defined by customer", - "type": "bool" - } - ], - "depends_on": "OPENTHREAD_ENABLED", - "id": "component-config-openthread-openthread-thread-extensioned-features", - "title": "Thread Extensioned Features", - "type": "menu" - } - ], - "depends_on": null, - "help": "Select this option to enable OpenThread and show the submenu with OpenThread configuration choices.", - "id": "OPENTHREAD_ENABLED", - "name": "OPENTHREAD_ENABLED", - "range": null, - "title": "OpenThread", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": "Select this option to enable the OpenThread Radio Spinel for external protocol stack, such as Zigbee.", - "id": "OPENTHREAD_SPINEL_ONLY", - "name": "OPENTHREAD_SPINEL_ONLY", - "range": null, - "title": "Enable OpenThread External Radio Spinel feature", - "type": "bool" - }, - { - "children": [], - "depends_on": "OPENTHREAD_ENABLED || OPENTHREAD_SPINEL_ONLY", - "help": null, - "id": "OPENTHREAD_SPINEL_RX_FRAME_BUFFER_SIZE", - "name": "OPENTHREAD_SPINEL_RX_FRAME_BUFFER_SIZE", - "range": null, - "title": "The size of openthread spinel rx frame buffer", - "type": "int" - }, - { - "children": [], - "depends_on": "OPENTHREAD_SPINEL_ONLY", - "help": "The maximum number of backoffs the CSMA-CA algorithm will attempt before declaring a channel access\nfailure.", - "id": "OPENTHREAD_SPINEL_MAC_MAX_CSMA_BACKOFFS_DIRECT", - "name": "OPENTHREAD_SPINEL_MAC_MAX_CSMA_BACKOFFS_DIRECT", - "range": null, - "title": "Maximum backoffs times before declaring a channel access failure.", - "type": "int" - } - ], - "depends_on": null, - "id": "component-config-openthread-openthread-spinel", - "title": "OpenThread Spinel", - "type": "menu" - } - ], - "depends_on": null, - "id": "component-config-openthread", - "title": "OpenThread", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": null, - "help": "Priority used to create new tasks with default pthread parameters.", - "id": "PTHREAD_TASK_PRIO_DEFAULT", - "name": "PTHREAD_TASK_PRIO_DEFAULT", - "range": [ - 0, - 255 - ], - "title": "Default task priority", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Stack size used to create new tasks with default pthread parameters.", - "id": "PTHREAD_TASK_STACK_SIZE_DEFAULT", - "name": "PTHREAD_TASK_STACK_SIZE_DEFAULT", - "range": null, - "title": "Default task stack size", - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "Minimum allowed pthread stack size set in attributes passed to pthread_create", - "id": "PTHREAD_STACK_MIN", - "name": "PTHREAD_STACK_MIN", - "range": null, - "title": "Minimum allowed pthread stack size", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "PTHREAD_DEFAULT_CORE_NO_AFFINITY", - "name": "PTHREAD_DEFAULT_CORE_NO_AFFINITY", - "range": null, - "title": "No affinity", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "PTHREAD_DEFAULT_CORE_0", - "name": "PTHREAD_DEFAULT_CORE_0", - "range": null, - "title": "Core 0", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "PTHREAD_DEFAULT_CORE_1", - "name": "PTHREAD_DEFAULT_CORE_1", - "range": null, - "title": "Core 1", - "type": "bool" - } - ], - "depends_on": "!FREERTOS_UNICORE", - "help": "The default core to which pthreads are pinned.", - "id": "component-config-pthreads-default-pthread-core-affinity", - "name": "PTHREAD_TASK_CORE_DEFAULT", - "title": "Default pthread core affinity", - "type": "choice" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "PTHREAD_TASK_CORE_DEFAULT", - "name": "PTHREAD_TASK_CORE_DEFAULT", - "range": null, - "title": null, - "type": "int" - }, - { - "children": [], - "depends_on": null, - "help": "The default name of pthreads.", - "id": "PTHREAD_TASK_NAME_DEFAULT", - "name": "PTHREAD_TASK_NAME_DEFAULT", - "range": null, - "title": "Default name of pthreads", - "type": "string" - } - ], - "depends_on": null, - "id": "component-config-pthreads", - "title": "PThreads", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "SOC_MMU_PAGE_SIZE_8KB_SUPPORTED", - "help": null, - "id": "MMU_PAGE_SIZE_8KB", - "name": "MMU_PAGE_SIZE_8KB", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "MMU_PAGE_SIZE_16KB", - "name": "MMU_PAGE_SIZE_16KB", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "MMU_PAGE_SIZE_32KB", - "name": "MMU_PAGE_SIZE_32KB", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "MMU_PAGE_SIZE_64KB", - "name": "MMU_PAGE_SIZE_64KB", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "MMU_PAGE_MODE", - "name": "MMU_PAGE_MODE", - "range": null, - "title": null, - "type": "string" - }, - { - "children": [], - "depends_on": null, - "help": null, - "id": "MMU_PAGE_SIZE", - "name": "MMU_PAGE_SIZE", - "range": null, - "title": null, - "type": "hex" - } - ], - "depends_on": null, - "id": "component-config-soc-settings-mmu-config", - "title": "MMU Config", - "type": "menu" - } - ], - "depends_on": null, - "id": "component-config-soc-settings", - "title": "SoC Settings", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "When this option is selected, the patch will be enabled for XMC.\nFollow the recommended flow by XMC for better stability.\n\nDO NOT DISABLE UNLESS YOU KNOW WHAT YOU ARE DOING.", - "id": "SPI_FLASH_BROWNOUT_RESET_XMC", - "name": "SPI_FLASH_BROWNOUT_RESET_XMC", - "range": null, - "title": "Enable sending reset when brownout for XMC flash chips", - "type": "bool" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "When brownout happens during flash erase/write operations,\nsend reset command to stop the flash operations to improve stability.", - "id": "SPI_FLASH_BROWNOUT_RESET", - "name": "SPI_FLASH_BROWNOUT_RESET", - "range": null, - "title": null, - "type": "bool" - } - ], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "id": "component-config-main-flash-configuration-spi-flash-behavior-when-brownout", - "title": "SPI Flash behavior when brownout", - "type": "menu" - }, - { - "children": [ - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "This is a helper config for HPM. Invisible for users.", - "id": "SPI_FLASH_UNDER_HIGH_FREQ", - "name": "SPI_FLASH_UNDER_HIGH_FREQ", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "SPI_FLASH_HPM_ENA", - "name": "SPI_FLASH_HPM_ENA", - "range": null, - "title": "Enable", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "SPI_FLASH_HPM_AUTO", - "name": "SPI_FLASH_HPM_AUTO", - "range": null, - "title": "Auto (Not recommended)", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "SPI_FLASH_HPM_DIS", - "name": "SPI_FLASH_HPM_DIS", - "range": null, - "title": "Disabled", - "type": "bool" - } - ], - "depends_on": "(IDF_TARGET_ESP32S3 || IDF_TARGET_ESP32P4) && !ESPTOOLPY_OCT_FLASH && !APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Whether the High Performance Mode of Flash is enabled. As an optional feature, user needs to manually\nenable this option as a confirmation. To be back-compatible with earlier IDF version, this option is\nautomatically enabled with warning when Flash running > 80Mhz.", - "id": "component-config-main-flash-configuration-optional-and-experimental-features-read-docs-first--high-performance-mode-read-docs-first-80mhz-", - "name": "SPI_FLASH_HPM", - "title": "High Performance Mode (READ DOCS FIRST, > 80MHz)", - "type": "choice" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "This option is invisible, and will be selected automatically\nwhen ``ESPTOOLPY_FLASHFREQ_120M`` is selected.", - "id": "SPI_FLASH_HPM_ON", - "name": "SPI_FLASH_HPM_ON", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "SPI_FLASH_HPM_DC_AUTO", - "name": "SPI_FLASH_HPM_DC_AUTO", - "range": null, - "title": "Auto (Enable when bootloader support enabled (BOOTLOADER_FLASH_DC_AWARE))", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "SPI_FLASH_HPM_DC_DISABLE", - "name": "SPI_FLASH_HPM_DC_DISABLE", - "range": null, - "title": "Disable (READ DOCS FIRST)", - "type": "bool" - } - ], - "depends_on": "SPI_FLASH_HPM_ON && !APP_BUILD_TYPE_PURE_RAM_APP", - "help": "This feature needs your bootloader to be compiled DC-aware (BOOTLOADER_FLASH_DC_AWARE=y). Otherwise the\nchip will not be able to boot after a reset.", - "id": "component-config-main-flash-configuration-optional-and-experimental-features-read-docs-first--support-hpm-using-dc-read-docs-first-", - "name": "SPI_FLASH_HPM_DC", - "title": "Support HPM using DC (READ DOCS FIRST)", - "type": "choice" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "This is a helper config for HPM. Whether HPM-DC is enabled is also determined by bootloader.\nInvisible for users.", - "id": "SPI_FLASH_HPM_DC_ON", - "name": "SPI_FLASH_HPM_DC_ON", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND && !SPI_FLASH_ROM_IMPL && !APP_BUILD_TYPE_PURE_RAM_APP", - "help": "This option is disabled by default because it is supported only\nfor specific flash chips and for specific Espressif chips.\nTo evaluate if you can use this feature refer to\n`Optional Features for Flash` > `Auto Suspend & Resume` of the `ESP-IDF Programming Guide`.\n\nCAUTION: If you want to OTA to an app with this feature turned on, please make\nsure the bootloader has the support for it. (later than IDF v4.3)\n\nIf you are using an official Espressif module, please contact Espressif Business support\nto check if the module has the flash that support this feature installed.\nAlso refer to `Concurrency Constraints for Flash on SPI1` > `Flash Auto Suspend Feature`\nbefore enabling this option.", - "id": "SPI_FLASH_AUTO_SUSPEND", - "name": "SPI_FLASH_AUTO_SUSPEND", - "range": null, - "title": "Auto suspend long erase/write operations (READ DOCS FIRST)", - "type": "bool" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "This config is used for setting Tsus parameter. Tsus means CS# high to next command after\nsuspend. You can refer to the chapter of AC CHARACTERISTICS of flash datasheet.", - "id": "SPI_FLASH_SUSPEND_TSUS_VAL_US", - "name": "SPI_FLASH_SUSPEND_TSUS_VAL_US", - "range": [ - 20, - 100 - ], - "title": "SPI flash tSUS value (refer to chapter AC CHARACTERISTICS)", - "type": "int" - }, - { - "children": [], - "depends_on": "SOC_SPI_MEM_SUPPORT_TSUS_TRES_SEPERATE_CTR && !APP_BUILD_TYPE_PURE_RAM_APP", - "help": "This config is used for setting Trs parameter. Trs means CS Latency Between Resume And Next Suspend.\nYou can refer to the chapter of AC CHARACTERISTICS of flash datasheet.\nFor high-performance scenarios, some flash chips allow this set value to be smaller than the\ngiven value in the datasheet without causing errors in the flash state machine.\nWhen you have any related needs, please contact espressif business team.", - "id": "SPI_FLASH_SUSPEND_TRS_VAL_US", - "name": "SPI_FLASH_SUSPEND_TRS_VAL_US", - "range": null, - "title": "SPI flash tRS value (refer to chapter AC CHARACTERISTICS)", - "type": "int" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "XMC-C series is regarded as not qualified for the Suspend feature, since its specification\nhas a tRS >= 1ms restriction. We strongly do not suggest using it for the Suspend feature.\nHowever, if your product in field has enabled this feature, you may still enable this\nconfig option to keep the legacy behavior.\n\nFor new users, DO NOT enable this config.", - "id": "SPI_FLASH_FORCE_ENABLE_XMC_C_SUSPEND", - "name": "SPI_FLASH_FORCE_ENABLE_XMC_C_SUSPEND", - "range": null, - "title": "Enable XMC-C series flash chip suspend feature anyway", - "type": "bool" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Flash suspend has a defect on ESP32C6 until v0.2 and ESP32H2 until v1.2. If you already use suspend\nfeature for mass production, you can enable this for bypassing check after knowing the risk.\nBut if you are new users, or developing new applications, or producing a new batch,\nplease DO NOT enable this config option.\n\nFor more information, please refer to errata or connect to Espressif business support team.", - "id": "SPI_FLASH_FORCE_ENABLE_C6_H2_SUSPEND", - "name": "SPI_FLASH_FORCE_ENABLE_C6_H2_SUSPEND", - "range": null, - "title": "Enable chip suspend feature on c6 or h2 anyway (DO NOT ENABLE FOR NEW USERS OR APPLICATIONS)", - "type": "bool" - }, - { - "children": [], - "depends_on": "SPI_FLASH_AUTO_SUSPEND && FREERTOS_UNICORE && IDF_EXPERIMENTAL_FEATURES && !APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Enable this config will disable auto-resume from hardware. Thus the software will resume the chip\nafter any higher priority task/interrupt which suspend the chip. The benefit is that the suspend-resume\nwill not disturb the higher priority task and interrupt.\n\nThis currently is only valid on single core chip.", - "id": "SPI_FLASH_SOFTWARE_RESUME", - "name": "SPI_FLASH_SOFTWARE_RESUME", - "range": null, - "title": "Resume flash program/erase form suspend state by software control", - "type": "bool" - }, - { - "children": [], - "depends_on": "SPI_FLASH_AUTO_SUSPEND && FREERTOS_UNICORE && !APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Disable freertos task scheduler when CONFIG_SPI_FLASH_AUTO_SUSPEND is enabled.\nThus only interrupt can trigger a suspend. When SPI_FLASH_AUTO_SUSPEND is enabled,\ndefault behavior is not disable the task scheduler, so both interrupt and high priority\ntask can suspend the erase/program operation. When this option is enabled, task\nscheduler is disabled, only interrupt can suspend erase/program operation.", - "id": "SPI_FLASH_DISABLE_SCHEDULER_IN_SUSPEND", - "name": "SPI_FLASH_DISABLE_SCHEDULER_IN_SUSPEND", - "range": null, - "title": "Disable task scheduler when suspend is enabled when SPI1 operation is ongoing", - "type": "bool" - }, - { - "children": [], - "depends_on": "SPI_FLASH_AUTO_SUSPEND && !APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Majority flash supports to use flash register to judge if flash suspend status is\ndone or not. So enable this config, the behavior would use flash register WIP bit to judge\nwhether suspend is valid instead of waiting for a specific long time, which can save a\nlot of time and benefit for performance improvement.", - "id": "SPI_FLASH_AUTO_CHECK_SUSPEND_STATUS", - "name": "SPI_FLASH_AUTO_CHECK_SUSPEND_STATUS", - "range": null, - "title": "Check flash status automatically after flash suspend", - "type": "bool" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "When disabled, certain functions in `spi_flash` component will be placed into Flash memory\ninstead of IRAM. Disabling this option will save almost 10KB of IRAM depending on which\nfunctions are used.\n\nWhen enabled, these functions will be placed in internal RAM, with better performance.\n\nFor more information please refer to programming guide.", - "id": "SPI_FLASH_PLACE_FUNCTIONS_IN_IRAM", - "name": "SPI_FLASH_PLACE_FUNCTIONS_IN_IRAM", - "range": null, - "title": "Place spi_flash operation functions into IRAM", - "type": "bool" - } - ], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "id": "component-config-main-flash-configuration-optional-and-experimental-features-read-docs-first-", - "title": "Optional and Experimental Features (READ DOCS FIRST)", - "type": "menu" - } - ], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "id": "component-config-main-flash-configuration", - "title": "Main Flash configuration", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "SPI_FLASH_VERIFY_WRITE && !APP_BUILD_TYPE_PURE_RAM_APP", - "help": "If this option is enabled, if SPI flash write verification fails then a log error line\nwill be written with the address, expected & actual values. This can be useful when\ndebugging hardware SPI flash problems.", - "id": "SPI_FLASH_LOG_FAILED_WRITE", - "name": "SPI_FLASH_LOG_FAILED_WRITE", - "range": null, - "title": "Log errors if verification fails", - "type": "bool" - }, - { - "children": [], - "depends_on": "SPI_FLASH_VERIFY_WRITE && !APP_BUILD_TYPE_PURE_RAM_APP", - "help": "If this option is enabled, any SPI flash write which tries to set zero bits in the flash to\nones will log a warning. Such writes will not result in the requested data appearing identically\nin flash once written, as SPI NOR flash can only set bits to one when an entire sector is erased.\nAfter erasing, individual bits can only be written from one to zero.\n\nNote that some software (such as SPIFFS) which is aware of SPI NOR flash may write one bits as an\noptimisation, relying on the data in flash becoming a bitwise AND of the new data and any existing data.\nSuch software will log spurious warnings if this option is enabled.", - "id": "SPI_FLASH_WARN_SETTING_ZERO_TO_ONE", - "name": "SPI_FLASH_WARN_SETTING_ZERO_TO_ONE", - "range": null, - "title": "Log warning if writing zero bits to ones", - "type": "bool" - } - ], - "depends_on": "!SPI_FLASH_ROM_IMPL && !APP_BUILD_TYPE_PURE_RAM_APP", - "help": "If this option is enabled, any time SPI flash is written then the data will be read\nback and verified. This can catch hardware problems with SPI flash, or flash which\nwas not erased before verification.\n\nThis will slightly influence the write performance.", - "id": "SPI_FLASH_VERIFY_WRITE", - "name": "SPI_FLASH_VERIFY_WRITE", - "range": null, - "title": "Verify SPI flash writes", - "type": "bool" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "This option enables the following APIs:\n\n- esp_flash_reset_counters\n- esp_flash_dump_counters\n- esp_flash_get_counters\n\nThese APIs may be used to collect performance data for spi_flash APIs\nand to help understand behaviour of libraries which use SPI flash.", - "id": "SPI_FLASH_ENABLE_COUNTERS", - "name": "SPI_FLASH_ENABLE_COUNTERS", - "range": null, - "title": "Enable operation counters", - "type": "bool" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Enable this flag to use patched versions of SPI flash ROM driver functions.\nThis option should be enabled, if any one of the following is true: (1) need to write\nto flash on ESP32-D2WD; (2) main SPI flash is connected to non-default pins; (3) main\nSPI flash chip is manufactured by ISSI.", - "id": "SPI_FLASH_ROM_DRIVER_PATCH", - "name": "SPI_FLASH_ROM_DRIVER_PATCH", - "range": null, - "title": "Enable SPI flash ROM driver patched functions", - "type": "bool" - }, - { - "children": [], - "depends_on": "ESP_ROM_HAS_SPI_FLASH && !ESPTOOLPY_OCT_FLASH && !APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Enable this flag to use new SPI flash driver functions from ROM instead of ESP-IDF.\n\nIf keeping this as \"n\" in your project, you will have less free IRAM.\nBut you can use all of our flash features.\n\nIf making this as \"y\" in your project, you will increase free IRAM.\nBut you may miss out on some flash features and support for new flash chips.\n\nCurrently the ROM cannot support the following features:\n\n- SPI_FLASH_AUTO_SUSPEND (C3, S3)", - "id": "SPI_FLASH_ROM_IMPL", - "name": "SPI_FLASH_ROM_IMPL", - "range": null, - "title": "Use esp_flash implementation in ROM", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "", - "help": null, - "id": "SPI_FLASH_DANGEROUS_WRITE_ABORTS", - "name": "SPI_FLASH_DANGEROUS_WRITE_ABORTS", - "range": null, - "title": "Aborts", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "SPI_FLASH_DANGEROUS_WRITE_FAILS", - "name": "SPI_FLASH_DANGEROUS_WRITE_FAILS", - "range": null, - "title": "Fails", - "type": "bool" - }, - { - "children": [], - "depends_on": "", - "help": null, - "id": "SPI_FLASH_DANGEROUS_WRITE_ALLOWED", - "name": "SPI_FLASH_DANGEROUS_WRITE_ALLOWED", - "range": null, - "title": "Allowed", - "type": "bool" - } - ], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "SPI flash APIs can optionally abort or return a failure code\nif erasing or writing addresses that fall at the beginning\nof flash (covering the bootloader and partition table) or that\noverlap the app partition that contains the running app.\n\nIt is not recommended to ever write to these regions from an IDF app,\nand this check prevents logic errors or corrupted firmware memory from\ndamaging these regions.\n\nNote that this feature *does not* check calls to the esp_rom_xxx SPI flash\nROM functions. These functions should not be called directly from IDF\napplications.", - "id": "component-config-spi-flash-driver-writing-to-dangerous-flash-regions", - "name": "SPI_FLASH_DANGEROUS_WRITE", - "title": "Writing to dangerous flash regions", - "type": "choice" - }, - { - "children": [], - "depends_on": "IDF_TARGET_ESP32 && !APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Each SPI bus needs a lock for arbitration among devices. This allows multiple\ndevices on a same bus, but may reduce the speed of esp_flash driver access to the\nmain flash chip.\n\nIf you only need to use esp_flash driver to access the main flash chip, disable\nthis option, and the lock will be bypassed on SPI1 bus. Otherwise if extra devices\nare needed to attach to SPI1 bus, enable this option.", - "id": "SPI_FLASH_SHARE_SPI1_BUS", - "name": "SPI_FLASH_SHARE_SPI1_BUS", - "range": null, - "title": "Support other devices attached to SPI1 bus", - "type": "bool" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Some flash chips can have very high \"max\" erase times, especially for block erase (32KB or 64KB).\nThis option allows to bypass \"block erase\" and always do sector erase commands.\nThis will be much slower overall in most cases, but improves latency for other code to run.", - "id": "SPI_FLASH_BYPASS_BLOCK_ERASE", - "name": "SPI_FLASH_BYPASS_BLOCK_ERASE", - "range": null, - "title": "Bypass a block erase and always do sector erase", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "SPI_FLASH_YIELD_DURING_ERASE && !APP_BUILD_TYPE_PURE_RAM_APP", - "help": "If a duration of one erase command is large\nthen it will yield CPUs after finishing a current command.", - "id": "SPI_FLASH_ERASE_YIELD_DURATION_MS", - "name": "SPI_FLASH_ERASE_YIELD_DURATION_MS", - "range": null, - "title": "Duration of erasing to yield CPUs (ms)", - "type": "int" - }, - { - "children": [], - "depends_on": "SPI_FLASH_YIELD_DURING_ERASE && !APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Defines how many ticks will be before returning to continue a erasing.", - "id": "SPI_FLASH_ERASE_YIELD_TICKS", - "name": "SPI_FLASH_ERASE_YIELD_TICKS", - "range": null, - "title": "CPU release time (tick) for an erase operation", - "type": "int" - } - ], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "This allows to yield the CPUs between erase commands.\nPrevents starvation of other tasks.\nPlease use this configuration together with ``SPI_FLASH_ERASE_YIELD_DURATION_MS`` and\n``SPI_FLASH_ERASE_YIELD_TICKS`` after carefully checking flash datasheet to avoid a\nwatchdog timeout.\nFor more information, please check `SPI Flash API` reference documentation\nunder section `OS Function`.", - "id": "SPI_FLASH_YIELD_DURING_ERASE", - "name": "SPI_FLASH_YIELD_DURING_ERASE", - "range": null, - "title": "Enables yield operation during flash erase", - "type": "bool" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Flash write is broken down in terms of multiple (smaller) write operations.\nThis configuration options helps to set individual write chunk size, smaller\nvalue here ensures that cache (and non-IRAM resident interrupts) remains\ndisabled for shorter duration.", - "id": "SPI_FLASH_WRITE_CHUNK_SIZE", - "name": "SPI_FLASH_WRITE_CHUNK_SIZE", - "range": [ - 256, - 8192 - ], - "title": "Flash write chunk size", - "type": "int" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "SPI Flash driver uses the flash size configured in bootloader header by default.\nEnable this option to override flash size with latest ESPTOOLPY_FLASHSIZE value from\nthe app header if the size in the bootloader header is incorrect.", - "id": "SPI_FLASH_SIZE_OVERRIDE", - "name": "SPI_FLASH_SIZE_OVERRIDE", - "range": null, - "title": "Override flash size in bootloader header by ESPTOOLPY_FLASHSIZE", - "type": "bool" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "This option is helpful if you are using a flash chip whose timeout is quite large or unpredictable.", - "id": "SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED", - "name": "SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED", - "range": null, - "title": "Flash timeout checkout disabled", - "type": "bool" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "This option allows the chip driver list to be customized, instead of using the default list provided by\nESP-IDF.\n\nWhen this option is enabled, the default list is no longer compiled or linked. Instead, the\n`default_registered_chips` structure must be provided by the user.\n\nSee example: custom_chip_driver under examples/storage for more details.", - "id": "SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST", - "name": "SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST", - "range": null, - "title": "Override default chip driver list", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": null, - "id": "SPI_FLASH_VENDOR_XMC_SUPPORT_ENABLED", - "name": "SPI_FLASH_VENDOR_XMC_SUPPORT_ENABLED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": null, - "id": "SPI_FLASH_VENDOR_GD_SUPPORT_ENABLED", - "name": "SPI_FLASH_VENDOR_GD_SUPPORT_ENABLED", - "range": null, - "title": null, - "type": "bool" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Enable this to support auto detection of ISSI chips if chip vendor not directly\ngiven by ``chip_drv`` member of the chip struct. This adds support for variant\nchips, however will extend detecting time.", - "id": "SPI_FLASH_SUPPORT_ISSI_CHIP", - "name": "SPI_FLASH_SUPPORT_ISSI_CHIP", - "range": null, - "title": "ISSI", - "type": "bool" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Enable this to support auto detection of MXIC chips if chip vendor not directly\ngiven by ``chip_drv`` member of the chip struct. This adds support for variant\nchips, however will extend detecting time.", - "id": "SPI_FLASH_SUPPORT_MXIC_CHIP", - "name": "SPI_FLASH_SUPPORT_MXIC_CHIP", - "range": null, - "title": "MXIC", - "type": "bool" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Enable this to support auto detection of GD (GigaDevice) chips if chip vendor not\ndirectly given by ``chip_drv`` member of the chip struct. If you are using Wrover\nmodules, please don't disable this, otherwise your flash may not work in 4-bit\nmode.\n\nThis adds support for variant chips, however will extend detecting time and image\nsize. Note that the default chip driver supports the GD chips with product ID\n60H.", - "id": "SPI_FLASH_SUPPORT_GD_CHIP", - "name": "SPI_FLASH_SUPPORT_GD_CHIP", - "range": null, - "title": "GigaDevice", - "type": "bool" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Enable this to support auto detection of Winbond chips if chip vendor not directly\ngiven by ``chip_drv`` member of the chip struct. This adds support for variant\nchips, however will extend detecting time.", - "id": "SPI_FLASH_SUPPORT_WINBOND_CHIP", - "name": "SPI_FLASH_SUPPORT_WINBOND_CHIP", - "range": null, - "title": "Winbond", - "type": "bool" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Enable this to support auto detection of BOYA chips if chip vendor not directly\ngiven by ``chip_drv`` member of the chip struct. This adds support for variant\nchips, however will extend detecting time.", - "id": "SPI_FLASH_SUPPORT_BOYA_CHIP", - "name": "SPI_FLASH_SUPPORT_BOYA_CHIP", - "range": null, - "title": "BOYA", - "type": "bool" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Enable this to support auto detection of TH chips if chip vendor not directly\ngiven by ``chip_drv`` member of the chip struct. This adds support for variant\nchips, however will extend detecting time.", - "id": "SPI_FLASH_SUPPORT_TH_CHIP", - "name": "SPI_FLASH_SUPPORT_TH_CHIP", - "range": null, - "title": "TH", - "type": "bool" - }, - { - "children": [], - "depends_on": "IDF_TARGET_ESP32S3 && !APP_BUILD_TYPE_PURE_RAM_APP", - "help": "Enable this to support auto detection of Octal MXIC chips if chip vendor not directly\ngiven by ``chip_drv`` member of the chip struct. This adds support for variant\nchips, however will extend detecting time.", - "id": "SPI_FLASH_SUPPORT_MXIC_OPI_CHIP", - "name": "SPI_FLASH_SUPPORT_MXIC_OPI_CHIP", - "range": null, - "title": "mxic (opi)", - "type": "bool" - } - ], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "id": "component-config-spi-flash-driver-auto-detect-flash-chips", - "title": "Auto-detect flash chips", - "type": "menu" - }, - { - "children": [], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "help": "This option enables flash read/write operations to encrypted partition/s. This option\nis kept enabled irrespective of state of flash encryption feature. However, in case\napplication is not using flash encryption feature and is in need of some additional\nmemory from IRAM region (~1KB) then this config can be disabled.", - "id": "SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE", - "name": "SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE", - "range": null, - "title": "Enable encrypted partition read/write operations", - "type": "bool" - } - ], - "depends_on": "!APP_BUILD_TYPE_PURE_RAM_APP", - "id": "component-config-spi-flash-driver", - "title": "SPI Flash driver", - "type": "menu" - }, - { - "children": [ - { - "children": [ - { - "children": [], - "depends_on": "VFS_SUPPORT_IO", - "help": "If enabled, the following functions are provided by the VFS component.\n\nstat, link, unlink, rename, utime, access, truncate, rmdir, mkdir,\nopendir, closedir, readdir, readdir_r, seekdir, telldir, rewinddir\n\nFilesystem drivers can then be registered to handle these functions\nfor specific paths.\n\nDisabling this option can save memory when the support for these functions\nis not required.", - "id": "VFS_SUPPORT_DIR", - "name": "VFS_SUPPORT_DIR", - "range": null, - "title": "Provide directory related functions", - "type": "bool" - }, - { - "children": [ - { - "children": [], - "depends_on": "VFS_SUPPORT_SELECT", - "help": "Select() related functions might produce an inconveniently lot of\ndebug outputs when one sets the default log level to DEBUG or higher.\nIt is possible to suppress these debug outputs by enabling this\noption.", - "id": "VFS_SUPPRESS_SELECT_DEBUG_OUTPUT", - "name": "VFS_SUPPRESS_SELECT_DEBUG_OUTPUT", - "range": null, - "title": "Suppress select() related debug outputs", - "type": "bool" - }, - { - "children": [], - "depends_on": "VFS_SUPPORT_SELECT", - "help": "If enabled, VFS driver select() callback function will be placed in IRAM.", - "id": "VFS_SELECT_IN_RAM", - "name": "VFS_SELECT_IN_RAM", - "range": null, - "title": "Make VFS driver select() callbacks IRAM-safe", - "type": "bool" - } - ], - "depends_on": "VFS_SUPPORT_IO && !LWIP_USE_ONLY_LWIP_SELECT", - "help": "If enabled, select function is provided by the VFS component, and can be used\non peripheral file descriptors (such as UART) and sockets at the same time.\n\nIf disabled, the default select implementation will be provided by LWIP for\nsockets only.\n\nDisabling this option can reduce code size if support for \"select\" on UART file\ndescriptors is not required.", - "id": "VFS_SUPPORT_SELECT", - "name": "VFS_SUPPORT_SELECT", - "range": null, - "title": "Provide select function", - "type": "bool" - }, - { - "children": [], - "depends_on": "VFS_SUPPORT_IO", - "help": "Disabling this option can save memory when the support for termios.h is not required.", - "id": "VFS_SUPPORT_TERMIOS", - "name": "VFS_SUPPORT_TERMIOS", - "range": null, - "title": "Provide termios.h functions", - "type": "bool" - }, - { - "children": [], - "depends_on": "VFS_SUPPORT_IO", - "help": "Define maximum number of virtual filesystems that can be registered.", - "id": "VFS_MAX_COUNT", - "name": "VFS_MAX_COUNT", - "range": [ - 1, - 20 - ], - "title": "Maximum Number of Virtual Filesystems", - "type": "int" - }, - { - "children": [ - { - "children": [], - "depends_on": "VFS_SUPPORT_IO", - "help": "Define maximum number of host filesystem mount points.", - "id": "VFS_SEMIHOSTFS_MAX_MOUNT_POINTS", - "name": "VFS_SEMIHOSTFS_MAX_MOUNT_POINTS", - "range": null, - "title": "Host FS: Maximum number of the host filesystem mount points", - "type": "int" - } - ], - "depends_on": "VFS_SUPPORT_IO", - "id": "component-config-virtual-file-system-provide-basic-i-o-functions-host-file-system-i-o-semihosting-", - "title": "Host File System I/O (Semihosting)", - "type": "menu" - }, - { - "children": [], - "depends_on": "VFS_SUPPORT_IO", - "help": "If enabled, /dev/null VFS will be automatically initialized at startup.", - "id": "VFS_INITIALIZE_DEV_NULL", - "name": "VFS_INITIALIZE_DEV_NULL", - "range": null, - "title": "Initialize /dev/null VFS", - "type": "bool" - } - ], - "depends_on": null, - "help": "If enabled, the following functions are provided by the VFS component.\n\nopen, close, read, write, pread, pwrite, lseek, fstat, fsync, ioctl, fcntl\n\nFilesystem drivers can then be registered to handle these functions\nfor specific paths.\n\nDisabling this option can save memory when the support for these functions\nis not required.\n\nNote that the following functions can still be used with socket file descriptors\nwhen this option is disabled:\n\nclose, read, write, ioctl, fcntl.", - "id": "VFS_SUPPORT_IO", - "name": "VFS_SUPPORT_IO", - "range": null, - "title": "Provide basic I/O functions", - "type": "bool" - } - ], - "depends_on": null, - "id": "component-config-virtual-file-system", - "title": "Virtual file system", - "type": "menu" - } - ], - "depends_on": null, - "id": "component-config", - "title": "Component config", - "type": "menu" - }, - { - "children": [], - "depends_on": null, - "help": "By enabling this option, ESP-IDF experimental feature options will be visible.\n\nNote you should still enable a certain experimental feature option to use it, and you\nshould read the corresponding risk warning and known issue list carefully.\n\nCurrent experimental feature list:\n\n- CONFIG_ESPTOOLPY_FLASHFREQ_120M && CONFIG_ESPTOOLPY_FLASH_SAMPLE_MODE_DTR\n- CONFIG_SPIRAM_SPEED_120M && CONFIG_SPIRAM_MODE_OCT\n- CONFIG_BOOTLOADER_CACHE_32BIT_ADDR_QUAD_FLASH\n- CONFIG_ESP_WIFI_EAP_TLS1_3\n- CONFIG_ESP_WIFI_ENABLE_ROAMING_APP\n- CONFIG_USB_HOST_EXT_PORT_RESET_ATTEMPTS\n- CONFIG_LIBC_PICOLIBC", - "id": "IDF_EXPERIMENTAL_FEATURES", - "name": "IDF_EXPERIMENTAL_FEATURES", - "range": null, - "title": "Make experimental features visible", - "type": "bool" - } -] \ No newline at end of file diff --git a/esp32-thread/open-thread-rcp/build/config/sdkconfig.cmake b/esp32-thread/open-thread-rcp/build/config/sdkconfig.cmake deleted file mode 100644 index e0faa601..00000000 --- a/esp32-thread/open-thread-rcp/build/config/sdkconfig.cmake +++ /dev/null @@ -1,1412 +0,0 @@ -# - # Automatically generated file. DO NOT EDIT. - # Espressif IoT Development Framework (ESP-IDF) Configuration cmake include file - # -set(CONFIG_SOC_CAPS_ECO_VER_MAX "102") -set(CONFIG_SOC_ADC_SUPPORTED "y") -set(CONFIG_SOC_ANA_CMPR_SUPPORTED "y") -set(CONFIG_SOC_DEDICATED_GPIO_SUPPORTED "y") -set(CONFIG_SOC_UART_SUPPORTED "y") -set(CONFIG_SOC_UHCI_SUPPORTED "y") -set(CONFIG_SOC_GDMA_SUPPORTED "y") -set(CONFIG_SOC_AHB_GDMA_SUPPORTED "y") -set(CONFIG_SOC_ASYNC_MEMCPY_SUPPORTED "y") -set(CONFIG_SOC_PCNT_SUPPORTED "y") -set(CONFIG_SOC_MCPWM_SUPPORTED "y") -set(CONFIG_SOC_TWAI_SUPPORTED "y") -set(CONFIG_SOC_PHY_SUPPORTED "y") -set(CONFIG_SOC_BT_SUPPORTED "y") -set(CONFIG_SOC_GPTIMER_SUPPORTED "y") -set(CONFIG_SOC_IEEE802154_SUPPORTED "y") -set(CONFIG_SOC_IEEE802154_BLE_ONLY "y") -set(CONFIG_SOC_USB_SERIAL_JTAG_SUPPORTED "y") -set(CONFIG_SOC_TEMP_SENSOR_SUPPORTED "y") -set(CONFIG_SOC_SUPPORTS_SECURE_DL_MODE "y") -set(CONFIG_SOC_EFUSE_KEY_PURPOSE_FIELD "y") -set(CONFIG_SOC_EFUSE_SUPPORTED "y") -set(CONFIG_SOC_RTC_FAST_MEM_SUPPORTED "y") -set(CONFIG_SOC_RTC_MEM_SUPPORTED "y") -set(CONFIG_SOC_I2S_SUPPORTED "y") -set(CONFIG_SOC_SDM_SUPPORTED "y") -set(CONFIG_SOC_ETM_SUPPORTED "y") -set(CONFIG_SOC_RMT_SUPPORTED "y") -set(CONFIG_SOC_PARLIO_SUPPORTED "y") -set(CONFIG_SOC_GPSPI_SUPPORTED "y") -set(CONFIG_SOC_LEDC_SUPPORTED "y") -set(CONFIG_SOC_I2C_SUPPORTED "y") -set(CONFIG_SOC_SYSTIMER_SUPPORTED "y") -set(CONFIG_SOC_SUPPORT_COEXISTENCE "y") -set(CONFIG_SOC_AES_SUPPORTED "y") -set(CONFIG_SOC_MPI_SUPPORTED "y") -set(CONFIG_SOC_SHA_SUPPORTED "y") -set(CONFIG_SOC_HMAC_SUPPORTED "y") -set(CONFIG_SOC_DIG_SIGN_SUPPORTED "y") -set(CONFIG_SOC_ECC_SUPPORTED "y") -set(CONFIG_SOC_ECC_EXTENDED_MODES_SUPPORTED "y") -set(CONFIG_SOC_ECDSA_SUPPORTED "y") -set(CONFIG_SOC_FLASH_ENC_SUPPORTED "y") -set(CONFIG_SOC_SECURE_BOOT_SUPPORTED "y") -set(CONFIG_SOC_BOD_SUPPORTED "y") -set(CONFIG_SOC_VBAT_SUPPORTED "y") -set(CONFIG_SOC_APM_SUPPORTED "y") -set(CONFIG_SOC_PMU_SUPPORTED "y") -set(CONFIG_SOC_LP_TIMER_SUPPORTED "y") -set(CONFIG_SOC_LP_AON_SUPPORTED "y") -set(CONFIG_SOC_PAU_SUPPORTED "y") -set(CONFIG_SOC_CLK_TREE_SUPPORTED "y") -set(CONFIG_SOC_ASSIST_DEBUG_SUPPORTED "y") -set(CONFIG_SOC_WDT_SUPPORTED "y") -set(CONFIG_SOC_SPI_FLASH_SUPPORTED "y") -set(CONFIG_SOC_RNG_SUPPORTED "y") -set(CONFIG_SOC_LIGHT_SLEEP_SUPPORTED "y") -set(CONFIG_SOC_DEEP_SLEEP_SUPPORTED "y") -set(CONFIG_SOC_MODEM_CLOCK_SUPPORTED "y") -set(CONFIG_SOC_PM_SUPPORTED "y") -set(CONFIG_SOC_XTAL_SUPPORT_32M "y") -set(CONFIG_SOC_XTAL_CLOCK_PATH_DEPENDS_ON_TOP_DOMAIN "y") -set(CONFIG_SOC_AES_SUPPORT_DMA "y") -set(CONFIG_SOC_AES_GDMA "y") -set(CONFIG_SOC_AES_SUPPORT_AES_128 "y") -set(CONFIG_SOC_AES_SUPPORT_AES_256 "y") -set(CONFIG_SOC_AES_SUPPORT_PSEUDO_ROUND_FUNCTION "y") -set(CONFIG_SOC_ADC_DIG_CTRL_SUPPORTED "y") -set(CONFIG_SOC_ADC_DIG_IIR_FILTER_SUPPORTED "y") -set(CONFIG_SOC_ADC_MONITOR_SUPPORTED "y") -set(CONFIG_SOC_ADC_DMA_SUPPORTED "y") -set(CONFIG_SOC_ADC_PERIPH_NUM "1") -set(CONFIG_SOC_ADC_MAX_CHANNEL_NUM "5") -set(CONFIG_SOC_ADC_ATTEN_NUM "4") -set(CONFIG_SOC_ADC_DIGI_CONTROLLER_NUM "1") -set(CONFIG_SOC_ADC_PATT_LEN_MAX "8") -set(CONFIG_SOC_ADC_DIGI_MAX_BITWIDTH "12") -set(CONFIG_SOC_ADC_DIGI_MIN_BITWIDTH "12") -set(CONFIG_SOC_ADC_DIGI_IIR_FILTER_NUM "2") -set(CONFIG_SOC_ADC_DIGI_MONITOR_NUM "2") -set(CONFIG_SOC_ADC_DIGI_RESULT_BYTES "4") -set(CONFIG_SOC_ADC_DIGI_DATA_BYTES_PER_CONV "4") -set(CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_HIGH "83333") -set(CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_LOW "611") -set(CONFIG_SOC_ADC_RTC_MIN_BITWIDTH "12") -set(CONFIG_SOC_ADC_RTC_MAX_BITWIDTH "12") -set(CONFIG_SOC_ADC_CALIBRATION_V1_SUPPORTED "y") -set(CONFIG_SOC_ADC_SELF_HW_CALI_SUPPORTED "y") -set(CONFIG_SOC_ADC_CALIB_CHAN_COMPENS_SUPPORTED "y") -set(CONFIG_SOC_ADC_TEMPERATURE_SHARE_INTR "y") -set(CONFIG_SOC_ADC_SHARED_POWER "y") -set(CONFIG_SOC_BROWNOUT_RESET_SUPPORTED "y") -set(CONFIG_SOC_SHARED_IDCACHE_SUPPORTED "y") -set(CONFIG_SOC_CACHE_FREEZE_SUPPORTED "y") -set(CONFIG_SOC_CPU_CORES_NUM "1") -set(CONFIG_SOC_CPU_INTR_NUM "32") -set(CONFIG_SOC_CPU_HAS_FLEXIBLE_INTC "y") -set(CONFIG_SOC_INT_PLIC_SUPPORTED "y") -set(CONFIG_SOC_CPU_HAS_CSR_PC "y") -set(CONFIG_SOC_CPU_BREAKPOINTS_NUM "4") -set(CONFIG_SOC_CPU_WATCHPOINTS_NUM "4") -set(CONFIG_SOC_CPU_WATCHPOINT_MAX_REGION_SIZE "0x80000000") -set(CONFIG_SOC_CPU_HAS_PMA "y") -set(CONFIG_SOC_CPU_IDRAM_SPLIT_USING_PMP "y") -set(CONFIG_SOC_CPU_PMP_REGION_GRANULARITY "4") -set(CONFIG_SOC_MMU_PAGE_SIZE_CONFIGURABLE "y") -set(CONFIG_SOC_MMU_PAGE_SIZE_8KB_SUPPORTED "y") -set(CONFIG_SOC_MMU_PERIPH_NUM "1") -set(CONFIG_SOC_MMU_LINEAR_ADDRESS_REGION_NUM "1") -set(CONFIG_SOC_MMU_DI_VADDR_SHARED "y") -set(CONFIG_SOC_DS_SIGNATURE_MAX_BIT_LEN "3072") -set(CONFIG_SOC_DS_KEY_PARAM_MD_IV_LENGTH "16") -set(CONFIG_SOC_DS_KEY_CHECK_MAX_WAIT_US "1100") -set(CONFIG_SOC_AHB_GDMA_VERSION "1") -set(CONFIG_SOC_GDMA_NUM_GROUPS_MAX "1") -set(CONFIG_SOC_GDMA_PAIRS_PER_GROUP_MAX "3") -set(CONFIG_SOC_GDMA_SUPPORT_ETM "y") -set(CONFIG_SOC_GDMA_SUPPORT_SLEEP_RETENTION "y") -set(CONFIG_SOC_ETM_GROUPS "1") -set(CONFIG_SOC_ETM_CHANNELS_PER_GROUP "50") -set(CONFIG_SOC_ETM_SUPPORT_SLEEP_RETENTION "y") -set(CONFIG_SOC_GPIO_PORT "1") -set(CONFIG_SOC_GPIO_PIN_COUNT "28") -set(CONFIG_SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER "y") -set(CONFIG_SOC_GPIO_FLEX_GLITCH_FILTER_NUM "8") -set(CONFIG_SOC_GPIO_SUPPORT_PIN_HYS_FILTER "y") -set(CONFIG_SOC_GPIO_SUPPORT_PIN_HYS_CTRL_BY_EFUSE "y") -set(CONFIG_SOC_GPIO_SUPPORT_ETM "y") -set(CONFIG_SOC_GPIO_SUPPORT_RTC_INDEPENDENT "y") -set(CONFIG_SOC_LP_IO_CLOCK_IS_INDEPENDENT "y") -set(CONFIG_SOC_GPIO_IN_RANGE_MAX "27") -set(CONFIG_SOC_GPIO_OUT_RANGE_MAX "27") -set(CONFIG_SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK "0xfff807f") -set(CONFIG_SOC_GPIO_SUPPORT_FORCE_HOLD "y") -set(CONFIG_SOC_GPIO_SUPPORT_HOLD_IO_IN_DSLP "y") -set(CONFIG_SOC_GPIO_SUPPORT_HOLD_SINGLE_IO_IN_DSLP "y") -set(CONFIG_SOC_GPIO_CLOCKOUT_BY_GPIO_MATRIX "y") -set(CONFIG_SOC_CLOCKOUT_HAS_SOURCE_GATE "y") -set(CONFIG_SOC_GPIO_CLOCKOUT_CHANNEL_NUM "3") -set(CONFIG_SOC_RTCIO_PIN_COUNT "8") -set(CONFIG_SOC_RTCIO_HOLD_SUPPORTED "y") -set(CONFIG_SOC_DEDIC_GPIO_OUT_CHANNELS_NUM "8") -set(CONFIG_SOC_DEDIC_GPIO_IN_CHANNELS_NUM "8") -set(CONFIG_SOC_DEDIC_PERIPH_ALWAYS_ENABLE "y") -set(CONFIG_SOC_ANA_CMPR_NUM "1") -set(CONFIG_SOC_ANA_CMPR_INTR_SHARE_WITH_GPIO "y") -set(CONFIG_SOC_I2C_NUM "2") -set(CONFIG_SOC_HP_I2C_NUM "2") -set(CONFIG_SOC_I2C_FIFO_LEN "32") -set(CONFIG_SOC_I2C_CMD_REG_NUM "8") -set(CONFIG_SOC_I2C_SUPPORT_SLAVE "y") -set(CONFIG_SOC_I2C_SUPPORT_HW_FSM_RST "y") -set(CONFIG_SOC_I2C_SUPPORT_HW_CLR_BUS "y") -set(CONFIG_SOC_I2C_SUPPORT_XTAL "y") -set(CONFIG_SOC_I2C_SUPPORT_RTC "y") -set(CONFIG_SOC_I2C_SUPPORT_10BIT_ADDR "y") -set(CONFIG_SOC_I2C_SLAVE_SUPPORT_BROADCAST "y") -set(CONFIG_SOC_I2C_SLAVE_CAN_GET_STRETCH_CAUSE "y") -set(CONFIG_SOC_I2C_SLAVE_SUPPORT_I2CRAM_ACCESS "y") -set(CONFIG_SOC_I2C_SLAVE_SUPPORT_SLAVE_UNMATCH "y") -set(CONFIG_SOC_I2C_SUPPORT_SLEEP_RETENTION "y") -set(CONFIG_SOC_I2S_NUM "1") -set(CONFIG_SOC_I2S_HW_VERSION_2 "y") -set(CONFIG_SOC_I2S_SUPPORTS_ETM "y") -set(CONFIG_SOC_I2S_SUPPORTS_XTAL "y") -set(CONFIG_SOC_I2S_SUPPORTS_PLL_F96M "y") -set(CONFIG_SOC_I2S_SUPPORTS_PLL_F64M "y") -set(CONFIG_SOC_I2S_SUPPORTS_PCM "y") -set(CONFIG_SOC_I2S_SUPPORTS_PDM "y") -set(CONFIG_SOC_I2S_SUPPORTS_PDM_TX "y") -set(CONFIG_SOC_I2S_SUPPORTS_PCM2PDM "y") -set(CONFIG_SOC_I2S_SUPPORTS_PDM_RX "y") -set(CONFIG_SOC_I2S_PDM_MAX_TX_LINES "2") -set(CONFIG_SOC_I2S_PDM_MAX_RX_LINES "1") -set(CONFIG_SOC_I2S_SUPPORTS_TDM "y") -set(CONFIG_SOC_I2S_TDM_FULL_DATA_WIDTH "y") -set(CONFIG_SOC_I2S_SUPPORT_SLEEP_RETENTION "y") -set(CONFIG_SOC_LEDC_SUPPORT_PLL_DIV_CLOCK "y") -set(CONFIG_SOC_LEDC_SUPPORT_XTAL_CLOCK "y") -set(CONFIG_SOC_LEDC_TIMER_NUM "4") -set(CONFIG_SOC_LEDC_CHANNEL_NUM "6") -set(CONFIG_SOC_LEDC_TIMER_BIT_WIDTH "20") -set(CONFIG_SOC_LEDC_SUPPORT_FADE_STOP "y") -set(CONFIG_SOC_LEDC_GAMMA_CURVE_FADE_SUPPORTED "y") -set(CONFIG_SOC_LEDC_GAMMA_CURVE_FADE_RANGE_MAX "16") -set(CONFIG_SOC_LEDC_FADE_PARAMS_BIT_WIDTH "10") -set(CONFIG_SOC_LEDC_SUPPORT_SLEEP_RETENTION "y") -set(CONFIG_SOC_MPU_MIN_REGION_SIZE "0x20000000") -set(CONFIG_SOC_MPU_REGIONS_MAX_NUM "8") -set(CONFIG_SOC_PCNT_GROUPS "1") -set(CONFIG_SOC_PCNT_UNITS_PER_GROUP "4") -set(CONFIG_SOC_PCNT_CHANNELS_PER_UNIT "2") -set(CONFIG_SOC_PCNT_THRES_POINT_PER_UNIT "2") -set(CONFIG_SOC_PCNT_SUPPORT_RUNTIME_THRES_UPDATE "y") -set(CONFIG_SOC_PCNT_SUPPORT_STEP_NOTIFY "y") -set(CONFIG_SOC_PCNT_SUPPORT_SLEEP_RETENTION "y") -set(CONFIG_SOC_RMT_GROUPS "1") -set(CONFIG_SOC_RMT_TX_CANDIDATES_PER_GROUP "2") -set(CONFIG_SOC_RMT_RX_CANDIDATES_PER_GROUP "2") -set(CONFIG_SOC_RMT_CHANNELS_PER_GROUP "4") -set(CONFIG_SOC_RMT_MEM_WORDS_PER_CHANNEL "48") -set(CONFIG_SOC_RMT_SUPPORT_RX_PINGPONG "y") -set(CONFIG_SOC_RMT_SUPPORT_RX_DEMODULATION "y") -set(CONFIG_SOC_RMT_SUPPORT_TX_ASYNC_STOP "y") -set(CONFIG_SOC_RMT_SUPPORT_TX_LOOP_COUNT "y") -set(CONFIG_SOC_RMT_SUPPORT_TX_LOOP_AUTO_STOP "y") -set(CONFIG_SOC_RMT_SUPPORT_TX_SYNCHRO "y") -set(CONFIG_SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY "y") -set(CONFIG_SOC_RMT_SUPPORT_XTAL "y") -set(CONFIG_SOC_RMT_SUPPORT_RC_FAST "y") -set(CONFIG_SOC_RMT_SUPPORT_SLEEP_RETENTION "y") -set(CONFIG_SOC_MCPWM_GROUPS "1") -set(CONFIG_SOC_MCPWM_TIMERS_PER_GROUP "3") -set(CONFIG_SOC_MCPWM_OPERATORS_PER_GROUP "3") -set(CONFIG_SOC_MCPWM_COMPARATORS_PER_OPERATOR "2") -set(CONFIG_SOC_MCPWM_GENERATORS_PER_OPERATOR "2") -set(CONFIG_SOC_MCPWM_TRIGGERS_PER_OPERATOR "2") -set(CONFIG_SOC_MCPWM_GPIO_FAULTS_PER_GROUP "3") -set(CONFIG_SOC_MCPWM_CAPTURE_TIMERS_PER_GROUP "y") -set(CONFIG_SOC_MCPWM_CAPTURE_CHANNELS_PER_TIMER "3") -set(CONFIG_SOC_MCPWM_GPIO_SYNCHROS_PER_GROUP "3") -set(CONFIG_SOC_MCPWM_SWSYNC_CAN_PROPAGATE "y") -set(CONFIG_SOC_MCPWM_SUPPORT_ETM "y") -set(CONFIG_SOC_MCPWM_CAPTURE_CLK_FROM_GROUP "y") -set(CONFIG_SOC_MCPWM_SUPPORT_SLEEP_RETENTION "y") -set(CONFIG_SOC_PARLIO_GROUPS "1") -set(CONFIG_SOC_PARLIO_TX_UNITS_PER_GROUP "1") -set(CONFIG_SOC_PARLIO_RX_UNITS_PER_GROUP "1") -set(CONFIG_SOC_PARLIO_TX_UNIT_MAX_DATA_WIDTH "8") -set(CONFIG_SOC_PARLIO_RX_UNIT_MAX_DATA_WIDTH "8") -set(CONFIG_SOC_PARLIO_TX_CLK_SUPPORT_GATING "y") -set(CONFIG_SOC_PARLIO_RX_CLK_SUPPORT_GATING "y") -set(CONFIG_SOC_PARLIO_RX_CLK_SUPPORT_OUTPUT "y") -set(CONFIG_SOC_PARLIO_TRANS_BIT_ALIGN "y") -set(CONFIG_SOC_PARLIO_TX_SUPPORT_LOOP_TRANSMISSION "y") -set(CONFIG_SOC_PARLIO_SUPPORT_SLEEP_RETENTION "y") -set(CONFIG_SOC_PARLIO_SUPPORT_SPI_LCD "y") -set(CONFIG_SOC_MPI_MEM_BLOCKS_NUM "4") -set(CONFIG_SOC_MPI_OPERATIONS_NUM "3") -set(CONFIG_SOC_RSA_MAX_BIT_LEN "3072") -set(CONFIG_SOC_SHA_DMA_MAX_BUFFER_SIZE "3968") -set(CONFIG_SOC_SHA_SUPPORT_DMA "y") -set(CONFIG_SOC_SHA_SUPPORT_RESUME "y") -set(CONFIG_SOC_SHA_GDMA "y") -set(CONFIG_SOC_SHA_SUPPORT_SHA1 "y") -set(CONFIG_SOC_SHA_SUPPORT_SHA224 "y") -set(CONFIG_SOC_SHA_SUPPORT_SHA256 "y") -set(CONFIG_SOC_SDM_GROUPS "1") -set(CONFIG_SOC_SDM_CHANNELS_PER_GROUP "4") -set(CONFIG_SOC_SDM_CLK_SUPPORT_PLL_F48M "y") -set(CONFIG_SOC_SDM_CLK_SUPPORT_XTAL "y") -set(CONFIG_SOC_SPI_PERIPH_NUM "2") -set(CONFIG_SOC_SPI_MAX_CS_NUM "6") -set(CONFIG_SOC_SPI_MAXIMUM_BUFFER_SIZE "64") -set(CONFIG_SOC_SPI_SUPPORT_DDRCLK "y") -set(CONFIG_SOC_SPI_SLAVE_SUPPORT_SEG_TRANS "y") -set(CONFIG_SOC_SPI_SUPPORT_CD_SIG "y") -set(CONFIG_SOC_SPI_SUPPORT_CONTINUOUS_TRANS "y") -set(CONFIG_SOC_SPI_SUPPORT_SLAVE_HD_VER2 "y") -set(CONFIG_SOC_SPI_SUPPORT_SLEEP_RETENTION "y") -set(CONFIG_SOC_SPI_SUPPORT_CLK_XTAL "y") -set(CONFIG_SOC_SPI_SUPPORT_CLK_PLL_F48M "y") -set(CONFIG_SOC_SPI_SUPPORT_CLK_RC_FAST "y") -set(CONFIG_SOC_SPI_SCT_SUPPORTED "y") -set(CONFIG_SOC_SPI_SCT_REG_NUM "14") -set(CONFIG_SOC_SPI_SCT_BUFFER_NUM_MAX "y") -set(CONFIG_SOC_SPI_SCT_CONF_BITLEN_MAX "0x3fffa") -set(CONFIG_SOC_MEMSPI_IS_INDEPENDENT "y") -set(CONFIG_SOC_SPI_MAX_PRE_DIVIDER "16") -set(CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE "y") -set(CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND "y") -set(CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_RESUME "y") -set(CONFIG_SOC_SPI_MEM_SUPPORT_IDLE_INTR "y") -set(CONFIG_SOC_SPI_MEM_SUPPORT_SW_SUSPEND "y") -set(CONFIG_SOC_SPI_MEM_SUPPORT_CHECK_SUS "y") -set(CONFIG_SOC_SPI_MEM_SUPPORT_WRAP "y") -set(CONFIG_SOC_MEMSPI_SRC_FREQ_64M_SUPPORTED "y") -set(CONFIG_SOC_MEMSPI_SRC_FREQ_32M_SUPPORTED "y") -set(CONFIG_SOC_MEMSPI_SRC_FREQ_16M_SUPPORTED "y") -set(CONFIG_SOC_SYSTIMER_COUNTER_NUM "2") -set(CONFIG_SOC_SYSTIMER_ALARM_NUM "3") -set(CONFIG_SOC_SYSTIMER_BIT_WIDTH_LO "32") -set(CONFIG_SOC_SYSTIMER_BIT_WIDTH_HI "20") -set(CONFIG_SOC_SYSTIMER_FIXED_DIVIDER "y") -set(CONFIG_SOC_SYSTIMER_SUPPORT_RC_FAST "y") -set(CONFIG_SOC_SYSTIMER_INT_LEVEL "y") -set(CONFIG_SOC_SYSTIMER_ALARM_MISS_COMPENSATE "y") -set(CONFIG_SOC_SYSTIMER_SUPPORT_ETM "y") -set(CONFIG_SOC_LP_TIMER_BIT_WIDTH_LO "32") -set(CONFIG_SOC_LP_TIMER_BIT_WIDTH_HI "16") -set(CONFIG_SOC_TIMER_GROUPS "2") -set(CONFIG_SOC_TIMER_GROUP_TIMERS_PER_GROUP "1") -set(CONFIG_SOC_TIMER_GROUP_COUNTER_BIT_WIDTH "54") -set(CONFIG_SOC_TIMER_GROUP_SUPPORT_XTAL "y") -set(CONFIG_SOC_TIMER_GROUP_SUPPORT_RC_FAST "y") -set(CONFIG_SOC_TIMER_GROUP_TOTAL_TIMERS "2") -set(CONFIG_SOC_TIMER_SUPPORT_ETM "y") -set(CONFIG_SOC_TIMER_SUPPORT_SLEEP_RETENTION "y") -set(CONFIG_SOC_MWDT_SUPPORT_XTAL "y") -set(CONFIG_SOC_MWDT_SUPPORT_SLEEP_RETENTION "y") -set(CONFIG_SOC_TWAI_CONTROLLER_NUM "1") -set(CONFIG_SOC_TWAI_MASK_FILTER_NUM "1") -set(CONFIG_SOC_TWAI_CLK_SUPPORT_XTAL "y") -set(CONFIG_SOC_TWAI_BRP_MIN "2") -set(CONFIG_SOC_TWAI_BRP_MAX "32768") -set(CONFIG_SOC_TWAI_SUPPORTS_RX_STATUS "y") -set(CONFIG_SOC_TWAI_SUPPORT_SLEEP_RETENTION "y") -set(CONFIG_SOC_EFUSE_DIS_PAD_JTAG "y") -set(CONFIG_SOC_EFUSE_DIS_USB_JTAG "y") -set(CONFIG_SOC_EFUSE_DIS_DIRECT_BOOT "y") -set(CONFIG_SOC_EFUSE_SOFT_DIS_JTAG "y") -set(CONFIG_SOC_EFUSE_DIS_ICACHE "y") -set(CONFIG_SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK "y") -set(CONFIG_SOC_EFUSE_ECDSA_USE_HARDWARE_K "y") -set(CONFIG_SOC_EFUSE_ECDSA_KEY "y") -set(CONFIG_SOC_SECURE_BOOT_V2_RSA "y") -set(CONFIG_SOC_SECURE_BOOT_V2_ECC "y") -set(CONFIG_SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS "3") -set(CONFIG_SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS "y") -set(CONFIG_SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY "y") -set(CONFIG_SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX "64") -set(CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES "y") -set(CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_128 "y") -set(CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_SUPPORT_PSEUDO_ROUND "y") -set(CONFIG_SOC_APM_CTRL_FILTER_SUPPORTED "y") -set(CONFIG_SOC_CRYPTO_DPA_PROTECTION_SUPPORTED "y") -set(CONFIG_SOC_ECC_CONSTANT_TIME_POINT_MUL "y") -set(CONFIG_SOC_ECDSA_USES_MPI "y") -set(CONFIG_SOC_ECDSA_SUPPORT_DETERMINISTIC_MODE "y") -set(CONFIG_SOC_ECDSA_SUPPORT_HW_DETERMINISTIC_LOOP "y") -set(CONFIG_SOC_ECDSA_P192_CURVE_DEFAULT_DISABLED "y") -set(CONFIG_SOC_UART_NUM "2") -set(CONFIG_SOC_UART_HP_NUM "2") -set(CONFIG_SOC_UART_FIFO_LEN "128") -set(CONFIG_SOC_UART_BITRATE_MAX "5000000") -set(CONFIG_SOC_UART_SUPPORT_RTC_CLK "y") -set(CONFIG_SOC_UART_SUPPORT_XTAL_CLK "y") -set(CONFIG_SOC_UART_SUPPORT_WAKEUP_INT "y") -set(CONFIG_SOC_UART_SUPPORT_FSM_TX_WAIT_SEND "y") -set(CONFIG_SOC_UART_SUPPORT_SLEEP_RETENTION "y") -set(CONFIG_SOC_UART_WAKEUP_CHARS_SEQ_MAX_LEN "5") -set(CONFIG_SOC_UART_WAKEUP_SUPPORT_ACTIVE_THRESH_MODE "y") -set(CONFIG_SOC_UART_WAKEUP_SUPPORT_FIFO_THRESH_MODE "y") -set(CONFIG_SOC_UART_WAKEUP_SUPPORT_START_BIT_MODE "y") -set(CONFIG_SOC_UART_WAKEUP_SUPPORT_CHAR_SEQ_MODE "y") -set(CONFIG_SOC_UHCI_NUM "1") -set(CONFIG_SOC_COEX_HW_PTI "y") -set(CONFIG_SOC_EXTERNAL_COEX_ADVANCE "y") -set(CONFIG_SOC_PHY_DIG_REGS_MEM_SIZE "21") -set(CONFIG_SOC_PM_SUPPORT_BT_WAKEUP "y") -set(CONFIG_SOC_PM_SUPPORT_EXT1_WAKEUP "y") -set(CONFIG_SOC_PM_SUPPORT_EXT1_WAKEUP_MODE_PER_PIN "y") -set(CONFIG_SOC_PM_SUPPORT_CPU_PD "y") -set(CONFIG_SOC_PM_SUPPORT_MODEM_PD "y") -set(CONFIG_SOC_PM_SUPPORT_XTAL32K_PD "y") -set(CONFIG_SOC_PM_SUPPORT_RC32K_PD "y") -set(CONFIG_SOC_PM_SUPPORT_RC_FAST_PD "y") -set(CONFIG_SOC_PM_SUPPORT_VDDSDIO_PD "y") -set(CONFIG_SOC_PM_SUPPORT_TOP_PD "y") -set(CONFIG_SOC_PM_PAU_LINK_NUM "4") -set(CONFIG_SOC_PM_PAU_REGDMA_LINK_MULTI_ADDR "y") -set(CONFIG_SOC_PM_PAU_REGDMA_LINK_WIFIMAC "y") -set(CONFIG_SOC_PM_PAU_REGDMA_UPDATE_CACHE_BEFORE_WAIT_COMPARE "y") -set(CONFIG_SOC_PM_RETENTION_MODULE_NUM "32") -set(CONFIG_SOC_EXT_MEM_CACHE_TAG_IN_CPU_DOMAIN "y") -set(CONFIG_SOC_PM_CPU_RETENTION_BY_SW "y") -set(CONFIG_SOC_PM_MODEM_RETENTION_BY_REGDMA "y") -set(CONFIG_SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY "y") -set(CONFIG_SOC_PM_RETENTION_SW_TRIGGER_REGDMA "y") -set(CONFIG_SOC_PM_SUPPORT_PMU_CLK_ICG "y") -set(CONFIG_SOC_CLK_RC_FAST_SUPPORT_CALIBRATION "y") -set(CONFIG_SOC_CLK_XTAL32K_SUPPORTED "y") -set(CONFIG_SOC_CLK_OSC_SLOW_SUPPORTED "y") -set(CONFIG_SOC_CLK_RC32K_SUPPORTED "y") -set(CONFIG_SOC_CLK_LP_FAST_SUPPORT_LP_PLL "y") -set(CONFIG_SOC_CLK_LP_FAST_SUPPORT_XTAL_D2 "y") -set(CONFIG_SOC_MODEM_CLOCK_IS_INDEPENDENT "y") -set(CONFIG_SOC_RCC_IS_INDEPENDENT "y") -set(CONFIG_SOC_CLK_ANA_I2C_MST_HAS_ROOT_GATE "y") -set(CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC "y") -set(CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_XTAL "y") -set(CONFIG_SOC_TEMPERATURE_SENSOR_INTR_SUPPORT "y") -set(CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_ETM "y") -set(CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_SLEEP_RETENTION "y") -set(CONFIG_SOC_TEMPERATURE_SENSOR_UNDER_PD_TOP_DOMAIN "y") -set(CONFIG_SOC_RNG_CLOCK_IS_INDEPENDENT "y") -set(CONFIG_SOC_BLE_SUPPORTED "y") -set(CONFIG_SOC_BLE_MESH_SUPPORTED "y") -set(CONFIG_SOC_ESP_NIMBLE_CONTROLLER "y") -set(CONFIG_SOC_BLE_50_SUPPORTED "y") -set(CONFIG_SOC_BLE_DEVICE_PRIVACY_SUPPORTED "y") -set(CONFIG_SOC_BLE_POWER_CONTROL_SUPPORTED "y") -set(CONFIG_SOC_BLE_MULTI_CONN_OPTIMIZATION "y") -set(CONFIG_SOC_BLE_PERIODIC_ADV_ENH_SUPPORTED "y") -set(CONFIG_SOC_BLE_CTE_SUPPORTED "y") -set(CONFIG_SOC_DEBUG_HAVE_OCD_STUB_BINS "y") -set(CONFIG_IDF_CMAKE "y") -set(CONFIG_IDF_TOOLCHAIN "gcc") -set(CONFIG_IDF_TOOLCHAIN_GCC "y") -set(CONFIG_IDF_TARGET_ARCH_RISCV "y") -set(CONFIG_IDF_TARGET_ARCH "riscv") -set(CONFIG_IDF_TARGET "esp32h2") -set(CONFIG_IDF_INIT_VERSION "5.5.1") -set(CONFIG_IDF_TARGET_ESP32H2 "y") -set(CONFIG_IDF_FIRMWARE_CHIP_ID "0x10") -set(CONFIG_APP_BUILD_TYPE_APP_2NDBOOT "y") -set(CONFIG_APP_BUILD_TYPE_RAM "") -set(CONFIG_APP_BUILD_GENERATE_BINARIES "y") -set(CONFIG_APP_BUILD_BOOTLOADER "y") -set(CONFIG_APP_BUILD_USE_FLASH_SECTIONS "y") -set(CONFIG_APP_REPRODUCIBLE_BUILD "") -set(CONFIG_APP_NO_BLOBS "") -set(CONFIG_BOOTLOADER_COMPILE_TIME_DATE "y") -set(CONFIG_BOOTLOADER_PROJECT_VER "1") -set(CONFIG_BOOTLOADER_APP_ROLLBACK_ENABLE "") -set(CONFIG_BOOTLOADER_OFFSET_IN_FLASH "0x0") -set(CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_SIZE "y") -set(CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG "") -set(CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_PERF "") -set(CONFIG_BOOTLOADER_LOG_VERSION_1 "y") -set(CONFIG_BOOTLOADER_LOG_VERSION "1") -set(CONFIG_BOOTLOADER_LOG_LEVEL_NONE "") -set(CONFIG_BOOTLOADER_LOG_LEVEL_ERROR "") -set(CONFIG_BOOTLOADER_LOG_LEVEL_WARN "") -set(CONFIG_BOOTLOADER_LOG_LEVEL_INFO "y") -set(CONFIG_BOOTLOADER_LOG_LEVEL_DEBUG "") -set(CONFIG_BOOTLOADER_LOG_LEVEL_VERBOSE "") -set(CONFIG_BOOTLOADER_LOG_LEVEL "3") -set(CONFIG_BOOTLOADER_LOG_COLORS "") -set(CONFIG_BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS "y") -set(CONFIG_BOOTLOADER_LOG_MODE_TEXT_EN "y") -set(CONFIG_BOOTLOADER_LOG_MODE_TEXT "y") -set(CONFIG_BOOTLOADER_FLASH_DC_AWARE "") -set(CONFIG_BOOTLOADER_FLASH_XMC_SUPPORT "y") -set(CONFIG_BOOTLOADER_FACTORY_RESET "") -set(CONFIG_BOOTLOADER_APP_TEST "") -set(CONFIG_BOOTLOADER_REGION_PROTECTION_ENABLE "y") -set(CONFIG_BOOTLOADER_WDT_ENABLE "y") -set(CONFIG_BOOTLOADER_WDT_DISABLE_IN_USER_CODE "") -set(CONFIG_BOOTLOADER_WDT_TIME_MS "9000") -set(CONFIG_BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP "") -set(CONFIG_BOOTLOADER_SKIP_VALIDATE_ON_POWER_ON "") -set(CONFIG_BOOTLOADER_SKIP_VALIDATE_ALWAYS "") -set(CONFIG_BOOTLOADER_RESERVE_RTC_SIZE "0x0") -set(CONFIG_BOOTLOADER_CUSTOM_RESERVE_RTC "") -set(CONFIG_SECURE_BOOT_V2_RSA_SUPPORTED "y") -set(CONFIG_SECURE_BOOT_V2_ECC_SUPPORTED "y") -set(CONFIG_SECURE_BOOT_V2_PREFERRED "y") -set(CONFIG_SECURE_SIGNED_APPS_NO_SECURE_BOOT "") -set(CONFIG_SECURE_BOOT "") -set(CONFIG_SECURE_FLASH_ENC_ENABLED "") -set(CONFIG_SECURE_ROM_DL_MODE_ENABLED "y") -set(CONFIG_APP_COMPILE_TIME_DATE "y") -set(CONFIG_APP_EXCLUDE_PROJECT_VER_VAR "") -set(CONFIG_APP_EXCLUDE_PROJECT_NAME_VAR "") -set(CONFIG_APP_PROJECT_VER_FROM_CONFIG "") -set(CONFIG_APP_RETRIEVE_LEN_ELF_SHA "9") -set(CONFIG_ESP_ROM_HAS_CRC_LE "y") -set(CONFIG_ESP_ROM_HAS_CRC_BE "y") -set(CONFIG_ESP_ROM_UART_CLK_IS_XTAL "y") -set(CONFIG_ESP_ROM_USB_SERIAL_DEVICE_NUM "3") -set(CONFIG_ESP_ROM_HAS_RETARGETABLE_LOCKING "y") -set(CONFIG_ESP_ROM_GET_CLK_FREQ "y") -set(CONFIG_ESP_ROM_HAS_HAL_WDT "y") -set(CONFIG_ESP_ROM_HAS_HAL_SYSTIMER "y") -set(CONFIG_ESP_ROM_SYSTIMER_INIT_PATCH "y") -set(CONFIG_ESP_ROM_HAS_HEAP_TLSF "y") -set(CONFIG_ESP_ROM_TLSF_CHECK_PATCH "y") -set(CONFIG_ESP_ROM_MULTI_HEAP_WALK_PATCH "y") -set(CONFIG_ESP_ROM_HAS_LAYOUT_TABLE "y") -set(CONFIG_ESP_ROM_HAS_SPI_FLASH "y") -set(CONFIG_ESP_ROM_HAS_SPI_FLASH_MMAP "y") -set(CONFIG_ESP_ROM_WITHOUT_REGI2C "y") -set(CONFIG_ESP_ROM_HAS_NEWLIB "y") -set(CONFIG_ESP_ROM_HAS_NEWLIB_NANO_FORMAT "y") -set(CONFIG_ESP_ROM_HAS_NEWLIB_NANO_PRINTF_FLOAT_BUG "y") -set(CONFIG_ESP_ROM_WDT_INIT_PATCH "y") -set(CONFIG_ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE "y") -set(CONFIG_ESP_ROM_RAM_APP_NEEDS_MMU_INIT "y") -set(CONFIG_ESP_ROM_HAS_SW_FLOAT "y") -set(CONFIG_ESP_ROM_USB_OTG_NUM "-1") -set(CONFIG_ESP_ROM_HAS_VERSION "y") -set(CONFIG_ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB "y") -set(CONFIG_ESP_ROM_HAS_OUTPUT_PUTC_FUNC "y") -set(CONFIG_ESP_ROM_NO_USB_SERIAL_OUTPUT_API "y") -set(CONFIG_ESP_ROM_HAS_SUBOPTIMAL_NEWLIB_ON_MISALIGNED_MEMORY "y") -set(CONFIG_BOOT_ROM_LOG_ALWAYS_ON "y") -set(CONFIG_BOOT_ROM_LOG_ALWAYS_OFF "") -set(CONFIG_BOOT_ROM_LOG_ON_GPIO_HIGH "") -set(CONFIG_BOOT_ROM_LOG_ON_GPIO_LOW "") -set(CONFIG_ESPTOOLPY_NO_STUB "") -set(CONFIG_ESPTOOLPY_FLASHMODE_QIO "") -set(CONFIG_ESPTOOLPY_FLASHMODE_QOUT "") -set(CONFIG_ESPTOOLPY_FLASHMODE_DIO "y") -set(CONFIG_ESPTOOLPY_FLASHMODE_DOUT "") -set(CONFIG_ESPTOOLPY_FLASH_SAMPLE_MODE_STR "y") -set(CONFIG_ESPTOOLPY_FLASHMODE "dio") -set(CONFIG_ESPTOOLPY_FLASHFREQ_64M "y") -set(CONFIG_ESPTOOLPY_FLASHFREQ_32M "") -set(CONFIG_ESPTOOLPY_FLASHFREQ_16M "") -set(CONFIG_ESPTOOLPY_FLASHFREQ "48m") -set(CONFIG_ESPTOOLPY_FLASHSIZE_1MB "") -set(CONFIG_ESPTOOLPY_FLASHSIZE_2MB "y") -set(CONFIG_ESPTOOLPY_FLASHSIZE_4MB "") -set(CONFIG_ESPTOOLPY_FLASHSIZE_8MB "") -set(CONFIG_ESPTOOLPY_FLASHSIZE_16MB "") -set(CONFIG_ESPTOOLPY_FLASHSIZE_32MB "") -set(CONFIG_ESPTOOLPY_FLASHSIZE_64MB "") -set(CONFIG_ESPTOOLPY_FLASHSIZE_128MB "") -set(CONFIG_ESPTOOLPY_FLASHSIZE "2MB") -set(CONFIG_ESPTOOLPY_HEADER_FLASHSIZE_UPDATE "") -set(CONFIG_ESPTOOLPY_BEFORE_RESET "y") -set(CONFIG_ESPTOOLPY_BEFORE_NORESET "") -set(CONFIG_ESPTOOLPY_BEFORE "default_reset") -set(CONFIG_ESPTOOLPY_AFTER_RESET "y") -set(CONFIG_ESPTOOLPY_AFTER_NORESET "") -set(CONFIG_ESPTOOLPY_AFTER "hard_reset") -set(CONFIG_ESPTOOLPY_MONITOR_BAUD "115200") -set(CONFIG_PARTITION_TABLE_SINGLE_APP "") -set(CONFIG_PARTITION_TABLE_SINGLE_APP_LARGE "") -set(CONFIG_PARTITION_TABLE_TWO_OTA "") -set(CONFIG_PARTITION_TABLE_TWO_OTA_LARGE "") -set(CONFIG_PARTITION_TABLE_CUSTOM "y") -set(CONFIG_PARTITION_TABLE_CUSTOM_FILENAME "partitions.csv") -set(CONFIG_PARTITION_TABLE_FILENAME "partitions.csv") -set(CONFIG_PARTITION_TABLE_OFFSET "0x8000") -set(CONFIG_PARTITION_TABLE_MD5 "y") -set(CONFIG_OPENTHREAD_UART_PIN_MANUAL "") -set(CONFIG_COMPILER_OPTIMIZATION_DEBUG "") -set(CONFIG_COMPILER_OPTIMIZATION_SIZE "y") -set(CONFIG_COMPILER_OPTIMIZATION_PERF "") -set(CONFIG_COMPILER_OPTIMIZATION_NONE "") -set(CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE "") -set(CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_SILENT "y") -set(CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE "") -set(CONFIG_COMPILER_ASSERT_NDEBUG_EVALUATE "y") -set(CONFIG_COMPILER_FLOAT_LIB_FROM_GCCLIB "y") -set(CONFIG_COMPILER_OPTIMIZATION_ASSERTION_LEVEL "1") -set(CONFIG_COMPILER_OPTIMIZATION_CHECKS_SILENT "y") -set(CONFIG_COMPILER_HIDE_PATHS_MACROS "y") -set(CONFIG_COMPILER_CXX_EXCEPTIONS "") -set(CONFIG_COMPILER_CXX_RTTI "") -set(CONFIG_COMPILER_STACK_CHECK_MODE_NONE "y") -set(CONFIG_COMPILER_STACK_CHECK_MODE_NORM "") -set(CONFIG_COMPILER_STACK_CHECK_MODE_STRONG "") -set(CONFIG_COMPILER_STACK_CHECK_MODE_ALL "") -set(CONFIG_COMPILER_NO_MERGE_CONSTANTS "") -set(CONFIG_COMPILER_WARN_WRITE_STRINGS "") -set(CONFIG_COMPILER_SAVE_RESTORE_LIBCALLS "y") -set(CONFIG_COMPILER_DISABLE_DEFAULT_ERRORS "y") -set(CONFIG_COMPILER_DISABLE_GCC12_WARNINGS "") -set(CONFIG_COMPILER_DISABLE_GCC13_WARNINGS "") -set(CONFIG_COMPILER_DISABLE_GCC14_WARNINGS "") -set(CONFIG_COMPILER_DUMP_RTL_FILES "") -set(CONFIG_COMPILER_RT_LIB_GCCLIB "y") -set(CONFIG_COMPILER_RT_LIB_NAME "gcc") -set(CONFIG_COMPILER_ORPHAN_SECTIONS_WARNING "y") -set(CONFIG_COMPILER_ORPHAN_SECTIONS_PLACE "") -set(CONFIG_COMPILER_STATIC_ANALYZER "") -set(CONFIG_CONSOLE_SORTED_HELP "") -set(CONFIG_TWAI_SKIP_LEGACY_CONFLICT_CHECK "") -set(CONFIG_ADC_SUPPRESS_DEPRECATE_WARN "") -set(CONFIG_ADC_SKIP_LEGACY_CONFLICT_CHECK "") -set(CONFIG_ADC_CALI_SUPPRESS_DEPRECATE_WARN "") -set(CONFIG_MCPWM_SUPPRESS_DEPRECATE_WARN "") -set(CONFIG_MCPWM_SKIP_LEGACY_CONFLICT_CHECK "") -set(CONFIG_GPTIMER_SUPPRESS_DEPRECATE_WARN "") -set(CONFIG_GPTIMER_SKIP_LEGACY_CONFLICT_CHECK "") -set(CONFIG_RMT_SUPPRESS_DEPRECATE_WARN "") -set(CONFIG_RMT_SKIP_LEGACY_CONFLICT_CHECK "") -set(CONFIG_I2S_SUPPRESS_DEPRECATE_WARN "") -set(CONFIG_I2S_SKIP_LEGACY_CONFLICT_CHECK "") -set(CONFIG_I2C_SKIP_LEGACY_CONFLICT_CHECK "") -set(CONFIG_PCNT_SUPPRESS_DEPRECATE_WARN "") -set(CONFIG_PCNT_SKIP_LEGACY_CONFLICT_CHECK "") -set(CONFIG_SDM_SUPPRESS_DEPRECATE_WARN "") -set(CONFIG_SDM_SKIP_LEGACY_CONFLICT_CHECK "") -set(CONFIG_TEMP_SENSOR_SUPPRESS_DEPRECATE_WARN "") -set(CONFIG_TEMP_SENSOR_SKIP_LEGACY_CONFLICT_CHECK "") -set(CONFIG_EFUSE_CUSTOM_TABLE "") -set(CONFIG_EFUSE_VIRTUAL "") -set(CONFIG_EFUSE_MAX_BLK_LEN "256") -set(CONFIG_ESP_COEX_ENABLED "y") -set(CONFIG_ESP_COEX_EXTERNAL_COEXIST_ENABLE "") -set(CONFIG_ESP_COEX_GPIO_DEBUG "") -set(CONFIG_ESP_ERR_TO_NAME_LOOKUP "") -set(CONFIG_ANA_CMPR_ISR_HANDLER_IN_IRAM "y") -set(CONFIG_ANA_CMPR_CTRL_FUNC_IN_IRAM "") -set(CONFIG_ANA_CMPR_ISR_CACHE_SAFE "") -set(CONFIG_ANA_CMPR_OBJ_CACHE_SAFE "y") -set(CONFIG_ANA_CMPR_ENABLE_DEBUG_LOG "") -set(CONFIG_GPIO_CTRL_FUNC_IN_IRAM "") -set(CONFIG_GPTIMER_ISR_HANDLER_IN_IRAM "y") -set(CONFIG_GPTIMER_CTRL_FUNC_IN_IRAM "") -set(CONFIG_GPTIMER_ISR_CACHE_SAFE "") -set(CONFIG_GPTIMER_OBJ_CACHE_SAFE "y") -set(CONFIG_GPTIMER_ENABLE_DEBUG_LOG "") -set(CONFIG_I2C_ISR_IRAM_SAFE "") -set(CONFIG_I2C_ENABLE_DEBUG_LOG "") -set(CONFIG_I2C_ENABLE_SLAVE_DRIVER_VERSION_2 "") -set(CONFIG_I2C_MASTER_ISR_HANDLER_IN_IRAM "y") -set(CONFIG_I2S_ISR_IRAM_SAFE "") -set(CONFIG_I2S_ENABLE_DEBUG_LOG "") -set(CONFIG_LEDC_CTRL_FUNC_IN_IRAM "") -set(CONFIG_MCPWM_ISR_HANDLER_IN_IRAM "y") -set(CONFIG_MCPWM_ISR_CACHE_SAFE "") -set(CONFIG_MCPWM_CTRL_FUNC_IN_IRAM "") -set(CONFIG_MCPWM_OBJ_CACHE_SAFE "y") -set(CONFIG_MCPWM_ENABLE_DEBUG_LOG "") -set(CONFIG_PARLIO_TX_ISR_HANDLER_IN_IRAM "y") -set(CONFIG_PARLIO_RX_ISR_HANDLER_IN_IRAM "y") -set(CONFIG_PARLIO_TX_ISR_CACHE_SAFE "") -set(CONFIG_PARLIO_RX_ISR_CACHE_SAFE "") -set(CONFIG_PARLIO_OBJ_CACHE_SAFE "y") -set(CONFIG_PARLIO_ENABLE_DEBUG_LOG "") -set(CONFIG_PARLIO_ISR_IRAM_SAFE "") -set(CONFIG_PCNT_CTRL_FUNC_IN_IRAM "") -set(CONFIG_PCNT_ISR_IRAM_SAFE "") -set(CONFIG_PCNT_ENABLE_DEBUG_LOG "") -set(CONFIG_RMT_ENCODER_FUNC_IN_IRAM "y") -set(CONFIG_RMT_TX_ISR_HANDLER_IN_IRAM "y") -set(CONFIG_RMT_RX_ISR_HANDLER_IN_IRAM "y") -set(CONFIG_RMT_RECV_FUNC_IN_IRAM "") -set(CONFIG_RMT_TX_ISR_CACHE_SAFE "") -set(CONFIG_RMT_RX_ISR_CACHE_SAFE "") -set(CONFIG_RMT_OBJ_CACHE_SAFE "y") -set(CONFIG_RMT_ENABLE_DEBUG_LOG "") -set(CONFIG_RMT_ISR_IRAM_SAFE "") -set(CONFIG_SDM_CTRL_FUNC_IN_IRAM "") -set(CONFIG_SDM_ENABLE_DEBUG_LOG "") -set(CONFIG_SPI_MASTER_IN_IRAM "") -set(CONFIG_SPI_MASTER_ISR_IN_IRAM "y") -set(CONFIG_SPI_SLAVE_IN_IRAM "") -set(CONFIG_SPI_SLAVE_ISR_IN_IRAM "y") -set(CONFIG_TEMP_SENSOR_ENABLE_DEBUG_LOG "") -set(CONFIG_TEMP_SENSOR_ISR_IRAM_SAFE "") -set(CONFIG_TWAI_ISR_IN_IRAM "") -set(CONFIG_TWAI_ISR_CACHE_SAFE "") -set(CONFIG_TWAI_ENABLE_DEBUG_LOG "") -set(CONFIG_UART_ISR_IN_IRAM "y") -set(CONFIG_UHCI_ISR_HANDLER_IN_IRAM "") -set(CONFIG_UHCI_ISR_CACHE_SAFE "") -set(CONFIG_UHCI_ENABLE_DEBUG_LOG "") -set(CONFIG_USJ_ENABLE_USB_SERIAL_JTAG "y") -set(CONFIG_ESP_EVENT_LOOP_PROFILING "") -set(CONFIG_ESP_EVENT_POST_FROM_ISR "y") -set(CONFIG_ESP_EVENT_POST_FROM_IRAM_ISR "y") -set(CONFIG_ESP32H2_REV_MIN_0 "y") -set(CONFIG_ESP32H2_REV_MIN_1 "") -set(CONFIG_ESP32H2_REV_MIN_2 "") -set(CONFIG_ESP32H2_REV_MIN_102 "") -set(CONFIG_ESP32H2_REV_MIN_FULL "0") -set(CONFIG_ESP_REV_MIN_FULL "0") -set(CONFIG_ESP32H2_REV_MAX_FULL "199") -set(CONFIG_ESP_REV_MAX_FULL "199") -set(CONFIG_ESP_EFUSE_BLOCK_REV_MIN_FULL "0") -set(CONFIG_ESP_EFUSE_BLOCK_REV_MAX_FULL "99") -set(CONFIG_ESP_MAC_ADDR_UNIVERSE_BT "y") -set(CONFIG_ESP_MAC_ADDR_UNIVERSE_IEEE802154 "y") -set(CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES_TWO "y") -set(CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES "2") -set(CONFIG_ESP32H2_UNIVERSAL_MAC_ADDRESSES_TWO "y") -set(CONFIG_ESP32H2_UNIVERSAL_MAC_ADDRESSES "2") -set(CONFIG_ESP_MAC_USE_CUSTOM_MAC_AS_BASE_MAC "") -set(CONFIG_ESP_SLEEP_POWER_DOWN_FLASH "") -set(CONFIG_ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND "y") -set(CONFIG_ESP_SLEEP_MSPI_NEED_ALL_IO_PU "") -set(CONFIG_ESP_SLEEP_GPIO_RESET_WORKAROUND "y") -set(CONFIG_ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY "0") -set(CONFIG_ESP_SLEEP_CACHE_SAFE_ASSERTION "") -set(CONFIG_ESP_SLEEP_DEBUG "") -set(CONFIG_ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS "y") -set(CONFIG_RTC_CLK_SRC_INT_RC "y") -set(CONFIG_RTC_CLK_SRC_EXT_CRYS "") -set(CONFIG_RTC_CLK_SRC_EXT_OSC "") -set(CONFIG_RTC_CLK_CAL_CYCLES "1024") -set(CONFIG_ESP_PERIPH_CTRL_FUNC_IN_IRAM "y") -set(CONFIG_ESP_REGI2C_CTRL_FUNC_IN_IRAM "y") -set(CONFIG_ETM_ENABLE_DEBUG_LOG "") -set(CONFIG_GDMA_CTRL_FUNC_IN_IRAM "y") -set(CONFIG_GDMA_ISR_HANDLER_IN_IRAM "y") -set(CONFIG_GDMA_OBJ_DRAM_SAFE "y") -set(CONFIG_GDMA_ENABLE_DEBUG_LOG "") -set(CONFIG_GDMA_ISR_IRAM_SAFE "") -set(CONFIG_XTAL_FREQ_32 "y") -set(CONFIG_XTAL_FREQ "32") -set(CONFIG_ESP_BROWNOUT_DET "y") -set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_7 "") -set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_6 "") -set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_5 "") -set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_4 "") -set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_3 "") -set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_2 "") -set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_1 "") -set(CONFIG_ESP_BROWNOUT_DET_LVL_SEL_0 "y") -set(CONFIG_ESP_BROWNOUT_DET_LVL "0") -set(CONFIG_ESP_BROWNOUT_USE_INTR "y") -set(CONFIG_ESP_VBAT_INIT_AUTO "") -set(CONFIG_ESP_VBAT_WAKEUP_CHIP_ON_VBAT_BROWNOUT "") -set(CONFIG_ESP_SPI_BUS_LOCK_ISR_FUNCS_IN_IRAM "y") -set(CONFIG_ESP_INTR_IN_IRAM "y") -set(CONFIG_ESP_NETIF_IP_LOST_TIMER_INTERVAL "120") -set(CONFIG_ESP_NETIF_PROVIDE_CUSTOM_IMPLEMENTATION "") -set(CONFIG_ESP_NETIF_TCPIP_LWIP "y") -set(CONFIG_ESP_NETIF_LOOPBACK "") -set(CONFIG_ESP_NETIF_USES_TCPIP_WITH_BSD_API "y") -set(CONFIG_ESP_NETIF_REPORT_DATA_TRAFFIC "y") -set(CONFIG_ESP_NETIF_RECEIVE_REPORT_ERRORS "") -set(CONFIG_ESP_NETIF_L2_TAP "") -set(CONFIG_ESP_NETIF_BRIDGE_EN "") -set(CONFIG_ESP_NETIF_SET_DNS_PER_DEFAULT_NETIF "") -set(CONFIG_ESP_PHY_ENABLED "y") -set(CONFIG_ESP_PHY_CALIBRATION_AND_DATA_STORAGE "y") -set(CONFIG_ESP_PHY_MAX_WIFI_TX_POWER "20") -set(CONFIG_ESP_PHY_MAX_TX_POWER "20") -set(CONFIG_ESP_PHY_REDUCE_TX_POWER "") -set(CONFIG_ESP_PHY_ENABLE_CERT_TEST "") -set(CONFIG_ESP_PHY_RF_CAL_PARTIAL "y") -set(CONFIG_ESP_PHY_RF_CAL_NONE "") -set(CONFIG_ESP_PHY_RF_CAL_FULL "") -set(CONFIG_ESP_PHY_CALIBRATION_MODE "0") -set(CONFIG_ESP_PHY_PLL_TRACK_PERIOD_MS "1000") -set(CONFIG_ESP_PHY_PLL_TRACK_DEBUG "") -set(CONFIG_ESP_PHY_RECORD_USED_TIME "") -set(CONFIG_ESP_PHY_IRAM_OPT "y") -set(CONFIG_ESP_PHY_DEBUG "") -set(CONFIG_PM_SLEEP_FUNC_IN_IRAM "y") -set(CONFIG_PM_ENABLE "") -set(CONFIG_PM_SLP_IRAM_OPT "y") -set(CONFIG_PM_POWER_DOWN_CPU_IN_LIGHT_SLEEP "y") -set(CONFIG_PM_POWER_DOWN_PERIPHERAL_IN_LIGHT_SLEEP "") -set(CONFIG_RINGBUF_PLACE_FUNCTIONS_INTO_FLASH "") -set(CONFIG_ESP_ROM_PRINT_IN_IRAM "y") -set(CONFIG_ESP_CRYPTO_DPA_PROTECTION_AT_STARTUP "y") -set(CONFIG_ESP_CRYPTO_DPA_PROTECTION_LEVEL_LOW "y") -set(CONFIG_ESP_CRYPTO_DPA_PROTECTION_LEVEL_MEDIUM "") -set(CONFIG_ESP_CRYPTO_DPA_PROTECTION_LEVEL_HIGH "") -set(CONFIG_ESP_CRYPTO_DPA_PROTECTION_LEVEL "1") -set(CONFIG_ESP_CRYPTO_FORCE_ECC_CONSTANT_TIME_POINT_MUL "") -set(CONFIG_ESP_ECDSA_ENABLE_P192_CURVE "") -set(CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_48 "") -set(CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_64 "") -set(CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_96 "y") -set(CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ "96") -set(CONFIG_ESP_SYSTEM_IN_IRAM "y") -set(CONFIG_ESP_SYSTEM_PANIC_PRINT_HALT "") -set(CONFIG_ESP_SYSTEM_PANIC_PRINT_REBOOT "") -set(CONFIG_ESP_SYSTEM_PANIC_SILENT_REBOOT "y") -set(CONFIG_ESP_SYSTEM_SINGLE_CORE_MODE "y") -set(CONFIG_ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK "y") -set(CONFIG_ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP "y") -set(CONFIG_ESP_SYSTEM_NO_BACKTRACE "y") -set(CONFIG_ESP_SYSTEM_USE_EH_FRAME "") -set(CONFIG_ESP_SYSTEM_USE_FRAME_POINTER "") -set(CONFIG_ESP_SYSTEM_PMP_IDRAM_SPLIT "y") -set(CONFIG_ESP_SYSTEM_EVENT_QUEUE_SIZE "32") -set(CONFIG_ESP_SYSTEM_EVENT_TASK_STACK_SIZE "2304") -set(CONFIG_ESP_MAIN_TASK_STACK_SIZE "3584") -set(CONFIG_ESP_MAIN_TASK_AFFINITY_CPU0 "y") -set(CONFIG_ESP_MAIN_TASK_AFFINITY_NO_AFFINITY "") -set(CONFIG_ESP_MAIN_TASK_AFFINITY "0x0") -set(CONFIG_ESP_MINIMAL_SHARED_STACK_SIZE "2048") -set(CONFIG_ESP_CONSOLE_UART_DEFAULT "y") -set(CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG "") -set(CONFIG_ESP_CONSOLE_UART_CUSTOM "") -set(CONFIG_ESP_CONSOLE_NONE "") -set(CONFIG_ESP_CONSOLE_SECONDARY_NONE "") -set(CONFIG_ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG "y") -set(CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED "y") -set(CONFIG_ESP_CONSOLE_UART "y") -set(CONFIG_ESP_CONSOLE_UART_NUM "0") -set(CONFIG_ESP_CONSOLE_ROM_SERIAL_PORT_NUM "0") -set(CONFIG_ESP_CONSOLE_UART_BAUDRATE "115200") -set(CONFIG_ESP_INT_WDT "y") -set(CONFIG_ESP_INT_WDT_TIMEOUT_MS "300") -set(CONFIG_ESP_TASK_WDT_EN "y") -set(CONFIG_ESP_TASK_WDT_INIT "y") -set(CONFIG_ESP_TASK_WDT_PANIC "") -set(CONFIG_ESP_TASK_WDT_TIMEOUT_S "5") -set(CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0 "y") -set(CONFIG_ESP_PANIC_HANDLER_IRAM "") -set(CONFIG_ESP_DEBUG_STUBS_ENABLE "") -set(CONFIG_ESP_DEBUG_INCLUDE_OCD_STUB_BINS "") -set(CONFIG_ESP_DEBUG_OCDAWARE "y") -set(CONFIG_ESP_SYSTEM_CHECK_INT_LEVEL_4 "y") -set(CONFIG_ESP_SYSTEM_HW_STACK_GUARD "y") -set(CONFIG_ESP_SYSTEM_BBPLL_RECALIB "y") -set(CONFIG_ESP_SYSTEM_HW_PC_RECORD "y") -set(CONFIG_ESP_IPC_TASK_STACK_SIZE "1024") -set(CONFIG_ESP_TIMER_IN_IRAM "y") -set(CONFIG_ESP_TIMER_PROFILING "") -set(CONFIG_ESP_TIME_FUNCS_USE_RTC_TIMER "y") -set(CONFIG_ESP_TIME_FUNCS_USE_ESP_TIMER "y") -set(CONFIG_ESP_TIMER_TASK_STACK_SIZE "3584") -set(CONFIG_ESP_TIMER_INTERRUPT_LEVEL "1") -set(CONFIG_ESP_TIMER_SHOW_EXPERIMENTAL "") -set(CONFIG_ESP_TIMER_TASK_AFFINITY "0x0") -set(CONFIG_ESP_TIMER_TASK_AFFINITY_CPU0 "y") -set(CONFIG_ESP_TIMER_ISR_AFFINITY_CPU0 "y") -set(CONFIG_ESP_TIMER_SUPPORTS_ISR_DISPATCH_METHOD "") -set(CONFIG_ESP_TIMER_IMPL_SYSTIMER "y") -set(CONFIG_FREERTOS_SMP "") -set(CONFIG_FREERTOS_UNICORE "y") -set(CONFIG_FREERTOS_HZ "100") -set(CONFIG_FREERTOS_OPTIMIZED_SCHEDULER "y") -set(CONFIG_FREERTOS_CHECK_STACKOVERFLOW_NONE "") -set(CONFIG_FREERTOS_CHECK_STACKOVERFLOW_PTRVAL "") -set(CONFIG_FREERTOS_CHECK_STACKOVERFLOW_CANARY "y") -set(CONFIG_FREERTOS_THREAD_LOCAL_STORAGE_POINTERS "1") -set(CONFIG_FREERTOS_IDLE_TASK_STACKSIZE "1536") -set(CONFIG_FREERTOS_USE_IDLE_HOOK "") -set(CONFIG_FREERTOS_USE_TICK_HOOK "") -set(CONFIG_FREERTOS_MAX_TASK_NAME_LEN "16") -set(CONFIG_FREERTOS_ENABLE_BACKWARD_COMPATIBILITY "") -set(CONFIG_FREERTOS_USE_TIMERS "y") -set(CONFIG_FREERTOS_TIMER_SERVICE_TASK_NAME "Tmr Svc") -set(CONFIG_FREERTOS_TIMER_TASK_AFFINITY_CPU0 "") -set(CONFIG_FREERTOS_TIMER_TASK_NO_AFFINITY "y") -set(CONFIG_FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY "0x7fffffff") -set(CONFIG_FREERTOS_TIMER_TASK_PRIORITY "1") -set(CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH "2048") -set(CONFIG_FREERTOS_TIMER_QUEUE_LENGTH "10") -set(CONFIG_FREERTOS_QUEUE_REGISTRY_SIZE "0") -set(CONFIG_FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES "1") -set(CONFIG_FREERTOS_USE_TRACE_FACILITY "") -set(CONFIG_FREERTOS_USE_LIST_DATA_INTEGRITY_CHECK_BYTES "") -set(CONFIG_FREERTOS_GENERATE_RUN_TIME_STATS "") -set(CONFIG_FREERTOS_USE_APPLICATION_TASK_TAG "") -set(CONFIG_FREERTOS_WATCHPOINT_END_OF_STACK "") -set(CONFIG_FREERTOS_TLSP_DELETION_CALLBACKS "y") -set(CONFIG_FREERTOS_TASK_PRE_DELETION_HOOK "") -set(CONFIG_FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP "") -set(CONFIG_FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER "y") -set(CONFIG_FREERTOS_ISR_STACKSIZE "1536") -set(CONFIG_FREERTOS_INTERRUPT_BACKTRACE "y") -set(CONFIG_FREERTOS_TICK_SUPPORT_SYSTIMER "y") -set(CONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL1 "y") -set(CONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL3 "") -set(CONFIG_FREERTOS_SYSTICK_USES_SYSTIMER "y") -set(CONFIG_FREERTOS_PLACE_FUNCTIONS_INTO_FLASH "") -set(CONFIG_FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE "") -set(CONFIG_FREERTOS_PORT "y") -set(CONFIG_FREERTOS_NO_AFFINITY "0x7fffffff") -set(CONFIG_FREERTOS_SUPPORT_STATIC_ALLOCATION "y") -set(CONFIG_FREERTOS_DEBUG_OCDAWARE "y") -set(CONFIG_FREERTOS_ENABLE_TASK_SNAPSHOT "y") -set(CONFIG_FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH "y") -set(CONFIG_FREERTOS_NUMBER_OF_CORES "1") -set(CONFIG_FREERTOS_IN_IRAM "y") -set(CONFIG_HAL_ASSERTION_EQUALS_SYSTEM "y") -set(CONFIG_HAL_ASSERTION_DISABLE "") -set(CONFIG_HAL_ASSERTION_SILENT "") -set(CONFIG_HAL_DEFAULT_ASSERTION_LEVEL "1") -set(CONFIG_HAL_SYSTIMER_USE_ROM_IMPL "y") -set(CONFIG_HAL_WDT_USE_ROM_IMPL "y") -set(CONFIG_HAL_ECDSA_GEN_SIG_CM "") -set(CONFIG_HEAP_POISONING_DISABLED "y") -set(CONFIG_HEAP_POISONING_LIGHT "") -set(CONFIG_HEAP_POISONING_COMPREHENSIVE "") -set(CONFIG_HEAP_TRACING_OFF "y") -set(CONFIG_HEAP_TRACING_STANDALONE "") -set(CONFIG_HEAP_TRACING_TOHOST "") -set(CONFIG_HEAP_USE_HOOKS "") -set(CONFIG_HEAP_TASK_TRACKING "") -set(CONFIG_HEAP_ABORT_WHEN_ALLOCATION_FAILS "") -set(CONFIG_HEAP_TLSF_USE_ROM_IMPL "y") -set(CONFIG_HEAP_PLACE_FUNCTION_INTO_FLASH "") -set(CONFIG_IEEE802154_ENABLED "y") -set(CONFIG_IEEE802154_RX_BUFFER_SIZE "20") -set(CONFIG_IEEE802154_CCA_CARRIER "") -set(CONFIG_IEEE802154_CCA_ED "y") -set(CONFIG_IEEE802154_CCA_CARRIER_OR_ED "") -set(CONFIG_IEEE802154_CCA_CARRIER_AND_ED "") -set(CONFIG_IEEE802154_CCA_MODE "1") -set(CONFIG_IEEE802154_CCA_THRESHOLD "-60") -set(CONFIG_IEEE802154_PENDING_TABLE_SIZE "20") -set(CONFIG_IEEE802154_MULTI_PAN_ENABLE "") -set(CONFIG_IEEE802154_TIMING_OPTIMIZATION "y") -set(CONFIG_IEEE802154_DEBUG "") -set(CONFIG_IEEE802154_DEBUG_ASSERT_MONITOR "") -set(CONFIG_LOG_VERSION_1 "y") -set(CONFIG_LOG_VERSION_2 "") -set(CONFIG_LOG_VERSION "1") -set(CONFIG_LOG_DEFAULT_LEVEL_NONE "y") -set(CONFIG_LOG_DEFAULT_LEVEL_ERROR "") -set(CONFIG_LOG_DEFAULT_LEVEL_WARN "") -set(CONFIG_LOG_DEFAULT_LEVEL_INFO "") -set(CONFIG_LOG_DEFAULT_LEVEL_DEBUG "") -set(CONFIG_LOG_DEFAULT_LEVEL_VERBOSE "") -set(CONFIG_LOG_DEFAULT_LEVEL "0") -set(CONFIG_LOG_MAXIMUM_EQUALS_DEFAULT "y") -set(CONFIG_LOG_MAXIMUM_LEVEL_ERROR "") -set(CONFIG_LOG_MAXIMUM_LEVEL_WARN "") -set(CONFIG_LOG_MAXIMUM_LEVEL_INFO "") -set(CONFIG_LOG_MAXIMUM_LEVEL_DEBUG "") -set(CONFIG_LOG_MAXIMUM_LEVEL_VERBOSE "") -set(CONFIG_LOG_MAXIMUM_LEVEL "0") -set(CONFIG_LOG_MASTER_LEVEL "") -set(CONFIG_LOG_DYNAMIC_LEVEL_CONTROL "y") -set(CONFIG_LOG_TAG_LEVEL_IMPL_NONE "") -set(CONFIG_LOG_TAG_LEVEL_IMPL_LINKED_LIST "") -set(CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST "y") -set(CONFIG_LOG_TAG_LEVEL_CACHE_ARRAY "") -set(CONFIG_LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP "y") -set(CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_SIZE "31") -set(CONFIG_LOG_COLORS "") -set(CONFIG_LOG_TIMESTAMP_SOURCE_RTOS "y") -set(CONFIG_LOG_TIMESTAMP_SOURCE_SYSTEM "") -set(CONFIG_LOG_MODE_TEXT_EN "y") -set(CONFIG_LOG_MODE_TEXT "y") -set(CONFIG_LOG_IN_IRAM "y") -set(CONFIG_LWIP_ENABLE "y") -set(CONFIG_LWIP_LOCAL_HOSTNAME "espressif") -set(CONFIG_LWIP_TCPIP_TASK_PRIO "18") -set(CONFIG_LWIP_TCPIP_CORE_LOCKING "") -set(CONFIG_LWIP_CHECK_THREAD_SAFETY "") -set(CONFIG_LWIP_DNS_SUPPORT_MDNS_QUERIES "y") -set(CONFIG_LWIP_L2_TO_L3_COPY "") -set(CONFIG_LWIP_IRAM_OPTIMIZATION "") -set(CONFIG_LWIP_EXTRA_IRAM_OPTIMIZATION "") -set(CONFIG_LWIP_TIMERS_ONDEMAND "y") -set(CONFIG_LWIP_ND6 "y") -set(CONFIG_LWIP_FORCE_ROUTER_FORWARDING "") -set(CONFIG_LWIP_MAX_SOCKETS "10") -set(CONFIG_LWIP_USE_ONLY_LWIP_SELECT "") -set(CONFIG_LWIP_SO_LINGER "") -set(CONFIG_LWIP_SO_REUSE "y") -set(CONFIG_LWIP_SO_REUSE_RXTOALL "y") -set(CONFIG_LWIP_SO_RCVBUF "") -set(CONFIG_LWIP_NETBUF_RECVINFO "") -set(CONFIG_LWIP_IP_DEFAULT_TTL "64") -set(CONFIG_LWIP_IP4_FRAG "y") -set(CONFIG_LWIP_IP6_FRAG "y") -set(CONFIG_LWIP_IP4_REASSEMBLY "") -set(CONFIG_LWIP_IP6_REASSEMBLY "") -set(CONFIG_LWIP_IP_REASS_MAX_PBUFS "10") -set(CONFIG_LWIP_IP_FORWARD "") -set(CONFIG_LWIP_STATS "") -set(CONFIG_LWIP_ESP_GRATUITOUS_ARP "y") -set(CONFIG_LWIP_GARP_TMR_INTERVAL "60") -set(CONFIG_LWIP_ESP_MLDV6_REPORT "y") -set(CONFIG_LWIP_MLDV6_TMR_INTERVAL "40") -set(CONFIG_LWIP_TCPIP_RECVMBOX_SIZE "32") -set(CONFIG_LWIP_DHCP_DOES_ARP_CHECK "y") -set(CONFIG_LWIP_DHCP_DOES_ACD_CHECK "") -set(CONFIG_LWIP_DHCP_DOES_NOT_CHECK_OFFERED_IP "") -set(CONFIG_LWIP_DHCP_DISABLE_CLIENT_ID "") -set(CONFIG_LWIP_DHCP_DISABLE_VENDOR_CLASS_ID "y") -set(CONFIG_LWIP_DHCP_RESTORE_LAST_IP "") -set(CONFIG_LWIP_DHCP_OPTIONS_LEN "69") -set(CONFIG_LWIP_NUM_NETIF_CLIENT_DATA "0") -set(CONFIG_LWIP_DHCP_COARSE_TIMER_SECS "1") -set(CONFIG_LWIP_DHCPS "y") -set(CONFIG_LWIP_DHCPS_LEASE_UNIT "60") -set(CONFIG_LWIP_DHCPS_MAX_STATION_NUM "8") -set(CONFIG_LWIP_DHCPS_STATIC_ENTRIES "y") -set(CONFIG_LWIP_DHCPS_ADD_DNS "y") -set(CONFIG_LWIP_AUTOIP "") -set(CONFIG_LWIP_IPV4 "y") -set(CONFIG_LWIP_IPV6 "y") -set(CONFIG_LWIP_IPV6_AUTOCONFIG "") -set(CONFIG_LWIP_IPV6_NUM_ADDRESSES "3") -set(CONFIG_LWIP_IPV6_FORWARD "") -set(CONFIG_LWIP_NETIF_STATUS_CALLBACK "") -set(CONFIG_LWIP_NETIF_LOOPBACK "y") -set(CONFIG_LWIP_LOOPBACK_MAX_PBUFS "8") -set(CONFIG_LWIP_MAX_ACTIVE_TCP "16") -set(CONFIG_LWIP_MAX_LISTENING_TCP "16") -set(CONFIG_LWIP_TCP_HIGH_SPEED_RETRANSMISSION "y") -set(CONFIG_LWIP_TCP_MAXRTX "12") -set(CONFIG_LWIP_TCP_SYNMAXRTX "12") -set(CONFIG_LWIP_TCP_MSS "1440") -set(CONFIG_LWIP_TCP_TMR_INTERVAL "250") -set(CONFIG_LWIP_TCP_MSL "60000") -set(CONFIG_LWIP_TCP_FIN_WAIT_TIMEOUT "20000") -set(CONFIG_LWIP_TCP_SND_BUF_DEFAULT "5760") -set(CONFIG_LWIP_TCP_WND_DEFAULT "5760") -set(CONFIG_LWIP_TCP_RECVMBOX_SIZE "6") -set(CONFIG_LWIP_TCP_ACCEPTMBOX_SIZE "6") -set(CONFIG_LWIP_TCP_QUEUE_OOSEQ "y") -set(CONFIG_LWIP_TCP_OOSEQ_TIMEOUT "6") -set(CONFIG_LWIP_TCP_OOSEQ_MAX_PBUFS "4") -set(CONFIG_LWIP_TCP_SACK_OUT "") -set(CONFIG_LWIP_TCP_OVERSIZE_MSS "y") -set(CONFIG_LWIP_TCP_OVERSIZE_QUARTER_MSS "") -set(CONFIG_LWIP_TCP_OVERSIZE_DISABLE "") -set(CONFIG_LWIP_TCP_RTO_TIME "1500") -set(CONFIG_LWIP_MAX_UDP_PCBS "16") -set(CONFIG_LWIP_UDP_RECVMBOX_SIZE "6") -set(CONFIG_LWIP_CHECKSUM_CHECK_IP "") -set(CONFIG_LWIP_CHECKSUM_CHECK_UDP "") -set(CONFIG_LWIP_CHECKSUM_CHECK_ICMP "y") -set(CONFIG_LWIP_TCPIP_TASK_STACK_SIZE "3072") -set(CONFIG_LWIP_TCPIP_TASK_AFFINITY_NO_AFFINITY "y") -set(CONFIG_LWIP_TCPIP_TASK_AFFINITY_CPU0 "") -set(CONFIG_LWIP_TCPIP_TASK_AFFINITY "0x7fffffff") -set(CONFIG_LWIP_IPV6_MEMP_NUM_ND6_QUEUE "3") -set(CONFIG_LWIP_IPV6_ND6_NUM_NEIGHBORS "5") -set(CONFIG_LWIP_IPV6_ND6_NUM_PREFIXES "5") -set(CONFIG_LWIP_IPV6_ND6_NUM_ROUTERS "3") -set(CONFIG_LWIP_IPV6_ND6_NUM_DESTINATIONS "10") -set(CONFIG_LWIP_PPP_SUPPORT "") -set(CONFIG_LWIP_SLIP_SUPPORT "") -set(CONFIG_LWIP_ICMP "y") -set(CONFIG_LWIP_MULTICAST_PING "") -set(CONFIG_LWIP_BROADCAST_PING "") -set(CONFIG_LWIP_MAX_RAW_PCBS "16") -set(CONFIG_LWIP_SNTP_MAX_SERVERS "1") -set(CONFIG_LWIP_DHCP_GET_NTP_SRV "") -set(CONFIG_LWIP_SNTP_UPDATE_DELAY "3600000") -set(CONFIG_LWIP_SNTP_STARTUP_DELAY "y") -set(CONFIG_LWIP_SNTP_MAXIMUM_STARTUP_DELAY "5000") -set(CONFIG_LWIP_DNS_MAX_HOST_IP "1") -set(CONFIG_LWIP_DNS_MAX_SERVERS "3") -set(CONFIG_LWIP_FALLBACK_DNS_SERVER_SUPPORT "") -set(CONFIG_LWIP_DNS_SETSERVER_WITH_NETIF "") -set(CONFIG_LWIP_USE_ESP_GETADDRINFO "") -set(CONFIG_LWIP_BRIDGEIF_MAX_PORTS "7") -set(CONFIG_LWIP_ESP_LWIP_ASSERT "y") -set(CONFIG_LWIP_HOOK_TCP_ISN_NONE "") -set(CONFIG_LWIP_HOOK_TCP_ISN_DEFAULT "y") -set(CONFIG_LWIP_HOOK_TCP_ISN_CUSTOM "") -set(CONFIG_LWIP_HOOK_IP6_ROUTE_NONE "y") -set(CONFIG_LWIP_HOOK_IP6_ROUTE_DEFAULT "") -set(CONFIG_LWIP_HOOK_IP6_ROUTE_CUSTOM "") -set(CONFIG_LWIP_HOOK_ND6_GET_GW_NONE "y") -set(CONFIG_LWIP_HOOK_ND6_GET_GW_DEFAULT "") -set(CONFIG_LWIP_HOOK_ND6_GET_GW_CUSTOM "") -set(CONFIG_LWIP_HOOK_IP6_SELECT_SRC_ADDR_NONE "y") -set(CONFIG_LWIP_HOOK_IP6_SELECT_SRC_ADDR_DEFAULT "") -set(CONFIG_LWIP_HOOK_IP6_SELECT_SRC_ADDR_CUSTOM "") -set(CONFIG_LWIP_HOOK_DHCP_EXTRA_OPTION_NONE "y") -set(CONFIG_LWIP_HOOK_DHCP_EXTRA_OPTION_DEFAULT "") -set(CONFIG_LWIP_HOOK_DHCP_EXTRA_OPTION_CUSTOM "") -set(CONFIG_LWIP_HOOK_NETCONN_EXT_RESOLVE_NONE "y") -set(CONFIG_LWIP_HOOK_NETCONN_EXT_RESOLVE_DEFAULT "") -set(CONFIG_LWIP_HOOK_NETCONN_EXT_RESOLVE_CUSTOM "") -set(CONFIG_LWIP_HOOK_DNS_EXT_RESOLVE_NONE "y") -set(CONFIG_LWIP_HOOK_DNS_EXT_RESOLVE_CUSTOM "") -set(CONFIG_LWIP_HOOK_IP6_INPUT_NONE "") -set(CONFIG_LWIP_HOOK_IP6_INPUT_DEFAULT "y") -set(CONFIG_LWIP_HOOK_IP6_INPUT_CUSTOM "") -set(CONFIG_LWIP_DEBUG "") -set(CONFIG_MBEDTLS_INTERNAL_MEM_ALLOC "y") -set(CONFIG_MBEDTLS_DEFAULT_MEM_ALLOC "") -set(CONFIG_MBEDTLS_CUSTOM_MEM_ALLOC "") -set(CONFIG_MBEDTLS_ASYMMETRIC_CONTENT_LEN "y") -set(CONFIG_MBEDTLS_SSL_IN_CONTENT_LEN "16384") -set(CONFIG_MBEDTLS_SSL_OUT_CONTENT_LEN "4096") -set(CONFIG_MBEDTLS_DYNAMIC_BUFFER "") -set(CONFIG_MBEDTLS_DEBUG "") -set(CONFIG_MBEDTLS_SSL_PROTO_TLS1_3 "") -set(CONFIG_MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH "") -set(CONFIG_MBEDTLS_X509_TRUSTED_CERT_CALLBACK "") -set(CONFIG_MBEDTLS_SSL_CONTEXT_SERIALIZATION "") -set(CONFIG_MBEDTLS_SSL_KEEP_PEER_CERTIFICATE "y") -set(CONFIG_MBEDTLS_SSL_KEYING_MATERIAL_EXPORT "") -set(CONFIG_MBEDTLS_PKCS7_C "y") -set(CONFIG_MBEDTLS_CERTIFICATE_BUNDLE "y") -set(CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_FULL "y") -set(CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_CMN "") -set(CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_NONE "") -set(CONFIG_MBEDTLS_CUSTOM_CERTIFICATE_BUNDLE "") -set(CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEPRECATED_LIST "") -set(CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_MAX_CERTS "200") -set(CONFIG_MBEDTLS_ECP_RESTARTABLE "") -set(CONFIG_MBEDTLS_CMAC_C "") -set(CONFIG_MBEDTLS_HARDWARE_AES "y") -set(CONFIG_MBEDTLS_AES_USE_INTERRUPT "y") -set(CONFIG_MBEDTLS_AES_INTERRUPT_LEVEL "0") -set(CONFIG_MBEDTLS_AES_USE_PSEUDO_ROUND_FUNC "") -set(CONFIG_MBEDTLS_GCM_SUPPORT_NON_AES_CIPHER "y") -set(CONFIG_MBEDTLS_HARDWARE_MPI "y") -set(CONFIG_MBEDTLS_LARGE_KEY_SOFTWARE_MPI "y") -set(CONFIG_MBEDTLS_MPI_USE_INTERRUPT "y") -set(CONFIG_MBEDTLS_MPI_INTERRUPT_LEVEL "0") -set(CONFIG_MBEDTLS_HARDWARE_SHA "y") -set(CONFIG_MBEDTLS_HARDWARE_ECC "y") -set(CONFIG_MBEDTLS_ECC_OTHER_CURVES_SOFT_FALLBACK "y") -set(CONFIG_MBEDTLS_ROM_MD5 "y") -set(CONFIG_MBEDTLS_HARDWARE_ECDSA_SIGN "") -set(CONFIG_MBEDTLS_HARDWARE_ECDSA_VERIFY "y") -set(CONFIG_MBEDTLS_ATCA_HW_ECDSA_SIGN "") -set(CONFIG_MBEDTLS_ATCA_HW_ECDSA_VERIFY "") -set(CONFIG_MBEDTLS_HAVE_TIME "y") -set(CONFIG_MBEDTLS_PLATFORM_TIME_ALT "") -set(CONFIG_MBEDTLS_HAVE_TIME_DATE "") -set(CONFIG_MBEDTLS_ECDSA_DETERMINISTIC "y") -set(CONFIG_MBEDTLS_SHA1_C "y") -set(CONFIG_MBEDTLS_SHA512_C "y") -set(CONFIG_MBEDTLS_SHA3_C "") -set(CONFIG_MBEDTLS_TLS_SERVER_AND_CLIENT "y") -set(CONFIG_MBEDTLS_TLS_SERVER_ONLY "") -set(CONFIG_MBEDTLS_TLS_CLIENT_ONLY "") -set(CONFIG_MBEDTLS_TLS_DISABLED "") -set(CONFIG_MBEDTLS_TLS_SERVER "y") -set(CONFIG_MBEDTLS_TLS_CLIENT "y") -set(CONFIG_MBEDTLS_TLS_ENABLED "y") -set(CONFIG_MBEDTLS_PSK_MODES "") -set(CONFIG_MBEDTLS_KEY_EXCHANGE_RSA "y") -set(CONFIG_MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE "y") -set(CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_RSA "y") -set(CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA "y") -set(CONFIG_MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA "y") -set(CONFIG_MBEDTLS_KEY_EXCHANGE_ECDH_RSA "y") -set(CONFIG_MBEDTLS_SSL_RENEGOTIATION "y") -set(CONFIG_MBEDTLS_SSL_PROTO_TLS1_2 "y") -set(CONFIG_MBEDTLS_SSL_PROTO_GMTSSL1_1 "") -set(CONFIG_MBEDTLS_SSL_PROTO_DTLS "") -set(CONFIG_MBEDTLS_SSL_ALPN "y") -set(CONFIG_MBEDTLS_CLIENT_SSL_SESSION_TICKETS "y") -set(CONFIG_MBEDTLS_SERVER_SSL_SESSION_TICKETS "y") -set(CONFIG_MBEDTLS_AES_C "y") -set(CONFIG_MBEDTLS_CAMELLIA_C "") -set(CONFIG_MBEDTLS_DES_C "") -set(CONFIG_MBEDTLS_BLOWFISH_C "") -set(CONFIG_MBEDTLS_XTEA_C "") -set(CONFIG_MBEDTLS_CCM_C "y") -set(CONFIG_MBEDTLS_GCM_C "y") -set(CONFIG_MBEDTLS_NIST_KW_C "") -set(CONFIG_MBEDTLS_RIPEMD160_C "") -set(CONFIG_MBEDTLS_PEM_PARSE_C "y") -set(CONFIG_MBEDTLS_PEM_WRITE_C "y") -set(CONFIG_MBEDTLS_X509_CRL_PARSE_C "y") -set(CONFIG_MBEDTLS_X509_CSR_PARSE_C "y") -set(CONFIG_MBEDTLS_ECP_C "y") -set(CONFIG_MBEDTLS_PK_PARSE_EC_EXTENDED "y") -set(CONFIG_MBEDTLS_PK_PARSE_EC_COMPRESSED "y") -set(CONFIG_MBEDTLS_DHM_C "") -set(CONFIG_MBEDTLS_ECDH_C "y") -set(CONFIG_MBEDTLS_ECDSA_C "y") -set(CONFIG_MBEDTLS_ECJPAKE_C "") -set(CONFIG_MBEDTLS_ECP_DP_SECP192R1_ENABLED "y") -set(CONFIG_MBEDTLS_ECP_DP_SECP224R1_ENABLED "y") -set(CONFIG_MBEDTLS_ECP_DP_SECP256R1_ENABLED "y") -set(CONFIG_MBEDTLS_ECP_DP_SECP384R1_ENABLED "y") -set(CONFIG_MBEDTLS_ECP_DP_SECP521R1_ENABLED "y") -set(CONFIG_MBEDTLS_ECP_DP_SECP192K1_ENABLED "y") -set(CONFIG_MBEDTLS_ECP_DP_SECP224K1_ENABLED "y") -set(CONFIG_MBEDTLS_ECP_DP_SECP256K1_ENABLED "y") -set(CONFIG_MBEDTLS_ECP_DP_BP256R1_ENABLED "y") -set(CONFIG_MBEDTLS_ECP_DP_BP384R1_ENABLED "y") -set(CONFIG_MBEDTLS_ECP_DP_BP512R1_ENABLED "y") -set(CONFIG_MBEDTLS_ECP_DP_CURVE25519_ENABLED "y") -set(CONFIG_MBEDTLS_ECP_NIST_OPTIM "y") -set(CONFIG_MBEDTLS_ECP_FIXED_POINT_OPTIM "") -set(CONFIG_MBEDTLS_POLY1305_C "") -set(CONFIG_MBEDTLS_CHACHA20_C "") -set(CONFIG_MBEDTLS_HKDF_C "") -set(CONFIG_MBEDTLS_THREADING_C "") -set(CONFIG_MBEDTLS_ERROR_STRINGS "y") -set(CONFIG_MBEDTLS_FS_IO "y") -set(CONFIG_MBEDTLS_ALLOW_WEAK_CERTIFICATE_VERIFICATION "") -set(CONFIG_LIBC_NEWLIB "y") -set(CONFIG_LIBC_MISC_IN_IRAM "y") -set(CONFIG_LIBC_LOCKS_PLACE_IN_IRAM "y") -set(CONFIG_LIBC_STDOUT_LINE_ENDING_CRLF "y") -set(CONFIG_LIBC_STDOUT_LINE_ENDING_LF "") -set(CONFIG_LIBC_STDOUT_LINE_ENDING_CR "") -set(CONFIG_LIBC_STDIN_LINE_ENDING_CRLF "") -set(CONFIG_LIBC_STDIN_LINE_ENDING_LF "") -set(CONFIG_LIBC_STDIN_LINE_ENDING_CR "y") -set(CONFIG_LIBC_NEWLIB_NANO_FORMAT "y") -set(CONFIG_LIBC_TIME_SYSCALL_USE_RTC_HRT "y") -set(CONFIG_LIBC_TIME_SYSCALL_USE_RTC "") -set(CONFIG_LIBC_TIME_SYSCALL_USE_HRT "") -set(CONFIG_LIBC_TIME_SYSCALL_USE_NONE "") -set(CONFIG_LIBC_OPTIMIZED_MISALIGNED_ACCESS "") -set(CONFIG_NVS_ENCRYPTION "") -set(CONFIG_NVS_ASSERT_ERROR_CHECK "") -set(CONFIG_NVS_LEGACY_DUP_KEYS_COMPATIBILITY "") -set(CONFIG_OPENTHREAD_ENABLED "y") -set(CONFIG_OPENTHREAD_PACKAGE_NAME "openthread-esp32") -set(CONFIG_OPENTHREAD_PLATFORM_INFO "esp32h2") -set(CONFIG_OPENTHREAD_CONSOLE_TYPE_UART "y") -set(CONFIG_OPENTHREAD_CONSOLE_TYPE_USB_SERIAL_JTAG "") -set(CONFIG_OPENTHREAD_CLI "") -set(CONFIG_OPENTHREAD_CONSOLE_COMMAND_PREFIX "ot") -set(CONFIG_OPENTHREAD_NETWORK_NAME "OpenThread-ESP") -set(CONFIG_OPENTHREAD_MESH_LOCAL_PREFIX "fd00:db8:a0:0::/64") -set(CONFIG_OPENTHREAD_NETWORK_CHANNEL "15") -set(CONFIG_OPENTHREAD_NETWORK_PANID "0x1234") -set(CONFIG_OPENTHREAD_NETWORK_EXTPANID "dead00beef00cafe") -set(CONFIG_OPENTHREAD_NETWORK_MASTERKEY "00112233445566778899aabbccddeeff") -set(CONFIG_OPENTHREAD_NETWORK_PSKC "104810e2315100afd6bc9215a6bfac53") -set(CONFIG_OPENTHREAD_FTD "") -set(CONFIG_OPENTHREAD_MTD "") -set(CONFIG_OPENTHREAD_RADIO "y") -set(CONFIG_OPENTHREAD_RADIO_NATIVE "y") -set(CONFIG_OPENTHREAD_RADIO_SPINEL_UART "") -set(CONFIG_OPENTHREAD_RADIO_SPINEL_SPI "") -set(CONFIG_OPENTHREAD_RADIO_154_NONE "") -set(CONFIG_OPENTHREAD_RCP_UART "y") -set(CONFIG_OPENTHREAD_RCP_SPI "") -set(CONFIG_OPENTHREAD_RCP_USB_SERIAL_JTAG "") -set(CONFIG_OPENTHREAD_NCP_VENDOR_HOOK "y") -set(CONFIG_OPENTHREAD_COMMISSIONER "") -set(CONFIG_OPENTHREAD_JOINER "") -set(CONFIG_OPENTHREAD_SRP_CLIENT "") -set(CONFIG_OPENTHREAD_DNS_CLIENT "") -set(CONFIG_OPENTHREAD_DNS64_CLIENT "") -set(CONFIG_OPENTHREAD_LINK_METRICS "") -set(CONFIG_OPENTHREAD_BORDER_AGENT_ENABLE "") -set(CONFIG_OPENTHREAD_MACFILTER_ENABLE "") -set(CONFIG_OPENTHREAD_CSL_ENABLE "") -set(CONFIG_OPENTHREAD_CSL_ACCURACY "50") -set(CONFIG_OPENTHREAD_CSL_UNCERTAIN "0") -set(CONFIG_OPENTHREAD_CSL_DEBUG_ENABLE "") -set(CONFIG_OPENTHREAD_TIME_SYNC "") -set(CONFIG_OPENTHREAD_RX_ON_WHEN_IDLE "y") -set(CONFIG_OPENTHREAD_DIAG "") -set(CONFIG_OPENTHREAD_PREFERRED_CHANNEL_MASK "0x7fff800") -set(CONFIG_OPENTHREAD_SUPPORTED_CHANNEL_MASK "0x7fff800") -set(CONFIG_OPENTHREAD_NUM_MESSAGE_BUFFERS "65") -set(CONFIG_OPENTHREAD_XTAL_ACCURACY "10") -set(CONFIG_OPENTHREAD_BUS_LATENCY "4000") -set(CONFIG_OPENTHREAD_MLE_MAX_CHILDREN "10") -set(CONFIG_OPENTHREAD_TMF_ADDR_CACHE_ENTRIES "20") -set(CONFIG_OPENTHREAD_UART_BUFFER_SIZE "2048") -set(CONFIG_OPENTHREAD_MAC_MAX_CSMA_BACKOFFS_DIRECT "4") -set(CONFIG_OPENTHREAD_LOG_LEVEL_DYNAMIC "") -set(CONFIG_OPENTHREAD_LOG_LEVEL_NONE "y") -set(CONFIG_OPENTHREAD_LOG_LEVEL_CRIT "") -set(CONFIG_OPENTHREAD_LOG_LEVEL_WARN "") -set(CONFIG_OPENTHREAD_LOG_LEVEL_NOTE "") -set(CONFIG_OPENTHREAD_LOG_LEVEL_INFO "") -set(CONFIG_OPENTHREAD_LOG_LEVEL_DEBG "") -set(CONFIG_OPENTHREAD_LOG_LEVEL "0") -set(CONFIG_OPENTHREAD_HEADER_CUSTOM "") -set(CONFIG_OPENTHREAD_SPINEL_ONLY "") -set(CONFIG_OPENTHREAD_SPINEL_RX_FRAME_BUFFER_SIZE "1024") -set(CONFIG_PTHREAD_TASK_PRIO_DEFAULT "5") -set(CONFIG_PTHREAD_TASK_STACK_SIZE_DEFAULT "3072") -set(CONFIG_PTHREAD_STACK_MIN "768") -set(CONFIG_PTHREAD_TASK_CORE_DEFAULT "-1") -set(CONFIG_PTHREAD_TASK_NAME_DEFAULT "pthread") -set(CONFIG_MMU_PAGE_SIZE_32KB "y") -set(CONFIG_MMU_PAGE_MODE "32KB") -set(CONFIG_MMU_PAGE_SIZE "0x8000") -set(CONFIG_SPI_FLASH_BROWNOUT_RESET_XMC "y") -set(CONFIG_SPI_FLASH_BROWNOUT_RESET "y") -set(CONFIG_SPI_FLASH_AUTO_SUSPEND "") -set(CONFIG_SPI_FLASH_SUSPEND_TSUS_VAL_US "50") -set(CONFIG_SPI_FLASH_FORCE_ENABLE_XMC_C_SUSPEND "") -set(CONFIG_SPI_FLASH_FORCE_ENABLE_C6_H2_SUSPEND "") -set(CONFIG_SPI_FLASH_PLACE_FUNCTIONS_IN_IRAM "y") -set(CONFIG_SPI_FLASH_VERIFY_WRITE "") -set(CONFIG_SPI_FLASH_ENABLE_COUNTERS "") -set(CONFIG_SPI_FLASH_ROM_DRIVER_PATCH "y") -set(CONFIG_SPI_FLASH_ROM_IMPL "") -set(CONFIG_SPI_FLASH_DANGEROUS_WRITE_ABORTS "y") -set(CONFIG_SPI_FLASH_DANGEROUS_WRITE_FAILS "") -set(CONFIG_SPI_FLASH_DANGEROUS_WRITE_ALLOWED "") -set(CONFIG_SPI_FLASH_BYPASS_BLOCK_ERASE "") -set(CONFIG_SPI_FLASH_YIELD_DURING_ERASE "y") -set(CONFIG_SPI_FLASH_ERASE_YIELD_DURATION_MS "20") -set(CONFIG_SPI_FLASH_ERASE_YIELD_TICKS "1") -set(CONFIG_SPI_FLASH_WRITE_CHUNK_SIZE "8192") -set(CONFIG_SPI_FLASH_SIZE_OVERRIDE "") -set(CONFIG_SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED "") -set(CONFIG_SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST "") -set(CONFIG_SPI_FLASH_VENDOR_XMC_SUPPORT_ENABLED "y") -set(CONFIG_SPI_FLASH_VENDOR_GD_SUPPORT_ENABLED "y") -set(CONFIG_SPI_FLASH_SUPPORT_ISSI_CHIP "") -set(CONFIG_SPI_FLASH_SUPPORT_MXIC_CHIP "") -set(CONFIG_SPI_FLASH_SUPPORT_GD_CHIP "y") -set(CONFIG_SPI_FLASH_SUPPORT_WINBOND_CHIP "") -set(CONFIG_SPI_FLASH_SUPPORT_BOYA_CHIP "") -set(CONFIG_SPI_FLASH_SUPPORT_TH_CHIP "") -set(CONFIG_SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE "y") -set(CONFIG_VFS_SUPPORT_IO "y") -set(CONFIG_VFS_SUPPORT_DIR "y") -set(CONFIG_VFS_SUPPORT_SELECT "y") -set(CONFIG_VFS_SUPPRESS_SELECT_DEBUG_OUTPUT "y") -set(CONFIG_VFS_SELECT_IN_RAM "y") -set(CONFIG_VFS_SUPPORT_TERMIOS "y") -set(CONFIG_VFS_MAX_COUNT "8") -set(CONFIG_VFS_SEMIHOSTFS_MAX_MOUNT_POINTS "1") -set(CONFIG_VFS_INITIALIZE_DEV_NULL "y") -set(CONFIG_IDF_EXPERIMENTAL_FEATURES "") -set(CONFIGS_LIST CONFIG_SOC_CAPS_ECO_VER_MAX;CONFIG_SOC_ADC_SUPPORTED;CONFIG_SOC_ANA_CMPR_SUPPORTED;CONFIG_SOC_DEDICATED_GPIO_SUPPORTED;CONFIG_SOC_UART_SUPPORTED;CONFIG_SOC_UHCI_SUPPORTED;CONFIG_SOC_GDMA_SUPPORTED;CONFIG_SOC_AHB_GDMA_SUPPORTED;CONFIG_SOC_ASYNC_MEMCPY_SUPPORTED;CONFIG_SOC_PCNT_SUPPORTED;CONFIG_SOC_MCPWM_SUPPORTED;CONFIG_SOC_TWAI_SUPPORTED;CONFIG_SOC_PHY_SUPPORTED;CONFIG_SOC_BT_SUPPORTED;CONFIG_SOC_GPTIMER_SUPPORTED;CONFIG_SOC_IEEE802154_SUPPORTED;CONFIG_SOC_IEEE802154_BLE_ONLY;CONFIG_SOC_USB_SERIAL_JTAG_SUPPORTED;CONFIG_SOC_TEMP_SENSOR_SUPPORTED;CONFIG_SOC_SUPPORTS_SECURE_DL_MODE;CONFIG_SOC_EFUSE_KEY_PURPOSE_FIELD;CONFIG_SOC_EFUSE_SUPPORTED;CONFIG_SOC_RTC_FAST_MEM_SUPPORTED;CONFIG_SOC_RTC_MEM_SUPPORTED;CONFIG_SOC_I2S_SUPPORTED;CONFIG_SOC_SDM_SUPPORTED;CONFIG_SOC_ETM_SUPPORTED;CONFIG_SOC_RMT_SUPPORTED;CONFIG_SOC_PARLIO_SUPPORTED;CONFIG_SOC_GPSPI_SUPPORTED;CONFIG_SOC_LEDC_SUPPORTED;CONFIG_SOC_I2C_SUPPORTED;CONFIG_SOC_SYSTIMER_SUPPORTED;CONFIG_SOC_SUPPORT_COEXISTENCE;CONFIG_SOC_AES_SUPPORTED;CONFIG_SOC_MPI_SUPPORTED;CONFIG_SOC_SHA_SUPPORTED;CONFIG_SOC_HMAC_SUPPORTED;CONFIG_SOC_DIG_SIGN_SUPPORTED;CONFIG_SOC_ECC_SUPPORTED;CONFIG_SOC_ECC_EXTENDED_MODES_SUPPORTED;CONFIG_SOC_ECDSA_SUPPORTED;CONFIG_SOC_FLASH_ENC_SUPPORTED;CONFIG_SOC_SECURE_BOOT_SUPPORTED;CONFIG_SOC_BOD_SUPPORTED;CONFIG_SOC_VBAT_SUPPORTED;CONFIG_SOC_APM_SUPPORTED;CONFIG_SOC_PMU_SUPPORTED;CONFIG_SOC_LP_TIMER_SUPPORTED;CONFIG_SOC_LP_AON_SUPPORTED;CONFIG_SOC_PAU_SUPPORTED;CONFIG_SOC_CLK_TREE_SUPPORTED;CONFIG_SOC_ASSIST_DEBUG_SUPPORTED;CONFIG_SOC_WDT_SUPPORTED;CONFIG_SOC_SPI_FLASH_SUPPORTED;CONFIG_SOC_RNG_SUPPORTED;CONFIG_SOC_LIGHT_SLEEP_SUPPORTED;CONFIG_SOC_DEEP_SLEEP_SUPPORTED;CONFIG_SOC_MODEM_CLOCK_SUPPORTED;CONFIG_SOC_PM_SUPPORTED;CONFIG_SOC_XTAL_SUPPORT_32M;CONFIG_SOC_XTAL_CLOCK_PATH_DEPENDS_ON_TOP_DOMAIN;CONFIG_SOC_AES_SUPPORT_DMA;CONFIG_SOC_AES_GDMA;CONFIG_SOC_AES_SUPPORT_AES_128;CONFIG_SOC_AES_SUPPORT_AES_256;CONFIG_SOC_AES_SUPPORT_PSEUDO_ROUND_FUNCTION;CONFIG_SOC_ADC_DIG_CTRL_SUPPORTED;CONFIG_SOC_ADC_DIG_IIR_FILTER_SUPPORTED;CONFIG_SOC_ADC_MONITOR_SUPPORTED;CONFIG_SOC_ADC_DMA_SUPPORTED;CONFIG_SOC_ADC_PERIPH_NUM;CONFIG_SOC_ADC_MAX_CHANNEL_NUM;CONFIG_SOC_ADC_ATTEN_NUM;CONFIG_SOC_ADC_DIGI_CONTROLLER_NUM;CONFIG_SOC_ADC_PATT_LEN_MAX;CONFIG_SOC_ADC_DIGI_MAX_BITWIDTH;CONFIG_SOC_ADC_DIGI_MIN_BITWIDTH;CONFIG_SOC_ADC_DIGI_IIR_FILTER_NUM;CONFIG_SOC_ADC_DIGI_MONITOR_NUM;CONFIG_SOC_ADC_DIGI_RESULT_BYTES;CONFIG_SOC_ADC_DIGI_DATA_BYTES_PER_CONV;CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_HIGH;CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_LOW;CONFIG_SOC_ADC_RTC_MIN_BITWIDTH;CONFIG_SOC_ADC_RTC_MAX_BITWIDTH;CONFIG_SOC_ADC_CALIBRATION_V1_SUPPORTED;CONFIG_SOC_ADC_SELF_HW_CALI_SUPPORTED;CONFIG_SOC_ADC_CALIB_CHAN_COMPENS_SUPPORTED;CONFIG_SOC_ADC_TEMPERATURE_SHARE_INTR;CONFIG_SOC_ADC_SHARED_POWER;CONFIG_SOC_BROWNOUT_RESET_SUPPORTED;CONFIG_SOC_SHARED_IDCACHE_SUPPORTED;CONFIG_SOC_CACHE_FREEZE_SUPPORTED;CONFIG_SOC_CPU_CORES_NUM;CONFIG_SOC_CPU_INTR_NUM;CONFIG_SOC_CPU_HAS_FLEXIBLE_INTC;CONFIG_SOC_INT_PLIC_SUPPORTED;CONFIG_SOC_CPU_HAS_CSR_PC;CONFIG_SOC_CPU_BREAKPOINTS_NUM;CONFIG_SOC_CPU_WATCHPOINTS_NUM;CONFIG_SOC_CPU_WATCHPOINT_MAX_REGION_SIZE;CONFIG_SOC_CPU_HAS_PMA;CONFIG_SOC_CPU_IDRAM_SPLIT_USING_PMP;CONFIG_SOC_CPU_PMP_REGION_GRANULARITY;CONFIG_SOC_MMU_PAGE_SIZE_CONFIGURABLE;CONFIG_SOC_MMU_PAGE_SIZE_8KB_SUPPORTED;CONFIG_SOC_MMU_PERIPH_NUM;CONFIG_SOC_MMU_LINEAR_ADDRESS_REGION_NUM;CONFIG_SOC_MMU_DI_VADDR_SHARED;CONFIG_SOC_DS_SIGNATURE_MAX_BIT_LEN;CONFIG_SOC_DS_KEY_PARAM_MD_IV_LENGTH;CONFIG_SOC_DS_KEY_CHECK_MAX_WAIT_US;CONFIG_SOC_AHB_GDMA_VERSION;CONFIG_SOC_GDMA_NUM_GROUPS_MAX;CONFIG_SOC_GDMA_PAIRS_PER_GROUP_MAX;CONFIG_SOC_GDMA_SUPPORT_ETM;CONFIG_SOC_GDMA_SUPPORT_SLEEP_RETENTION;CONFIG_SOC_ETM_GROUPS;CONFIG_SOC_ETM_CHANNELS_PER_GROUP;CONFIG_SOC_ETM_SUPPORT_SLEEP_RETENTION;CONFIG_SOC_GPIO_PORT;CONFIG_SOC_GPIO_PIN_COUNT;CONFIG_SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER;CONFIG_SOC_GPIO_FLEX_GLITCH_FILTER_NUM;CONFIG_SOC_GPIO_SUPPORT_PIN_HYS_FILTER;CONFIG_SOC_GPIO_SUPPORT_PIN_HYS_CTRL_BY_EFUSE;CONFIG_SOC_GPIO_SUPPORT_ETM;CONFIG_SOC_GPIO_SUPPORT_RTC_INDEPENDENT;CONFIG_SOC_LP_IO_CLOCK_IS_INDEPENDENT;CONFIG_SOC_GPIO_IN_RANGE_MAX;CONFIG_SOC_GPIO_OUT_RANGE_MAX;CONFIG_SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK;CONFIG_SOC_GPIO_SUPPORT_FORCE_HOLD;CONFIG_SOC_GPIO_SUPPORT_HOLD_IO_IN_DSLP;CONFIG_SOC_GPIO_SUPPORT_HOLD_SINGLE_IO_IN_DSLP;CONFIG_SOC_GPIO_CLOCKOUT_BY_GPIO_MATRIX;CONFIG_SOC_CLOCKOUT_HAS_SOURCE_GATE;CONFIG_SOC_GPIO_CLOCKOUT_CHANNEL_NUM;CONFIG_SOC_RTCIO_PIN_COUNT;CONFIG_SOC_RTCIO_HOLD_SUPPORTED;CONFIG_SOC_DEDIC_GPIO_OUT_CHANNELS_NUM;CONFIG_SOC_DEDIC_GPIO_IN_CHANNELS_NUM;CONFIG_SOC_DEDIC_PERIPH_ALWAYS_ENABLE;CONFIG_SOC_ANA_CMPR_NUM;CONFIG_SOC_ANA_CMPR_INTR_SHARE_WITH_GPIO;CONFIG_SOC_I2C_NUM;CONFIG_SOC_HP_I2C_NUM;CONFIG_SOC_I2C_FIFO_LEN;CONFIG_SOC_I2C_CMD_REG_NUM;CONFIG_SOC_I2C_SUPPORT_SLAVE;CONFIG_SOC_I2C_SUPPORT_HW_FSM_RST;CONFIG_SOC_I2C_SUPPORT_HW_CLR_BUS;CONFIG_SOC_I2C_SUPPORT_XTAL;CONFIG_SOC_I2C_SUPPORT_RTC;CONFIG_SOC_I2C_SUPPORT_10BIT_ADDR;CONFIG_SOC_I2C_SLAVE_SUPPORT_BROADCAST;CONFIG_SOC_I2C_SLAVE_CAN_GET_STRETCH_CAUSE;CONFIG_SOC_I2C_SLAVE_SUPPORT_I2CRAM_ACCESS;CONFIG_SOC_I2C_SLAVE_SUPPORT_SLAVE_UNMATCH;CONFIG_SOC_I2C_SUPPORT_SLEEP_RETENTION;CONFIG_SOC_I2S_NUM;CONFIG_SOC_I2S_HW_VERSION_2;CONFIG_SOC_I2S_SUPPORTS_ETM;CONFIG_SOC_I2S_SUPPORTS_XTAL;CONFIG_SOC_I2S_SUPPORTS_PLL_F96M;CONFIG_SOC_I2S_SUPPORTS_PLL_F64M;CONFIG_SOC_I2S_SUPPORTS_PCM;CONFIG_SOC_I2S_SUPPORTS_PDM;CONFIG_SOC_I2S_SUPPORTS_PDM_TX;CONFIG_SOC_I2S_SUPPORTS_PCM2PDM;CONFIG_SOC_I2S_SUPPORTS_PDM_RX;CONFIG_SOC_I2S_PDM_MAX_TX_LINES;CONFIG_SOC_I2S_PDM_MAX_RX_LINES;CONFIG_SOC_I2S_SUPPORTS_TDM;CONFIG_SOC_I2S_TDM_FULL_DATA_WIDTH;CONFIG_SOC_I2S_SUPPORT_SLEEP_RETENTION;CONFIG_SOC_LEDC_SUPPORT_PLL_DIV_CLOCK;CONFIG_SOC_LEDC_SUPPORT_XTAL_CLOCK;CONFIG_SOC_LEDC_TIMER_NUM;CONFIG_SOC_LEDC_CHANNEL_NUM;CONFIG_SOC_LEDC_TIMER_BIT_WIDTH;CONFIG_SOC_LEDC_SUPPORT_FADE_STOP;CONFIG_SOC_LEDC_GAMMA_CURVE_FADE_SUPPORTED;CONFIG_SOC_LEDC_GAMMA_CURVE_FADE_RANGE_MAX;CONFIG_SOC_LEDC_FADE_PARAMS_BIT_WIDTH;CONFIG_SOC_LEDC_SUPPORT_SLEEP_RETENTION;CONFIG_SOC_MPU_MIN_REGION_SIZE;CONFIG_SOC_MPU_REGIONS_MAX_NUM;CONFIG_SOC_PCNT_GROUPS;CONFIG_SOC_PCNT_UNITS_PER_GROUP;CONFIG_SOC_PCNT_CHANNELS_PER_UNIT;CONFIG_SOC_PCNT_THRES_POINT_PER_UNIT;CONFIG_SOC_PCNT_SUPPORT_RUNTIME_THRES_UPDATE;CONFIG_SOC_PCNT_SUPPORT_STEP_NOTIFY;CONFIG_SOC_PCNT_SUPPORT_SLEEP_RETENTION;CONFIG_SOC_RMT_GROUPS;CONFIG_SOC_RMT_TX_CANDIDATES_PER_GROUP;CONFIG_SOC_RMT_RX_CANDIDATES_PER_GROUP;CONFIG_SOC_RMT_CHANNELS_PER_GROUP;CONFIG_SOC_RMT_MEM_WORDS_PER_CHANNEL;CONFIG_SOC_RMT_SUPPORT_RX_PINGPONG;CONFIG_SOC_RMT_SUPPORT_RX_DEMODULATION;CONFIG_SOC_RMT_SUPPORT_TX_ASYNC_STOP;CONFIG_SOC_RMT_SUPPORT_TX_LOOP_COUNT;CONFIG_SOC_RMT_SUPPORT_TX_LOOP_AUTO_STOP;CONFIG_SOC_RMT_SUPPORT_TX_SYNCHRO;CONFIG_SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY;CONFIG_SOC_RMT_SUPPORT_XTAL;CONFIG_SOC_RMT_SUPPORT_RC_FAST;CONFIG_SOC_RMT_SUPPORT_SLEEP_RETENTION;CONFIG_SOC_MCPWM_GROUPS;CONFIG_SOC_MCPWM_TIMERS_PER_GROUP;CONFIG_SOC_MCPWM_OPERATORS_PER_GROUP;CONFIG_SOC_MCPWM_COMPARATORS_PER_OPERATOR;CONFIG_SOC_MCPWM_GENERATORS_PER_OPERATOR;CONFIG_SOC_MCPWM_TRIGGERS_PER_OPERATOR;CONFIG_SOC_MCPWM_GPIO_FAULTS_PER_GROUP;CONFIG_SOC_MCPWM_CAPTURE_TIMERS_PER_GROUP;CONFIG_SOC_MCPWM_CAPTURE_CHANNELS_PER_TIMER;CONFIG_SOC_MCPWM_GPIO_SYNCHROS_PER_GROUP;CONFIG_SOC_MCPWM_SWSYNC_CAN_PROPAGATE;CONFIG_SOC_MCPWM_SUPPORT_ETM;CONFIG_SOC_MCPWM_CAPTURE_CLK_FROM_GROUP;CONFIG_SOC_MCPWM_SUPPORT_SLEEP_RETENTION;CONFIG_SOC_PARLIO_GROUPS;CONFIG_SOC_PARLIO_TX_UNITS_PER_GROUP;CONFIG_SOC_PARLIO_RX_UNITS_PER_GROUP;CONFIG_SOC_PARLIO_TX_UNIT_MAX_DATA_WIDTH;CONFIG_SOC_PARLIO_RX_UNIT_MAX_DATA_WIDTH;CONFIG_SOC_PARLIO_TX_CLK_SUPPORT_GATING;CONFIG_SOC_PARLIO_RX_CLK_SUPPORT_GATING;CONFIG_SOC_PARLIO_RX_CLK_SUPPORT_OUTPUT;CONFIG_SOC_PARLIO_TRANS_BIT_ALIGN;CONFIG_SOC_PARLIO_TX_SUPPORT_LOOP_TRANSMISSION;CONFIG_SOC_PARLIO_SUPPORT_SLEEP_RETENTION;CONFIG_SOC_PARLIO_SUPPORT_SPI_LCD;CONFIG_SOC_MPI_MEM_BLOCKS_NUM;CONFIG_SOC_MPI_OPERATIONS_NUM;CONFIG_SOC_RSA_MAX_BIT_LEN;CONFIG_SOC_SHA_DMA_MAX_BUFFER_SIZE;CONFIG_SOC_SHA_SUPPORT_DMA;CONFIG_SOC_SHA_SUPPORT_RESUME;CONFIG_SOC_SHA_GDMA;CONFIG_SOC_SHA_SUPPORT_SHA1;CONFIG_SOC_SHA_SUPPORT_SHA224;CONFIG_SOC_SHA_SUPPORT_SHA256;CONFIG_SOC_SDM_GROUPS;CONFIG_SOC_SDM_CHANNELS_PER_GROUP;CONFIG_SOC_SDM_CLK_SUPPORT_PLL_F48M;CONFIG_SOC_SDM_CLK_SUPPORT_XTAL;CONFIG_SOC_SPI_PERIPH_NUM;CONFIG_SOC_SPI_MAX_CS_NUM;CONFIG_SOC_SPI_MAXIMUM_BUFFER_SIZE;CONFIG_SOC_SPI_SUPPORT_DDRCLK;CONFIG_SOC_SPI_SLAVE_SUPPORT_SEG_TRANS;CONFIG_SOC_SPI_SUPPORT_CD_SIG;CONFIG_SOC_SPI_SUPPORT_CONTINUOUS_TRANS;CONFIG_SOC_SPI_SUPPORT_SLAVE_HD_VER2;CONFIG_SOC_SPI_SUPPORT_SLEEP_RETENTION;CONFIG_SOC_SPI_SUPPORT_CLK_XTAL;CONFIG_SOC_SPI_SUPPORT_CLK_PLL_F48M;CONFIG_SOC_SPI_SUPPORT_CLK_RC_FAST;CONFIG_SOC_SPI_SCT_SUPPORTED;CONFIG_SOC_SPI_SCT_REG_NUM;CONFIG_SOC_SPI_SCT_BUFFER_NUM_MAX;CONFIG_SOC_SPI_SCT_CONF_BITLEN_MAX;CONFIG_SOC_MEMSPI_IS_INDEPENDENT;CONFIG_SOC_SPI_MAX_PRE_DIVIDER;CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE;CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND;CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_RESUME;CONFIG_SOC_SPI_MEM_SUPPORT_IDLE_INTR;CONFIG_SOC_SPI_MEM_SUPPORT_SW_SUSPEND;CONFIG_SOC_SPI_MEM_SUPPORT_CHECK_SUS;CONFIG_SOC_SPI_MEM_SUPPORT_WRAP;CONFIG_SOC_MEMSPI_SRC_FREQ_64M_SUPPORTED;CONFIG_SOC_MEMSPI_SRC_FREQ_32M_SUPPORTED;CONFIG_SOC_MEMSPI_SRC_FREQ_16M_SUPPORTED;CONFIG_SOC_SYSTIMER_COUNTER_NUM;CONFIG_SOC_SYSTIMER_ALARM_NUM;CONFIG_SOC_SYSTIMER_BIT_WIDTH_LO;CONFIG_SOC_SYSTIMER_BIT_WIDTH_HI;CONFIG_SOC_SYSTIMER_FIXED_DIVIDER;CONFIG_SOC_SYSTIMER_SUPPORT_RC_FAST;CONFIG_SOC_SYSTIMER_INT_LEVEL;CONFIG_SOC_SYSTIMER_ALARM_MISS_COMPENSATE;CONFIG_SOC_SYSTIMER_SUPPORT_ETM;CONFIG_SOC_LP_TIMER_BIT_WIDTH_LO;CONFIG_SOC_LP_TIMER_BIT_WIDTH_HI;CONFIG_SOC_TIMER_GROUPS;CONFIG_SOC_TIMER_GROUP_TIMERS_PER_GROUP;CONFIG_SOC_TIMER_GROUP_COUNTER_BIT_WIDTH;CONFIG_SOC_TIMER_GROUP_SUPPORT_XTAL;CONFIG_SOC_TIMER_GROUP_SUPPORT_RC_FAST;CONFIG_SOC_TIMER_GROUP_TOTAL_TIMERS;CONFIG_SOC_TIMER_SUPPORT_ETM;CONFIG_SOC_TIMER_SUPPORT_SLEEP_RETENTION;CONFIG_SOC_MWDT_SUPPORT_XTAL;CONFIG_SOC_MWDT_SUPPORT_SLEEP_RETENTION;CONFIG_SOC_TWAI_CONTROLLER_NUM;CONFIG_SOC_TWAI_MASK_FILTER_NUM;CONFIG_SOC_TWAI_CLK_SUPPORT_XTAL;CONFIG_SOC_TWAI_BRP_MIN;CONFIG_SOC_TWAI_BRP_MAX;CONFIG_SOC_TWAI_SUPPORTS_RX_STATUS;CONFIG_SOC_TWAI_SUPPORT_SLEEP_RETENTION;CONFIG_SOC_EFUSE_DIS_PAD_JTAG;CONFIG_SOC_EFUSE_DIS_USB_JTAG;CONFIG_SOC_EFUSE_DIS_DIRECT_BOOT;CONFIG_SOC_EFUSE_SOFT_DIS_JTAG;CONFIG_SOC_EFUSE_DIS_ICACHE;CONFIG_SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK;CONFIG_SOC_EFUSE_ECDSA_USE_HARDWARE_K;CONFIG_SOC_EFUSE_ECDSA_KEY;CONFIG_SOC_SECURE_BOOT_V2_RSA;CONFIG_SOC_SECURE_BOOT_V2_ECC;CONFIG_SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS;CONFIG_SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS;CONFIG_SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY;CONFIG_SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX;CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES;CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_128;CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_SUPPORT_PSEUDO_ROUND;CONFIG_SOC_APM_CTRL_FILTER_SUPPORTED;CONFIG_SOC_CRYPTO_DPA_PROTECTION_SUPPORTED;CONFIG_SOC_ECC_CONSTANT_TIME_POINT_MUL;CONFIG_SOC_ECDSA_USES_MPI;CONFIG_SOC_ECDSA_SUPPORT_DETERMINISTIC_MODE;CONFIG_SOC_ECDSA_SUPPORT_HW_DETERMINISTIC_LOOP;CONFIG_SOC_ECDSA_P192_CURVE_DEFAULT_DISABLED;CONFIG_SOC_UART_NUM;CONFIG_SOC_UART_HP_NUM;CONFIG_SOC_UART_FIFO_LEN;CONFIG_SOC_UART_BITRATE_MAX;CONFIG_SOC_UART_SUPPORT_RTC_CLK;CONFIG_SOC_UART_SUPPORT_XTAL_CLK;CONFIG_SOC_UART_SUPPORT_WAKEUP_INT;CONFIG_SOC_UART_SUPPORT_FSM_TX_WAIT_SEND;CONFIG_SOC_UART_SUPPORT_SLEEP_RETENTION;CONFIG_SOC_UART_WAKEUP_CHARS_SEQ_MAX_LEN;CONFIG_SOC_UART_WAKEUP_SUPPORT_ACTIVE_THRESH_MODE;CONFIG_SOC_UART_WAKEUP_SUPPORT_FIFO_THRESH_MODE;CONFIG_SOC_UART_WAKEUP_SUPPORT_START_BIT_MODE;CONFIG_SOC_UART_WAKEUP_SUPPORT_CHAR_SEQ_MODE;CONFIG_SOC_UHCI_NUM;CONFIG_SOC_COEX_HW_PTI;CONFIG_SOC_EXTERNAL_COEX_ADVANCE;CONFIG_SOC_PHY_DIG_REGS_MEM_SIZE;CONFIG_SOC_PM_SUPPORT_BT_WAKEUP;CONFIG_SOC_PM_SUPPORT_EXT1_WAKEUP;CONFIG_SOC_PM_SUPPORT_EXT1_WAKEUP_MODE_PER_PIN;CONFIG_SOC_PM_SUPPORT_CPU_PD;CONFIG_SOC_PM_SUPPORT_MODEM_PD;CONFIG_SOC_PM_SUPPORT_XTAL32K_PD;CONFIG_SOC_PM_SUPPORT_RC32K_PD;CONFIG_SOC_PM_SUPPORT_RC_FAST_PD;CONFIG_SOC_PM_SUPPORT_VDDSDIO_PD;CONFIG_SOC_PM_SUPPORT_TOP_PD;CONFIG_SOC_PM_PAU_LINK_NUM;CONFIG_SOC_PM_PAU_REGDMA_LINK_MULTI_ADDR;CONFIG_SOC_PM_PAU_REGDMA_LINK_WIFIMAC;CONFIG_SOC_PM_PAU_REGDMA_UPDATE_CACHE_BEFORE_WAIT_COMPARE;CONFIG_SOC_PM_RETENTION_MODULE_NUM;CONFIG_SOC_EXT_MEM_CACHE_TAG_IN_CPU_DOMAIN;CONFIG_SOC_PM_CPU_RETENTION_BY_SW;CONFIG_SOC_PM_MODEM_RETENTION_BY_REGDMA;CONFIG_SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY;CONFIG_SOC_PM_RETENTION_SW_TRIGGER_REGDMA;CONFIG_SOC_PM_SUPPORT_PMU_CLK_ICG;CONFIG_SOC_CLK_RC_FAST_SUPPORT_CALIBRATION;CONFIG_SOC_CLK_XTAL32K_SUPPORTED;CONFIG_SOC_CLK_OSC_SLOW_SUPPORTED;CONFIG_SOC_CLK_RC32K_SUPPORTED;CONFIG_SOC_CLK_LP_FAST_SUPPORT_LP_PLL;CONFIG_SOC_CLK_LP_FAST_SUPPORT_XTAL_D2;CONFIG_SOC_MODEM_CLOCK_IS_INDEPENDENT;CONFIG_SOC_RCC_IS_INDEPENDENT;CONFIG_SOC_CLK_ANA_I2C_MST_HAS_ROOT_GATE;CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC;CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_XTAL;CONFIG_SOC_TEMPERATURE_SENSOR_INTR_SUPPORT;CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_ETM;CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_SLEEP_RETENTION;CONFIG_SOC_TEMPERATURE_SENSOR_UNDER_PD_TOP_DOMAIN;CONFIG_SOC_RNG_CLOCK_IS_INDEPENDENT;CONFIG_SOC_BLE_SUPPORTED;CONFIG_SOC_BLE_MESH_SUPPORTED;CONFIG_SOC_ESP_NIMBLE_CONTROLLER;CONFIG_SOC_BLE_50_SUPPORTED;CONFIG_SOC_BLE_DEVICE_PRIVACY_SUPPORTED;CONFIG_SOC_BLE_POWER_CONTROL_SUPPORTED;CONFIG_SOC_BLE_MULTI_CONN_OPTIMIZATION;CONFIG_SOC_BLE_PERIODIC_ADV_ENH_SUPPORTED;CONFIG_SOC_BLE_CTE_SUPPORTED;CONFIG_SOC_DEBUG_HAVE_OCD_STUB_BINS;CONFIG_IDF_CMAKE;CONFIG_IDF_TOOLCHAIN;CONFIG_IDF_TOOLCHAIN_GCC;CONFIG_IDF_TARGET_ARCH_RISCV;CONFIG_IDF_TARGET_ARCH;CONFIG_IDF_TARGET;CONFIG_IDF_INIT_VERSION;CONFIG_IDF_TARGET_ESP32H2;CONFIG_IDF_FIRMWARE_CHIP_ID;CONFIG_APP_BUILD_TYPE_APP_2NDBOOT;CONFIG_APP_BUILD_TYPE_RAM;CONFIG_APP_BUILD_TYPE_ELF_RAM;CONFIG_APP_BUILD_GENERATE_BINARIES;CONFIG_APP_BUILD_BOOTLOADER;CONFIG_APP_BUILD_USE_FLASH_SECTIONS;CONFIG_APP_REPRODUCIBLE_BUILD;CONFIG_APP_NO_BLOBS;CONFIG_NO_BLOBS;CONFIG_BOOTLOADER_COMPILE_TIME_DATE;CONFIG_BOOTLOADER_PROJECT_VER;CONFIG_BOOTLOADER_APP_ROLLBACK_ENABLE;CONFIG_APP_ROLLBACK_ENABLE;CONFIG_BOOTLOADER_OFFSET_IN_FLASH;CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_SIZE;CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG;CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_PERF;CONFIG_BOOTLOADER_LOG_VERSION_1;CONFIG_BOOTLOADER_LOG_VERSION;CONFIG_BOOTLOADER_LOG_LEVEL_NONE;CONFIG_LOG_BOOTLOADER_LEVEL_NONE;CONFIG_BOOTLOADER_LOG_LEVEL_ERROR;CONFIG_LOG_BOOTLOADER_LEVEL_ERROR;CONFIG_BOOTLOADER_LOG_LEVEL_WARN;CONFIG_LOG_BOOTLOADER_LEVEL_WARN;CONFIG_BOOTLOADER_LOG_LEVEL_INFO;CONFIG_LOG_BOOTLOADER_LEVEL_INFO;CONFIG_BOOTLOADER_LOG_LEVEL_DEBUG;CONFIG_LOG_BOOTLOADER_LEVEL_DEBUG;CONFIG_BOOTLOADER_LOG_LEVEL_VERBOSE;CONFIG_LOG_BOOTLOADER_LEVEL_VERBOSE;CONFIG_BOOTLOADER_LOG_LEVEL;CONFIG_LOG_BOOTLOADER_LEVEL;CONFIG_BOOTLOADER_LOG_COLORS;CONFIG_BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS;CONFIG_BOOTLOADER_LOG_MODE_TEXT_EN;CONFIG_BOOTLOADER_LOG_MODE_TEXT;CONFIG_BOOTLOADER_FLASH_DC_AWARE;CONFIG_BOOTLOADER_FLASH_XMC_SUPPORT;CONFIG_BOOTLOADER_FACTORY_RESET;CONFIG_BOOTLOADER_APP_TEST;CONFIG_BOOTLOADER_REGION_PROTECTION_ENABLE;CONFIG_BOOTLOADER_WDT_ENABLE;CONFIG_BOOTLOADER_WDT_DISABLE_IN_USER_CODE;CONFIG_BOOTLOADER_WDT_TIME_MS;CONFIG_BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP;CONFIG_BOOTLOADER_SKIP_VALIDATE_ON_POWER_ON;CONFIG_BOOTLOADER_SKIP_VALIDATE_ALWAYS;CONFIG_BOOTLOADER_RESERVE_RTC_SIZE;CONFIG_BOOTLOADER_CUSTOM_RESERVE_RTC;CONFIG_SECURE_BOOT_V2_RSA_SUPPORTED;CONFIG_SECURE_BOOT_V2_ECC_SUPPORTED;CONFIG_SECURE_BOOT_V2_PREFERRED;CONFIG_SECURE_SIGNED_APPS_NO_SECURE_BOOT;CONFIG_SECURE_BOOT;CONFIG_SECURE_FLASH_ENC_ENABLED;CONFIG_FLASH_ENCRYPTION_ENABLED;CONFIG_SECURE_ROM_DL_MODE_ENABLED;CONFIG_APP_COMPILE_TIME_DATE;CONFIG_APP_EXCLUDE_PROJECT_VER_VAR;CONFIG_APP_EXCLUDE_PROJECT_NAME_VAR;CONFIG_APP_PROJECT_VER_FROM_CONFIG;CONFIG_APP_RETRIEVE_LEN_ELF_SHA;CONFIG_ESP_ROM_HAS_CRC_LE;CONFIG_ESP_ROM_HAS_CRC_BE;CONFIG_ESP_ROM_UART_CLK_IS_XTAL;CONFIG_ESP_ROM_USB_SERIAL_DEVICE_NUM;CONFIG_ESP_ROM_HAS_RETARGETABLE_LOCKING;CONFIG_ESP_ROM_GET_CLK_FREQ;CONFIG_ESP_ROM_HAS_HAL_WDT;CONFIG_ESP_ROM_HAS_HAL_SYSTIMER;CONFIG_ESP_ROM_SYSTIMER_INIT_PATCH;CONFIG_ESP_ROM_HAS_HEAP_TLSF;CONFIG_ESP_ROM_TLSF_CHECK_PATCH;CONFIG_ESP_ROM_MULTI_HEAP_WALK_PATCH;CONFIG_ESP_ROM_HAS_LAYOUT_TABLE;CONFIG_ESP_ROM_HAS_SPI_FLASH;CONFIG_ESP_ROM_HAS_SPI_FLASH_MMAP;CONFIG_ESP_ROM_WITHOUT_REGI2C;CONFIG_ESP_ROM_HAS_NEWLIB;CONFIG_ESP_ROM_HAS_NEWLIB_NANO_FORMAT;CONFIG_ESP_ROM_HAS_NEWLIB_NANO_PRINTF_FLOAT_BUG;CONFIG_ESP_ROM_WDT_INIT_PATCH;CONFIG_ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE;CONFIG_ESP_ROM_RAM_APP_NEEDS_MMU_INIT;CONFIG_ESP_ROM_HAS_SW_FLOAT;CONFIG_ESP_ROM_USB_OTG_NUM;CONFIG_ESP_ROM_HAS_VERSION;CONFIG_ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB;CONFIG_ESP_ROM_HAS_OUTPUT_PUTC_FUNC;CONFIG_ESP_ROM_NO_USB_SERIAL_OUTPUT_API;CONFIG_ESP_ROM_HAS_SUBOPTIMAL_NEWLIB_ON_MISALIGNED_MEMORY;CONFIG_BOOT_ROM_LOG_ALWAYS_ON;CONFIG_BOOT_ROM_LOG_ALWAYS_OFF;CONFIG_BOOT_ROM_LOG_ON_GPIO_HIGH;CONFIG_BOOT_ROM_LOG_ON_GPIO_LOW;CONFIG_ESPTOOLPY_NO_STUB;CONFIG_ESPTOOLPY_FLASHMODE_QIO;CONFIG_FLASHMODE_QIO;CONFIG_ESPTOOLPY_FLASHMODE_QOUT;CONFIG_FLASHMODE_QOUT;CONFIG_ESPTOOLPY_FLASHMODE_DIO;CONFIG_FLASHMODE_DIO;CONFIG_ESPTOOLPY_FLASHMODE_DOUT;CONFIG_FLASHMODE_DOUT;CONFIG_ESPTOOLPY_FLASH_SAMPLE_MODE_STR;CONFIG_ESPTOOLPY_FLASHMODE;CONFIG_ESPTOOLPY_FLASHFREQ_64M;CONFIG_ESPTOOLPY_FLASHFREQ_32M;CONFIG_ESPTOOLPY_FLASHFREQ_16M;CONFIG_ESPTOOLPY_FLASHFREQ;CONFIG_ESPTOOLPY_FLASHSIZE_1MB;CONFIG_ESPTOOLPY_FLASHSIZE_2MB;CONFIG_ESPTOOLPY_FLASHSIZE_4MB;CONFIG_ESPTOOLPY_FLASHSIZE_8MB;CONFIG_ESPTOOLPY_FLASHSIZE_16MB;CONFIG_ESPTOOLPY_FLASHSIZE_32MB;CONFIG_ESPTOOLPY_FLASHSIZE_64MB;CONFIG_ESPTOOLPY_FLASHSIZE_128MB;CONFIG_ESPTOOLPY_FLASHSIZE;CONFIG_ESPTOOLPY_HEADER_FLASHSIZE_UPDATE;CONFIG_ESPTOOLPY_BEFORE_RESET;CONFIG_ESPTOOLPY_BEFORE_NORESET;CONFIG_ESPTOOLPY_BEFORE;CONFIG_ESPTOOLPY_AFTER_RESET;CONFIG_ESPTOOLPY_AFTER_NORESET;CONFIG_ESPTOOLPY_AFTER;CONFIG_ESPTOOLPY_MONITOR_BAUD;CONFIG_MONITOR_BAUD;CONFIG_PARTITION_TABLE_SINGLE_APP;CONFIG_PARTITION_TABLE_SINGLE_APP_LARGE;CONFIG_PARTITION_TABLE_TWO_OTA;CONFIG_PARTITION_TABLE_TWO_OTA_LARGE;CONFIG_PARTITION_TABLE_CUSTOM;CONFIG_PARTITION_TABLE_CUSTOM_FILENAME;CONFIG_PARTITION_TABLE_FILENAME;CONFIG_PARTITION_TABLE_OFFSET;CONFIG_PARTITION_TABLE_MD5;CONFIG_OPENTHREAD_UART_PIN_MANUAL;CONFIG_COMPILER_OPTIMIZATION_DEBUG;CONFIG_OPTIMIZATION_LEVEL_DEBUG;CONFIG_COMPILER_OPTIMIZATION_LEVEL_DEBUG;CONFIG_COMPILER_OPTIMIZATION_DEFAULT;CONFIG_COMPILER_OPTIMIZATION_SIZE;CONFIG_OPTIMIZATION_LEVEL_RELEASE;CONFIG_COMPILER_OPTIMIZATION_LEVEL_RELEASE;CONFIG_COMPILER_OPTIMIZATION_PERF;CONFIG_COMPILER_OPTIMIZATION_NONE;CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE;CONFIG_OPTIMIZATION_ASSERTIONS_ENABLED;CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_SILENT;CONFIG_OPTIMIZATION_ASSERTIONS_SILENT;CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE;CONFIG_OPTIMIZATION_ASSERTIONS_DISABLED;CONFIG_COMPILER_ASSERT_NDEBUG_EVALUATE;CONFIG_COMPILER_FLOAT_LIB_FROM_GCCLIB;CONFIG_COMPILER_OPTIMIZATION_ASSERTION_LEVEL;CONFIG_OPTIMIZATION_ASSERTION_LEVEL;CONFIG_COMPILER_OPTIMIZATION_CHECKS_SILENT;CONFIG_COMPILER_HIDE_PATHS_MACROS;CONFIG_COMPILER_CXX_EXCEPTIONS;CONFIG_CXX_EXCEPTIONS;CONFIG_COMPILER_CXX_RTTI;CONFIG_COMPILER_STACK_CHECK_MODE_NONE;CONFIG_STACK_CHECK_NONE;CONFIG_COMPILER_STACK_CHECK_MODE_NORM;CONFIG_STACK_CHECK_NORM;CONFIG_COMPILER_STACK_CHECK_MODE_STRONG;CONFIG_STACK_CHECK_STRONG;CONFIG_COMPILER_STACK_CHECK_MODE_ALL;CONFIG_STACK_CHECK_ALL;CONFIG_COMPILER_NO_MERGE_CONSTANTS;CONFIG_COMPILER_WARN_WRITE_STRINGS;CONFIG_WARN_WRITE_STRINGS;CONFIG_COMPILER_SAVE_RESTORE_LIBCALLS;CONFIG_COMPILER_DISABLE_DEFAULT_ERRORS;CONFIG_COMPILER_DISABLE_GCC12_WARNINGS;CONFIG_COMPILER_DISABLE_GCC13_WARNINGS;CONFIG_COMPILER_DISABLE_GCC14_WARNINGS;CONFIG_COMPILER_DUMP_RTL_FILES;CONFIG_COMPILER_RT_LIB_GCCLIB;CONFIG_COMPILER_RT_LIB_NAME;CONFIG_COMPILER_ORPHAN_SECTIONS_WARNING;CONFIG_COMPILER_ORPHAN_SECTIONS_PLACE;CONFIG_COMPILER_STATIC_ANALYZER;CONFIG_CONSOLE_SORTED_HELP;CONFIG_TWAI_SKIP_LEGACY_CONFLICT_CHECK;CONFIG_ADC_SUPPRESS_DEPRECATE_WARN;CONFIG_ADC_SKIP_LEGACY_CONFLICT_CHECK;CONFIG_ADC_CALI_SUPPRESS_DEPRECATE_WARN;CONFIG_MCPWM_SUPPRESS_DEPRECATE_WARN;CONFIG_MCPWM_SKIP_LEGACY_CONFLICT_CHECK;CONFIG_GPTIMER_SUPPRESS_DEPRECATE_WARN;CONFIG_GPTIMER_SKIP_LEGACY_CONFLICT_CHECK;CONFIG_RMT_SUPPRESS_DEPRECATE_WARN;CONFIG_RMT_SKIP_LEGACY_CONFLICT_CHECK;CONFIG_I2S_SUPPRESS_DEPRECATE_WARN;CONFIG_I2S_SKIP_LEGACY_CONFLICT_CHECK;CONFIG_I2C_SKIP_LEGACY_CONFLICT_CHECK;CONFIG_PCNT_SUPPRESS_DEPRECATE_WARN;CONFIG_PCNT_SKIP_LEGACY_CONFLICT_CHECK;CONFIG_SDM_SUPPRESS_DEPRECATE_WARN;CONFIG_SDM_SKIP_LEGACY_CONFLICT_CHECK;CONFIG_TEMP_SENSOR_SUPPRESS_DEPRECATE_WARN;CONFIG_TEMP_SENSOR_SKIP_LEGACY_CONFLICT_CHECK;CONFIG_EFUSE_CUSTOM_TABLE;CONFIG_EFUSE_VIRTUAL;CONFIG_EFUSE_MAX_BLK_LEN;CONFIG_ESP_COEX_ENABLED;CONFIG_ESP_COEX_EXTERNAL_COEXIST_ENABLE;CONFIG_EXTERNAL_COEX_ENABLE;CONFIG_ESP_WIFI_EXTERNAL_COEXIST_ENABLE;CONFIG_ESP_COEX_GPIO_DEBUG;CONFIG_ESP_ERR_TO_NAME_LOOKUP;CONFIG_ANA_CMPR_ISR_HANDLER_IN_IRAM;CONFIG_ANA_CMPR_CTRL_FUNC_IN_IRAM;CONFIG_ANA_CMPR_ISR_CACHE_SAFE;CONFIG_ANA_CMPR_ISR_IRAM_SAFE;CONFIG_ANA_CMPR_OBJ_CACHE_SAFE;CONFIG_ANA_CMPR_ENABLE_DEBUG_LOG;CONFIG_GPIO_CTRL_FUNC_IN_IRAM;CONFIG_GPTIMER_ISR_HANDLER_IN_IRAM;CONFIG_GPTIMER_CTRL_FUNC_IN_IRAM;CONFIG_GPTIMER_ISR_CACHE_SAFE;CONFIG_GPTIMER_ISR_IRAM_SAFE;CONFIG_GPTIMER_OBJ_CACHE_SAFE;CONFIG_GPTIMER_ENABLE_DEBUG_LOG;CONFIG_I2C_ISR_IRAM_SAFE;CONFIG_I2C_ENABLE_DEBUG_LOG;CONFIG_I2C_ENABLE_SLAVE_DRIVER_VERSION_2;CONFIG_I2C_MASTER_ISR_HANDLER_IN_IRAM;CONFIG_I2S_ISR_IRAM_SAFE;CONFIG_I2S_ENABLE_DEBUG_LOG;CONFIG_LEDC_CTRL_FUNC_IN_IRAM;CONFIG_MCPWM_ISR_HANDLER_IN_IRAM;CONFIG_MCPWM_ISR_CACHE_SAFE;CONFIG_MCPWM_ISR_IRAM_SAFE;CONFIG_MCPWM_CTRL_FUNC_IN_IRAM;CONFIG_MCPWM_OBJ_CACHE_SAFE;CONFIG_MCPWM_ENABLE_DEBUG_LOG;CONFIG_PARLIO_TX_ISR_HANDLER_IN_IRAM;CONFIG_PARLIO_RX_ISR_HANDLER_IN_IRAM;CONFIG_PARLIO_TX_ISR_CACHE_SAFE;CONFIG_PARLIO_RX_ISR_CACHE_SAFE;CONFIG_PARLIO_OBJ_CACHE_SAFE;CONFIG_PARLIO_ENABLE_DEBUG_LOG;CONFIG_PARLIO_ISR_IRAM_SAFE;CONFIG_PCNT_CTRL_FUNC_IN_IRAM;CONFIG_PCNT_ISR_IRAM_SAFE;CONFIG_PCNT_ENABLE_DEBUG_LOG;CONFIG_RMT_ENCODER_FUNC_IN_IRAM;CONFIG_RMT_TX_ISR_HANDLER_IN_IRAM;CONFIG_RMT_RX_ISR_HANDLER_IN_IRAM;CONFIG_RMT_RECV_FUNC_IN_IRAM;CONFIG_RMT_TX_ISR_CACHE_SAFE;CONFIG_RMT_RX_ISR_CACHE_SAFE;CONFIG_RMT_OBJ_CACHE_SAFE;CONFIG_RMT_ENABLE_DEBUG_LOG;CONFIG_RMT_ISR_IRAM_SAFE;CONFIG_SDM_CTRL_FUNC_IN_IRAM;CONFIG_SDM_ENABLE_DEBUG_LOG;CONFIG_SPI_MASTER_IN_IRAM;CONFIG_SPI_MASTER_ISR_IN_IRAM;CONFIG_SPI_SLAVE_IN_IRAM;CONFIG_SPI_SLAVE_ISR_IN_IRAM;CONFIG_TEMP_SENSOR_ENABLE_DEBUG_LOG;CONFIG_TEMP_SENSOR_ISR_IRAM_SAFE;CONFIG_TWAI_ISR_IN_IRAM;CONFIG_TWAI_ISR_CACHE_SAFE;CONFIG_TWAI_ENABLE_DEBUG_LOG;CONFIG_UART_ISR_IN_IRAM;CONFIG_UHCI_ISR_HANDLER_IN_IRAM;CONFIG_UHCI_ISR_CACHE_SAFE;CONFIG_UHCI_ENABLE_DEBUG_LOG;CONFIG_USJ_ENABLE_USB_SERIAL_JTAG;CONFIG_ESP_EVENT_LOOP_PROFILING;CONFIG_EVENT_LOOP_PROFILING;CONFIG_ESP_EVENT_POST_FROM_ISR;CONFIG_POST_EVENTS_FROM_ISR;CONFIG_ESP_EVENT_POST_FROM_IRAM_ISR;CONFIG_POST_EVENTS_FROM_IRAM_ISR;CONFIG_ESP32H2_REV_MIN_0;CONFIG_ESP32H2_REV_MIN_1;CONFIG_ESP32H2_REV_MIN_2;CONFIG_ESP32H2_REV_MIN_102;CONFIG_ESP32H2_REV_MIN_FULL;CONFIG_ESP_REV_MIN_FULL;CONFIG_ESP32H2_REV_MAX_FULL;CONFIG_ESP_REV_MAX_FULL;CONFIG_ESP_EFUSE_BLOCK_REV_MIN_FULL;CONFIG_ESP_EFUSE_BLOCK_REV_MAX_FULL;CONFIG_ESP_MAC_ADDR_UNIVERSE_BT;CONFIG_ESP_MAC_ADDR_UNIVERSE_IEEE802154;CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES_TWO;CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES;CONFIG_ESP32H2_UNIVERSAL_MAC_ADDRESSES_TWO;CONFIG_ESP32H2_UNIVERSAL_MAC_ADDRESSES;CONFIG_ESP_MAC_USE_CUSTOM_MAC_AS_BASE_MAC;CONFIG_ESP_SLEEP_POWER_DOWN_FLASH;CONFIG_ESP_SYSTEM_PD_FLASH;CONFIG_ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND;CONFIG_ESP_SLEEP_MSPI_NEED_ALL_IO_PU;CONFIG_ESP_SLEEP_GPIO_RESET_WORKAROUND;CONFIG_ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY;CONFIG_ESP_SLEEP_CACHE_SAFE_ASSERTION;CONFIG_ESP_SLEEP_DEBUG;CONFIG_ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS;CONFIG_RTC_CLK_SRC_INT_RC;CONFIG_RTC_CLK_SRC_EXT_CRYS;CONFIG_RTC_CLK_SRC_EXT_OSC;CONFIG_RTC_CLK_CAL_CYCLES;CONFIG_ESP_PERIPH_CTRL_FUNC_IN_IRAM;CONFIG_PERIPH_CTRL_FUNC_IN_IRAM;CONFIG_ESP_REGI2C_CTRL_FUNC_IN_IRAM;CONFIG_ETM_ENABLE_DEBUG_LOG;CONFIG_GDMA_CTRL_FUNC_IN_IRAM;CONFIG_GDMA_ISR_HANDLER_IN_IRAM;CONFIG_GDMA_OBJ_DRAM_SAFE;CONFIG_GDMA_ENABLE_DEBUG_LOG;CONFIG_GDMA_ISR_IRAM_SAFE;CONFIG_XTAL_FREQ_32;CONFIG_XTAL_FREQ;CONFIG_ESP_BROWNOUT_DET;CONFIG_BROWNOUT_DET;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_7;CONFIG_BROWNOUT_DET_LVL_SEL_7;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_6;CONFIG_BROWNOUT_DET_LVL_SEL_6;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_5;CONFIG_BROWNOUT_DET_LVL_SEL_5;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_4;CONFIG_BROWNOUT_DET_LVL_SEL_4;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_3;CONFIG_BROWNOUT_DET_LVL_SEL_3;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_2;CONFIG_BROWNOUT_DET_LVL_SEL_2;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_1;CONFIG_BROWNOUT_DET_LVL_SEL_1;CONFIG_ESP_BROWNOUT_DET_LVL_SEL_0;CONFIG_BROWNOUT_DET_LVL_SEL_0;CONFIG_ESP_BROWNOUT_DET_LVL;CONFIG_BROWNOUT_DET_LVL;CONFIG_ESP_BROWNOUT_USE_INTR;CONFIG_ESP_SYSTEM_BROWNOUT_INTR;CONFIG_ESP_VBAT_INIT_AUTO;CONFIG_ESP_VBAT_WAKEUP_CHIP_ON_VBAT_BROWNOUT;CONFIG_ESP_SPI_BUS_LOCK_ISR_FUNCS_IN_IRAM;CONFIG_ESP_INTR_IN_IRAM;CONFIG_ESP_NETIF_IP_LOST_TIMER_INTERVAL;CONFIG_ESP_NETIF_PROVIDE_CUSTOM_IMPLEMENTATION;CONFIG_ESP_NETIF_TCPIP_LWIP;CONFIG_ESP_NETIF_LOOPBACK;CONFIG_ESP_NETIF_USES_TCPIP_WITH_BSD_API;CONFIG_ESP_NETIF_REPORT_DATA_TRAFFIC;CONFIG_ESP_NETIF_RECEIVE_REPORT_ERRORS;CONFIG_ESP_NETIF_L2_TAP;CONFIG_ESP_NETIF_BRIDGE_EN;CONFIG_ESP_NETIF_SET_DNS_PER_DEFAULT_NETIF;CONFIG_ESP_PHY_ENABLED;CONFIG_ESP_PHY_CALIBRATION_AND_DATA_STORAGE;CONFIG_ESP32_PHY_CALIBRATION_AND_DATA_STORAGE;CONFIG_ESP_PHY_MAX_WIFI_TX_POWER;CONFIG_ESP32_PHY_MAX_WIFI_TX_POWER;CONFIG_ESP_PHY_MAX_TX_POWER;CONFIG_ESP32_PHY_MAX_TX_POWER;CONFIG_ESP_PHY_REDUCE_TX_POWER;CONFIG_REDUCE_PHY_TX_POWER;CONFIG_ESP32_REDUCE_PHY_TX_POWER;CONFIG_ESP_PHY_ENABLE_CERT_TEST;CONFIG_ESP_PHY_RF_CAL_PARTIAL;CONFIG_ESP_PHY_RF_CAL_NONE;CONFIG_ESP_PHY_RF_CAL_FULL;CONFIG_ESP_PHY_CALIBRATION_MODE;CONFIG_ESP_PHY_PLL_TRACK_PERIOD_MS;CONFIG_ESP_PHY_PLL_TRACK_DEBUG;CONFIG_ESP_PHY_RECORD_USED_TIME;CONFIG_ESP_PHY_IRAM_OPT;CONFIG_ESP_PHY_DEBUG;CONFIG_PM_SLEEP_FUNC_IN_IRAM;CONFIG_PM_ENABLE;CONFIG_PM_SLP_IRAM_OPT;CONFIG_PM_POWER_DOWN_CPU_IN_LIGHT_SLEEP;CONFIG_ESP_SYSTEM_PM_POWER_DOWN_CPU;CONFIG_PM_POWER_DOWN_PERIPHERAL_IN_LIGHT_SLEEP;CONFIG_RINGBUF_PLACE_FUNCTIONS_INTO_FLASH;CONFIG_ESP_ROM_PRINT_IN_IRAM;CONFIG_ESP_CRYPTO_DPA_PROTECTION_AT_STARTUP;CONFIG_ESP_CRYPTO_DPA_PROTECTION_LEVEL_LOW;CONFIG_ESP_CRYPTO_DPA_PROTECTION_LEVEL_MEDIUM;CONFIG_ESP_CRYPTO_DPA_PROTECTION_LEVEL_HIGH;CONFIG_ESP_CRYPTO_DPA_PROTECTION_LEVEL;CONFIG_ESP_CRYPTO_FORCE_ECC_CONSTANT_TIME_POINT_MUL;CONFIG_ESP_ECDSA_ENABLE_P192_CURVE;CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_48;CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_64;CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_96;CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ;CONFIG_ESP_SYSTEM_IN_IRAM;CONFIG_ESP_SYSTEM_PANIC_PRINT_HALT;CONFIG_ESP_SYSTEM_PANIC_PRINT_REBOOT;CONFIG_ESP_SYSTEM_PANIC_SILENT_REBOOT;CONFIG_ESP_SYSTEM_SINGLE_CORE_MODE;CONFIG_ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK;CONFIG_ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP;CONFIG_ESP_SYSTEM_NO_BACKTRACE;CONFIG_ESP_SYSTEM_USE_EH_FRAME;CONFIG_ESP_SYSTEM_USE_FRAME_POINTER;CONFIG_ESP_SYSTEM_PMP_IDRAM_SPLIT;CONFIG_ESP_SYSTEM_EVENT_QUEUE_SIZE;CONFIG_SYSTEM_EVENT_QUEUE_SIZE;CONFIG_ESP_SYSTEM_EVENT_TASK_STACK_SIZE;CONFIG_SYSTEM_EVENT_TASK_STACK_SIZE;CONFIG_ESP_MAIN_TASK_STACK_SIZE;CONFIG_MAIN_TASK_STACK_SIZE;CONFIG_ESP_MAIN_TASK_AFFINITY_CPU0;CONFIG_ESP_MAIN_TASK_AFFINITY_NO_AFFINITY;CONFIG_ESP_MAIN_TASK_AFFINITY;CONFIG_ESP_MINIMAL_SHARED_STACK_SIZE;CONFIG_ESP_CONSOLE_UART_DEFAULT;CONFIG_CONSOLE_UART_DEFAULT;CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG;CONFIG_ESP_CONSOLE_UART_CUSTOM;CONFIG_CONSOLE_UART_CUSTOM;CONFIG_ESP_CONSOLE_NONE;CONFIG_CONSOLE_UART_NONE;CONFIG_ESP_CONSOLE_UART_NONE;CONFIG_ESP_CONSOLE_SECONDARY_NONE;CONFIG_ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG;CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED;CONFIG_ESP_CONSOLE_UART;CONFIG_CONSOLE_UART;CONFIG_ESP_CONSOLE_UART_NUM;CONFIG_CONSOLE_UART_NUM;CONFIG_ESP_CONSOLE_ROM_SERIAL_PORT_NUM;CONFIG_ESP_CONSOLE_UART_BAUDRATE;CONFIG_CONSOLE_UART_BAUDRATE;CONFIG_ESP_INT_WDT;CONFIG_INT_WDT;CONFIG_ESP_INT_WDT_TIMEOUT_MS;CONFIG_INT_WDT_TIMEOUT_MS;CONFIG_ESP_TASK_WDT_EN;CONFIG_ESP_TASK_WDT_INIT;CONFIG_TASK_WDT;CONFIG_ESP_TASK_WDT;CONFIG_ESP_TASK_WDT_PANIC;CONFIG_TASK_WDT_PANIC;CONFIG_ESP_TASK_WDT_TIMEOUT_S;CONFIG_TASK_WDT_TIMEOUT_S;CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0;CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU0;CONFIG_ESP_PANIC_HANDLER_IRAM;CONFIG_ESP_DEBUG_STUBS_ENABLE;CONFIG_ESP32_DEBUG_STUBS_ENABLE;CONFIG_ESP_DEBUG_INCLUDE_OCD_STUB_BINS;CONFIG_ESP_DEBUG_OCDAWARE;CONFIG_ESP_SYSTEM_CHECK_INT_LEVEL_4;CONFIG_ESP_SYSTEM_HW_STACK_GUARD;CONFIG_ESP_SYSTEM_BBPLL_RECALIB;CONFIG_ESP_SYSTEM_HW_PC_RECORD;CONFIG_ESP_IPC_TASK_STACK_SIZE;CONFIG_IPC_TASK_STACK_SIZE;CONFIG_ESP_TIMER_IN_IRAM;CONFIG_ESP_TIMER_PROFILING;CONFIG_ESP_TIME_FUNCS_USE_RTC_TIMER;CONFIG_ESP_TIME_FUNCS_USE_ESP_TIMER;CONFIG_ESP_TIMER_TASK_STACK_SIZE;CONFIG_TIMER_TASK_STACK_SIZE;CONFIG_ESP_TIMER_INTERRUPT_LEVEL;CONFIG_ESP_TIMER_SHOW_EXPERIMENTAL;CONFIG_ESP_TIMER_TASK_AFFINITY;CONFIG_ESP_TIMER_TASK_AFFINITY_CPU0;CONFIG_ESP_TIMER_ISR_AFFINITY_CPU0;CONFIG_ESP_TIMER_SUPPORTS_ISR_DISPATCH_METHOD;CONFIG_ESP_TIMER_IMPL_SYSTIMER;CONFIG_FREERTOS_SMP;CONFIG_FREERTOS_UNICORE;CONFIG_FREERTOS_HZ;CONFIG_FREERTOS_OPTIMIZED_SCHEDULER;CONFIG_FREERTOS_CHECK_STACKOVERFLOW_NONE;CONFIG_FREERTOS_CHECK_STACKOVERFLOW_PTRVAL;CONFIG_FREERTOS_CHECK_STACKOVERFLOW_CANARY;CONFIG_FREERTOS_THREAD_LOCAL_STORAGE_POINTERS;CONFIG_FREERTOS_IDLE_TASK_STACKSIZE;CONFIG_FREERTOS_USE_IDLE_HOOK;CONFIG_FREERTOS_USE_TICK_HOOK;CONFIG_FREERTOS_MAX_TASK_NAME_LEN;CONFIG_FREERTOS_ENABLE_BACKWARD_COMPATIBILITY;CONFIG_FREERTOS_USE_TIMERS;CONFIG_FREERTOS_TIMER_SERVICE_TASK_NAME;CONFIG_FREERTOS_TIMER_TASK_AFFINITY_CPU0;CONFIG_FREERTOS_TIMER_TASK_NO_AFFINITY;CONFIG_FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY;CONFIG_FREERTOS_TIMER_TASK_PRIORITY;CONFIG_TIMER_TASK_PRIORITY;CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH;CONFIG_TIMER_TASK_STACK_DEPTH;CONFIG_FREERTOS_TIMER_QUEUE_LENGTH;CONFIG_TIMER_QUEUE_LENGTH;CONFIG_FREERTOS_QUEUE_REGISTRY_SIZE;CONFIG_FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES;CONFIG_FREERTOS_USE_TRACE_FACILITY;CONFIG_FREERTOS_USE_LIST_DATA_INTEGRITY_CHECK_BYTES;CONFIG_FREERTOS_GENERATE_RUN_TIME_STATS;CONFIG_FREERTOS_USE_APPLICATION_TASK_TAG;CONFIG_FREERTOS_WATCHPOINT_END_OF_STACK;CONFIG_FREERTOS_TLSP_DELETION_CALLBACKS;CONFIG_FREERTOS_TASK_PRE_DELETION_HOOK;CONFIG_FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP;CONFIG_ENABLE_STATIC_TASK_CLEAN_UP_HOOK;CONFIG_FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER;CONFIG_FREERTOS_ISR_STACKSIZE;CONFIG_FREERTOS_INTERRUPT_BACKTRACE;CONFIG_FREERTOS_TICK_SUPPORT_SYSTIMER;CONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL1;CONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL3;CONFIG_FREERTOS_SYSTICK_USES_SYSTIMER;CONFIG_FREERTOS_PLACE_FUNCTIONS_INTO_FLASH;CONFIG_FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE;CONFIG_FREERTOS_PORT;CONFIG_FREERTOS_NO_AFFINITY;CONFIG_FREERTOS_SUPPORT_STATIC_ALLOCATION;CONFIG_FREERTOS_DEBUG_OCDAWARE;CONFIG_FREERTOS_ENABLE_TASK_SNAPSHOT;CONFIG_FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH;CONFIG_FREERTOS_NUMBER_OF_CORES;CONFIG_FREERTOS_IN_IRAM;CONFIG_HAL_ASSERTION_EQUALS_SYSTEM;CONFIG_HAL_ASSERTION_DISABLE;CONFIG_HAL_ASSERTION_SILENT;CONFIG_HAL_ASSERTION_SILIENT;CONFIG_HAL_DEFAULT_ASSERTION_LEVEL;CONFIG_HAL_SYSTIMER_USE_ROM_IMPL;CONFIG_HAL_WDT_USE_ROM_IMPL;CONFIG_HAL_ECDSA_GEN_SIG_CM;CONFIG_HEAP_POISONING_DISABLED;CONFIG_HEAP_POISONING_LIGHT;CONFIG_HEAP_POISONING_COMPREHENSIVE;CONFIG_HEAP_TRACING_OFF;CONFIG_HEAP_TRACING_STANDALONE;CONFIG_HEAP_TRACING_TOHOST;CONFIG_HEAP_USE_HOOKS;CONFIG_HEAP_TASK_TRACKING;CONFIG_HEAP_ABORT_WHEN_ALLOCATION_FAILS;CONFIG_HEAP_TLSF_USE_ROM_IMPL;CONFIG_HEAP_PLACE_FUNCTION_INTO_FLASH;CONFIG_IEEE802154_ENABLED;CONFIG_IEEE802154_RX_BUFFER_SIZE;CONFIG_IEEE802154_CCA_CARRIER;CONFIG_IEEE802154_CCA_ED;CONFIG_IEEE802154_CCA_CARRIER_OR_ED;CONFIG_IEEE802154_CCA_CARRIER_AND_ED;CONFIG_IEEE802154_CCA_MODE;CONFIG_IEEE802154_CCA_THRESHOLD;CONFIG_IEEE802154_PENDING_TABLE_SIZE;CONFIG_IEEE802154_MULTI_PAN_ENABLE;CONFIG_IEEE802154_TIMING_OPTIMIZATION;CONFIG_IEEE802154_DEBUG;CONFIG_IEEE802154_DEBUG_ASSERT_MONITOR;CONFIG_LOG_VERSION_1;CONFIG_LOG_VERSION_2;CONFIG_LOG_VERSION;CONFIG_LOG_DEFAULT_LEVEL_NONE;CONFIG_LOG_DEFAULT_LEVEL_ERROR;CONFIG_LOG_DEFAULT_LEVEL_WARN;CONFIG_LOG_DEFAULT_LEVEL_INFO;CONFIG_LOG_DEFAULT_LEVEL_DEBUG;CONFIG_LOG_DEFAULT_LEVEL_VERBOSE;CONFIG_LOG_DEFAULT_LEVEL;CONFIG_LOG_MAXIMUM_EQUALS_DEFAULT;CONFIG_LOG_MAXIMUM_LEVEL_ERROR;CONFIG_LOG_MAXIMUM_LEVEL_WARN;CONFIG_LOG_MAXIMUM_LEVEL_INFO;CONFIG_LOG_MAXIMUM_LEVEL_DEBUG;CONFIG_LOG_MAXIMUM_LEVEL_VERBOSE;CONFIG_LOG_MAXIMUM_LEVEL;CONFIG_LOG_MASTER_LEVEL;CONFIG_LOG_DYNAMIC_LEVEL_CONTROL;CONFIG_LOG_TAG_LEVEL_IMPL_NONE;CONFIG_LOG_TAG_LEVEL_IMPL_LINKED_LIST;CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST;CONFIG_LOG_TAG_LEVEL_CACHE_ARRAY;CONFIG_LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP;CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_SIZE;CONFIG_LOG_COLORS;CONFIG_LOG_TIMESTAMP_SOURCE_RTOS;CONFIG_LOG_TIMESTAMP_SOURCE_SYSTEM;CONFIG_LOG_MODE_TEXT_EN;CONFIG_LOG_MODE_TEXT;CONFIG_LOG_IN_IRAM;CONFIG_LWIP_ENABLE;CONFIG_LWIP_LOCAL_HOSTNAME;CONFIG_LWIP_TCPIP_TASK_PRIO;CONFIG_LWIP_TCPIP_CORE_LOCKING;CONFIG_LWIP_CHECK_THREAD_SAFETY;CONFIG_LWIP_DNS_SUPPORT_MDNS_QUERIES;CONFIG_LWIP_L2_TO_L3_COPY;CONFIG_L2_TO_L3_COPY;CONFIG_LWIP_IRAM_OPTIMIZATION;CONFIG_LWIP_EXTRA_IRAM_OPTIMIZATION;CONFIG_LWIP_TIMERS_ONDEMAND;CONFIG_LWIP_ND6;CONFIG_LWIP_FORCE_ROUTER_FORWARDING;CONFIG_LWIP_MAX_SOCKETS;CONFIG_LWIP_USE_ONLY_LWIP_SELECT;CONFIG_LWIP_SO_LINGER;CONFIG_LWIP_SO_REUSE;CONFIG_LWIP_SO_REUSE_RXTOALL;CONFIG_LWIP_SO_RCVBUF;CONFIG_LWIP_NETBUF_RECVINFO;CONFIG_LWIP_IP_DEFAULT_TTL;CONFIG_LWIP_IP4_FRAG;CONFIG_LWIP_IP6_FRAG;CONFIG_LWIP_IP4_REASSEMBLY;CONFIG_LWIP_IP6_REASSEMBLY;CONFIG_LWIP_IP_REASS_MAX_PBUFS;CONFIG_LWIP_IP_FORWARD;CONFIG_LWIP_STATS;CONFIG_LWIP_ESP_GRATUITOUS_ARP;CONFIG_ESP_GRATUITOUS_ARP;CONFIG_LWIP_GARP_TMR_INTERVAL;CONFIG_GARP_TMR_INTERVAL;CONFIG_LWIP_ESP_MLDV6_REPORT;CONFIG_LWIP_MLDV6_TMR_INTERVAL;CONFIG_LWIP_TCPIP_RECVMBOX_SIZE;CONFIG_TCPIP_RECVMBOX_SIZE;CONFIG_LWIP_DHCP_DOES_ARP_CHECK;CONFIG_LWIP_DHCP_DOES_ACD_CHECK;CONFIG_LWIP_DHCP_DOES_NOT_CHECK_OFFERED_IP;CONFIG_LWIP_DHCP_DISABLE_CLIENT_ID;CONFIG_LWIP_DHCP_DISABLE_VENDOR_CLASS_ID;CONFIG_LWIP_DHCP_RESTORE_LAST_IP;CONFIG_LWIP_DHCP_OPTIONS_LEN;CONFIG_LWIP_NUM_NETIF_CLIENT_DATA;CONFIG_LWIP_DHCP_COARSE_TIMER_SECS;CONFIG_LWIP_DHCPS;CONFIG_LWIP_DHCPS_LEASE_UNIT;CONFIG_LWIP_DHCPS_MAX_STATION_NUM;CONFIG_LWIP_DHCPS_STATIC_ENTRIES;CONFIG_LWIP_DHCPS_ADD_DNS;CONFIG_LWIP_AUTOIP;CONFIG_LWIP_IPV4;CONFIG_LWIP_IPV6;CONFIG_LWIP_IPV6_AUTOCONFIG;CONFIG_LWIP_IPV6_NUM_ADDRESSES;CONFIG_LWIP_IPV6_FORWARD;CONFIG_LWIP_NETIF_STATUS_CALLBACK;CONFIG_LWIP_NETIF_LOOPBACK;CONFIG_LWIP_LOOPBACK_MAX_PBUFS;CONFIG_LWIP_MAX_ACTIVE_TCP;CONFIG_LWIP_MAX_LISTENING_TCP;CONFIG_LWIP_TCP_HIGH_SPEED_RETRANSMISSION;CONFIG_LWIP_TCP_MAXRTX;CONFIG_TCP_MAXRTX;CONFIG_LWIP_TCP_SYNMAXRTX;CONFIG_TCP_SYNMAXRTX;CONFIG_LWIP_TCP_MSS;CONFIG_TCP_MSS;CONFIG_LWIP_TCP_TMR_INTERVAL;CONFIG_LWIP_TCP_MSL;CONFIG_TCP_MSL;CONFIG_LWIP_TCP_FIN_WAIT_TIMEOUT;CONFIG_LWIP_TCP_SND_BUF_DEFAULT;CONFIG_TCP_SND_BUF_DEFAULT;CONFIG_LWIP_TCP_WND_DEFAULT;CONFIG_TCP_WND_DEFAULT;CONFIG_LWIP_TCP_RECVMBOX_SIZE;CONFIG_TCP_RECVMBOX_SIZE;CONFIG_LWIP_TCP_ACCEPTMBOX_SIZE;CONFIG_LWIP_TCP_QUEUE_OOSEQ;CONFIG_TCP_QUEUE_OOSEQ;CONFIG_LWIP_TCP_OOSEQ_TIMEOUT;CONFIG_LWIP_TCP_OOSEQ_MAX_PBUFS;CONFIG_LWIP_TCP_SACK_OUT;CONFIG_LWIP_TCP_OVERSIZE_MSS;CONFIG_TCP_OVERSIZE_MSS;CONFIG_LWIP_TCP_OVERSIZE_QUARTER_MSS;CONFIG_TCP_OVERSIZE_QUARTER_MSS;CONFIG_LWIP_TCP_OVERSIZE_DISABLE;CONFIG_TCP_OVERSIZE_DISABLE;CONFIG_LWIP_TCP_RTO_TIME;CONFIG_LWIP_MAX_UDP_PCBS;CONFIG_LWIP_UDP_RECVMBOX_SIZE;CONFIG_UDP_RECVMBOX_SIZE;CONFIG_LWIP_CHECKSUM_CHECK_IP;CONFIG_LWIP_CHECKSUM_CHECK_UDP;CONFIG_LWIP_CHECKSUM_CHECK_ICMP;CONFIG_LWIP_TCPIP_TASK_STACK_SIZE;CONFIG_TCPIP_TASK_STACK_SIZE;CONFIG_LWIP_TCPIP_TASK_AFFINITY_NO_AFFINITY;CONFIG_TCPIP_TASK_AFFINITY_NO_AFFINITY;CONFIG_LWIP_TCPIP_TASK_AFFINITY_CPU0;CONFIG_TCPIP_TASK_AFFINITY_CPU0;CONFIG_LWIP_TCPIP_TASK_AFFINITY;CONFIG_TCPIP_TASK_AFFINITY;CONFIG_LWIP_IPV6_MEMP_NUM_ND6_QUEUE;CONFIG_LWIP_IPV6_ND6_NUM_NEIGHBORS;CONFIG_LWIP_IPV6_ND6_NUM_PREFIXES;CONFIG_LWIP_IPV6_ND6_NUM_ROUTERS;CONFIG_LWIP_IPV6_ND6_NUM_DESTINATIONS;CONFIG_LWIP_PPP_SUPPORT;CONFIG_PPP_SUPPORT;CONFIG_LWIP_SLIP_SUPPORT;CONFIG_LWIP_ICMP;CONFIG_LWIP_MULTICAST_PING;CONFIG_LWIP_BROADCAST_PING;CONFIG_LWIP_MAX_RAW_PCBS;CONFIG_LWIP_SNTP_MAX_SERVERS;CONFIG_LWIP_DHCP_GET_NTP_SRV;CONFIG_LWIP_SNTP_UPDATE_DELAY;CONFIG_LWIP_SNTP_STARTUP_DELAY;CONFIG_LWIP_SNTP_MAXIMUM_STARTUP_DELAY;CONFIG_LWIP_DNS_MAX_HOST_IP;CONFIG_LWIP_DNS_MAX_SERVERS;CONFIG_LWIP_FALLBACK_DNS_SERVER_SUPPORT;CONFIG_LWIP_DNS_SETSERVER_WITH_NETIF;CONFIG_LWIP_USE_ESP_GETADDRINFO;CONFIG_LWIP_BRIDGEIF_MAX_PORTS;CONFIG_LWIP_ESP_LWIP_ASSERT;CONFIG_LWIP_HOOK_TCP_ISN_NONE;CONFIG_LWIP_HOOK_TCP_ISN_DEFAULT;CONFIG_LWIP_HOOK_TCP_ISN_CUSTOM;CONFIG_LWIP_HOOK_IP6_ROUTE_NONE;CONFIG_LWIP_HOOK_IP6_ROUTE_DEFAULT;CONFIG_LWIP_HOOK_IP6_ROUTE_CUSTOM;CONFIG_LWIP_HOOK_ND6_GET_GW_NONE;CONFIG_LWIP_HOOK_ND6_GET_GW_DEFAULT;CONFIG_LWIP_HOOK_ND6_GET_GW_CUSTOM;CONFIG_LWIP_HOOK_IP6_SELECT_SRC_ADDR_NONE;CONFIG_LWIP_HOOK_IP6_SELECT_SRC_ADDR_DEFAULT;CONFIG_LWIP_HOOK_IP6_SELECT_SRC_ADDR_CUSTOM;CONFIG_LWIP_HOOK_DHCP_EXTRA_OPTION_NONE;CONFIG_LWIP_HOOK_DHCP_EXTRA_OPTION_DEFAULT;CONFIG_LWIP_HOOK_DHCP_EXTRA_OPTION_CUSTOM;CONFIG_LWIP_HOOK_NETCONN_EXT_RESOLVE_NONE;CONFIG_LWIP_HOOK_NETCONN_EXT_RESOLVE_DEFAULT;CONFIG_LWIP_HOOK_NETCONN_EXT_RESOLVE_CUSTOM;CONFIG_LWIP_HOOK_DNS_EXT_RESOLVE_NONE;CONFIG_LWIP_HOOK_DNS_EXT_RESOLVE_CUSTOM;CONFIG_LWIP_HOOK_IP6_INPUT_NONE;CONFIG_LWIP_HOOK_IP6_INPUT_DEFAULT;CONFIG_LWIP_HOOK_IP6_INPUT_CUSTOM;CONFIG_LWIP_DEBUG;CONFIG_MBEDTLS_INTERNAL_MEM_ALLOC;CONFIG_MBEDTLS_DEFAULT_MEM_ALLOC;CONFIG_MBEDTLS_CUSTOM_MEM_ALLOC;CONFIG_MBEDTLS_ASYMMETRIC_CONTENT_LEN;CONFIG_MBEDTLS_SSL_IN_CONTENT_LEN;CONFIG_MBEDTLS_SSL_OUT_CONTENT_LEN;CONFIG_MBEDTLS_DYNAMIC_BUFFER;CONFIG_MBEDTLS_DEBUG;CONFIG_MBEDTLS_SSL_PROTO_TLS1_3;CONFIG_MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH;CONFIG_MBEDTLS_X509_TRUSTED_CERT_CALLBACK;CONFIG_MBEDTLS_SSL_CONTEXT_SERIALIZATION;CONFIG_MBEDTLS_SSL_KEEP_PEER_CERTIFICATE;CONFIG_MBEDTLS_SSL_KEYING_MATERIAL_EXPORT;CONFIG_MBEDTLS_PKCS7_C;CONFIG_MBEDTLS_CERTIFICATE_BUNDLE;CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_FULL;CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_CMN;CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_NONE;CONFIG_MBEDTLS_CUSTOM_CERTIFICATE_BUNDLE;CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEPRECATED_LIST;CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_MAX_CERTS;CONFIG_MBEDTLS_ECP_RESTARTABLE;CONFIG_MBEDTLS_CMAC_C;CONFIG_MBEDTLS_HARDWARE_AES;CONFIG_MBEDTLS_AES_USE_INTERRUPT;CONFIG_MBEDTLS_AES_INTERRUPT_LEVEL;CONFIG_MBEDTLS_AES_USE_PSEUDO_ROUND_FUNC;CONFIG_MBEDTLS_GCM_SUPPORT_NON_AES_CIPHER;CONFIG_MBEDTLS_HARDWARE_MPI;CONFIG_MBEDTLS_LARGE_KEY_SOFTWARE_MPI;CONFIG_MBEDTLS_MPI_USE_INTERRUPT;CONFIG_MBEDTLS_MPI_INTERRUPT_LEVEL;CONFIG_MBEDTLS_HARDWARE_SHA;CONFIG_MBEDTLS_HARDWARE_ECC;CONFIG_MBEDTLS_ECC_OTHER_CURVES_SOFT_FALLBACK;CONFIG_MBEDTLS_ROM_MD5;CONFIG_MBEDTLS_HARDWARE_ECDSA_SIGN;CONFIG_MBEDTLS_HARDWARE_ECDSA_VERIFY;CONFIG_MBEDTLS_ATCA_HW_ECDSA_SIGN;CONFIG_MBEDTLS_ATCA_HW_ECDSA_VERIFY;CONFIG_MBEDTLS_HAVE_TIME;CONFIG_MBEDTLS_PLATFORM_TIME_ALT;CONFIG_MBEDTLS_HAVE_TIME_DATE;CONFIG_MBEDTLS_ECDSA_DETERMINISTIC;CONFIG_MBEDTLS_SHA1_C;CONFIG_MBEDTLS_SHA512_C;CONFIG_MBEDTLS_SHA3_C;CONFIG_MBEDTLS_TLS_SERVER_AND_CLIENT;CONFIG_MBEDTLS_TLS_SERVER_ONLY;CONFIG_MBEDTLS_TLS_CLIENT_ONLY;CONFIG_MBEDTLS_TLS_DISABLED;CONFIG_MBEDTLS_TLS_SERVER;CONFIG_MBEDTLS_TLS_CLIENT;CONFIG_MBEDTLS_TLS_ENABLED;CONFIG_MBEDTLS_PSK_MODES;CONFIG_MBEDTLS_KEY_EXCHANGE_RSA;CONFIG_MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE;CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_RSA;CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA;CONFIG_MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA;CONFIG_MBEDTLS_KEY_EXCHANGE_ECDH_RSA;CONFIG_MBEDTLS_SSL_RENEGOTIATION;CONFIG_MBEDTLS_SSL_PROTO_TLS1_2;CONFIG_MBEDTLS_SSL_PROTO_GMTSSL1_1;CONFIG_MBEDTLS_SSL_PROTO_DTLS;CONFIG_MBEDTLS_SSL_ALPN;CONFIG_MBEDTLS_CLIENT_SSL_SESSION_TICKETS;CONFIG_MBEDTLS_SERVER_SSL_SESSION_TICKETS;CONFIG_MBEDTLS_AES_C;CONFIG_MBEDTLS_CAMELLIA_C;CONFIG_MBEDTLS_DES_C;CONFIG_MBEDTLS_BLOWFISH_C;CONFIG_MBEDTLS_XTEA_C;CONFIG_MBEDTLS_CCM_C;CONFIG_MBEDTLS_GCM_C;CONFIG_MBEDTLS_NIST_KW_C;CONFIG_MBEDTLS_RIPEMD160_C;CONFIG_MBEDTLS_PEM_PARSE_C;CONFIG_MBEDTLS_PEM_WRITE_C;CONFIG_MBEDTLS_X509_CRL_PARSE_C;CONFIG_MBEDTLS_X509_CSR_PARSE_C;CONFIG_MBEDTLS_ECP_C;CONFIG_MBEDTLS_PK_PARSE_EC_EXTENDED;CONFIG_MBEDTLS_PK_PARSE_EC_COMPRESSED;CONFIG_MBEDTLS_DHM_C;CONFIG_MBEDTLS_ECDH_C;CONFIG_MBEDTLS_ECDSA_C;CONFIG_MBEDTLS_ECJPAKE_C;CONFIG_MBEDTLS_ECP_DP_SECP192R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_SECP224R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_SECP256R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_SECP384R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_SECP521R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_SECP192K1_ENABLED;CONFIG_MBEDTLS_ECP_DP_SECP224K1_ENABLED;CONFIG_MBEDTLS_ECP_DP_SECP256K1_ENABLED;CONFIG_MBEDTLS_ECP_DP_BP256R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_BP384R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_BP512R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_CURVE25519_ENABLED;CONFIG_MBEDTLS_ECP_NIST_OPTIM;CONFIG_MBEDTLS_ECP_FIXED_POINT_OPTIM;CONFIG_MBEDTLS_POLY1305_C;CONFIG_MBEDTLS_CHACHA20_C;CONFIG_MBEDTLS_HKDF_C;CONFIG_MBEDTLS_THREADING_C;CONFIG_MBEDTLS_ERROR_STRINGS;CONFIG_MBEDTLS_FS_IO;CONFIG_MBEDTLS_ALLOW_WEAK_CERTIFICATE_VERIFICATION;CONFIG_LIBC_NEWLIB;CONFIG_LIBC_MISC_IN_IRAM;CONFIG_LIBC_LOCKS_PLACE_IN_IRAM;CONFIG_LIBC_STDOUT_LINE_ENDING_CRLF;CONFIG_NEWLIB_STDOUT_LINE_ENDING_CRLF;CONFIG_LIBC_STDOUT_LINE_ENDING_LF;CONFIG_NEWLIB_STDOUT_LINE_ENDING_LF;CONFIG_LIBC_STDOUT_LINE_ENDING_CR;CONFIG_NEWLIB_STDOUT_LINE_ENDING_CR;CONFIG_LIBC_STDIN_LINE_ENDING_CRLF;CONFIG_NEWLIB_STDIN_LINE_ENDING_CRLF;CONFIG_LIBC_STDIN_LINE_ENDING_LF;CONFIG_NEWLIB_STDIN_LINE_ENDING_LF;CONFIG_LIBC_STDIN_LINE_ENDING_CR;CONFIG_NEWLIB_STDIN_LINE_ENDING_CR;CONFIG_LIBC_NEWLIB_NANO_FORMAT;CONFIG_NEWLIB_NANO_FORMAT;CONFIG_LIBC_TIME_SYSCALL_USE_RTC_HRT;CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC_HRT;CONFIG_LIBC_TIME_SYSCALL_USE_RTC;CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC;CONFIG_LIBC_TIME_SYSCALL_USE_HRT;CONFIG_NEWLIB_TIME_SYSCALL_USE_HRT;CONFIG_LIBC_TIME_SYSCALL_USE_NONE;CONFIG_NEWLIB_TIME_SYSCALL_USE_NONE;CONFIG_LIBC_OPTIMIZED_MISALIGNED_ACCESS;CONFIG_NVS_ENCRYPTION;CONFIG_NVS_ASSERT_ERROR_CHECK;CONFIG_NVS_LEGACY_DUP_KEYS_COMPATIBILITY;CONFIG_OPENTHREAD_ENABLED;CONFIG_OPENTHREAD_PACKAGE_NAME;CONFIG_OPENTHREAD_PLATFORM_INFO;CONFIG_OPENTHREAD_CONSOLE_TYPE_UART;CONFIG_OPENTHREAD_CONSOLE_TYPE_USB_SERIAL_JTAG;CONFIG_OPENTHREAD_CLI;CONFIG_OPENTHREAD_CONSOLE_COMMAND_PREFIX;CONFIG_OPENTHREAD_NETWORK_NAME;CONFIG_OPENTHREAD_MESH_LOCAL_PREFIX;CONFIG_OPENTHREAD_NETWORK_CHANNEL;CONFIG_OPENTHREAD_NETWORK_PANID;CONFIG_OPENTHREAD_NETWORK_EXTPANID;CONFIG_OPENTHREAD_NETWORK_MASTERKEY;CONFIG_OPENTHREAD_NETWORK_PSKC;CONFIG_OPENTHREAD_FTD;CONFIG_OPENTHREAD_MTD;CONFIG_OPENTHREAD_RADIO;CONFIG_OPENTHREAD_RADIO_NATIVE;CONFIG_OPENTHREAD_RADIO_SPINEL_UART;CONFIG_OPENTHREAD_RADIO_SPINEL_SPI;CONFIG_OPENTHREAD_RADIO_154_NONE;CONFIG_OPENTHREAD_RCP_UART;CONFIG_OPENTHREAD_RCP_SPI;CONFIG_OPENTHREAD_RCP_USB_SERIAL_JTAG;CONFIG_OPENTHREAD_NCP_VENDOR_HOOK;CONFIG_OPENTHREAD_COMMISSIONER;CONFIG_OPENTHREAD_JOINER;CONFIG_OPENTHREAD_SRP_CLIENT;CONFIG_OPENTHREAD_DNS_CLIENT;CONFIG_OPENTHREAD_DNS64_CLIENT;CONFIG_OPENTHREAD_LINK_METRICS;CONFIG_OPENTHREAD_BORDER_AGENT_ENABLE;CONFIG_OPENTHREAD_MACFILTER_ENABLE;CONFIG_OPENTHREAD_CSL_ENABLE;CONFIG_OPENTHREAD_CSL_ACCURACY;CONFIG_OPENTHREAD_CSL_UNCERTAIN;CONFIG_OPENTHREAD_CSL_DEBUG_ENABLE;CONFIG_OPENTHREAD_TIME_SYNC;CONFIG_OPENTHREAD_RX_ON_WHEN_IDLE;CONFIG_OPENTHREAD_DIAG;CONFIG_OPENTHREAD_PREFERRED_CHANNEL_MASK;CONFIG_OPENTHREAD_SUPPORTED_CHANNEL_MASK;CONFIG_OPENTHREAD_NUM_MESSAGE_BUFFERS;CONFIG_OPENTHREAD_XTAL_ACCURACY;CONFIG_OPENTHREAD_BUS_LATENCY;CONFIG_OPENTHREAD_MLE_MAX_CHILDREN;CONFIG_OPENTHREAD_TMF_ADDR_CACHE_ENTRIES;CONFIG_OPENTHREAD_UART_BUFFER_SIZE;CONFIG_OPENTHREAD_MAC_MAX_CSMA_BACKOFFS_DIRECT;CONFIG_OPENTHREAD_LOG_LEVEL_DYNAMIC;CONFIG_OPENTHREAD_LOG_LEVEL_NONE;CONFIG_OPENTHREAD_LOG_LEVEL_CRIT;CONFIG_OPENTHREAD_LOG_LEVEL_WARN;CONFIG_OPENTHREAD_LOG_LEVEL_NOTE;CONFIG_OPENTHREAD_LOG_LEVEL_INFO;CONFIG_OPENTHREAD_LOG_LEVEL_DEBG;CONFIG_OPENTHREAD_LOG_LEVEL;CONFIG_OPENTHREAD_HEADER_CUSTOM;CONFIG_OPENTHREAD_SPINEL_ONLY;CONFIG_OPENTHREAD_SPINEL_RX_FRAME_BUFFER_SIZE;CONFIG_PTHREAD_TASK_PRIO_DEFAULT;CONFIG_ESP32_PTHREAD_TASK_PRIO_DEFAULT;CONFIG_PTHREAD_TASK_STACK_SIZE_DEFAULT;CONFIG_ESP32_PTHREAD_TASK_STACK_SIZE_DEFAULT;CONFIG_PTHREAD_STACK_MIN;CONFIG_ESP32_PTHREAD_STACK_MIN;CONFIG_PTHREAD_TASK_CORE_DEFAULT;CONFIG_ESP32_PTHREAD_TASK_CORE_DEFAULT;CONFIG_PTHREAD_TASK_NAME_DEFAULT;CONFIG_ESP32_PTHREAD_TASK_NAME_DEFAULT;CONFIG_MMU_PAGE_SIZE_32KB;CONFIG_MMU_PAGE_MODE;CONFIG_MMU_PAGE_SIZE;CONFIG_SPI_FLASH_BROWNOUT_RESET_XMC;CONFIG_SPI_FLASH_BROWNOUT_RESET;CONFIG_SPI_FLASH_AUTO_SUSPEND;CONFIG_SPI_FLASH_SUSPEND_TSUS_VAL_US;CONFIG_SPI_FLASH_FORCE_ENABLE_XMC_C_SUSPEND;CONFIG_SPI_FLASH_FORCE_ENABLE_C6_H2_SUSPEND;CONFIG_SPI_FLASH_PLACE_FUNCTIONS_IN_IRAM;CONFIG_SPI_FLASH_VERIFY_WRITE;CONFIG_SPI_FLASH_ENABLE_COUNTERS;CONFIG_SPI_FLASH_ROM_DRIVER_PATCH;CONFIG_SPI_FLASH_ROM_IMPL;CONFIG_SPI_FLASH_DANGEROUS_WRITE_ABORTS;CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ABORTS;CONFIG_SPI_FLASH_DANGEROUS_WRITE_FAILS;CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_FAILS;CONFIG_SPI_FLASH_DANGEROUS_WRITE_ALLOWED;CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ALLOWED;CONFIG_SPI_FLASH_BYPASS_BLOCK_ERASE;CONFIG_SPI_FLASH_YIELD_DURING_ERASE;CONFIG_SPI_FLASH_ERASE_YIELD_DURATION_MS;CONFIG_SPI_FLASH_ERASE_YIELD_TICKS;CONFIG_SPI_FLASH_WRITE_CHUNK_SIZE;CONFIG_SPI_FLASH_SIZE_OVERRIDE;CONFIG_SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED;CONFIG_SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST;CONFIG_SPI_FLASH_VENDOR_XMC_SUPPORT_ENABLED;CONFIG_SPI_FLASH_VENDOR_GD_SUPPORT_ENABLED;CONFIG_SPI_FLASH_SUPPORT_ISSI_CHIP;CONFIG_SPI_FLASH_SUPPORT_MXIC_CHIP;CONFIG_SPI_FLASH_SUPPORT_GD_CHIP;CONFIG_SPI_FLASH_SUPPORT_WINBOND_CHIP;CONFIG_SPI_FLASH_SUPPORT_BOYA_CHIP;CONFIG_SPI_FLASH_SUPPORT_TH_CHIP;CONFIG_SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE;CONFIG_VFS_SUPPORT_IO;CONFIG_VFS_SUPPORT_DIR;CONFIG_VFS_SUPPORT_SELECT;CONFIG_VFS_SUPPRESS_SELECT_DEBUG_OUTPUT;CONFIG_SUPPRESS_SELECT_DEBUG_OUTPUT;CONFIG_VFS_SELECT_IN_RAM;CONFIG_VFS_SUPPORT_TERMIOS;CONFIG_SUPPORT_TERMIOS;CONFIG_VFS_MAX_COUNT;CONFIG_VFS_SEMIHOSTFS_MAX_MOUNT_POINTS;CONFIG_SEMIHOSTFS_MAX_MOUNT_POINTS;CONFIG_VFS_INITIALIZE_DEV_NULL;CONFIG_IDF_EXPERIMENTAL_FEATURES) -# List of deprecated options for backward compatibility -set(CONFIG_APP_BUILD_TYPE_ELF_RAM "") -set(CONFIG_NO_BLOBS "") -set(CONFIG_APP_ROLLBACK_ENABLE "") -set(CONFIG_LOG_BOOTLOADER_LEVEL_NONE "") -set(CONFIG_LOG_BOOTLOADER_LEVEL_ERROR "") -set(CONFIG_LOG_BOOTLOADER_LEVEL_WARN "") -set(CONFIG_LOG_BOOTLOADER_LEVEL_INFO "y") -set(CONFIG_LOG_BOOTLOADER_LEVEL_DEBUG "") -set(CONFIG_LOG_BOOTLOADER_LEVEL_VERBOSE "") -set(CONFIG_LOG_BOOTLOADER_LEVEL "3") -set(CONFIG_FLASH_ENCRYPTION_ENABLED "") -set(CONFIG_FLASHMODE_QIO "") -set(CONFIG_FLASHMODE_QOUT "") -set(CONFIG_FLASHMODE_DIO "y") -set(CONFIG_FLASHMODE_DOUT "") -set(CONFIG_MONITOR_BAUD "115200") -set(CONFIG_OPTIMIZATION_LEVEL_DEBUG "") -set(CONFIG_COMPILER_OPTIMIZATION_LEVEL_DEBUG "") -set(CONFIG_COMPILER_OPTIMIZATION_DEFAULT "") -set(CONFIG_OPTIMIZATION_LEVEL_RELEASE "y") -set(CONFIG_COMPILER_OPTIMIZATION_LEVEL_RELEASE "y") -set(CONFIG_OPTIMIZATION_ASSERTIONS_ENABLED "") -set(CONFIG_OPTIMIZATION_ASSERTIONS_SILENT "y") -set(CONFIG_OPTIMIZATION_ASSERTIONS_DISABLED "") -set(CONFIG_OPTIMIZATION_ASSERTION_LEVEL "1") -set(CONFIG_CXX_EXCEPTIONS "") -set(CONFIG_STACK_CHECK_NONE "y") -set(CONFIG_STACK_CHECK_NORM "") -set(CONFIG_STACK_CHECK_STRONG "") -set(CONFIG_STACK_CHECK_ALL "") -set(CONFIG_WARN_WRITE_STRINGS "") -set(CONFIG_EXTERNAL_COEX_ENABLE "") -set(CONFIG_ESP_WIFI_EXTERNAL_COEXIST_ENABLE "") -set(CONFIG_ANA_CMPR_ISR_IRAM_SAFE "") -set(CONFIG_GPTIMER_ISR_IRAM_SAFE "") -set(CONFIG_MCPWM_ISR_IRAM_SAFE "") -set(CONFIG_EVENT_LOOP_PROFILING "") -set(CONFIG_POST_EVENTS_FROM_ISR "y") -set(CONFIG_POST_EVENTS_FROM_IRAM_ISR "y") -set(CONFIG_ESP_SYSTEM_PD_FLASH "") -set(CONFIG_PERIPH_CTRL_FUNC_IN_IRAM "y") -set(CONFIG_BROWNOUT_DET "y") -set(CONFIG_BROWNOUT_DET_LVL_SEL_7 "") -set(CONFIG_BROWNOUT_DET_LVL_SEL_6 "") -set(CONFIG_BROWNOUT_DET_LVL_SEL_5 "") -set(CONFIG_BROWNOUT_DET_LVL_SEL_4 "") -set(CONFIG_BROWNOUT_DET_LVL_SEL_3 "") -set(CONFIG_BROWNOUT_DET_LVL_SEL_2 "") -set(CONFIG_BROWNOUT_DET_LVL_SEL_1 "") -set(CONFIG_BROWNOUT_DET_LVL_SEL_0 "y") -set(CONFIG_BROWNOUT_DET_LVL "0") -set(CONFIG_ESP_SYSTEM_BROWNOUT_INTR "y") -set(CONFIG_ESP32_PHY_CALIBRATION_AND_DATA_STORAGE "y") -set(CONFIG_ESP32_PHY_MAX_WIFI_TX_POWER "20") -set(CONFIG_ESP32_PHY_MAX_TX_POWER "20") -set(CONFIG_REDUCE_PHY_TX_POWER "") -set(CONFIG_ESP32_REDUCE_PHY_TX_POWER "") -set(CONFIG_ESP_SYSTEM_PM_POWER_DOWN_CPU "y") -set(CONFIG_SYSTEM_EVENT_QUEUE_SIZE "32") -set(CONFIG_SYSTEM_EVENT_TASK_STACK_SIZE "2304") -set(CONFIG_MAIN_TASK_STACK_SIZE "3584") -set(CONFIG_CONSOLE_UART_DEFAULT "y") -set(CONFIG_CONSOLE_UART_CUSTOM "") -set(CONFIG_CONSOLE_UART_NONE "") -set(CONFIG_ESP_CONSOLE_UART_NONE "") -set(CONFIG_CONSOLE_UART "y") -set(CONFIG_CONSOLE_UART_NUM "0") -set(CONFIG_CONSOLE_UART_BAUDRATE "115200") -set(CONFIG_INT_WDT "y") -set(CONFIG_INT_WDT_TIMEOUT_MS "300") -set(CONFIG_TASK_WDT "y") -set(CONFIG_ESP_TASK_WDT "y") -set(CONFIG_TASK_WDT_PANIC "") -set(CONFIG_TASK_WDT_TIMEOUT_S "5") -set(CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU0 "y") -set(CONFIG_ESP32_DEBUG_STUBS_ENABLE "") -set(CONFIG_IPC_TASK_STACK_SIZE "1024") -set(CONFIG_TIMER_TASK_STACK_SIZE "3584") -set(CONFIG_TIMER_TASK_PRIORITY "1") -set(CONFIG_TIMER_TASK_STACK_DEPTH "2048") -set(CONFIG_TIMER_QUEUE_LENGTH "10") -set(CONFIG_ENABLE_STATIC_TASK_CLEAN_UP_HOOK "") -set(CONFIG_HAL_ASSERTION_SILIENT "") -set(CONFIG_L2_TO_L3_COPY "") -set(CONFIG_ESP_GRATUITOUS_ARP "y") -set(CONFIG_GARP_TMR_INTERVAL "60") -set(CONFIG_TCPIP_RECVMBOX_SIZE "32") -set(CONFIG_TCP_MAXRTX "12") -set(CONFIG_TCP_SYNMAXRTX "12") -set(CONFIG_TCP_MSS "1440") -set(CONFIG_TCP_MSL "60000") -set(CONFIG_TCP_SND_BUF_DEFAULT "5760") -set(CONFIG_TCP_WND_DEFAULT "5760") -set(CONFIG_TCP_RECVMBOX_SIZE "6") -set(CONFIG_TCP_QUEUE_OOSEQ "y") -set(CONFIG_TCP_OVERSIZE_MSS "y") -set(CONFIG_TCP_OVERSIZE_QUARTER_MSS "") -set(CONFIG_TCP_OVERSIZE_DISABLE "") -set(CONFIG_UDP_RECVMBOX_SIZE "6") -set(CONFIG_TCPIP_TASK_STACK_SIZE "3072") -set(CONFIG_TCPIP_TASK_AFFINITY_NO_AFFINITY "y") -set(CONFIG_TCPIP_TASK_AFFINITY_CPU0 "") -set(CONFIG_TCPIP_TASK_AFFINITY "0x7fffffff") -set(CONFIG_PPP_SUPPORT "") -set(CONFIG_NEWLIB_STDOUT_LINE_ENDING_CRLF "y") -set(CONFIG_NEWLIB_STDOUT_LINE_ENDING_LF "") -set(CONFIG_NEWLIB_STDOUT_LINE_ENDING_CR "") -set(CONFIG_NEWLIB_STDIN_LINE_ENDING_CRLF "") -set(CONFIG_NEWLIB_STDIN_LINE_ENDING_LF "") -set(CONFIG_NEWLIB_STDIN_LINE_ENDING_CR "y") -set(CONFIG_NEWLIB_NANO_FORMAT "y") -set(CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC_HRT "y") -set(CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC "") -set(CONFIG_NEWLIB_TIME_SYSCALL_USE_HRT "") -set(CONFIG_NEWLIB_TIME_SYSCALL_USE_NONE "") -set(CONFIG_ESP32_PTHREAD_TASK_PRIO_DEFAULT "5") -set(CONFIG_ESP32_PTHREAD_TASK_STACK_SIZE_DEFAULT "3072") -set(CONFIG_ESP32_PTHREAD_STACK_MIN "768") -set(CONFIG_ESP32_PTHREAD_TASK_CORE_DEFAULT "-1") -set(CONFIG_ESP32_PTHREAD_TASK_NAME_DEFAULT "pthread") -set(CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ABORTS "y") -set(CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_FAILS "") -set(CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ALLOWED "") -set(CONFIG_SUPPRESS_SELECT_DEBUG_OUTPUT "y") -set(CONFIG_SUPPORT_TERMIOS "y") -set(CONFIG_SEMIHOSTFS_MAX_MOUNT_POINTS "1") diff --git a/esp32-thread/open-thread-rcp/build/config/sdkconfig.h b/esp32-thread/open-thread-rcp/build/config/sdkconfig.h deleted file mode 100644 index b6d1a5c4..00000000 --- a/esp32-thread/open-thread-rcp/build/config/sdkconfig.h +++ /dev/null @@ -1,957 +0,0 @@ -/* - * Automatically generated file. DO NOT EDIT. - * Espressif IoT Development Framework (ESP-IDF) 5.5.1 Configuration Header - */ -#pragma once -#define CONFIG_SOC_CAPS_ECO_VER_MAX 102 -#define CONFIG_SOC_ADC_SUPPORTED 1 -#define CONFIG_SOC_ANA_CMPR_SUPPORTED 1 -#define CONFIG_SOC_DEDICATED_GPIO_SUPPORTED 1 -#define CONFIG_SOC_UART_SUPPORTED 1 -#define CONFIG_SOC_UHCI_SUPPORTED 1 -#define CONFIG_SOC_GDMA_SUPPORTED 1 -#define CONFIG_SOC_AHB_GDMA_SUPPORTED 1 -#define CONFIG_SOC_ASYNC_MEMCPY_SUPPORTED 1 -#define CONFIG_SOC_PCNT_SUPPORTED 1 -#define CONFIG_SOC_MCPWM_SUPPORTED 1 -#define CONFIG_SOC_TWAI_SUPPORTED 1 -#define CONFIG_SOC_PHY_SUPPORTED 1 -#define CONFIG_SOC_BT_SUPPORTED 1 -#define CONFIG_SOC_GPTIMER_SUPPORTED 1 -#define CONFIG_SOC_IEEE802154_SUPPORTED 1 -#define CONFIG_SOC_IEEE802154_BLE_ONLY 1 -#define CONFIG_SOC_USB_SERIAL_JTAG_SUPPORTED 1 -#define CONFIG_SOC_TEMP_SENSOR_SUPPORTED 1 -#define CONFIG_SOC_SUPPORTS_SECURE_DL_MODE 1 -#define CONFIG_SOC_EFUSE_KEY_PURPOSE_FIELD 1 -#define CONFIG_SOC_EFUSE_SUPPORTED 1 -#define CONFIG_SOC_RTC_FAST_MEM_SUPPORTED 1 -#define CONFIG_SOC_RTC_MEM_SUPPORTED 1 -#define CONFIG_SOC_I2S_SUPPORTED 1 -#define CONFIG_SOC_SDM_SUPPORTED 1 -#define CONFIG_SOC_ETM_SUPPORTED 1 -#define CONFIG_SOC_RMT_SUPPORTED 1 -#define CONFIG_SOC_PARLIO_SUPPORTED 1 -#define CONFIG_SOC_GPSPI_SUPPORTED 1 -#define CONFIG_SOC_LEDC_SUPPORTED 1 -#define CONFIG_SOC_I2C_SUPPORTED 1 -#define CONFIG_SOC_SYSTIMER_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_HMAC_SUPPORTED 1 -#define CONFIG_SOC_DIG_SIGN_SUPPORTED 1 -#define CONFIG_SOC_ECC_SUPPORTED 1 -#define CONFIG_SOC_ECC_EXTENDED_MODES_SUPPORTED 1 -#define CONFIG_SOC_ECDSA_SUPPORTED 1 -#define CONFIG_SOC_FLASH_ENC_SUPPORTED 1 -#define CONFIG_SOC_SECURE_BOOT_SUPPORTED 1 -#define CONFIG_SOC_BOD_SUPPORTED 1 -#define CONFIG_SOC_VBAT_SUPPORTED 1 -#define CONFIG_SOC_APM_SUPPORTED 1 -#define CONFIG_SOC_PMU_SUPPORTED 1 -#define CONFIG_SOC_LP_TIMER_SUPPORTED 1 -#define CONFIG_SOC_LP_AON_SUPPORTED 1 -#define CONFIG_SOC_PAU_SUPPORTED 1 -#define CONFIG_SOC_CLK_TREE_SUPPORTED 1 -#define CONFIG_SOC_ASSIST_DEBUG_SUPPORTED 1 -#define CONFIG_SOC_WDT_SUPPORTED 1 -#define CONFIG_SOC_SPI_FLASH_SUPPORTED 1 -#define CONFIG_SOC_RNG_SUPPORTED 1 -#define CONFIG_SOC_LIGHT_SLEEP_SUPPORTED 1 -#define CONFIG_SOC_DEEP_SLEEP_SUPPORTED 1 -#define CONFIG_SOC_MODEM_CLOCK_SUPPORTED 1 -#define CONFIG_SOC_PM_SUPPORTED 1 -#define CONFIG_SOC_XTAL_SUPPORT_32M 1 -#define CONFIG_SOC_XTAL_CLOCK_PATH_DEPENDS_ON_TOP_DOMAIN 1 -#define CONFIG_SOC_AES_SUPPORT_DMA 1 -#define CONFIG_SOC_AES_GDMA 1 -#define CONFIG_SOC_AES_SUPPORT_AES_128 1 -#define CONFIG_SOC_AES_SUPPORT_AES_256 1 -#define CONFIG_SOC_AES_SUPPORT_PSEUDO_ROUND_FUNCTION 1 -#define CONFIG_SOC_ADC_DIG_CTRL_SUPPORTED 1 -#define CONFIG_SOC_ADC_DIG_IIR_FILTER_SUPPORTED 1 -#define CONFIG_SOC_ADC_MONITOR_SUPPORTED 1 -#define CONFIG_SOC_ADC_DMA_SUPPORTED 1 -#define CONFIG_SOC_ADC_PERIPH_NUM 1 -#define CONFIG_SOC_ADC_MAX_CHANNEL_NUM 5 -#define CONFIG_SOC_ADC_ATTEN_NUM 4 -#define CONFIG_SOC_ADC_DIGI_CONTROLLER_NUM 1 -#define CONFIG_SOC_ADC_PATT_LEN_MAX 8 -#define CONFIG_SOC_ADC_DIGI_MAX_BITWIDTH 12 -#define CONFIG_SOC_ADC_DIGI_MIN_BITWIDTH 12 -#define CONFIG_SOC_ADC_DIGI_IIR_FILTER_NUM 2 -#define CONFIG_SOC_ADC_DIGI_MONITOR_NUM 2 -#define CONFIG_SOC_ADC_DIGI_RESULT_BYTES 4 -#define CONFIG_SOC_ADC_DIGI_DATA_BYTES_PER_CONV 4 -#define CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_HIGH 83333 -#define CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_LOW 611 -#define CONFIG_SOC_ADC_RTC_MIN_BITWIDTH 12 -#define CONFIG_SOC_ADC_RTC_MAX_BITWIDTH 12 -#define CONFIG_SOC_ADC_CALIBRATION_V1_SUPPORTED 1 -#define CONFIG_SOC_ADC_SELF_HW_CALI_SUPPORTED 1 -#define CONFIG_SOC_ADC_CALIB_CHAN_COMPENS_SUPPORTED 1 -#define CONFIG_SOC_ADC_TEMPERATURE_SHARE_INTR 1 -#define CONFIG_SOC_ADC_SHARED_POWER 1 -#define CONFIG_SOC_BROWNOUT_RESET_SUPPORTED 1 -#define CONFIG_SOC_SHARED_IDCACHE_SUPPORTED 1 -#define CONFIG_SOC_CACHE_FREEZE_SUPPORTED 1 -#define CONFIG_SOC_CPU_CORES_NUM 1 -#define CONFIG_SOC_CPU_INTR_NUM 32 -#define CONFIG_SOC_CPU_HAS_FLEXIBLE_INTC 1 -#define CONFIG_SOC_INT_PLIC_SUPPORTED 1 -#define CONFIG_SOC_CPU_HAS_CSR_PC 1 -#define CONFIG_SOC_CPU_BREAKPOINTS_NUM 4 -#define CONFIG_SOC_CPU_WATCHPOINTS_NUM 4 -#define CONFIG_SOC_CPU_WATCHPOINT_MAX_REGION_SIZE 0x80000000 -#define CONFIG_SOC_CPU_HAS_PMA 1 -#define CONFIG_SOC_CPU_IDRAM_SPLIT_USING_PMP 1 -#define CONFIG_SOC_CPU_PMP_REGION_GRANULARITY 4 -#define CONFIG_SOC_MMU_PAGE_SIZE_CONFIGURABLE 1 -#define CONFIG_SOC_MMU_PAGE_SIZE_8KB_SUPPORTED 1 -#define CONFIG_SOC_MMU_PERIPH_NUM 1 -#define CONFIG_SOC_MMU_LINEAR_ADDRESS_REGION_NUM 1 -#define CONFIG_SOC_MMU_DI_VADDR_SHARED 1 -#define CONFIG_SOC_DS_SIGNATURE_MAX_BIT_LEN 3072 -#define CONFIG_SOC_DS_KEY_PARAM_MD_IV_LENGTH 16 -#define CONFIG_SOC_DS_KEY_CHECK_MAX_WAIT_US 1100 -#define CONFIG_SOC_AHB_GDMA_VERSION 1 -#define CONFIG_SOC_GDMA_NUM_GROUPS_MAX 1 -#define CONFIG_SOC_GDMA_PAIRS_PER_GROUP_MAX 3 -#define CONFIG_SOC_GDMA_SUPPORT_ETM 1 -#define CONFIG_SOC_GDMA_SUPPORT_SLEEP_RETENTION 1 -#define CONFIG_SOC_ETM_GROUPS 1 -#define CONFIG_SOC_ETM_CHANNELS_PER_GROUP 50 -#define CONFIG_SOC_ETM_SUPPORT_SLEEP_RETENTION 1 -#define CONFIG_SOC_GPIO_PORT 1 -#define CONFIG_SOC_GPIO_PIN_COUNT 28 -#define CONFIG_SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER 1 -#define CONFIG_SOC_GPIO_FLEX_GLITCH_FILTER_NUM 8 -#define CONFIG_SOC_GPIO_SUPPORT_PIN_HYS_FILTER 1 -#define CONFIG_SOC_GPIO_SUPPORT_PIN_HYS_CTRL_BY_EFUSE 1 -#define CONFIG_SOC_GPIO_SUPPORT_ETM 1 -#define CONFIG_SOC_GPIO_SUPPORT_RTC_INDEPENDENT 1 -#define CONFIG_SOC_LP_IO_CLOCK_IS_INDEPENDENT 1 -#define CONFIG_SOC_GPIO_IN_RANGE_MAX 27 -#define CONFIG_SOC_GPIO_OUT_RANGE_MAX 27 -#define CONFIG_SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK 0x000000000FFF807F -#define CONFIG_SOC_GPIO_SUPPORT_FORCE_HOLD 1 -#define CONFIG_SOC_GPIO_SUPPORT_HOLD_IO_IN_DSLP 1 -#define CONFIG_SOC_GPIO_SUPPORT_HOLD_SINGLE_IO_IN_DSLP 1 -#define CONFIG_SOC_GPIO_CLOCKOUT_BY_GPIO_MATRIX 1 -#define CONFIG_SOC_CLOCKOUT_HAS_SOURCE_GATE 1 -#define CONFIG_SOC_GPIO_CLOCKOUT_CHANNEL_NUM 3 -#define CONFIG_SOC_RTCIO_PIN_COUNT 8 -#define CONFIG_SOC_RTCIO_HOLD_SUPPORTED 1 -#define CONFIG_SOC_DEDIC_GPIO_OUT_CHANNELS_NUM 8 -#define CONFIG_SOC_DEDIC_GPIO_IN_CHANNELS_NUM 8 -#define CONFIG_SOC_DEDIC_PERIPH_ALWAYS_ENABLE 1 -#define CONFIG_SOC_ANA_CMPR_NUM 1 -#define CONFIG_SOC_ANA_CMPR_INTR_SHARE_WITH_GPIO 1 -#define CONFIG_SOC_I2C_NUM 2 -#define CONFIG_SOC_HP_I2C_NUM 2 -#define CONFIG_SOC_I2C_FIFO_LEN 32 -#define CONFIG_SOC_I2C_CMD_REG_NUM 8 -#define CONFIG_SOC_I2C_SUPPORT_SLAVE 1 -#define CONFIG_SOC_I2C_SUPPORT_HW_FSM_RST 1 -#define CONFIG_SOC_I2C_SUPPORT_HW_CLR_BUS 1 -#define CONFIG_SOC_I2C_SUPPORT_XTAL 1 -#define CONFIG_SOC_I2C_SUPPORT_RTC 1 -#define CONFIG_SOC_I2C_SUPPORT_10BIT_ADDR 1 -#define CONFIG_SOC_I2C_SLAVE_SUPPORT_BROADCAST 1 -#define CONFIG_SOC_I2C_SLAVE_CAN_GET_STRETCH_CAUSE 1 -#define CONFIG_SOC_I2C_SLAVE_SUPPORT_I2CRAM_ACCESS 1 -#define CONFIG_SOC_I2C_SLAVE_SUPPORT_SLAVE_UNMATCH 1 -#define CONFIG_SOC_I2C_SUPPORT_SLEEP_RETENTION 1 -#define CONFIG_SOC_I2S_NUM 1 -#define CONFIG_SOC_I2S_HW_VERSION_2 1 -#define CONFIG_SOC_I2S_SUPPORTS_ETM 1 -#define CONFIG_SOC_I2S_SUPPORTS_XTAL 1 -#define CONFIG_SOC_I2S_SUPPORTS_PLL_F96M 1 -#define CONFIG_SOC_I2S_SUPPORTS_PLL_F64M 1 -#define CONFIG_SOC_I2S_SUPPORTS_PCM 1 -#define CONFIG_SOC_I2S_SUPPORTS_PDM 1 -#define CONFIG_SOC_I2S_SUPPORTS_PDM_TX 1 -#define CONFIG_SOC_I2S_SUPPORTS_PCM2PDM 1 -#define CONFIG_SOC_I2S_SUPPORTS_PDM_RX 1 -#define CONFIG_SOC_I2S_PDM_MAX_TX_LINES 2 -#define CONFIG_SOC_I2S_PDM_MAX_RX_LINES 1 -#define CONFIG_SOC_I2S_SUPPORTS_TDM 1 -#define CONFIG_SOC_I2S_TDM_FULL_DATA_WIDTH 1 -#define CONFIG_SOC_I2S_SUPPORT_SLEEP_RETENTION 1 -#define CONFIG_SOC_LEDC_SUPPORT_PLL_DIV_CLOCK 1 -#define CONFIG_SOC_LEDC_SUPPORT_XTAL_CLOCK 1 -#define CONFIG_SOC_LEDC_TIMER_NUM 4 -#define CONFIG_SOC_LEDC_CHANNEL_NUM 6 -#define CONFIG_SOC_LEDC_TIMER_BIT_WIDTH 20 -#define CONFIG_SOC_LEDC_SUPPORT_FADE_STOP 1 -#define CONFIG_SOC_LEDC_GAMMA_CURVE_FADE_SUPPORTED 1 -#define CONFIG_SOC_LEDC_GAMMA_CURVE_FADE_RANGE_MAX 16 -#define CONFIG_SOC_LEDC_FADE_PARAMS_BIT_WIDTH 10 -#define CONFIG_SOC_LEDC_SUPPORT_SLEEP_RETENTION 1 -#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 4 -#define CONFIG_SOC_PCNT_CHANNELS_PER_UNIT 2 -#define CONFIG_SOC_PCNT_THRES_POINT_PER_UNIT 2 -#define CONFIG_SOC_PCNT_SUPPORT_RUNTIME_THRES_UPDATE 1 -#define CONFIG_SOC_PCNT_SUPPORT_STEP_NOTIFY 1 -#define CONFIG_SOC_PCNT_SUPPORT_SLEEP_RETENTION 1 -#define CONFIG_SOC_RMT_GROUPS 1 -#define CONFIG_SOC_RMT_TX_CANDIDATES_PER_GROUP 2 -#define CONFIG_SOC_RMT_RX_CANDIDATES_PER_GROUP 2 -#define CONFIG_SOC_RMT_CHANNELS_PER_GROUP 4 -#define CONFIG_SOC_RMT_MEM_WORDS_PER_CHANNEL 48 -#define CONFIG_SOC_RMT_SUPPORT_RX_PINGPONG 1 -#define CONFIG_SOC_RMT_SUPPORT_RX_DEMODULATION 1 -#define CONFIG_SOC_RMT_SUPPORT_TX_ASYNC_STOP 1 -#define CONFIG_SOC_RMT_SUPPORT_TX_LOOP_COUNT 1 -#define CONFIG_SOC_RMT_SUPPORT_TX_LOOP_AUTO_STOP 1 -#define CONFIG_SOC_RMT_SUPPORT_TX_SYNCHRO 1 -#define CONFIG_SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY 1 -#define CONFIG_SOC_RMT_SUPPORT_XTAL 1 -#define CONFIG_SOC_RMT_SUPPORT_RC_FAST 1 -#define CONFIG_SOC_RMT_SUPPORT_SLEEP_RETENTION 1 -#define CONFIG_SOC_MCPWM_GROUPS 1 -#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_MCPWM_SWSYNC_CAN_PROPAGATE 1 -#define CONFIG_SOC_MCPWM_SUPPORT_ETM 1 -#define CONFIG_SOC_MCPWM_CAPTURE_CLK_FROM_GROUP 1 -#define CONFIG_SOC_MCPWM_SUPPORT_SLEEP_RETENTION 1 -#define CONFIG_SOC_PARLIO_GROUPS 1 -#define CONFIG_SOC_PARLIO_TX_UNITS_PER_GROUP 1 -#define CONFIG_SOC_PARLIO_RX_UNITS_PER_GROUP 1 -#define CONFIG_SOC_PARLIO_TX_UNIT_MAX_DATA_WIDTH 8 -#define CONFIG_SOC_PARLIO_RX_UNIT_MAX_DATA_WIDTH 8 -#define CONFIG_SOC_PARLIO_TX_CLK_SUPPORT_GATING 1 -#define CONFIG_SOC_PARLIO_RX_CLK_SUPPORT_GATING 1 -#define CONFIG_SOC_PARLIO_RX_CLK_SUPPORT_OUTPUT 1 -#define CONFIG_SOC_PARLIO_TRANS_BIT_ALIGN 1 -#define CONFIG_SOC_PARLIO_TX_SUPPORT_LOOP_TRANSMISSION 1 -#define CONFIG_SOC_PARLIO_SUPPORT_SLEEP_RETENTION 1 -#define CONFIG_SOC_PARLIO_SUPPORT_SPI_LCD 1 -#define CONFIG_SOC_MPI_MEM_BLOCKS_NUM 4 -#define CONFIG_SOC_MPI_OPERATIONS_NUM 3 -#define CONFIG_SOC_RSA_MAX_BIT_LEN 3072 -#define CONFIG_SOC_SHA_DMA_MAX_BUFFER_SIZE 3968 -#define CONFIG_SOC_SHA_SUPPORT_DMA 1 -#define CONFIG_SOC_SHA_SUPPORT_RESUME 1 -#define CONFIG_SOC_SHA_GDMA 1 -#define CONFIG_SOC_SHA_SUPPORT_SHA1 1 -#define CONFIG_SOC_SHA_SUPPORT_SHA224 1 -#define CONFIG_SOC_SHA_SUPPORT_SHA256 1 -#define CONFIG_SOC_SDM_GROUPS 1 -#define CONFIG_SOC_SDM_CHANNELS_PER_GROUP 4 -#define CONFIG_SOC_SDM_CLK_SUPPORT_PLL_F48M 1 -#define CONFIG_SOC_SDM_CLK_SUPPORT_XTAL 1 -#define CONFIG_SOC_SPI_PERIPH_NUM 2 -#define CONFIG_SOC_SPI_MAX_CS_NUM 6 -#define CONFIG_SOC_SPI_MAXIMUM_BUFFER_SIZE 64 -#define CONFIG_SOC_SPI_SUPPORT_DDRCLK 1 -#define CONFIG_SOC_SPI_SLAVE_SUPPORT_SEG_TRANS 1 -#define CONFIG_SOC_SPI_SUPPORT_CD_SIG 1 -#define CONFIG_SOC_SPI_SUPPORT_CONTINUOUS_TRANS 1 -#define CONFIG_SOC_SPI_SUPPORT_SLAVE_HD_VER2 1 -#define CONFIG_SOC_SPI_SUPPORT_SLEEP_RETENTION 1 -#define CONFIG_SOC_SPI_SUPPORT_CLK_XTAL 1 -#define CONFIG_SOC_SPI_SUPPORT_CLK_PLL_F48M 1 -#define CONFIG_SOC_SPI_SUPPORT_CLK_RC_FAST 1 -#define CONFIG_SOC_SPI_SCT_SUPPORTED 1 -#define CONFIG_SOC_SPI_SCT_REG_NUM 14 -#define CONFIG_SOC_SPI_SCT_BUFFER_NUM_MAX 1 -#define CONFIG_SOC_SPI_SCT_CONF_BITLEN_MAX 0x3FFFA -#define CONFIG_SOC_MEMSPI_IS_INDEPENDENT 1 -#define CONFIG_SOC_SPI_MAX_PRE_DIVIDER 16 -#define CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE 1 -#define CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND 1 -#define CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_RESUME 1 -#define CONFIG_SOC_SPI_MEM_SUPPORT_IDLE_INTR 1 -#define CONFIG_SOC_SPI_MEM_SUPPORT_SW_SUSPEND 1 -#define CONFIG_SOC_SPI_MEM_SUPPORT_CHECK_SUS 1 -#define CONFIG_SOC_SPI_MEM_SUPPORT_WRAP 1 -#define CONFIG_SOC_MEMSPI_SRC_FREQ_64M_SUPPORTED 1 -#define CONFIG_SOC_MEMSPI_SRC_FREQ_32M_SUPPORTED 1 -#define CONFIG_SOC_MEMSPI_SRC_FREQ_16M_SUPPORTED 1 -#define CONFIG_SOC_SYSTIMER_COUNTER_NUM 2 -#define CONFIG_SOC_SYSTIMER_ALARM_NUM 3 -#define CONFIG_SOC_SYSTIMER_BIT_WIDTH_LO 32 -#define CONFIG_SOC_SYSTIMER_BIT_WIDTH_HI 20 -#define CONFIG_SOC_SYSTIMER_FIXED_DIVIDER 1 -#define CONFIG_SOC_SYSTIMER_SUPPORT_RC_FAST 1 -#define CONFIG_SOC_SYSTIMER_INT_LEVEL 1 -#define CONFIG_SOC_SYSTIMER_ALARM_MISS_COMPENSATE 1 -#define CONFIG_SOC_SYSTIMER_SUPPORT_ETM 1 -#define CONFIG_SOC_LP_TIMER_BIT_WIDTH_LO 32 -#define CONFIG_SOC_LP_TIMER_BIT_WIDTH_HI 16 -#define CONFIG_SOC_TIMER_GROUPS 2 -#define CONFIG_SOC_TIMER_GROUP_TIMERS_PER_GROUP 1 -#define CONFIG_SOC_TIMER_GROUP_COUNTER_BIT_WIDTH 54 -#define CONFIG_SOC_TIMER_GROUP_SUPPORT_XTAL 1 -#define CONFIG_SOC_TIMER_GROUP_SUPPORT_RC_FAST 1 -#define CONFIG_SOC_TIMER_GROUP_TOTAL_TIMERS 2 -#define CONFIG_SOC_TIMER_SUPPORT_ETM 1 -#define CONFIG_SOC_TIMER_SUPPORT_SLEEP_RETENTION 1 -#define CONFIG_SOC_MWDT_SUPPORT_XTAL 1 -#define CONFIG_SOC_MWDT_SUPPORT_SLEEP_RETENTION 1 -#define CONFIG_SOC_TWAI_CONTROLLER_NUM 1 -#define CONFIG_SOC_TWAI_MASK_FILTER_NUM 1 -#define CONFIG_SOC_TWAI_CLK_SUPPORT_XTAL 1 -#define CONFIG_SOC_TWAI_BRP_MIN 2 -#define CONFIG_SOC_TWAI_BRP_MAX 32768 -#define CONFIG_SOC_TWAI_SUPPORTS_RX_STATUS 1 -#define CONFIG_SOC_TWAI_SUPPORT_SLEEP_RETENTION 1 -#define CONFIG_SOC_EFUSE_DIS_PAD_JTAG 1 -#define CONFIG_SOC_EFUSE_DIS_USB_JTAG 1 -#define CONFIG_SOC_EFUSE_DIS_DIRECT_BOOT 1 -#define CONFIG_SOC_EFUSE_SOFT_DIS_JTAG 1 -#define CONFIG_SOC_EFUSE_DIS_ICACHE 1 -#define CONFIG_SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK 1 -#define CONFIG_SOC_EFUSE_ECDSA_USE_HARDWARE_K 1 -#define CONFIG_SOC_EFUSE_ECDSA_KEY 1 -#define CONFIG_SOC_SECURE_BOOT_V2_RSA 1 -#define CONFIG_SOC_SECURE_BOOT_V2_ECC 1 -#define CONFIG_SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS 3 -#define CONFIG_SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS 1 -#define CONFIG_SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY 1 -#define CONFIG_SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX 64 -#define CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES 1 -#define CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_128 1 -#define CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_SUPPORT_PSEUDO_ROUND 1 -#define CONFIG_SOC_APM_CTRL_FILTER_SUPPORTED 1 -#define CONFIG_SOC_CRYPTO_DPA_PROTECTION_SUPPORTED 1 -#define CONFIG_SOC_ECC_CONSTANT_TIME_POINT_MUL 1 -#define CONFIG_SOC_ECDSA_USES_MPI 1 -#define CONFIG_SOC_ECDSA_SUPPORT_DETERMINISTIC_MODE 1 -#define CONFIG_SOC_ECDSA_SUPPORT_HW_DETERMINISTIC_LOOP 1 -#define CONFIG_SOC_ECDSA_P192_CURVE_DEFAULT_DISABLED 1 -#define CONFIG_SOC_UART_NUM 2 -#define CONFIG_SOC_UART_HP_NUM 2 -#define CONFIG_SOC_UART_FIFO_LEN 128 -#define CONFIG_SOC_UART_BITRATE_MAX 5000000 -#define CONFIG_SOC_UART_SUPPORT_RTC_CLK 1 -#define CONFIG_SOC_UART_SUPPORT_XTAL_CLK 1 -#define CONFIG_SOC_UART_SUPPORT_WAKEUP_INT 1 -#define CONFIG_SOC_UART_SUPPORT_FSM_TX_WAIT_SEND 1 -#define CONFIG_SOC_UART_SUPPORT_SLEEP_RETENTION 1 -#define CONFIG_SOC_UART_WAKEUP_CHARS_SEQ_MAX_LEN 5 -#define CONFIG_SOC_UART_WAKEUP_SUPPORT_ACTIVE_THRESH_MODE 1 -#define CONFIG_SOC_UART_WAKEUP_SUPPORT_FIFO_THRESH_MODE 1 -#define CONFIG_SOC_UART_WAKEUP_SUPPORT_START_BIT_MODE 1 -#define CONFIG_SOC_UART_WAKEUP_SUPPORT_CHAR_SEQ_MODE 1 -#define CONFIG_SOC_UHCI_NUM 1 -#define CONFIG_SOC_COEX_HW_PTI 1 -#define CONFIG_SOC_EXTERNAL_COEX_ADVANCE 1 -#define CONFIG_SOC_PHY_DIG_REGS_MEM_SIZE 21 -#define CONFIG_SOC_PM_SUPPORT_BT_WAKEUP 1 -#define CONFIG_SOC_PM_SUPPORT_EXT1_WAKEUP 1 -#define CONFIG_SOC_PM_SUPPORT_EXT1_WAKEUP_MODE_PER_PIN 1 -#define CONFIG_SOC_PM_SUPPORT_CPU_PD 1 -#define CONFIG_SOC_PM_SUPPORT_MODEM_PD 1 -#define CONFIG_SOC_PM_SUPPORT_XTAL32K_PD 1 -#define CONFIG_SOC_PM_SUPPORT_RC32K_PD 1 -#define CONFIG_SOC_PM_SUPPORT_RC_FAST_PD 1 -#define CONFIG_SOC_PM_SUPPORT_VDDSDIO_PD 1 -#define CONFIG_SOC_PM_SUPPORT_TOP_PD 1 -#define CONFIG_SOC_PM_PAU_LINK_NUM 4 -#define CONFIG_SOC_PM_PAU_REGDMA_LINK_MULTI_ADDR 1 -#define CONFIG_SOC_PM_PAU_REGDMA_LINK_WIFIMAC 1 -#define CONFIG_SOC_PM_PAU_REGDMA_UPDATE_CACHE_BEFORE_WAIT_COMPARE 1 -#define CONFIG_SOC_PM_RETENTION_MODULE_NUM 32 -#define CONFIG_SOC_EXT_MEM_CACHE_TAG_IN_CPU_DOMAIN 1 -#define CONFIG_SOC_PM_CPU_RETENTION_BY_SW 1 -#define CONFIG_SOC_PM_MODEM_RETENTION_BY_REGDMA 1 -#define CONFIG_SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY 1 -#define CONFIG_SOC_PM_RETENTION_SW_TRIGGER_REGDMA 1 -#define CONFIG_SOC_PM_SUPPORT_PMU_CLK_ICG 1 -#define CONFIG_SOC_CLK_RC_FAST_SUPPORT_CALIBRATION 1 -#define CONFIG_SOC_CLK_XTAL32K_SUPPORTED 1 -#define CONFIG_SOC_CLK_OSC_SLOW_SUPPORTED 1 -#define CONFIG_SOC_CLK_RC32K_SUPPORTED 1 -#define CONFIG_SOC_CLK_LP_FAST_SUPPORT_LP_PLL 1 -#define CONFIG_SOC_CLK_LP_FAST_SUPPORT_XTAL_D2 1 -#define CONFIG_SOC_MODEM_CLOCK_IS_INDEPENDENT 1 -#define CONFIG_SOC_RCC_IS_INDEPENDENT 1 -#define CONFIG_SOC_CLK_ANA_I2C_MST_HAS_ROOT_GATE 1 -#define CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC 1 -#define CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_XTAL 1 -#define CONFIG_SOC_TEMPERATURE_SENSOR_INTR_SUPPORT 1 -#define CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_ETM 1 -#define CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_SLEEP_RETENTION 1 -#define CONFIG_SOC_TEMPERATURE_SENSOR_UNDER_PD_TOP_DOMAIN 1 -#define CONFIG_SOC_RNG_CLOCK_IS_INDEPENDENT 1 -#define CONFIG_SOC_BLE_SUPPORTED 1 -#define CONFIG_SOC_BLE_MESH_SUPPORTED 1 -#define CONFIG_SOC_ESP_NIMBLE_CONTROLLER 1 -#define CONFIG_SOC_BLE_50_SUPPORTED 1 -#define CONFIG_SOC_BLE_DEVICE_PRIVACY_SUPPORTED 1 -#define CONFIG_SOC_BLE_POWER_CONTROL_SUPPORTED 1 -#define CONFIG_SOC_BLE_MULTI_CONN_OPTIMIZATION 1 -#define CONFIG_SOC_BLE_PERIODIC_ADV_ENH_SUPPORTED 1 -#define CONFIG_SOC_BLE_CTE_SUPPORTED 1 -#define CONFIG_SOC_DEBUG_HAVE_OCD_STUB_BINS 1 -#define CONFIG_IDF_CMAKE 1 -#define CONFIG_IDF_TOOLCHAIN "gcc" -#define CONFIG_IDF_TOOLCHAIN_GCC 1 -#define CONFIG_IDF_TARGET_ARCH_RISCV 1 -#define CONFIG_IDF_TARGET_ARCH "riscv" -#define CONFIG_IDF_TARGET "esp32h2" -#define CONFIG_IDF_INIT_VERSION "5.5.1" -#define CONFIG_IDF_TARGET_ESP32H2 1 -#define CONFIG_IDF_FIRMWARE_CHIP_ID 0x0010 -#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_COMPILE_TIME_DATE 1 -#define CONFIG_BOOTLOADER_PROJECT_VER 1 -#define CONFIG_BOOTLOADER_OFFSET_IN_FLASH 0x0 -#define CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_SIZE 1 -#define CONFIG_BOOTLOADER_LOG_VERSION_1 1 -#define CONFIG_BOOTLOADER_LOG_VERSION 1 -#define CONFIG_BOOTLOADER_LOG_LEVEL_INFO 1 -#define CONFIG_BOOTLOADER_LOG_LEVEL 3 -#define CONFIG_BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS 1 -#define CONFIG_BOOTLOADER_LOG_MODE_TEXT_EN 1 -#define CONFIG_BOOTLOADER_LOG_MODE_TEXT 1 -#define CONFIG_BOOTLOADER_FLASH_XMC_SUPPORT 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_SECURE_BOOT_V2_RSA_SUPPORTED 1 -#define CONFIG_SECURE_BOOT_V2_ECC_SUPPORTED 1 -#define CONFIG_SECURE_BOOT_V2_PREFERRED 1 -#define CONFIG_SECURE_ROM_DL_MODE_ENABLED 1 -#define CONFIG_APP_COMPILE_TIME_DATE 1 -#define CONFIG_APP_RETRIEVE_LEN_ELF_SHA 9 -#define CONFIG_ESP_ROM_HAS_CRC_LE 1 -#define CONFIG_ESP_ROM_HAS_CRC_BE 1 -#define CONFIG_ESP_ROM_UART_CLK_IS_XTAL 1 -#define CONFIG_ESP_ROM_USB_SERIAL_DEVICE_NUM 3 -#define CONFIG_ESP_ROM_HAS_RETARGETABLE_LOCKING 1 -#define CONFIG_ESP_ROM_GET_CLK_FREQ 1 -#define CONFIG_ESP_ROM_HAS_HAL_WDT 1 -#define CONFIG_ESP_ROM_HAS_HAL_SYSTIMER 1 -#define CONFIG_ESP_ROM_SYSTIMER_INIT_PATCH 1 -#define CONFIG_ESP_ROM_HAS_HEAP_TLSF 1 -#define CONFIG_ESP_ROM_TLSF_CHECK_PATCH 1 -#define CONFIG_ESP_ROM_MULTI_HEAP_WALK_PATCH 1 -#define CONFIG_ESP_ROM_HAS_LAYOUT_TABLE 1 -#define CONFIG_ESP_ROM_HAS_SPI_FLASH 1 -#define CONFIG_ESP_ROM_HAS_SPI_FLASH_MMAP 1 -#define CONFIG_ESP_ROM_WITHOUT_REGI2C 1 -#define CONFIG_ESP_ROM_HAS_NEWLIB 1 -#define CONFIG_ESP_ROM_HAS_NEWLIB_NANO_FORMAT 1 -#define CONFIG_ESP_ROM_HAS_NEWLIB_NANO_PRINTF_FLOAT_BUG 1 -#define CONFIG_ESP_ROM_WDT_INIT_PATCH 1 -#define CONFIG_ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE 1 -#define CONFIG_ESP_ROM_RAM_APP_NEEDS_MMU_INIT 1 -#define CONFIG_ESP_ROM_HAS_SW_FLOAT 1 -#define CONFIG_ESP_ROM_USB_OTG_NUM -1 -#define CONFIG_ESP_ROM_HAS_VERSION 1 -#define CONFIG_ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB 1 -#define CONFIG_ESP_ROM_HAS_OUTPUT_PUTC_FUNC 1 -#define CONFIG_ESP_ROM_NO_USB_SERIAL_OUTPUT_API 1 -#define CONFIG_ESP_ROM_HAS_SUBOPTIMAL_NEWLIB_ON_MISALIGNED_MEMORY 1 -#define CONFIG_BOOT_ROM_LOG_ALWAYS_ON 1 -#define CONFIG_ESPTOOLPY_FLASHMODE_DIO 1 -#define CONFIG_ESPTOOLPY_FLASH_SAMPLE_MODE_STR 1 -#define CONFIG_ESPTOOLPY_FLASHMODE "dio" -#define CONFIG_ESPTOOLPY_FLASHFREQ_64M 1 -#define CONFIG_ESPTOOLPY_FLASHFREQ "48m" -#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_CUSTOM 1 -#define CONFIG_PARTITION_TABLE_CUSTOM_FILENAME "partitions.csv" -#define CONFIG_PARTITION_TABLE_FILENAME "partitions.csv" -#define CONFIG_PARTITION_TABLE_OFFSET 0x8000 -#define CONFIG_PARTITION_TABLE_MD5 1 -#define CONFIG_COMPILER_OPTIMIZATION_SIZE 1 -#define CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_SILENT 1 -#define CONFIG_COMPILER_ASSERT_NDEBUG_EVALUATE 1 -#define CONFIG_COMPILER_FLOAT_LIB_FROM_GCCLIB 1 -#define CONFIG_COMPILER_OPTIMIZATION_ASSERTION_LEVEL 1 -#define CONFIG_COMPILER_OPTIMIZATION_CHECKS_SILENT 1 -#define CONFIG_COMPILER_HIDE_PATHS_MACROS 1 -#define CONFIG_COMPILER_STACK_CHECK_MODE_NONE 1 -#define CONFIG_COMPILER_SAVE_RESTORE_LIBCALLS 1 -#define CONFIG_COMPILER_DISABLE_DEFAULT_ERRORS 1 -#define CONFIG_COMPILER_RT_LIB_GCCLIB 1 -#define CONFIG_COMPILER_RT_LIB_NAME "gcc" -#define CONFIG_COMPILER_ORPHAN_SECTIONS_WARNING 1 -#define CONFIG_EFUSE_MAX_BLK_LEN 256 -#define CONFIG_ESP_COEX_ENABLED 1 -#define CONFIG_ANA_CMPR_ISR_HANDLER_IN_IRAM 1 -#define CONFIG_ANA_CMPR_OBJ_CACHE_SAFE 1 -#define CONFIG_GPTIMER_ISR_HANDLER_IN_IRAM 1 -#define CONFIG_GPTIMER_OBJ_CACHE_SAFE 1 -#define CONFIG_I2C_MASTER_ISR_HANDLER_IN_IRAM 1 -#define CONFIG_MCPWM_ISR_HANDLER_IN_IRAM 1 -#define CONFIG_MCPWM_OBJ_CACHE_SAFE 1 -#define CONFIG_PARLIO_TX_ISR_HANDLER_IN_IRAM 1 -#define CONFIG_PARLIO_RX_ISR_HANDLER_IN_IRAM 1 -#define CONFIG_PARLIO_OBJ_CACHE_SAFE 1 -#define CONFIG_RMT_ENCODER_FUNC_IN_IRAM 1 -#define CONFIG_RMT_TX_ISR_HANDLER_IN_IRAM 1 -#define CONFIG_RMT_RX_ISR_HANDLER_IN_IRAM 1 -#define CONFIG_RMT_OBJ_CACHE_SAFE 1 -#define CONFIG_SPI_MASTER_ISR_IN_IRAM 1 -#define CONFIG_SPI_SLAVE_ISR_IN_IRAM 1 -#define CONFIG_UART_ISR_IN_IRAM 1 -#define CONFIG_USJ_ENABLE_USB_SERIAL_JTAG 1 -#define CONFIG_ESP_EVENT_POST_FROM_ISR 1 -#define CONFIG_ESP_EVENT_POST_FROM_IRAM_ISR 1 -#define CONFIG_ESP32H2_REV_MIN_0 1 -#define CONFIG_ESP32H2_REV_MIN_FULL 0 -#define CONFIG_ESP_REV_MIN_FULL 0 -#define CONFIG_ESP32H2_REV_MAX_FULL 199 -#define CONFIG_ESP_REV_MAX_FULL 199 -#define CONFIG_ESP_EFUSE_BLOCK_REV_MIN_FULL 0 -#define CONFIG_ESP_EFUSE_BLOCK_REV_MAX_FULL 99 -#define CONFIG_ESP_MAC_ADDR_UNIVERSE_BT 1 -#define CONFIG_ESP_MAC_ADDR_UNIVERSE_IEEE802154 1 -#define CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES_TWO 1 -#define CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES 2 -#define CONFIG_ESP32H2_UNIVERSAL_MAC_ADDRESSES_TWO 1 -#define CONFIG_ESP32H2_UNIVERSAL_MAC_ADDRESSES 2 -#define CONFIG_ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND 1 -#define CONFIG_ESP_SLEEP_GPIO_RESET_WORKAROUND 1 -#define CONFIG_ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY 0 -#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_ESP_PERIPH_CTRL_FUNC_IN_IRAM 1 -#define CONFIG_ESP_REGI2C_CTRL_FUNC_IN_IRAM 1 -#define CONFIG_GDMA_CTRL_FUNC_IN_IRAM 1 -#define CONFIG_GDMA_ISR_HANDLER_IN_IRAM 1 -#define CONFIG_GDMA_OBJ_DRAM_SAFE 1 -#define CONFIG_XTAL_FREQ_32 1 -#define CONFIG_XTAL_FREQ 32 -#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_BROWNOUT_USE_INTR 1 -#define CONFIG_ESP_SPI_BUS_LOCK_ISR_FUNCS_IN_IRAM 1 -#define CONFIG_ESP_INTR_IN_IRAM 1 -#define CONFIG_ESP_NETIF_IP_LOST_TIMER_INTERVAL 120 -#define CONFIG_ESP_NETIF_TCPIP_LWIP 1 -#define CONFIG_ESP_NETIF_USES_TCPIP_WITH_BSD_API 1 -#define CONFIG_ESP_NETIF_REPORT_DATA_TRAFFIC 1 -#define CONFIG_ESP_PHY_ENABLED 1 -#define CONFIG_ESP_PHY_CALIBRATION_AND_DATA_STORAGE 1 -#define CONFIG_ESP_PHY_MAX_WIFI_TX_POWER 20 -#define CONFIG_ESP_PHY_MAX_TX_POWER 20 -#define CONFIG_ESP_PHY_RF_CAL_PARTIAL 1 -#define CONFIG_ESP_PHY_CALIBRATION_MODE 0 -#define CONFIG_ESP_PHY_PLL_TRACK_PERIOD_MS 1000 -#define CONFIG_ESP_PHY_IRAM_OPT 1 -#define CONFIG_PM_SLEEP_FUNC_IN_IRAM 1 -#define CONFIG_PM_SLP_IRAM_OPT 1 -#define CONFIG_PM_POWER_DOWN_CPU_IN_LIGHT_SLEEP 1 -#define CONFIG_ESP_ROM_PRINT_IN_IRAM 1 -#define CONFIG_ESP_CRYPTO_DPA_PROTECTION_AT_STARTUP 1 -#define CONFIG_ESP_CRYPTO_DPA_PROTECTION_LEVEL_LOW 1 -#define CONFIG_ESP_CRYPTO_DPA_PROTECTION_LEVEL 1 -#define CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_96 1 -#define CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ 96 -#define CONFIG_ESP_SYSTEM_IN_IRAM 1 -#define CONFIG_ESP_SYSTEM_PANIC_SILENT_REBOOT 1 -#define CONFIG_ESP_SYSTEM_SINGLE_CORE_MODE 1 -#define CONFIG_ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK 1 -#define CONFIG_ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP 1 -#define CONFIG_ESP_SYSTEM_NO_BACKTRACE 1 -#define CONFIG_ESP_SYSTEM_PMP_IDRAM_SPLIT 1 -#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_SECONDARY_USB_SERIAL_JTAG 1 -#define CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED 1 -#define CONFIG_ESP_CONSOLE_UART 1 -#define CONFIG_ESP_CONSOLE_UART_NUM 0 -#define CONFIG_ESP_CONSOLE_ROM_SERIAL_PORT_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_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_DEBUG_OCDAWARE 1 -#define CONFIG_ESP_SYSTEM_CHECK_INT_LEVEL_4 1 -#define CONFIG_ESP_SYSTEM_HW_STACK_GUARD 1 -#define CONFIG_ESP_SYSTEM_BBPLL_RECALIB 1 -#define CONFIG_ESP_SYSTEM_HW_PC_RECORD 1 -#define CONFIG_ESP_IPC_TASK_STACK_SIZE 1024 -#define CONFIG_ESP_TIMER_IN_IRAM 1 -#define CONFIG_ESP_TIME_FUNCS_USE_RTC_TIMER 1 -#define CONFIG_ESP_TIME_FUNCS_USE_ESP_TIMER 1 -#define CONFIG_ESP_TIMER_TASK_STACK_SIZE 3584 -#define CONFIG_ESP_TIMER_INTERRUPT_LEVEL 1 -#define CONFIG_ESP_TIMER_TASK_AFFINITY 0x0 -#define CONFIG_ESP_TIMER_TASK_AFFINITY_CPU0 1 -#define CONFIG_ESP_TIMER_ISR_AFFINITY_CPU0 1 -#define CONFIG_ESP_TIMER_IMPL_SYSTIMER 1 -#define CONFIG_FREERTOS_UNICORE 1 -#define CONFIG_FREERTOS_HZ 100 -#define CONFIG_FREERTOS_OPTIMIZED_SCHEDULER 1 -#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_USE_TIMERS 1 -#define CONFIG_FREERTOS_TIMER_SERVICE_TASK_NAME "Tmr Svc" -#define CONFIG_FREERTOS_TIMER_TASK_NO_AFFINITY 1 -#define CONFIG_FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY 0x7FFFFFFF -#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_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_SYSTIMER 1 -#define CONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL1 1 -#define CONFIG_FREERTOS_SYSTICK_USES_SYSTIMER 1 -#define CONFIG_FREERTOS_PORT 1 -#define CONFIG_FREERTOS_NO_AFFINITY 0x7FFFFFFF -#define CONFIG_FREERTOS_SUPPORT_STATIC_ALLOCATION 1 -#define CONFIG_FREERTOS_DEBUG_OCDAWARE 1 -#define CONFIG_FREERTOS_ENABLE_TASK_SNAPSHOT 1 -#define CONFIG_FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH 1 -#define CONFIG_FREERTOS_NUMBER_OF_CORES 1 -#define CONFIG_FREERTOS_IN_IRAM 1 -#define CONFIG_HAL_ASSERTION_EQUALS_SYSTEM 1 -#define CONFIG_HAL_DEFAULT_ASSERTION_LEVEL 1 -#define CONFIG_HAL_SYSTIMER_USE_ROM_IMPL 1 -#define CONFIG_HAL_WDT_USE_ROM_IMPL 1 -#define CONFIG_HEAP_POISONING_DISABLED 1 -#define CONFIG_HEAP_TRACING_OFF 1 -#define CONFIG_HEAP_TLSF_USE_ROM_IMPL 1 -#define CONFIG_IEEE802154_ENABLED 1 -#define CONFIG_IEEE802154_RX_BUFFER_SIZE 20 -#define CONFIG_IEEE802154_CCA_ED 1 -#define CONFIG_IEEE802154_CCA_MODE 1 -#define CONFIG_IEEE802154_CCA_THRESHOLD -60 -#define CONFIG_IEEE802154_PENDING_TABLE_SIZE 20 -#define CONFIG_IEEE802154_TIMING_OPTIMIZATION 1 -#define CONFIG_LOG_VERSION_1 1 -#define CONFIG_LOG_VERSION 1 -#define CONFIG_LOG_DEFAULT_LEVEL_NONE 1 -#define CONFIG_LOG_DEFAULT_LEVEL 0 -#define CONFIG_LOG_MAXIMUM_EQUALS_DEFAULT 1 -#define CONFIG_LOG_MAXIMUM_LEVEL 0 -#define CONFIG_LOG_DYNAMIC_LEVEL_CONTROL 1 -#define CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST 1 -#define CONFIG_LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP 1 -#define CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_SIZE 31 -#define CONFIG_LOG_TIMESTAMP_SOURCE_RTOS 1 -#define CONFIG_LOG_MODE_TEXT_EN 1 -#define CONFIG_LOG_MODE_TEXT 1 -#define CONFIG_LOG_IN_IRAM 1 -#define CONFIG_LWIP_ENABLE 1 -#define CONFIG_LWIP_LOCAL_HOSTNAME "espressif" -#define CONFIG_LWIP_TCPIP_TASK_PRIO 18 -#define CONFIG_LWIP_DNS_SUPPORT_MDNS_QUERIES 1 -#define CONFIG_LWIP_TIMERS_ONDEMAND 1 -#define CONFIG_LWIP_ND6 1 -#define CONFIG_LWIP_MAX_SOCKETS 10 -#define CONFIG_LWIP_SO_REUSE 1 -#define CONFIG_LWIP_SO_REUSE_RXTOALL 1 -#define CONFIG_LWIP_IP_DEFAULT_TTL 64 -#define CONFIG_LWIP_IP4_FRAG 1 -#define CONFIG_LWIP_IP6_FRAG 1 -#define CONFIG_LWIP_IP_REASS_MAX_PBUFS 10 -#define CONFIG_LWIP_ESP_GRATUITOUS_ARP 1 -#define CONFIG_LWIP_GARP_TMR_INTERVAL 60 -#define CONFIG_LWIP_ESP_MLDV6_REPORT 1 -#define CONFIG_LWIP_MLDV6_TMR_INTERVAL 40 -#define CONFIG_LWIP_TCPIP_RECVMBOX_SIZE 32 -#define CONFIG_LWIP_DHCP_DOES_ARP_CHECK 1 -#define CONFIG_LWIP_DHCP_DISABLE_VENDOR_CLASS_ID 1 -#define CONFIG_LWIP_DHCP_OPTIONS_LEN 69 -#define CONFIG_LWIP_NUM_NETIF_CLIENT_DATA 0 -#define CONFIG_LWIP_DHCP_COARSE_TIMER_SECS 1 -#define CONFIG_LWIP_DHCPS 1 -#define CONFIG_LWIP_DHCPS_LEASE_UNIT 60 -#define CONFIG_LWIP_DHCPS_MAX_STATION_NUM 8 -#define CONFIG_LWIP_DHCPS_STATIC_ENTRIES 1 -#define CONFIG_LWIP_DHCPS_ADD_DNS 1 -#define CONFIG_LWIP_IPV4 1 -#define CONFIG_LWIP_IPV6 1 -#define CONFIG_LWIP_IPV6_NUM_ADDRESSES 3 -#define CONFIG_LWIP_NETIF_LOOPBACK 1 -#define CONFIG_LWIP_LOOPBACK_MAX_PBUFS 8 -#define CONFIG_LWIP_MAX_ACTIVE_TCP 16 -#define CONFIG_LWIP_MAX_LISTENING_TCP 16 -#define CONFIG_LWIP_TCP_HIGH_SPEED_RETRANSMISSION 1 -#define CONFIG_LWIP_TCP_MAXRTX 12 -#define CONFIG_LWIP_TCP_SYNMAXRTX 12 -#define CONFIG_LWIP_TCP_MSS 1440 -#define CONFIG_LWIP_TCP_TMR_INTERVAL 250 -#define CONFIG_LWIP_TCP_MSL 60000 -#define CONFIG_LWIP_TCP_FIN_WAIT_TIMEOUT 20000 -#define CONFIG_LWIP_TCP_SND_BUF_DEFAULT 5760 -#define CONFIG_LWIP_TCP_WND_DEFAULT 5760 -#define CONFIG_LWIP_TCP_RECVMBOX_SIZE 6 -#define CONFIG_LWIP_TCP_ACCEPTMBOX_SIZE 6 -#define CONFIG_LWIP_TCP_QUEUE_OOSEQ 1 -#define CONFIG_LWIP_TCP_OOSEQ_TIMEOUT 6 -#define CONFIG_LWIP_TCP_OOSEQ_MAX_PBUFS 4 -#define CONFIG_LWIP_TCP_OVERSIZE_MSS 1 -#define CONFIG_LWIP_TCP_RTO_TIME 1500 -#define CONFIG_LWIP_MAX_UDP_PCBS 16 -#define CONFIG_LWIP_UDP_RECVMBOX_SIZE 6 -#define CONFIG_LWIP_CHECKSUM_CHECK_ICMP 1 -#define CONFIG_LWIP_TCPIP_TASK_STACK_SIZE 3072 -#define CONFIG_LWIP_TCPIP_TASK_AFFINITY_NO_AFFINITY 1 -#define CONFIG_LWIP_TCPIP_TASK_AFFINITY 0x7FFFFFFF -#define CONFIG_LWIP_IPV6_MEMP_NUM_ND6_QUEUE 3 -#define CONFIG_LWIP_IPV6_ND6_NUM_NEIGHBORS 5 -#define CONFIG_LWIP_IPV6_ND6_NUM_PREFIXES 5 -#define CONFIG_LWIP_IPV6_ND6_NUM_ROUTERS 3 -#define CONFIG_LWIP_IPV6_ND6_NUM_DESTINATIONS 10 -#define CONFIG_LWIP_ICMP 1 -#define CONFIG_LWIP_MAX_RAW_PCBS 16 -#define CONFIG_LWIP_SNTP_MAX_SERVERS 1 -#define CONFIG_LWIP_SNTP_UPDATE_DELAY 3600000 -#define CONFIG_LWIP_SNTP_STARTUP_DELAY 1 -#define CONFIG_LWIP_SNTP_MAXIMUM_STARTUP_DELAY 5000 -#define CONFIG_LWIP_DNS_MAX_HOST_IP 1 -#define CONFIG_LWIP_DNS_MAX_SERVERS 3 -#define CONFIG_LWIP_BRIDGEIF_MAX_PORTS 7 -#define CONFIG_LWIP_ESP_LWIP_ASSERT 1 -#define CONFIG_LWIP_HOOK_TCP_ISN_DEFAULT 1 -#define CONFIG_LWIP_HOOK_IP6_ROUTE_NONE 1 -#define CONFIG_LWIP_HOOK_ND6_GET_GW_NONE 1 -#define CONFIG_LWIP_HOOK_IP6_SELECT_SRC_ADDR_NONE 1 -#define CONFIG_LWIP_HOOK_DHCP_EXTRA_OPTION_NONE 1 -#define CONFIG_LWIP_HOOK_NETCONN_EXT_RESOLVE_NONE 1 -#define CONFIG_LWIP_HOOK_DNS_EXT_RESOLVE_NONE 1 -#define CONFIG_LWIP_HOOK_IP6_INPUT_DEFAULT 1 -#define CONFIG_MBEDTLS_INTERNAL_MEM_ALLOC 1 -#define CONFIG_MBEDTLS_ASYMMETRIC_CONTENT_LEN 1 -#define CONFIG_MBEDTLS_SSL_IN_CONTENT_LEN 16384 -#define CONFIG_MBEDTLS_SSL_OUT_CONTENT_LEN 4096 -#define CONFIG_MBEDTLS_SSL_KEEP_PEER_CERTIFICATE 1 -#define CONFIG_MBEDTLS_PKCS7_C 1 -#define CONFIG_MBEDTLS_CERTIFICATE_BUNDLE 1 -#define CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_FULL 1 -#define CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_MAX_CERTS 200 -#define CONFIG_MBEDTLS_HARDWARE_AES 1 -#define CONFIG_MBEDTLS_AES_USE_INTERRUPT 1 -#define CONFIG_MBEDTLS_AES_INTERRUPT_LEVEL 0 -#define CONFIG_MBEDTLS_GCM_SUPPORT_NON_AES_CIPHER 1 -#define CONFIG_MBEDTLS_HARDWARE_MPI 1 -#define CONFIG_MBEDTLS_LARGE_KEY_SOFTWARE_MPI 1 -#define CONFIG_MBEDTLS_MPI_USE_INTERRUPT 1 -#define CONFIG_MBEDTLS_MPI_INTERRUPT_LEVEL 0 -#define CONFIG_MBEDTLS_HARDWARE_SHA 1 -#define CONFIG_MBEDTLS_HARDWARE_ECC 1 -#define CONFIG_MBEDTLS_ECC_OTHER_CURVES_SOFT_FALLBACK 1 -#define CONFIG_MBEDTLS_ROM_MD5 1 -#define CONFIG_MBEDTLS_HARDWARE_ECDSA_VERIFY 1 -#define CONFIG_MBEDTLS_HAVE_TIME 1 -#define CONFIG_MBEDTLS_ECDSA_DETERMINISTIC 1 -#define CONFIG_MBEDTLS_SHA1_C 1 -#define CONFIG_MBEDTLS_SHA512_C 1 -#define CONFIG_MBEDTLS_TLS_SERVER_AND_CLIENT 1 -#define CONFIG_MBEDTLS_TLS_SERVER 1 -#define CONFIG_MBEDTLS_TLS_CLIENT 1 -#define CONFIG_MBEDTLS_TLS_ENABLED 1 -#define CONFIG_MBEDTLS_KEY_EXCHANGE_RSA 1 -#define CONFIG_MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE 1 -#define CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_RSA 1 -#define CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA 1 -#define CONFIG_MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA 1 -#define CONFIG_MBEDTLS_KEY_EXCHANGE_ECDH_RSA 1 -#define CONFIG_MBEDTLS_SSL_RENEGOTIATION 1 -#define CONFIG_MBEDTLS_SSL_PROTO_TLS1_2 1 -#define CONFIG_MBEDTLS_SSL_ALPN 1 -#define CONFIG_MBEDTLS_CLIENT_SSL_SESSION_TICKETS 1 -#define CONFIG_MBEDTLS_SERVER_SSL_SESSION_TICKETS 1 -#define CONFIG_MBEDTLS_AES_C 1 -#define CONFIG_MBEDTLS_CCM_C 1 -#define CONFIG_MBEDTLS_GCM_C 1 -#define CONFIG_MBEDTLS_PEM_PARSE_C 1 -#define CONFIG_MBEDTLS_PEM_WRITE_C 1 -#define CONFIG_MBEDTLS_X509_CRL_PARSE_C 1 -#define CONFIG_MBEDTLS_X509_CSR_PARSE_C 1 -#define CONFIG_MBEDTLS_ECP_C 1 -#define CONFIG_MBEDTLS_PK_PARSE_EC_EXTENDED 1 -#define CONFIG_MBEDTLS_PK_PARSE_EC_COMPRESSED 1 -#define CONFIG_MBEDTLS_ECDH_C 1 -#define CONFIG_MBEDTLS_ECDSA_C 1 -#define CONFIG_MBEDTLS_ECP_DP_SECP192R1_ENABLED 1 -#define CONFIG_MBEDTLS_ECP_DP_SECP224R1_ENABLED 1 -#define CONFIG_MBEDTLS_ECP_DP_SECP256R1_ENABLED 1 -#define CONFIG_MBEDTLS_ECP_DP_SECP384R1_ENABLED 1 -#define CONFIG_MBEDTLS_ECP_DP_SECP521R1_ENABLED 1 -#define CONFIG_MBEDTLS_ECP_DP_SECP192K1_ENABLED 1 -#define CONFIG_MBEDTLS_ECP_DP_SECP224K1_ENABLED 1 -#define CONFIG_MBEDTLS_ECP_DP_SECP256K1_ENABLED 1 -#define CONFIG_MBEDTLS_ECP_DP_BP256R1_ENABLED 1 -#define CONFIG_MBEDTLS_ECP_DP_BP384R1_ENABLED 1 -#define CONFIG_MBEDTLS_ECP_DP_BP512R1_ENABLED 1 -#define CONFIG_MBEDTLS_ECP_DP_CURVE25519_ENABLED 1 -#define CONFIG_MBEDTLS_ECP_NIST_OPTIM 1 -#define CONFIG_MBEDTLS_ERROR_STRINGS 1 -#define CONFIG_MBEDTLS_FS_IO 1 -#define CONFIG_LIBC_NEWLIB 1 -#define CONFIG_LIBC_MISC_IN_IRAM 1 -#define CONFIG_LIBC_LOCKS_PLACE_IN_IRAM 1 -#define CONFIG_LIBC_STDOUT_LINE_ENDING_CRLF 1 -#define CONFIG_LIBC_STDIN_LINE_ENDING_CR 1 -#define CONFIG_LIBC_NEWLIB_NANO_FORMAT 1 -#define CONFIG_LIBC_TIME_SYSCALL_USE_RTC_HRT 1 -#define CONFIG_OPENTHREAD_ENABLED 1 -#define CONFIG_OPENTHREAD_PACKAGE_NAME "openthread-esp32" -#define CONFIG_OPENTHREAD_PLATFORM_INFO "esp32h2" -#define CONFIG_OPENTHREAD_CONSOLE_TYPE_UART 1 -#define CONFIG_OPENTHREAD_CONSOLE_COMMAND_PREFIX "ot" -#define CONFIG_OPENTHREAD_NETWORK_NAME "OpenThread-ESP" -#define CONFIG_OPENTHREAD_MESH_LOCAL_PREFIX "fd00:db8:a0:0::/64" -#define CONFIG_OPENTHREAD_NETWORK_CHANNEL 15 -#define CONFIG_OPENTHREAD_NETWORK_PANID 0x1234 -#define CONFIG_OPENTHREAD_NETWORK_EXTPANID "dead00beef00cafe" -#define CONFIG_OPENTHREAD_NETWORK_MASTERKEY "00112233445566778899aabbccddeeff" -#define CONFIG_OPENTHREAD_NETWORK_PSKC "104810e2315100afd6bc9215a6bfac53" -#define CONFIG_OPENTHREAD_RADIO 1 -#define CONFIG_OPENTHREAD_RADIO_NATIVE 1 -#define CONFIG_OPENTHREAD_RCP_UART 1 -#define CONFIG_OPENTHREAD_NCP_VENDOR_HOOK 1 -#define CONFIG_OPENTHREAD_CSL_ACCURACY 50 -#define CONFIG_OPENTHREAD_CSL_UNCERTAIN 0 -#define CONFIG_OPENTHREAD_RX_ON_WHEN_IDLE 1 -#define CONFIG_OPENTHREAD_PREFERRED_CHANNEL_MASK 0x7fff800 -#define CONFIG_OPENTHREAD_SUPPORTED_CHANNEL_MASK 0x7fff800 -#define CONFIG_OPENTHREAD_NUM_MESSAGE_BUFFERS 65 -#define CONFIG_OPENTHREAD_XTAL_ACCURACY 10 -#define CONFIG_OPENTHREAD_BUS_LATENCY 4000 -#define CONFIG_OPENTHREAD_MLE_MAX_CHILDREN 10 -#define CONFIG_OPENTHREAD_TMF_ADDR_CACHE_ENTRIES 20 -#define CONFIG_OPENTHREAD_UART_BUFFER_SIZE 2048 -#define CONFIG_OPENTHREAD_MAC_MAX_CSMA_BACKOFFS_DIRECT 4 -#define CONFIG_OPENTHREAD_LOG_LEVEL_NONE 1 -#define CONFIG_OPENTHREAD_LOG_LEVEL 0 -#define CONFIG_OPENTHREAD_SPINEL_RX_FRAME_BUFFER_SIZE 1024 -#define CONFIG_PTHREAD_TASK_PRIO_DEFAULT 5 -#define CONFIG_PTHREAD_TASK_STACK_SIZE_DEFAULT 3072 -#define CONFIG_PTHREAD_STACK_MIN 768 -#define CONFIG_PTHREAD_TASK_CORE_DEFAULT -1 -#define CONFIG_PTHREAD_TASK_NAME_DEFAULT "pthread" -#define CONFIG_MMU_PAGE_SIZE_32KB 1 -#define CONFIG_MMU_PAGE_MODE "32KB" -#define CONFIG_MMU_PAGE_SIZE 0x8000 -#define CONFIG_SPI_FLASH_BROWNOUT_RESET_XMC 1 -#define CONFIG_SPI_FLASH_BROWNOUT_RESET 1 -#define CONFIG_SPI_FLASH_SUSPEND_TSUS_VAL_US 50 -#define CONFIG_SPI_FLASH_PLACE_FUNCTIONS_IN_IRAM 1 -#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_VENDOR_XMC_SUPPORT_ENABLED 1 -#define CONFIG_SPI_FLASH_VENDOR_GD_SUPPORT_ENABLED 1 -#define CONFIG_SPI_FLASH_SUPPORT_GD_CHIP 1 -#define CONFIG_SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE 1 -#define CONFIG_VFS_SUPPORT_IO 1 -#define CONFIG_VFS_SUPPORT_DIR 1 -#define CONFIG_VFS_SUPPORT_SELECT 1 -#define CONFIG_VFS_SUPPRESS_SELECT_DEBUG_OUTPUT 1 -#define CONFIG_VFS_SELECT_IN_RAM 1 -#define CONFIG_VFS_SUPPORT_TERMIOS 1 -#define CONFIG_VFS_MAX_COUNT 8 -#define CONFIG_VFS_SEMIHOSTFS_MAX_MOUNT_POINTS 1 -#define CONFIG_VFS_INITIALIZE_DEV_NULL 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_RELEASE CONFIG_COMPILER_OPTIMIZATION_SIZE -#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_PHY_CALIBRATION_AND_DATA_STORAGE CONFIG_ESP_PHY_CALIBRATION_AND_DATA_STORAGE -#define CONFIG_ESP32_PHY_MAX_TX_POWER CONFIG_ESP_PHY_MAX_TX_POWER -#define CONFIG_ESP32_PHY_MAX_WIFI_TX_POWER CONFIG_ESP_PHY_MAX_WIFI_TX_POWER -#define CONFIG_ESP32_PTHREAD_STACK_MIN CONFIG_PTHREAD_STACK_MIN -#define CONFIG_ESP32_PTHREAD_TASK_CORE_DEFAULT CONFIG_PTHREAD_TASK_CORE_DEFAULT -#define CONFIG_ESP32_PTHREAD_TASK_NAME_DEFAULT CONFIG_PTHREAD_TASK_NAME_DEFAULT -#define CONFIG_ESP32_PTHREAD_TASK_PRIO_DEFAULT CONFIG_PTHREAD_TASK_PRIO_DEFAULT -#define CONFIG_ESP32_PTHREAD_TASK_STACK_SIZE_DEFAULT CONFIG_PTHREAD_TASK_STACK_SIZE_DEFAULT -#define CONFIG_ESP_GRATUITOUS_ARP CONFIG_LWIP_ESP_GRATUITOUS_ARP -#define CONFIG_ESP_SYSTEM_BROWNOUT_INTR CONFIG_ESP_BROWNOUT_USE_INTR -#define CONFIG_ESP_SYSTEM_PM_POWER_DOWN_CPU CONFIG_PM_POWER_DOWN_CPU_IN_LIGHT_SLEEP -#define CONFIG_ESP_TASK_WDT CONFIG_ESP_TASK_WDT_INIT -#define CONFIG_FLASHMODE_DIO CONFIG_ESPTOOLPY_FLASHMODE_DIO -#define CONFIG_GARP_TMR_INTERVAL CONFIG_LWIP_GARP_TMR_INTERVAL -#define CONFIG_INT_WDT CONFIG_ESP_INT_WDT -#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_NEWLIB_NANO_FORMAT CONFIG_LIBC_NEWLIB_NANO_FORMAT -#define CONFIG_NEWLIB_STDIN_LINE_ENDING_CR CONFIG_LIBC_STDIN_LINE_ENDING_CR -#define CONFIG_NEWLIB_STDOUT_LINE_ENDING_CRLF CONFIG_LIBC_STDOUT_LINE_ENDING_CRLF -#define CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC_HRT CONFIG_LIBC_TIME_SYSCALL_USE_RTC_HRT -#define CONFIG_OPTIMIZATION_ASSERTIONS_SILENT CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_SILENT -#define CONFIG_OPTIMIZATION_ASSERTION_LEVEL CONFIG_COMPILER_OPTIMIZATION_ASSERTION_LEVEL -#define CONFIG_OPTIMIZATION_LEVEL_RELEASE CONFIG_COMPILER_OPTIMIZATION_SIZE -#define CONFIG_PERIPH_CTRL_FUNC_IN_IRAM CONFIG_ESP_PERIPH_CTRL_FUNC_IN_IRAM -#define CONFIG_POST_EVENTS_FROM_IRAM_ISR CONFIG_ESP_EVENT_POST_FROM_IRAM_ISR -#define CONFIG_POST_EVENTS_FROM_ISR CONFIG_ESP_EVENT_POST_FROM_ISR -#define CONFIG_SEMIHOSTFS_MAX_MOUNT_POINTS CONFIG_VFS_SEMIHOSTFS_MAX_MOUNT_POINTS -#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_SUPPORT_TERMIOS CONFIG_VFS_SUPPORT_TERMIOS -#define CONFIG_SUPPRESS_SELECT_DEBUG_OUTPUT CONFIG_VFS_SUPPRESS_SELECT_DEBUG_OUTPUT -#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_TIMEOUT_S CONFIG_ESP_TASK_WDT_TIMEOUT_S -#define CONFIG_TCPIP_RECVMBOX_SIZE CONFIG_LWIP_TCPIP_RECVMBOX_SIZE -#define CONFIG_TCPIP_TASK_AFFINITY CONFIG_LWIP_TCPIP_TASK_AFFINITY -#define CONFIG_TCPIP_TASK_AFFINITY_NO_AFFINITY CONFIG_LWIP_TCPIP_TASK_AFFINITY_NO_AFFINITY -#define CONFIG_TCPIP_TASK_STACK_SIZE CONFIG_LWIP_TCPIP_TASK_STACK_SIZE -#define CONFIG_TCP_MAXRTX CONFIG_LWIP_TCP_MAXRTX -#define CONFIG_TCP_MSL CONFIG_LWIP_TCP_MSL -#define CONFIG_TCP_MSS CONFIG_LWIP_TCP_MSS -#define CONFIG_TCP_OVERSIZE_MSS CONFIG_LWIP_TCP_OVERSIZE_MSS -#define CONFIG_TCP_QUEUE_OOSEQ CONFIG_LWIP_TCP_QUEUE_OOSEQ -#define CONFIG_TCP_RECVMBOX_SIZE CONFIG_LWIP_TCP_RECVMBOX_SIZE -#define CONFIG_TCP_SND_BUF_DEFAULT CONFIG_LWIP_TCP_SND_BUF_DEFAULT -#define CONFIG_TCP_SYNMAXRTX CONFIG_LWIP_TCP_SYNMAXRTX -#define CONFIG_TCP_WND_DEFAULT CONFIG_LWIP_TCP_WND_DEFAULT -#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_TIMER_TASK_STACK_SIZE CONFIG_ESP_TIMER_TASK_STACK_SIZE -#define CONFIG_UDP_RECVMBOX_SIZE CONFIG_LWIP_UDP_RECVMBOX_SIZE diff --git a/esp32-thread/open-thread-rcp/build/config/sdkconfig.json b/esp32-thread/open-thread-rcp/build/config/sdkconfig.json deleted file mode 100644 index 2452a9e8..00000000 --- a/esp32-thread/open-thread-rcp/build/config/sdkconfig.json +++ /dev/null @@ -1,1282 +0,0 @@ -{ - "ADC_CALI_SUPPRESS_DEPRECATE_WARN": false, - "ADC_SKIP_LEGACY_CONFLICT_CHECK": false, - "ADC_SUPPRESS_DEPRECATE_WARN": false, - "ANA_CMPR_CTRL_FUNC_IN_IRAM": false, - "ANA_CMPR_ENABLE_DEBUG_LOG": false, - "ANA_CMPR_ISR_CACHE_SAFE": false, - "ANA_CMPR_ISR_HANDLER_IN_IRAM": true, - "ANA_CMPR_OBJ_CACHE_SAFE": true, - "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_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": 9, - "BOOTLOADER_APP_ROLLBACK_ENABLE": false, - "BOOTLOADER_APP_TEST": false, - "BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG": false, - "BOOTLOADER_COMPILER_OPTIMIZATION_PERF": false, - "BOOTLOADER_COMPILER_OPTIMIZATION_SIZE": true, - "BOOTLOADER_COMPILE_TIME_DATE": true, - "BOOTLOADER_CUSTOM_RESERVE_RTC": false, - "BOOTLOADER_FACTORY_RESET": false, - "BOOTLOADER_FLASH_DC_AWARE": false, - "BOOTLOADER_FLASH_XMC_SUPPORT": true, - "BOOTLOADER_LOG_COLORS": false, - "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_LOG_MODE_TEXT": true, - "BOOTLOADER_LOG_MODE_TEXT_EN": true, - "BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS": true, - "BOOTLOADER_LOG_VERSION": 1, - "BOOTLOADER_LOG_VERSION_1": true, - "BOOTLOADER_OFFSET_IN_FLASH": 0, - "BOOTLOADER_PROJECT_VER": 1, - "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_WDT_DISABLE_IN_USER_CODE": false, - "BOOTLOADER_WDT_ENABLE": true, - "BOOTLOADER_WDT_TIME_MS": 9000, - "BOOT_ROM_LOG_ALWAYS_OFF": false, - "BOOT_ROM_LOG_ALWAYS_ON": true, - "BOOT_ROM_LOG_ON_GPIO_HIGH": false, - "BOOT_ROM_LOG_ON_GPIO_LOW": false, - "COMPILER_ASSERT_NDEBUG_EVALUATE": true, - "COMPILER_CXX_EXCEPTIONS": false, - "COMPILER_CXX_RTTI": false, - "COMPILER_DISABLE_DEFAULT_ERRORS": true, - "COMPILER_DISABLE_GCC12_WARNINGS": false, - "COMPILER_DISABLE_GCC13_WARNINGS": false, - "COMPILER_DISABLE_GCC14_WARNINGS": false, - "COMPILER_DUMP_RTL_FILES": false, - "COMPILER_FLOAT_LIB_FROM_GCCLIB": true, - "COMPILER_HIDE_PATHS_MACROS": true, - "COMPILER_NO_MERGE_CONSTANTS": false, - "COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE": false, - "COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE": false, - "COMPILER_OPTIMIZATION_ASSERTIONS_SILENT": true, - "COMPILER_OPTIMIZATION_ASSERTION_LEVEL": 1, - "COMPILER_OPTIMIZATION_CHECKS_SILENT": true, - "COMPILER_OPTIMIZATION_DEBUG": false, - "COMPILER_OPTIMIZATION_NONE": false, - "COMPILER_OPTIMIZATION_PERF": false, - "COMPILER_OPTIMIZATION_SIZE": true, - "COMPILER_ORPHAN_SECTIONS_PLACE": false, - "COMPILER_ORPHAN_SECTIONS_WARNING": true, - "COMPILER_RT_LIB_GCCLIB": true, - "COMPILER_RT_LIB_NAME": "gcc", - "COMPILER_SAVE_RESTORE_LIBCALLS": true, - "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_STATIC_ANALYZER": false, - "COMPILER_WARN_WRITE_STRINGS": false, - "CONSOLE_SORTED_HELP": false, - "EFUSE_CUSTOM_TABLE": false, - "EFUSE_MAX_BLK_LEN": 256, - "EFUSE_VIRTUAL": false, - "ESP32H2_REV_MAX_FULL": 199, - "ESP32H2_REV_MIN_0": true, - "ESP32H2_REV_MIN_1": false, - "ESP32H2_REV_MIN_102": false, - "ESP32H2_REV_MIN_2": false, - "ESP32H2_REV_MIN_FULL": 0, - "ESP32H2_UNIVERSAL_MAC_ADDRESSES": 2, - "ESP32H2_UNIVERSAL_MAC_ADDRESSES_TWO": true, - "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": "48m", - "ESPTOOLPY_FLASHFREQ_16M": false, - "ESPTOOLPY_FLASHFREQ_32M": false, - "ESPTOOLPY_FLASHFREQ_64M": true, - "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_BROWNOUT_USE_INTR": true, - "ESP_COEX_ENABLED": true, - "ESP_COEX_EXTERNAL_COEXIST_ENABLE": false, - "ESP_COEX_GPIO_DEBUG": false, - "ESP_CONSOLE_NONE": false, - "ESP_CONSOLE_ROM_SERIAL_PORT_NUM": 0, - "ESP_CONSOLE_SECONDARY_NONE": false, - "ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG": true, - "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_CONSOLE_USB_SERIAL_JTAG": false, - "ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED": true, - "ESP_CRYPTO_DPA_PROTECTION_AT_STARTUP": true, - "ESP_CRYPTO_DPA_PROTECTION_LEVEL": 1, - "ESP_CRYPTO_DPA_PROTECTION_LEVEL_HIGH": false, - "ESP_CRYPTO_DPA_PROTECTION_LEVEL_LOW": true, - "ESP_CRYPTO_DPA_PROTECTION_LEVEL_MEDIUM": false, - "ESP_CRYPTO_FORCE_ECC_CONSTANT_TIME_POINT_MUL": false, - "ESP_DEBUG_INCLUDE_OCD_STUB_BINS": false, - "ESP_DEBUG_OCDAWARE": true, - "ESP_DEBUG_STUBS_ENABLE": false, - "ESP_DEFAULT_CPU_FREQ_MHZ": 96, - "ESP_DEFAULT_CPU_FREQ_MHZ_48": false, - "ESP_DEFAULT_CPU_FREQ_MHZ_64": false, - "ESP_DEFAULT_CPU_FREQ_MHZ_96": true, - "ESP_ECDSA_ENABLE_P192_CURVE": false, - "ESP_EFUSE_BLOCK_REV_MAX_FULL": 99, - "ESP_EFUSE_BLOCK_REV_MIN_FULL": 0, - "ESP_ERR_TO_NAME_LOOKUP": false, - "ESP_EVENT_LOOP_PROFILING": false, - "ESP_EVENT_POST_FROM_IRAM_ISR": true, - "ESP_EVENT_POST_FROM_ISR": true, - "ESP_INTR_IN_IRAM": true, - "ESP_INT_WDT": true, - "ESP_INT_WDT_TIMEOUT_MS": 300, - "ESP_IPC_TASK_STACK_SIZE": 1024, - "ESP_MAC_ADDR_UNIVERSE_BT": true, - "ESP_MAC_ADDR_UNIVERSE_IEEE802154": true, - "ESP_MAC_UNIVERSAL_MAC_ADDRESSES": 2, - "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_TWO": true, - "ESP_MAC_USE_CUSTOM_MAC_AS_BASE_MAC": false, - "ESP_MAIN_TASK_AFFINITY": 0, - "ESP_MAIN_TASK_AFFINITY_CPU0": true, - "ESP_MAIN_TASK_AFFINITY_NO_AFFINITY": false, - "ESP_MAIN_TASK_STACK_SIZE": 3584, - "ESP_MINIMAL_SHARED_STACK_SIZE": 2048, - "ESP_NETIF_BRIDGE_EN": false, - "ESP_NETIF_IP_LOST_TIMER_INTERVAL": 120, - "ESP_NETIF_L2_TAP": false, - "ESP_NETIF_LOOPBACK": false, - "ESP_NETIF_PROVIDE_CUSTOM_IMPLEMENTATION": false, - "ESP_NETIF_RECEIVE_REPORT_ERRORS": false, - "ESP_NETIF_REPORT_DATA_TRAFFIC": true, - "ESP_NETIF_SET_DNS_PER_DEFAULT_NETIF": false, - "ESP_NETIF_TCPIP_LWIP": true, - "ESP_NETIF_USES_TCPIP_WITH_BSD_API": true, - "ESP_PANIC_HANDLER_IRAM": false, - "ESP_PERIPH_CTRL_FUNC_IN_IRAM": true, - "ESP_PHY_CALIBRATION_AND_DATA_STORAGE": true, - "ESP_PHY_CALIBRATION_MODE": 0, - "ESP_PHY_DEBUG": false, - "ESP_PHY_ENABLED": true, - "ESP_PHY_ENABLE_CERT_TEST": false, - "ESP_PHY_IRAM_OPT": true, - "ESP_PHY_MAX_TX_POWER": 20, - "ESP_PHY_MAX_WIFI_TX_POWER": 20, - "ESP_PHY_PLL_TRACK_DEBUG": false, - "ESP_PHY_PLL_TRACK_PERIOD_MS": 1000, - "ESP_PHY_RECORD_USED_TIME": false, - "ESP_PHY_REDUCE_TX_POWER": false, - "ESP_PHY_RF_CAL_FULL": false, - "ESP_PHY_RF_CAL_NONE": false, - "ESP_PHY_RF_CAL_PARTIAL": true, - "ESP_REGI2C_CTRL_FUNC_IN_IRAM": true, - "ESP_REV_MAX_FULL": 199, - "ESP_REV_MIN_FULL": 0, - "ESP_ROM_GET_CLK_FREQ": true, - "ESP_ROM_HAS_CRC_BE": true, - "ESP_ROM_HAS_CRC_LE": true, - "ESP_ROM_HAS_HAL_SYSTIMER": true, - "ESP_ROM_HAS_HAL_WDT": true, - "ESP_ROM_HAS_HEAP_TLSF": true, - "ESP_ROM_HAS_LAYOUT_TABLE": true, - "ESP_ROM_HAS_NEWLIB": true, - "ESP_ROM_HAS_NEWLIB_NANO_FORMAT": true, - "ESP_ROM_HAS_NEWLIB_NANO_PRINTF_FLOAT_BUG": true, - "ESP_ROM_HAS_OUTPUT_PUTC_FUNC": true, - "ESP_ROM_HAS_RETARGETABLE_LOCKING": true, - "ESP_ROM_HAS_SPI_FLASH": true, - "ESP_ROM_HAS_SPI_FLASH_MMAP": true, - "ESP_ROM_HAS_SUBOPTIMAL_NEWLIB_ON_MISALIGNED_MEMORY": true, - "ESP_ROM_HAS_SW_FLOAT": true, - "ESP_ROM_HAS_VERSION": true, - "ESP_ROM_MULTI_HEAP_WALK_PATCH": true, - "ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE": true, - "ESP_ROM_NO_USB_SERIAL_OUTPUT_API": true, - "ESP_ROM_PRINT_IN_IRAM": true, - "ESP_ROM_RAM_APP_NEEDS_MMU_INIT": true, - "ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB": true, - "ESP_ROM_SYSTIMER_INIT_PATCH": true, - "ESP_ROM_TLSF_CHECK_PATCH": true, - "ESP_ROM_UART_CLK_IS_XTAL": true, - "ESP_ROM_USB_OTG_NUM": -1, - "ESP_ROM_USB_SERIAL_DEVICE_NUM": 3, - "ESP_ROM_WDT_INIT_PATCH": true, - "ESP_ROM_WITHOUT_REGI2C": true, - "ESP_SLEEP_CACHE_SAFE_ASSERTION": false, - "ESP_SLEEP_DEBUG": false, - "ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND": true, - "ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS": true, - "ESP_SLEEP_GPIO_RESET_WORKAROUND": true, - "ESP_SLEEP_MSPI_NEED_ALL_IO_PU": false, - "ESP_SLEEP_POWER_DOWN_FLASH": false, - "ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY": 0, - "ESP_SPI_BUS_LOCK_ISR_FUNCS_IN_IRAM": true, - "ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP": true, - "ESP_SYSTEM_BBPLL_RECALIB": true, - "ESP_SYSTEM_CHECK_INT_LEVEL_4": true, - "ESP_SYSTEM_EVENT_QUEUE_SIZE": 32, - "ESP_SYSTEM_EVENT_TASK_STACK_SIZE": 2304, - "ESP_SYSTEM_HW_PC_RECORD": true, - "ESP_SYSTEM_HW_STACK_GUARD": true, - "ESP_SYSTEM_IN_IRAM": true, - "ESP_SYSTEM_NO_BACKTRACE": true, - "ESP_SYSTEM_PANIC_PRINT_HALT": false, - "ESP_SYSTEM_PANIC_PRINT_REBOOT": false, - "ESP_SYSTEM_PANIC_SILENT_REBOOT": true, - "ESP_SYSTEM_PMP_IDRAM_SPLIT": true, - "ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK": true, - "ESP_SYSTEM_SINGLE_CORE_MODE": true, - "ESP_SYSTEM_USE_EH_FRAME": false, - "ESP_SYSTEM_USE_FRAME_POINTER": false, - "ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0": true, - "ESP_TASK_WDT_EN": true, - "ESP_TASK_WDT_INIT": true, - "ESP_TASK_WDT_PANIC": false, - "ESP_TASK_WDT_TIMEOUT_S": 5, - "ESP_TIMER_IMPL_SYSTIMER": true, - "ESP_TIMER_INTERRUPT_LEVEL": 1, - "ESP_TIMER_IN_IRAM": true, - "ESP_TIMER_ISR_AFFINITY_CPU0": true, - "ESP_TIMER_PROFILING": false, - "ESP_TIMER_SHOW_EXPERIMENTAL": false, - "ESP_TIMER_SUPPORTS_ISR_DISPATCH_METHOD": false, - "ESP_TIMER_TASK_AFFINITY": 0, - "ESP_TIMER_TASK_AFFINITY_CPU0": true, - "ESP_TIMER_TASK_STACK_SIZE": 3584, - "ESP_TIME_FUNCS_USE_ESP_TIMER": true, - "ESP_TIME_FUNCS_USE_RTC_TIMER": true, - "ESP_VBAT_INIT_AUTO": false, - "ESP_VBAT_WAKEUP_CHIP_ON_VBAT_BROWNOUT": false, - "ETM_ENABLE_DEBUG_LOG": false, - "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_SYSTIMER_LVL1": true, - "FREERTOS_CORETIMER_SYSTIMER_LVL3": false, - "FREERTOS_DEBUG_OCDAWARE": true, - "FREERTOS_ENABLE_BACKWARD_COMPATIBILITY": false, - "FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP": false, - "FREERTOS_ENABLE_TASK_SNAPSHOT": true, - "FREERTOS_GENERATE_RUN_TIME_STATS": false, - "FREERTOS_HZ": 100, - "FREERTOS_IDLE_TASK_STACKSIZE": 1536, - "FREERTOS_INTERRUPT_BACKTRACE": true, - "FREERTOS_IN_IRAM": true, - "FREERTOS_ISR_STACKSIZE": 1536, - "FREERTOS_MAX_TASK_NAME_LEN": 16, - "FREERTOS_NO_AFFINITY": 2147483647, - "FREERTOS_NUMBER_OF_CORES": 1, - "FREERTOS_OPTIMIZED_SCHEDULER": true, - "FREERTOS_PLACE_FUNCTIONS_INTO_FLASH": false, - "FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH": true, - "FREERTOS_PORT": true, - "FREERTOS_QUEUE_REGISTRY_SIZE": 0, - "FREERTOS_SMP": false, - "FREERTOS_SUPPORT_STATIC_ALLOCATION": true, - "FREERTOS_SYSTICK_USES_SYSTIMER": true, - "FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES": 1, - "FREERTOS_TASK_PRE_DELETION_HOOK": false, - "FREERTOS_THREAD_LOCAL_STORAGE_POINTERS": 1, - "FREERTOS_TICK_SUPPORT_SYSTIMER": true, - "FREERTOS_TIMER_QUEUE_LENGTH": 10, - "FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY": 2147483647, - "FREERTOS_TIMER_SERVICE_TASK_NAME": "Tmr Svc", - "FREERTOS_TIMER_TASK_AFFINITY_CPU0": false, - "FREERTOS_TIMER_TASK_NO_AFFINITY": true, - "FREERTOS_TIMER_TASK_PRIORITY": 1, - "FREERTOS_TIMER_TASK_STACK_DEPTH": 2048, - "FREERTOS_TLSP_DELETION_CALLBACKS": true, - "FREERTOS_UNICORE": true, - "FREERTOS_USE_APPLICATION_TASK_TAG": false, - "FREERTOS_USE_IDLE_HOOK": false, - "FREERTOS_USE_LIST_DATA_INTEGRITY_CHECK_BYTES": false, - "FREERTOS_USE_TICK_HOOK": false, - "FREERTOS_USE_TIMERS": true, - "FREERTOS_USE_TRACE_FACILITY": false, - "FREERTOS_WATCHPOINT_END_OF_STACK": false, - "GDMA_CTRL_FUNC_IN_IRAM": true, - "GDMA_ENABLE_DEBUG_LOG": false, - "GDMA_ISR_HANDLER_IN_IRAM": true, - "GDMA_ISR_IRAM_SAFE": false, - "GDMA_OBJ_DRAM_SAFE": true, - "GPIO_CTRL_FUNC_IN_IRAM": false, - "GPTIMER_CTRL_FUNC_IN_IRAM": false, - "GPTIMER_ENABLE_DEBUG_LOG": false, - "GPTIMER_ISR_CACHE_SAFE": false, - "GPTIMER_ISR_HANDLER_IN_IRAM": true, - "GPTIMER_OBJ_CACHE_SAFE": true, - "GPTIMER_SKIP_LEGACY_CONFLICT_CHECK": false, - "GPTIMER_SUPPRESS_DEPRECATE_WARN": false, - "HAL_ASSERTION_DISABLE": false, - "HAL_ASSERTION_EQUALS_SYSTEM": true, - "HAL_ASSERTION_SILENT": false, - "HAL_DEFAULT_ASSERTION_LEVEL": 1, - "HAL_ECDSA_GEN_SIG_CM": false, - "HAL_SYSTIMER_USE_ROM_IMPL": true, - "HAL_WDT_USE_ROM_IMPL": true, - "HEAP_ABORT_WHEN_ALLOCATION_FAILS": false, - "HEAP_PLACE_FUNCTION_INTO_FLASH": false, - "HEAP_POISONING_COMPREHENSIVE": false, - "HEAP_POISONING_DISABLED": true, - "HEAP_POISONING_LIGHT": false, - "HEAP_TASK_TRACKING": false, - "HEAP_TLSF_USE_ROM_IMPL": true, - "HEAP_TRACING_OFF": true, - "HEAP_TRACING_STANDALONE": false, - "HEAP_TRACING_TOHOST": false, - "HEAP_USE_HOOKS": false, - "I2C_ENABLE_DEBUG_LOG": false, - "I2C_ENABLE_SLAVE_DRIVER_VERSION_2": false, - "I2C_ISR_IRAM_SAFE": false, - "I2C_MASTER_ISR_HANDLER_IN_IRAM": true, - "I2C_SKIP_LEGACY_CONFLICT_CHECK": false, - "I2S_ENABLE_DEBUG_LOG": false, - "I2S_ISR_IRAM_SAFE": false, - "I2S_SKIP_LEGACY_CONFLICT_CHECK": false, - "I2S_SUPPRESS_DEPRECATE_WARN": false, - "IDF_CMAKE": true, - "IDF_EXPERIMENTAL_FEATURES": false, - "IDF_FIRMWARE_CHIP_ID": 16, - "IDF_INIT_VERSION": "5.5.1", - "IDF_TARGET": "esp32h2", - "IDF_TARGET_ARCH": "riscv", - "IDF_TARGET_ARCH_RISCV": true, - "IDF_TARGET_ESP32H2": true, - "IDF_TOOLCHAIN": "gcc", - "IDF_TOOLCHAIN_GCC": true, - "IEEE802154_CCA_CARRIER": false, - "IEEE802154_CCA_CARRIER_AND_ED": false, - "IEEE802154_CCA_CARRIER_OR_ED": false, - "IEEE802154_CCA_ED": true, - "IEEE802154_CCA_MODE": 1, - "IEEE802154_CCA_THRESHOLD": -60, - "IEEE802154_DEBUG": false, - "IEEE802154_DEBUG_ASSERT_MONITOR": false, - "IEEE802154_ENABLED": true, - "IEEE802154_MULTI_PAN_ENABLE": false, - "IEEE802154_PENDING_TABLE_SIZE": 20, - "IEEE802154_RX_BUFFER_SIZE": 20, - "IEEE802154_TIMING_OPTIMIZATION": true, - "LEDC_CTRL_FUNC_IN_IRAM": false, - "LIBC_LOCKS_PLACE_IN_IRAM": true, - "LIBC_MISC_IN_IRAM": true, - "LIBC_NEWLIB": true, - "LIBC_NEWLIB_NANO_FORMAT": true, - "LIBC_OPTIMIZED_MISALIGNED_ACCESS": false, - "LIBC_STDIN_LINE_ENDING_CR": true, - "LIBC_STDIN_LINE_ENDING_CRLF": false, - "LIBC_STDIN_LINE_ENDING_LF": false, - "LIBC_STDOUT_LINE_ENDING_CR": false, - "LIBC_STDOUT_LINE_ENDING_CRLF": true, - "LIBC_STDOUT_LINE_ENDING_LF": false, - "LIBC_TIME_SYSCALL_USE_HRT": false, - "LIBC_TIME_SYSCALL_USE_NONE": false, - "LIBC_TIME_SYSCALL_USE_RTC": false, - "LIBC_TIME_SYSCALL_USE_RTC_HRT": true, - "LOG_COLORS": false, - "LOG_DEFAULT_LEVEL": 0, - "LOG_DEFAULT_LEVEL_DEBUG": false, - "LOG_DEFAULT_LEVEL_ERROR": false, - "LOG_DEFAULT_LEVEL_INFO": false, - "LOG_DEFAULT_LEVEL_NONE": true, - "LOG_DEFAULT_LEVEL_VERBOSE": false, - "LOG_DEFAULT_LEVEL_WARN": false, - "LOG_DYNAMIC_LEVEL_CONTROL": true, - "LOG_IN_IRAM": true, - "LOG_MASTER_LEVEL": false, - "LOG_MAXIMUM_EQUALS_DEFAULT": true, - "LOG_MAXIMUM_LEVEL": 0, - "LOG_MAXIMUM_LEVEL_DEBUG": false, - "LOG_MAXIMUM_LEVEL_ERROR": false, - "LOG_MAXIMUM_LEVEL_INFO": false, - "LOG_MAXIMUM_LEVEL_VERBOSE": false, - "LOG_MAXIMUM_LEVEL_WARN": false, - "LOG_MODE_TEXT": true, - "LOG_MODE_TEXT_EN": true, - "LOG_TAG_LEVEL_CACHE_ARRAY": false, - "LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP": true, - "LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST": true, - "LOG_TAG_LEVEL_IMPL_CACHE_SIZE": 31, - "LOG_TAG_LEVEL_IMPL_LINKED_LIST": false, - "LOG_TAG_LEVEL_IMPL_NONE": false, - "LOG_TIMESTAMP_SOURCE_RTOS": true, - "LOG_TIMESTAMP_SOURCE_SYSTEM": false, - "LOG_VERSION": 1, - "LOG_VERSION_1": true, - "LOG_VERSION_2": false, - "LWIP_AUTOIP": false, - "LWIP_BRIDGEIF_MAX_PORTS": 7, - "LWIP_BROADCAST_PING": false, - "LWIP_CHECKSUM_CHECK_ICMP": true, - "LWIP_CHECKSUM_CHECK_IP": false, - "LWIP_CHECKSUM_CHECK_UDP": false, - "LWIP_CHECK_THREAD_SAFETY": false, - "LWIP_DEBUG": false, - "LWIP_DHCPS": true, - "LWIP_DHCPS_ADD_DNS": true, - "LWIP_DHCPS_LEASE_UNIT": 60, - "LWIP_DHCPS_MAX_STATION_NUM": 8, - "LWIP_DHCPS_STATIC_ENTRIES": true, - "LWIP_DHCP_COARSE_TIMER_SECS": 1, - "LWIP_DHCP_DISABLE_CLIENT_ID": false, - "LWIP_DHCP_DISABLE_VENDOR_CLASS_ID": true, - "LWIP_DHCP_DOES_ACD_CHECK": false, - "LWIP_DHCP_DOES_ARP_CHECK": true, - "LWIP_DHCP_DOES_NOT_CHECK_OFFERED_IP": false, - "LWIP_DHCP_GET_NTP_SRV": false, - "LWIP_DHCP_OPTIONS_LEN": 69, - "LWIP_DHCP_RESTORE_LAST_IP": false, - "LWIP_DNS_MAX_HOST_IP": 1, - "LWIP_DNS_MAX_SERVERS": 3, - "LWIP_DNS_SETSERVER_WITH_NETIF": false, - "LWIP_DNS_SUPPORT_MDNS_QUERIES": true, - "LWIP_ENABLE": true, - "LWIP_ESP_GRATUITOUS_ARP": true, - "LWIP_ESP_LWIP_ASSERT": true, - "LWIP_ESP_MLDV6_REPORT": true, - "LWIP_EXTRA_IRAM_OPTIMIZATION": false, - "LWIP_FALLBACK_DNS_SERVER_SUPPORT": false, - "LWIP_FORCE_ROUTER_FORWARDING": false, - "LWIP_GARP_TMR_INTERVAL": 60, - "LWIP_HOOK_DHCP_EXTRA_OPTION_CUSTOM": false, - "LWIP_HOOK_DHCP_EXTRA_OPTION_DEFAULT": false, - "LWIP_HOOK_DHCP_EXTRA_OPTION_NONE": true, - "LWIP_HOOK_DNS_EXT_RESOLVE_CUSTOM": false, - "LWIP_HOOK_DNS_EXT_RESOLVE_NONE": true, - "LWIP_HOOK_IP6_INPUT_CUSTOM": false, - "LWIP_HOOK_IP6_INPUT_DEFAULT": true, - "LWIP_HOOK_IP6_INPUT_NONE": false, - "LWIP_HOOK_IP6_ROUTE_CUSTOM": false, - "LWIP_HOOK_IP6_ROUTE_DEFAULT": false, - "LWIP_HOOK_IP6_ROUTE_NONE": true, - "LWIP_HOOK_IP6_SELECT_SRC_ADDR_CUSTOM": false, - "LWIP_HOOK_IP6_SELECT_SRC_ADDR_DEFAULT": false, - "LWIP_HOOK_IP6_SELECT_SRC_ADDR_NONE": true, - "LWIP_HOOK_ND6_GET_GW_CUSTOM": false, - "LWIP_HOOK_ND6_GET_GW_DEFAULT": false, - "LWIP_HOOK_ND6_GET_GW_NONE": true, - "LWIP_HOOK_NETCONN_EXT_RESOLVE_CUSTOM": false, - "LWIP_HOOK_NETCONN_EXT_RESOLVE_DEFAULT": false, - "LWIP_HOOK_NETCONN_EXT_RESOLVE_NONE": true, - "LWIP_HOOK_TCP_ISN_CUSTOM": false, - "LWIP_HOOK_TCP_ISN_DEFAULT": true, - "LWIP_HOOK_TCP_ISN_NONE": false, - "LWIP_ICMP": true, - "LWIP_IP4_FRAG": true, - "LWIP_IP4_REASSEMBLY": false, - "LWIP_IP6_FRAG": true, - "LWIP_IP6_REASSEMBLY": false, - "LWIP_IPV4": true, - "LWIP_IPV6": true, - "LWIP_IPV6_AUTOCONFIG": false, - "LWIP_IPV6_FORWARD": false, - "LWIP_IPV6_MEMP_NUM_ND6_QUEUE": 3, - "LWIP_IPV6_ND6_NUM_DESTINATIONS": 10, - "LWIP_IPV6_ND6_NUM_NEIGHBORS": 5, - "LWIP_IPV6_ND6_NUM_PREFIXES": 5, - "LWIP_IPV6_ND6_NUM_ROUTERS": 3, - "LWIP_IPV6_NUM_ADDRESSES": 3, - "LWIP_IP_DEFAULT_TTL": 64, - "LWIP_IP_FORWARD": false, - "LWIP_IP_REASS_MAX_PBUFS": 10, - "LWIP_IRAM_OPTIMIZATION": false, - "LWIP_L2_TO_L3_COPY": false, - "LWIP_LOCAL_HOSTNAME": "espressif", - "LWIP_LOOPBACK_MAX_PBUFS": 8, - "LWIP_MAX_ACTIVE_TCP": 16, - "LWIP_MAX_LISTENING_TCP": 16, - "LWIP_MAX_RAW_PCBS": 16, - "LWIP_MAX_SOCKETS": 10, - "LWIP_MAX_UDP_PCBS": 16, - "LWIP_MLDV6_TMR_INTERVAL": 40, - "LWIP_MULTICAST_PING": false, - "LWIP_ND6": true, - "LWIP_NETBUF_RECVINFO": false, - "LWIP_NETIF_LOOPBACK": true, - "LWIP_NETIF_STATUS_CALLBACK": false, - "LWIP_NUM_NETIF_CLIENT_DATA": 0, - "LWIP_PPP_SUPPORT": false, - "LWIP_SLIP_SUPPORT": false, - "LWIP_SNTP_MAXIMUM_STARTUP_DELAY": 5000, - "LWIP_SNTP_MAX_SERVERS": 1, - "LWIP_SNTP_STARTUP_DELAY": true, - "LWIP_SNTP_UPDATE_DELAY": 3600000, - "LWIP_SO_LINGER": false, - "LWIP_SO_RCVBUF": false, - "LWIP_SO_REUSE": true, - "LWIP_SO_REUSE_RXTOALL": true, - "LWIP_STATS": false, - "LWIP_TCPIP_CORE_LOCKING": false, - "LWIP_TCPIP_RECVMBOX_SIZE": 32, - "LWIP_TCPIP_TASK_AFFINITY": 2147483647, - "LWIP_TCPIP_TASK_AFFINITY_CPU0": false, - "LWIP_TCPIP_TASK_AFFINITY_NO_AFFINITY": true, - "LWIP_TCPIP_TASK_PRIO": 18, - "LWIP_TCPIP_TASK_STACK_SIZE": 3072, - "LWIP_TCP_ACCEPTMBOX_SIZE": 6, - "LWIP_TCP_FIN_WAIT_TIMEOUT": 20000, - "LWIP_TCP_HIGH_SPEED_RETRANSMISSION": true, - "LWIP_TCP_MAXRTX": 12, - "LWIP_TCP_MSL": 60000, - "LWIP_TCP_MSS": 1440, - "LWIP_TCP_OOSEQ_MAX_PBUFS": 4, - "LWIP_TCP_OOSEQ_TIMEOUT": 6, - "LWIP_TCP_OVERSIZE_DISABLE": false, - "LWIP_TCP_OVERSIZE_MSS": true, - "LWIP_TCP_OVERSIZE_QUARTER_MSS": false, - "LWIP_TCP_QUEUE_OOSEQ": true, - "LWIP_TCP_RECVMBOX_SIZE": 6, - "LWIP_TCP_RTO_TIME": 1500, - "LWIP_TCP_SACK_OUT": false, - "LWIP_TCP_SND_BUF_DEFAULT": 5760, - "LWIP_TCP_SYNMAXRTX": 12, - "LWIP_TCP_TMR_INTERVAL": 250, - "LWIP_TCP_WND_DEFAULT": 5760, - "LWIP_TIMERS_ONDEMAND": true, - "LWIP_UDP_RECVMBOX_SIZE": 6, - "LWIP_USE_ESP_GETADDRINFO": false, - "LWIP_USE_ONLY_LWIP_SELECT": false, - "MBEDTLS_AES_C": true, - "MBEDTLS_AES_INTERRUPT_LEVEL": 0, - "MBEDTLS_AES_USE_INTERRUPT": true, - "MBEDTLS_AES_USE_PSEUDO_ROUND_FUNC": false, - "MBEDTLS_ALLOW_WEAK_CERTIFICATE_VERIFICATION": false, - "MBEDTLS_ASYMMETRIC_CONTENT_LEN": true, - "MBEDTLS_ATCA_HW_ECDSA_SIGN": false, - "MBEDTLS_ATCA_HW_ECDSA_VERIFY": false, - "MBEDTLS_BLOWFISH_C": false, - "MBEDTLS_CAMELLIA_C": false, - "MBEDTLS_CCM_C": true, - "MBEDTLS_CERTIFICATE_BUNDLE": true, - "MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_CMN": false, - "MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_FULL": true, - "MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_NONE": false, - "MBEDTLS_CERTIFICATE_BUNDLE_DEPRECATED_LIST": false, - "MBEDTLS_CERTIFICATE_BUNDLE_MAX_CERTS": 200, - "MBEDTLS_CHACHA20_C": false, - "MBEDTLS_CLIENT_SSL_SESSION_TICKETS": true, - "MBEDTLS_CMAC_C": false, - "MBEDTLS_CUSTOM_CERTIFICATE_BUNDLE": false, - "MBEDTLS_CUSTOM_MEM_ALLOC": false, - "MBEDTLS_DEBUG": false, - "MBEDTLS_DEFAULT_MEM_ALLOC": false, - "MBEDTLS_DES_C": false, - "MBEDTLS_DHM_C": false, - "MBEDTLS_DYNAMIC_BUFFER": false, - "MBEDTLS_ECC_OTHER_CURVES_SOFT_FALLBACK": true, - "MBEDTLS_ECDH_C": true, - "MBEDTLS_ECDSA_C": true, - "MBEDTLS_ECDSA_DETERMINISTIC": true, - "MBEDTLS_ECJPAKE_C": false, - "MBEDTLS_ECP_C": true, - "MBEDTLS_ECP_DP_BP256R1_ENABLED": true, - "MBEDTLS_ECP_DP_BP384R1_ENABLED": true, - "MBEDTLS_ECP_DP_BP512R1_ENABLED": true, - "MBEDTLS_ECP_DP_CURVE25519_ENABLED": true, - "MBEDTLS_ECP_DP_SECP192K1_ENABLED": true, - "MBEDTLS_ECP_DP_SECP192R1_ENABLED": true, - "MBEDTLS_ECP_DP_SECP224K1_ENABLED": true, - "MBEDTLS_ECP_DP_SECP224R1_ENABLED": true, - "MBEDTLS_ECP_DP_SECP256K1_ENABLED": true, - "MBEDTLS_ECP_DP_SECP256R1_ENABLED": true, - "MBEDTLS_ECP_DP_SECP384R1_ENABLED": true, - "MBEDTLS_ECP_DP_SECP521R1_ENABLED": true, - "MBEDTLS_ECP_FIXED_POINT_OPTIM": false, - "MBEDTLS_ECP_NIST_OPTIM": true, - "MBEDTLS_ECP_RESTARTABLE": false, - "MBEDTLS_ERROR_STRINGS": true, - "MBEDTLS_FS_IO": true, - "MBEDTLS_GCM_C": true, - "MBEDTLS_GCM_SUPPORT_NON_AES_CIPHER": true, - "MBEDTLS_HARDWARE_AES": true, - "MBEDTLS_HARDWARE_ECC": true, - "MBEDTLS_HARDWARE_ECDSA_SIGN": false, - "MBEDTLS_HARDWARE_ECDSA_VERIFY": true, - "MBEDTLS_HARDWARE_MPI": true, - "MBEDTLS_HARDWARE_SHA": true, - "MBEDTLS_HAVE_TIME": true, - "MBEDTLS_HAVE_TIME_DATE": false, - "MBEDTLS_HKDF_C": false, - "MBEDTLS_INTERNAL_MEM_ALLOC": true, - "MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA": true, - "MBEDTLS_KEY_EXCHANGE_ECDHE_RSA": true, - "MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA": true, - "MBEDTLS_KEY_EXCHANGE_ECDH_RSA": true, - "MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE": true, - "MBEDTLS_KEY_EXCHANGE_RSA": true, - "MBEDTLS_LARGE_KEY_SOFTWARE_MPI": true, - "MBEDTLS_MPI_INTERRUPT_LEVEL": 0, - "MBEDTLS_MPI_USE_INTERRUPT": true, - "MBEDTLS_NIST_KW_C": false, - "MBEDTLS_PEM_PARSE_C": true, - "MBEDTLS_PEM_WRITE_C": true, - "MBEDTLS_PKCS7_C": true, - "MBEDTLS_PK_PARSE_EC_COMPRESSED": true, - "MBEDTLS_PK_PARSE_EC_EXTENDED": true, - "MBEDTLS_PLATFORM_TIME_ALT": false, - "MBEDTLS_POLY1305_C": false, - "MBEDTLS_PSK_MODES": false, - "MBEDTLS_RIPEMD160_C": false, - "MBEDTLS_ROM_MD5": true, - "MBEDTLS_SERVER_SSL_SESSION_TICKETS": true, - "MBEDTLS_SHA1_C": true, - "MBEDTLS_SHA3_C": false, - "MBEDTLS_SHA512_C": true, - "MBEDTLS_SSL_ALPN": true, - "MBEDTLS_SSL_CONTEXT_SERIALIZATION": false, - "MBEDTLS_SSL_IN_CONTENT_LEN": 16384, - "MBEDTLS_SSL_KEEP_PEER_CERTIFICATE": true, - "MBEDTLS_SSL_KEYING_MATERIAL_EXPORT": false, - "MBEDTLS_SSL_OUT_CONTENT_LEN": 4096, - "MBEDTLS_SSL_PROTO_DTLS": false, - "MBEDTLS_SSL_PROTO_GMTSSL1_1": false, - "MBEDTLS_SSL_PROTO_TLS1_2": true, - "MBEDTLS_SSL_PROTO_TLS1_3": false, - "MBEDTLS_SSL_RENEGOTIATION": true, - "MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH": false, - "MBEDTLS_THREADING_C": false, - "MBEDTLS_TLS_CLIENT": true, - "MBEDTLS_TLS_CLIENT_ONLY": false, - "MBEDTLS_TLS_DISABLED": false, - "MBEDTLS_TLS_ENABLED": true, - "MBEDTLS_TLS_SERVER": true, - "MBEDTLS_TLS_SERVER_AND_CLIENT": true, - "MBEDTLS_TLS_SERVER_ONLY": false, - "MBEDTLS_X509_CRL_PARSE_C": true, - "MBEDTLS_X509_CSR_PARSE_C": true, - "MBEDTLS_X509_TRUSTED_CERT_CALLBACK": false, - "MBEDTLS_XTEA_C": false, - "MCPWM_CTRL_FUNC_IN_IRAM": false, - "MCPWM_ENABLE_DEBUG_LOG": false, - "MCPWM_ISR_CACHE_SAFE": false, - "MCPWM_ISR_HANDLER_IN_IRAM": true, - "MCPWM_OBJ_CACHE_SAFE": true, - "MCPWM_SKIP_LEGACY_CONFLICT_CHECK": false, - "MCPWM_SUPPRESS_DEPRECATE_WARN": false, - "MMU_PAGE_MODE": "32KB", - "MMU_PAGE_SIZE": 32768, - "MMU_PAGE_SIZE_32KB": true, - "NVS_ASSERT_ERROR_CHECK": false, - "NVS_ENCRYPTION": false, - "NVS_LEGACY_DUP_KEYS_COMPATIBILITY": false, - "OPENTHREAD_BORDER_AGENT_ENABLE": false, - "OPENTHREAD_BUS_LATENCY": 4000, - "OPENTHREAD_CLI": false, - "OPENTHREAD_COMMISSIONER": false, - "OPENTHREAD_CONSOLE_COMMAND_PREFIX": "ot", - "OPENTHREAD_CONSOLE_TYPE_UART": true, - "OPENTHREAD_CONSOLE_TYPE_USB_SERIAL_JTAG": false, - "OPENTHREAD_CSL_ACCURACY": 50, - "OPENTHREAD_CSL_DEBUG_ENABLE": false, - "OPENTHREAD_CSL_ENABLE": false, - "OPENTHREAD_CSL_UNCERTAIN": 0, - "OPENTHREAD_DIAG": false, - "OPENTHREAD_DNS64_CLIENT": false, - "OPENTHREAD_DNS_CLIENT": false, - "OPENTHREAD_ENABLED": true, - "OPENTHREAD_FTD": false, - "OPENTHREAD_HEADER_CUSTOM": false, - "OPENTHREAD_JOINER": false, - "OPENTHREAD_LINK_METRICS": false, - "OPENTHREAD_LOG_LEVEL": 0, - "OPENTHREAD_LOG_LEVEL_CRIT": false, - "OPENTHREAD_LOG_LEVEL_DEBG": false, - "OPENTHREAD_LOG_LEVEL_DYNAMIC": false, - "OPENTHREAD_LOG_LEVEL_INFO": false, - "OPENTHREAD_LOG_LEVEL_NONE": true, - "OPENTHREAD_LOG_LEVEL_NOTE": false, - "OPENTHREAD_LOG_LEVEL_WARN": false, - "OPENTHREAD_MACFILTER_ENABLE": false, - "OPENTHREAD_MAC_MAX_CSMA_BACKOFFS_DIRECT": 4, - "OPENTHREAD_MESH_LOCAL_PREFIX": "fd00:db8:a0:0::/64", - "OPENTHREAD_MLE_MAX_CHILDREN": 10, - "OPENTHREAD_MTD": false, - "OPENTHREAD_NCP_VENDOR_HOOK": true, - "OPENTHREAD_NETWORK_CHANNEL": 15, - "OPENTHREAD_NETWORK_EXTPANID": "dead00beef00cafe", - "OPENTHREAD_NETWORK_MASTERKEY": "00112233445566778899aabbccddeeff", - "OPENTHREAD_NETWORK_NAME": "OpenThread-ESP", - "OPENTHREAD_NETWORK_PANID": 4660, - "OPENTHREAD_NETWORK_PSKC": "104810e2315100afd6bc9215a6bfac53", - "OPENTHREAD_NUM_MESSAGE_BUFFERS": 65, - "OPENTHREAD_PACKAGE_NAME": "openthread-esp32", - "OPENTHREAD_PLATFORM_INFO": "esp32h2", - "OPENTHREAD_PREFERRED_CHANNEL_MASK": 134215680, - "OPENTHREAD_RADIO": true, - "OPENTHREAD_RADIO_154_NONE": false, - "OPENTHREAD_RADIO_NATIVE": true, - "OPENTHREAD_RADIO_SPINEL_SPI": false, - "OPENTHREAD_RADIO_SPINEL_UART": false, - "OPENTHREAD_RCP_SPI": false, - "OPENTHREAD_RCP_UART": true, - "OPENTHREAD_RCP_USB_SERIAL_JTAG": false, - "OPENTHREAD_RX_ON_WHEN_IDLE": true, - "OPENTHREAD_SPINEL_ONLY": false, - "OPENTHREAD_SPINEL_RX_FRAME_BUFFER_SIZE": 1024, - "OPENTHREAD_SRP_CLIENT": false, - "OPENTHREAD_SUPPORTED_CHANNEL_MASK": 134215680, - "OPENTHREAD_TIME_SYNC": false, - "OPENTHREAD_TMF_ADDR_CACHE_ENTRIES": 20, - "OPENTHREAD_UART_BUFFER_SIZE": 2048, - "OPENTHREAD_UART_PIN_MANUAL": false, - "OPENTHREAD_XTAL_ACCURACY": 10, - "PARLIO_ENABLE_DEBUG_LOG": false, - "PARLIO_ISR_IRAM_SAFE": false, - "PARLIO_OBJ_CACHE_SAFE": true, - "PARLIO_RX_ISR_CACHE_SAFE": false, - "PARLIO_RX_ISR_HANDLER_IN_IRAM": true, - "PARLIO_TX_ISR_CACHE_SAFE": false, - "PARLIO_TX_ISR_HANDLER_IN_IRAM": true, - "PARTITION_TABLE_CUSTOM": true, - "PARTITION_TABLE_CUSTOM_FILENAME": "partitions.csv", - "PARTITION_TABLE_FILENAME": "partitions.csv", - "PARTITION_TABLE_MD5": true, - "PARTITION_TABLE_OFFSET": 32768, - "PARTITION_TABLE_SINGLE_APP": false, - "PARTITION_TABLE_SINGLE_APP_LARGE": false, - "PARTITION_TABLE_TWO_OTA": false, - "PARTITION_TABLE_TWO_OTA_LARGE": false, - "PCNT_CTRL_FUNC_IN_IRAM": false, - "PCNT_ENABLE_DEBUG_LOG": false, - "PCNT_ISR_IRAM_SAFE": false, - "PCNT_SKIP_LEGACY_CONFLICT_CHECK": false, - "PCNT_SUPPRESS_DEPRECATE_WARN": false, - "PM_ENABLE": false, - "PM_POWER_DOWN_CPU_IN_LIGHT_SLEEP": true, - "PM_POWER_DOWN_PERIPHERAL_IN_LIGHT_SLEEP": false, - "PM_SLEEP_FUNC_IN_IRAM": true, - "PM_SLP_IRAM_OPT": true, - "PTHREAD_STACK_MIN": 768, - "PTHREAD_TASK_CORE_DEFAULT": -1, - "PTHREAD_TASK_NAME_DEFAULT": "pthread", - "PTHREAD_TASK_PRIO_DEFAULT": 5, - "PTHREAD_TASK_STACK_SIZE_DEFAULT": 3072, - "RINGBUF_PLACE_FUNCTIONS_INTO_FLASH": false, - "RMT_ENABLE_DEBUG_LOG": false, - "RMT_ENCODER_FUNC_IN_IRAM": true, - "RMT_ISR_IRAM_SAFE": false, - "RMT_OBJ_CACHE_SAFE": true, - "RMT_RECV_FUNC_IN_IRAM": false, - "RMT_RX_ISR_CACHE_SAFE": false, - "RMT_RX_ISR_HANDLER_IN_IRAM": true, - "RMT_SKIP_LEGACY_CONFLICT_CHECK": false, - "RMT_SUPPRESS_DEPRECATE_WARN": false, - "RMT_TX_ISR_CACHE_SAFE": false, - "RMT_TX_ISR_HANDLER_IN_IRAM": true, - "RTC_CLK_CAL_CYCLES": 1024, - "RTC_CLK_SRC_EXT_CRYS": false, - "RTC_CLK_SRC_EXT_OSC": false, - "RTC_CLK_SRC_INT_RC": true, - "SDM_CTRL_FUNC_IN_IRAM": false, - "SDM_ENABLE_DEBUG_LOG": false, - "SDM_SKIP_LEGACY_CONFLICT_CHECK": false, - "SDM_SUPPRESS_DEPRECATE_WARN": false, - "SECURE_BOOT": false, - "SECURE_BOOT_V2_ECC_SUPPORTED": true, - "SECURE_BOOT_V2_PREFERRED": true, - "SECURE_BOOT_V2_RSA_SUPPORTED": true, - "SECURE_FLASH_ENC_ENABLED": false, - "SECURE_ROM_DL_MODE_ENABLED": true, - "SECURE_SIGNED_APPS_NO_SECURE_BOOT": false, - "SOC_ADC_ATTEN_NUM": 4, - "SOC_ADC_CALIBRATION_V1_SUPPORTED": true, - "SOC_ADC_CALIB_CHAN_COMPENS_SUPPORTED": true, - "SOC_ADC_DIGI_CONTROLLER_NUM": 1, - "SOC_ADC_DIGI_DATA_BYTES_PER_CONV": 4, - "SOC_ADC_DIGI_IIR_FILTER_NUM": 2, - "SOC_ADC_DIGI_MAX_BITWIDTH": 12, - "SOC_ADC_DIGI_MIN_BITWIDTH": 12, - "SOC_ADC_DIGI_MONITOR_NUM": 2, - "SOC_ADC_DIGI_RESULT_BYTES": 4, - "SOC_ADC_DIG_CTRL_SUPPORTED": true, - "SOC_ADC_DIG_IIR_FILTER_SUPPORTED": true, - "SOC_ADC_DMA_SUPPORTED": true, - "SOC_ADC_MAX_CHANNEL_NUM": 5, - "SOC_ADC_MONITOR_SUPPORTED": true, - "SOC_ADC_PATT_LEN_MAX": 8, - "SOC_ADC_PERIPH_NUM": 1, - "SOC_ADC_RTC_MAX_BITWIDTH": 12, - "SOC_ADC_RTC_MIN_BITWIDTH": 12, - "SOC_ADC_SAMPLE_FREQ_THRES_HIGH": 83333, - "SOC_ADC_SAMPLE_FREQ_THRES_LOW": 611, - "SOC_ADC_SELF_HW_CALI_SUPPORTED": true, - "SOC_ADC_SHARED_POWER": true, - "SOC_ADC_SUPPORTED": true, - "SOC_ADC_TEMPERATURE_SHARE_INTR": true, - "SOC_AES_GDMA": true, - "SOC_AES_SUPPORTED": true, - "SOC_AES_SUPPORT_AES_128": true, - "SOC_AES_SUPPORT_AES_256": true, - "SOC_AES_SUPPORT_DMA": true, - "SOC_AES_SUPPORT_PSEUDO_ROUND_FUNCTION": true, - "SOC_AHB_GDMA_SUPPORTED": true, - "SOC_AHB_GDMA_VERSION": 1, - "SOC_ANA_CMPR_INTR_SHARE_WITH_GPIO": true, - "SOC_ANA_CMPR_NUM": 1, - "SOC_ANA_CMPR_SUPPORTED": true, - "SOC_APM_CTRL_FILTER_SUPPORTED": true, - "SOC_APM_SUPPORTED": true, - "SOC_ASSIST_DEBUG_SUPPORTED": true, - "SOC_ASYNC_MEMCPY_SUPPORTED": true, - "SOC_BLE_50_SUPPORTED": true, - "SOC_BLE_CTE_SUPPORTED": true, - "SOC_BLE_DEVICE_PRIVACY_SUPPORTED": true, - "SOC_BLE_MESH_SUPPORTED": true, - "SOC_BLE_MULTI_CONN_OPTIMIZATION": true, - "SOC_BLE_PERIODIC_ADV_ENH_SUPPORTED": true, - "SOC_BLE_POWER_CONTROL_SUPPORTED": true, - "SOC_BLE_SUPPORTED": true, - "SOC_BOD_SUPPORTED": true, - "SOC_BROWNOUT_RESET_SUPPORTED": true, - "SOC_BT_SUPPORTED": true, - "SOC_CACHE_FREEZE_SUPPORTED": true, - "SOC_CAPS_ECO_VER_MAX": 102, - "SOC_CLK_ANA_I2C_MST_HAS_ROOT_GATE": true, - "SOC_CLK_LP_FAST_SUPPORT_LP_PLL": true, - "SOC_CLK_LP_FAST_SUPPORT_XTAL_D2": true, - "SOC_CLK_OSC_SLOW_SUPPORTED": true, - "SOC_CLK_RC32K_SUPPORTED": true, - "SOC_CLK_RC_FAST_SUPPORT_CALIBRATION": true, - "SOC_CLK_TREE_SUPPORTED": true, - "SOC_CLK_XTAL32K_SUPPORTED": true, - "SOC_CLOCKOUT_HAS_SOURCE_GATE": true, - "SOC_COEX_HW_PTI": true, - "SOC_CPU_BREAKPOINTS_NUM": 4, - "SOC_CPU_CORES_NUM": 1, - "SOC_CPU_HAS_CSR_PC": true, - "SOC_CPU_HAS_FLEXIBLE_INTC": true, - "SOC_CPU_HAS_PMA": true, - "SOC_CPU_IDRAM_SPLIT_USING_PMP": true, - "SOC_CPU_INTR_NUM": 32, - "SOC_CPU_PMP_REGION_GRANULARITY": 4, - "SOC_CPU_WATCHPOINTS_NUM": 4, - "SOC_CPU_WATCHPOINT_MAX_REGION_SIZE": 2147483648, - "SOC_CRYPTO_DPA_PROTECTION_SUPPORTED": true, - "SOC_DEBUG_HAVE_OCD_STUB_BINS": true, - "SOC_DEDICATED_GPIO_SUPPORTED": true, - "SOC_DEDIC_GPIO_IN_CHANNELS_NUM": 8, - "SOC_DEDIC_GPIO_OUT_CHANNELS_NUM": 8, - "SOC_DEDIC_PERIPH_ALWAYS_ENABLE": true, - "SOC_DEEP_SLEEP_SUPPORTED": true, - "SOC_DIG_SIGN_SUPPORTED": true, - "SOC_DS_KEY_CHECK_MAX_WAIT_US": 1100, - "SOC_DS_KEY_PARAM_MD_IV_LENGTH": 16, - "SOC_DS_SIGNATURE_MAX_BIT_LEN": 3072, - "SOC_ECC_CONSTANT_TIME_POINT_MUL": true, - "SOC_ECC_EXTENDED_MODES_SUPPORTED": true, - "SOC_ECC_SUPPORTED": true, - "SOC_ECDSA_P192_CURVE_DEFAULT_DISABLED": true, - "SOC_ECDSA_SUPPORTED": true, - "SOC_ECDSA_SUPPORT_DETERMINISTIC_MODE": true, - "SOC_ECDSA_SUPPORT_HW_DETERMINISTIC_LOOP": true, - "SOC_ECDSA_USES_MPI": true, - "SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK": true, - "SOC_EFUSE_DIS_DIRECT_BOOT": true, - "SOC_EFUSE_DIS_ICACHE": true, - "SOC_EFUSE_DIS_PAD_JTAG": true, - "SOC_EFUSE_DIS_USB_JTAG": true, - "SOC_EFUSE_ECDSA_KEY": true, - "SOC_EFUSE_ECDSA_USE_HARDWARE_K": true, - "SOC_EFUSE_KEY_PURPOSE_FIELD": true, - "SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS": true, - "SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS": 3, - "SOC_EFUSE_SOFT_DIS_JTAG": true, - "SOC_EFUSE_SUPPORTED": true, - "SOC_ESP_NIMBLE_CONTROLLER": true, - "SOC_ETM_CHANNELS_PER_GROUP": 50, - "SOC_ETM_GROUPS": 1, - "SOC_ETM_SUPPORTED": true, - "SOC_ETM_SUPPORT_SLEEP_RETENTION": true, - "SOC_EXTERNAL_COEX_ADVANCE": true, - "SOC_EXT_MEM_CACHE_TAG_IN_CPU_DOMAIN": true, - "SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX": 64, - "SOC_FLASH_ENCRYPTION_XTS_AES": true, - "SOC_FLASH_ENCRYPTION_XTS_AES_128": true, - "SOC_FLASH_ENCRYPTION_XTS_AES_SUPPORT_PSEUDO_ROUND": true, - "SOC_FLASH_ENC_SUPPORTED": true, - "SOC_GDMA_NUM_GROUPS_MAX": 1, - "SOC_GDMA_PAIRS_PER_GROUP_MAX": 3, - "SOC_GDMA_SUPPORTED": true, - "SOC_GDMA_SUPPORT_ETM": true, - "SOC_GDMA_SUPPORT_SLEEP_RETENTION": true, - "SOC_GPIO_CLOCKOUT_BY_GPIO_MATRIX": true, - "SOC_GPIO_CLOCKOUT_CHANNEL_NUM": 3, - "SOC_GPIO_FLEX_GLITCH_FILTER_NUM": 8, - "SOC_GPIO_IN_RANGE_MAX": 27, - "SOC_GPIO_OUT_RANGE_MAX": 27, - "SOC_GPIO_PIN_COUNT": 28, - "SOC_GPIO_PORT": 1, - "SOC_GPIO_SUPPORT_ETM": true, - "SOC_GPIO_SUPPORT_FORCE_HOLD": true, - "SOC_GPIO_SUPPORT_HOLD_IO_IN_DSLP": true, - "SOC_GPIO_SUPPORT_HOLD_SINGLE_IO_IN_DSLP": true, - "SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER": true, - "SOC_GPIO_SUPPORT_PIN_HYS_CTRL_BY_EFUSE": true, - "SOC_GPIO_SUPPORT_PIN_HYS_FILTER": true, - "SOC_GPIO_SUPPORT_RTC_INDEPENDENT": true, - "SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK": 268402815, - "SOC_GPSPI_SUPPORTED": true, - "SOC_GPTIMER_SUPPORTED": true, - "SOC_HMAC_SUPPORTED": true, - "SOC_HP_I2C_NUM": 2, - "SOC_I2C_CMD_REG_NUM": 8, - "SOC_I2C_FIFO_LEN": 32, - "SOC_I2C_NUM": 2, - "SOC_I2C_SLAVE_CAN_GET_STRETCH_CAUSE": true, - "SOC_I2C_SLAVE_SUPPORT_BROADCAST": true, - "SOC_I2C_SLAVE_SUPPORT_I2CRAM_ACCESS": true, - "SOC_I2C_SLAVE_SUPPORT_SLAVE_UNMATCH": true, - "SOC_I2C_SUPPORTED": true, - "SOC_I2C_SUPPORT_10BIT_ADDR": true, - "SOC_I2C_SUPPORT_HW_CLR_BUS": true, - "SOC_I2C_SUPPORT_HW_FSM_RST": true, - "SOC_I2C_SUPPORT_RTC": true, - "SOC_I2C_SUPPORT_SLAVE": true, - "SOC_I2C_SUPPORT_SLEEP_RETENTION": true, - "SOC_I2C_SUPPORT_XTAL": true, - "SOC_I2S_HW_VERSION_2": true, - "SOC_I2S_NUM": 1, - "SOC_I2S_PDM_MAX_RX_LINES": 1, - "SOC_I2S_PDM_MAX_TX_LINES": 2, - "SOC_I2S_SUPPORTED": true, - "SOC_I2S_SUPPORTS_ETM": true, - "SOC_I2S_SUPPORTS_PCM": true, - "SOC_I2S_SUPPORTS_PCM2PDM": true, - "SOC_I2S_SUPPORTS_PDM": true, - "SOC_I2S_SUPPORTS_PDM_RX": true, - "SOC_I2S_SUPPORTS_PDM_TX": true, - "SOC_I2S_SUPPORTS_PLL_F64M": true, - "SOC_I2S_SUPPORTS_PLL_F96M": true, - "SOC_I2S_SUPPORTS_TDM": true, - "SOC_I2S_SUPPORTS_XTAL": true, - "SOC_I2S_SUPPORT_SLEEP_RETENTION": true, - "SOC_I2S_TDM_FULL_DATA_WIDTH": true, - "SOC_IEEE802154_BLE_ONLY": true, - "SOC_IEEE802154_SUPPORTED": true, - "SOC_INT_PLIC_SUPPORTED": true, - "SOC_LEDC_CHANNEL_NUM": 6, - "SOC_LEDC_FADE_PARAMS_BIT_WIDTH": 10, - "SOC_LEDC_GAMMA_CURVE_FADE_RANGE_MAX": 16, - "SOC_LEDC_GAMMA_CURVE_FADE_SUPPORTED": true, - "SOC_LEDC_SUPPORTED": true, - "SOC_LEDC_SUPPORT_FADE_STOP": true, - "SOC_LEDC_SUPPORT_PLL_DIV_CLOCK": true, - "SOC_LEDC_SUPPORT_SLEEP_RETENTION": true, - "SOC_LEDC_SUPPORT_XTAL_CLOCK": true, - "SOC_LEDC_TIMER_BIT_WIDTH": 20, - "SOC_LEDC_TIMER_NUM": 4, - "SOC_LIGHT_SLEEP_SUPPORTED": true, - "SOC_LP_AON_SUPPORTED": true, - "SOC_LP_IO_CLOCK_IS_INDEPENDENT": true, - "SOC_LP_TIMER_BIT_WIDTH_HI": 16, - "SOC_LP_TIMER_BIT_WIDTH_LO": 32, - "SOC_LP_TIMER_SUPPORTED": true, - "SOC_MCPWM_CAPTURE_CHANNELS_PER_TIMER": 3, - "SOC_MCPWM_CAPTURE_CLK_FROM_GROUP": true, - "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": 1, - "SOC_MCPWM_OPERATORS_PER_GROUP": 3, - "SOC_MCPWM_SUPPORTED": true, - "SOC_MCPWM_SUPPORT_ETM": true, - "SOC_MCPWM_SUPPORT_SLEEP_RETENTION": true, - "SOC_MCPWM_SWSYNC_CAN_PROPAGATE": true, - "SOC_MCPWM_TIMERS_PER_GROUP": 3, - "SOC_MCPWM_TRIGGERS_PER_OPERATOR": 2, - "SOC_MEMSPI_IS_INDEPENDENT": true, - "SOC_MEMSPI_SRC_FREQ_16M_SUPPORTED": true, - "SOC_MEMSPI_SRC_FREQ_32M_SUPPORTED": true, - "SOC_MEMSPI_SRC_FREQ_64M_SUPPORTED": true, - "SOC_MMU_DI_VADDR_SHARED": true, - "SOC_MMU_LINEAR_ADDRESS_REGION_NUM": 1, - "SOC_MMU_PAGE_SIZE_8KB_SUPPORTED": true, - "SOC_MMU_PAGE_SIZE_CONFIGURABLE": true, - "SOC_MMU_PERIPH_NUM": 1, - "SOC_MODEM_CLOCK_IS_INDEPENDENT": true, - "SOC_MODEM_CLOCK_SUPPORTED": true, - "SOC_MPI_MEM_BLOCKS_NUM": 4, - "SOC_MPI_OPERATIONS_NUM": 3, - "SOC_MPI_SUPPORTED": true, - "SOC_MPU_MIN_REGION_SIZE": 536870912, - "SOC_MPU_REGIONS_MAX_NUM": 8, - "SOC_MWDT_SUPPORT_SLEEP_RETENTION": true, - "SOC_MWDT_SUPPORT_XTAL": true, - "SOC_PARLIO_GROUPS": 1, - "SOC_PARLIO_RX_CLK_SUPPORT_GATING": true, - "SOC_PARLIO_RX_CLK_SUPPORT_OUTPUT": true, - "SOC_PARLIO_RX_UNITS_PER_GROUP": 1, - "SOC_PARLIO_RX_UNIT_MAX_DATA_WIDTH": 8, - "SOC_PARLIO_SUPPORTED": true, - "SOC_PARLIO_SUPPORT_SLEEP_RETENTION": true, - "SOC_PARLIO_SUPPORT_SPI_LCD": true, - "SOC_PARLIO_TRANS_BIT_ALIGN": true, - "SOC_PARLIO_TX_CLK_SUPPORT_GATING": true, - "SOC_PARLIO_TX_SUPPORT_LOOP_TRANSMISSION": true, - "SOC_PARLIO_TX_UNITS_PER_GROUP": 1, - "SOC_PARLIO_TX_UNIT_MAX_DATA_WIDTH": 8, - "SOC_PAU_SUPPORTED": true, - "SOC_PCNT_CHANNELS_PER_UNIT": 2, - "SOC_PCNT_GROUPS": 1, - "SOC_PCNT_SUPPORTED": true, - "SOC_PCNT_SUPPORT_RUNTIME_THRES_UPDATE": true, - "SOC_PCNT_SUPPORT_SLEEP_RETENTION": true, - "SOC_PCNT_SUPPORT_STEP_NOTIFY": true, - "SOC_PCNT_THRES_POINT_PER_UNIT": 2, - "SOC_PCNT_UNITS_PER_GROUP": 4, - "SOC_PHY_DIG_REGS_MEM_SIZE": 21, - "SOC_PHY_SUPPORTED": true, - "SOC_PMU_SUPPORTED": true, - "SOC_PM_CPU_RETENTION_BY_SW": true, - "SOC_PM_MODEM_RETENTION_BY_REGDMA": true, - "SOC_PM_PAU_LINK_NUM": 4, - "SOC_PM_PAU_REGDMA_LINK_MULTI_ADDR": true, - "SOC_PM_PAU_REGDMA_LINK_WIFIMAC": true, - "SOC_PM_PAU_REGDMA_UPDATE_CACHE_BEFORE_WAIT_COMPARE": true, - "SOC_PM_RETENTION_MODULE_NUM": 32, - "SOC_PM_RETENTION_SW_TRIGGER_REGDMA": true, - "SOC_PM_SUPPORTED": true, - "SOC_PM_SUPPORT_BT_WAKEUP": true, - "SOC_PM_SUPPORT_CPU_PD": true, - "SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY": true, - "SOC_PM_SUPPORT_EXT1_WAKEUP": true, - "SOC_PM_SUPPORT_EXT1_WAKEUP_MODE_PER_PIN": true, - "SOC_PM_SUPPORT_MODEM_PD": true, - "SOC_PM_SUPPORT_PMU_CLK_ICG": true, - "SOC_PM_SUPPORT_RC32K_PD": true, - "SOC_PM_SUPPORT_RC_FAST_PD": true, - "SOC_PM_SUPPORT_TOP_PD": true, - "SOC_PM_SUPPORT_VDDSDIO_PD": true, - "SOC_PM_SUPPORT_XTAL32K_PD": true, - "SOC_RCC_IS_INDEPENDENT": true, - "SOC_RMT_CHANNELS_PER_GROUP": 4, - "SOC_RMT_GROUPS": 1, - "SOC_RMT_MEM_WORDS_PER_CHANNEL": 48, - "SOC_RMT_RX_CANDIDATES_PER_GROUP": 2, - "SOC_RMT_SUPPORTED": true, - "SOC_RMT_SUPPORT_RC_FAST": true, - "SOC_RMT_SUPPORT_RX_DEMODULATION": true, - "SOC_RMT_SUPPORT_RX_PINGPONG": true, - "SOC_RMT_SUPPORT_SLEEP_RETENTION": true, - "SOC_RMT_SUPPORT_TX_ASYNC_STOP": true, - "SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY": true, - "SOC_RMT_SUPPORT_TX_LOOP_AUTO_STOP": true, - "SOC_RMT_SUPPORT_TX_LOOP_COUNT": true, - "SOC_RMT_SUPPORT_TX_SYNCHRO": true, - "SOC_RMT_SUPPORT_XTAL": true, - "SOC_RMT_TX_CANDIDATES_PER_GROUP": 2, - "SOC_RNG_CLOCK_IS_INDEPENDENT": true, - "SOC_RNG_SUPPORTED": true, - "SOC_RSA_MAX_BIT_LEN": 3072, - "SOC_RTCIO_HOLD_SUPPORTED": true, - "SOC_RTCIO_PIN_COUNT": 8, - "SOC_RTC_FAST_MEM_SUPPORTED": true, - "SOC_RTC_MEM_SUPPORTED": true, - "SOC_SDM_CHANNELS_PER_GROUP": 4, - "SOC_SDM_CLK_SUPPORT_PLL_F48M": true, - "SOC_SDM_CLK_SUPPORT_XTAL": true, - "SOC_SDM_GROUPS": 1, - "SOC_SDM_SUPPORTED": true, - "SOC_SECURE_BOOT_SUPPORTED": true, - "SOC_SECURE_BOOT_V2_ECC": true, - "SOC_SECURE_BOOT_V2_RSA": true, - "SOC_SHARED_IDCACHE_SUPPORTED": true, - "SOC_SHA_DMA_MAX_BUFFER_SIZE": 3968, - "SOC_SHA_GDMA": true, - "SOC_SHA_SUPPORTED": true, - "SOC_SHA_SUPPORT_DMA": true, - "SOC_SHA_SUPPORT_RESUME": true, - "SOC_SHA_SUPPORT_SHA1": true, - "SOC_SHA_SUPPORT_SHA224": true, - "SOC_SHA_SUPPORT_SHA256": true, - "SOC_SPI_FLASH_SUPPORTED": true, - "SOC_SPI_MAXIMUM_BUFFER_SIZE": 64, - "SOC_SPI_MAX_CS_NUM": 6, - "SOC_SPI_MAX_PRE_DIVIDER": 16, - "SOC_SPI_MEM_SUPPORT_AUTO_RESUME": true, - "SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND": true, - "SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE": true, - "SOC_SPI_MEM_SUPPORT_CHECK_SUS": true, - "SOC_SPI_MEM_SUPPORT_IDLE_INTR": true, - "SOC_SPI_MEM_SUPPORT_SW_SUSPEND": true, - "SOC_SPI_MEM_SUPPORT_WRAP": true, - "SOC_SPI_PERIPH_NUM": 2, - "SOC_SPI_SCT_BUFFER_NUM_MAX": true, - "SOC_SPI_SCT_CONF_BITLEN_MAX": 262138, - "SOC_SPI_SCT_REG_NUM": 14, - "SOC_SPI_SCT_SUPPORTED": true, - "SOC_SPI_SLAVE_SUPPORT_SEG_TRANS": true, - "SOC_SPI_SUPPORT_CD_SIG": true, - "SOC_SPI_SUPPORT_CLK_PLL_F48M": true, - "SOC_SPI_SUPPORT_CLK_RC_FAST": true, - "SOC_SPI_SUPPORT_CLK_XTAL": true, - "SOC_SPI_SUPPORT_CONTINUOUS_TRANS": true, - "SOC_SPI_SUPPORT_DDRCLK": true, - "SOC_SPI_SUPPORT_SLAVE_HD_VER2": true, - "SOC_SPI_SUPPORT_SLEEP_RETENTION": true, - "SOC_SUPPORTS_SECURE_DL_MODE": true, - "SOC_SUPPORT_COEXISTENCE": true, - "SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY": true, - "SOC_SYSTIMER_ALARM_MISS_COMPENSATE": true, - "SOC_SYSTIMER_ALARM_NUM": 3, - "SOC_SYSTIMER_BIT_WIDTH_HI": 20, - "SOC_SYSTIMER_BIT_WIDTH_LO": 32, - "SOC_SYSTIMER_COUNTER_NUM": 2, - "SOC_SYSTIMER_FIXED_DIVIDER": true, - "SOC_SYSTIMER_INT_LEVEL": true, - "SOC_SYSTIMER_SUPPORTED": true, - "SOC_SYSTIMER_SUPPORT_ETM": true, - "SOC_SYSTIMER_SUPPORT_RC_FAST": true, - "SOC_TEMPERATURE_SENSOR_INTR_SUPPORT": true, - "SOC_TEMPERATURE_SENSOR_SUPPORT_ETM": true, - "SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC": true, - "SOC_TEMPERATURE_SENSOR_SUPPORT_SLEEP_RETENTION": true, - "SOC_TEMPERATURE_SENSOR_SUPPORT_XTAL": true, - "SOC_TEMPERATURE_SENSOR_UNDER_PD_TOP_DOMAIN": true, - "SOC_TEMP_SENSOR_SUPPORTED": true, - "SOC_TIMER_GROUPS": 2, - "SOC_TIMER_GROUP_COUNTER_BIT_WIDTH": 54, - "SOC_TIMER_GROUP_SUPPORT_RC_FAST": true, - "SOC_TIMER_GROUP_SUPPORT_XTAL": true, - "SOC_TIMER_GROUP_TIMERS_PER_GROUP": 1, - "SOC_TIMER_GROUP_TOTAL_TIMERS": 2, - "SOC_TIMER_SUPPORT_ETM": true, - "SOC_TIMER_SUPPORT_SLEEP_RETENTION": true, - "SOC_TWAI_BRP_MAX": 32768, - "SOC_TWAI_BRP_MIN": 2, - "SOC_TWAI_CLK_SUPPORT_XTAL": true, - "SOC_TWAI_CONTROLLER_NUM": 1, - "SOC_TWAI_MASK_FILTER_NUM": 1, - "SOC_TWAI_SUPPORTED": true, - "SOC_TWAI_SUPPORTS_RX_STATUS": true, - "SOC_TWAI_SUPPORT_SLEEP_RETENTION": true, - "SOC_UART_BITRATE_MAX": 5000000, - "SOC_UART_FIFO_LEN": 128, - "SOC_UART_HP_NUM": 2, - "SOC_UART_NUM": 2, - "SOC_UART_SUPPORTED": true, - "SOC_UART_SUPPORT_FSM_TX_WAIT_SEND": true, - "SOC_UART_SUPPORT_RTC_CLK": true, - "SOC_UART_SUPPORT_SLEEP_RETENTION": true, - "SOC_UART_SUPPORT_WAKEUP_INT": true, - "SOC_UART_SUPPORT_XTAL_CLK": true, - "SOC_UART_WAKEUP_CHARS_SEQ_MAX_LEN": 5, - "SOC_UART_WAKEUP_SUPPORT_ACTIVE_THRESH_MODE": true, - "SOC_UART_WAKEUP_SUPPORT_CHAR_SEQ_MODE": true, - "SOC_UART_WAKEUP_SUPPORT_FIFO_THRESH_MODE": true, - "SOC_UART_WAKEUP_SUPPORT_START_BIT_MODE": true, - "SOC_UHCI_NUM": 1, - "SOC_UHCI_SUPPORTED": true, - "SOC_USB_SERIAL_JTAG_SUPPORTED": true, - "SOC_VBAT_SUPPORTED": true, - "SOC_WDT_SUPPORTED": true, - "SOC_XTAL_CLOCK_PATH_DEPENDS_ON_TOP_DOMAIN": true, - "SOC_XTAL_SUPPORT_32M": true, - "SPI_FLASH_AUTO_SUSPEND": false, - "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_FORCE_ENABLE_C6_H2_SUSPEND": false, - "SPI_FLASH_FORCE_ENABLE_XMC_C_SUSPEND": false, - "SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST": false, - "SPI_FLASH_PLACE_FUNCTIONS_IN_IRAM": true, - "SPI_FLASH_ROM_DRIVER_PATCH": true, - "SPI_FLASH_ROM_IMPL": false, - "SPI_FLASH_SIZE_OVERRIDE": false, - "SPI_FLASH_SUPPORT_BOYA_CHIP": false, - "SPI_FLASH_SUPPORT_GD_CHIP": true, - "SPI_FLASH_SUPPORT_ISSI_CHIP": false, - "SPI_FLASH_SUPPORT_MXIC_CHIP": false, - "SPI_FLASH_SUPPORT_TH_CHIP": false, - "SPI_FLASH_SUPPORT_WINBOND_CHIP": false, - "SPI_FLASH_SUSPEND_TSUS_VAL_US": 50, - "SPI_FLASH_VENDOR_GD_SUPPORT_ENABLED": true, - "SPI_FLASH_VENDOR_XMC_SUPPORT_ENABLED": true, - "SPI_FLASH_VERIFY_WRITE": false, - "SPI_FLASH_WRITE_CHUNK_SIZE": 8192, - "SPI_FLASH_YIELD_DURING_ERASE": true, - "SPI_MASTER_IN_IRAM": false, - "SPI_MASTER_ISR_IN_IRAM": true, - "SPI_SLAVE_IN_IRAM": false, - "SPI_SLAVE_ISR_IN_IRAM": true, - "TEMP_SENSOR_ENABLE_DEBUG_LOG": false, - "TEMP_SENSOR_ISR_IRAM_SAFE": false, - "TEMP_SENSOR_SKIP_LEGACY_CONFLICT_CHECK": false, - "TEMP_SENSOR_SUPPRESS_DEPRECATE_WARN": false, - "TWAI_ENABLE_DEBUG_LOG": false, - "TWAI_ISR_CACHE_SAFE": false, - "TWAI_ISR_IN_IRAM": false, - "TWAI_SKIP_LEGACY_CONFLICT_CHECK": false, - "UART_ISR_IN_IRAM": true, - "UHCI_ENABLE_DEBUG_LOG": false, - "UHCI_ISR_CACHE_SAFE": false, - "UHCI_ISR_HANDLER_IN_IRAM": false, - "USJ_ENABLE_USB_SERIAL_JTAG": true, - "VFS_INITIALIZE_DEV_NULL": true, - "VFS_MAX_COUNT": 8, - "VFS_SELECT_IN_RAM": true, - "VFS_SEMIHOSTFS_MAX_MOUNT_POINTS": 1, - "VFS_SUPPORT_DIR": true, - "VFS_SUPPORT_IO": true, - "VFS_SUPPORT_SELECT": true, - "VFS_SUPPORT_TERMIOS": true, - "VFS_SUPPRESS_SELECT_DEBUG_OUTPUT": true, - "XTAL_FREQ": 32, - "XTAL_FREQ_32": true -} \ No newline at end of file diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_app_desc.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_app_desc.c.obj deleted file mode 100644 index 00abea50..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_app_desc.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_ops.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_ops.c.obj deleted file mode 100644 index 7a16cc18..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_ops.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/app_update/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/app_update/cmake_install.cmake deleted file mode 100644 index 7dc3ad4b..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/app_update/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/app_update - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/app_update/libapp_update.a b/esp32-thread/open-thread-rcp/build/esp-idf/app_update/libapp_update.a deleted file mode 100644 index 52339418..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/app_update/libapp_update.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/bootloader/bootloader-flash_args.in b/esp32-thread/open-thread-rcp/build/esp-idf/bootloader/bootloader-flash_args.in deleted file mode 100644 index 4589129e..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/bootloader/bootloader-flash_args.in +++ /dev/null @@ -1,2 +0,0 @@ ---flash_mode dio --flash_freq 48m --flash_size 2MB -0x0 bootloader/bootloader.bin \ No newline at end of file diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/bootloader/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/bootloader/cmake_install.cmake deleted file mode 100644 index 205ffef5..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/bootloader/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj deleted file mode 100644 index 564fbc16..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32h2.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32h2.c.obj deleted file mode 100644 index 9e248279..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32h2.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj deleted file mode 100644 index ec088631..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj deleted file mode 100644 index 374c3c36..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj deleted file mode 100644 index acbae10c..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj deleted file mode 100644 index b096ca4c..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj deleted file mode 100644 index 630c5b1d..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj deleted file mode 100644 index 6339cdf9..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj deleted file mode 100644 index 1ab451ec..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32h2.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32h2.c.obj deleted file mode 100644 index 7eb43693..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32h2.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_sha.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_sha.c.obj deleted file mode 100644 index 23aa6b17..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_sha.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj deleted file mode 100644 index bff7fb47..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32h2/secure_boot_secure_features.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32h2/secure_boot_secure_features.c.obj deleted file mode 100644 index c2543c7d..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32h2/secure_boot_secure_features.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj deleted file mode 100644 index 2c9ea543..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj deleted file mode 100644 index 108184e7..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj deleted file mode 100644 index a46450e9..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj deleted file mode 100644 index fa721b27..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/bootloader_support/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/bootloader_support/cmake_install.cmake deleted file mode 100644 index 7979d469..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/bootloader_support/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/bootloader_support/libbootloader_support.a b/esp32-thread/open-thread-rcp/build/esp-idf/bootloader_support/libbootloader_support.a deleted file mode 100644 index a99612ef..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/bootloader_support/libbootloader_support.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/cmake_install.cmake deleted file mode 100644 index 22e730d6..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/cmake_install.cmake +++ /dev/null @@ -1,374 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/riscv/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_gpio/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_timer/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_pm/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/bootloader/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esptool_py/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/partition_table/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_app_format/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_bootloader_format/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/app_update/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_partition/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/efuse/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/bootloader_support/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_mm/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/spi_flash/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_common/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_rom/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/hal/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/log/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/heap/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/soc/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_security/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/freertos/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/newlib/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/pthread/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/cxx/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_coex/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_event/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/nvs_flash/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_ringbuf/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_uart/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_usb_serial_jtag/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_vfs_console/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/vfs/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/lwip/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_netif_stack/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_netif/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_pcnt/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_gptimer/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_spi/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_mcpwm/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_ana_cmpr/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_i2s/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/sdmmc/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_sdmmc/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_sdspi/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_sdio/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_dac/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_bitscrambler/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_rmt/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_tsens/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_sdm/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_i2c/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_ledc/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_parlio/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_twai/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/driver/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/console/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/wpa_supplicant/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_wifi/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_phy/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/ieee802154/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/openthread/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/main/cmake_install.cmake") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_cmd.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_cmd.c.obj deleted file mode 100644 index 7df0c16b..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_cmd.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_date.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_date.c.obj deleted file mode 100644 index 9704aa01..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_date.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dbl.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dbl.c.obj deleted file mode 100644 index 8110498f..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dbl.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dstr.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dstr.c.obj deleted file mode 100644 index e14fb7cb..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dstr.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_end.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_end.c.obj deleted file mode 100644 index 73beec89..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_end.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_file.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_file.c.obj deleted file mode 100644 index f0df170e..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_file.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_hashtable.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_hashtable.c.obj deleted file mode 100644 index 5b5fb3cb..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_hashtable.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_int.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_int.c.obj deleted file mode 100644 index 6c81c580..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_int.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_lit.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_lit.c.obj deleted file mode 100644 index b7b8d2c8..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_lit.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rem.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rem.c.obj deleted file mode 100644 index aa732ab8..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rem.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rex.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rex.c.obj deleted file mode 100644 index 9dbbf345..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rex.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_str.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_str.c.obj deleted file mode 100644 index 47e4f6b2..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_str.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_utils.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_utils.c.obj deleted file mode 100644 index e5cf7a88..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_utils.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/argtable3.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/argtable3.c.obj deleted file mode 100644 index 1e9362c4..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/argtable3.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/console/CMakeFiles/__idf_console.dir/commands.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/console/CMakeFiles/__idf_console.dir/commands.c.obj deleted file mode 100644 index fdc77076..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/console/CMakeFiles/__idf_console.dir/commands.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_common.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_common.c.obj deleted file mode 100644 index 3ca1a9d6..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_common.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_repl_chip.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_repl_chip.c.obj deleted file mode 100644 index 018ffeb1..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_repl_chip.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_repl_internal.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_repl_internal.c.obj deleted file mode 100644 index f4699fd9..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_repl_internal.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/console/CMakeFiles/__idf_console.dir/linenoise/linenoise.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/console/CMakeFiles/__idf_console.dir/linenoise/linenoise.c.obj deleted file mode 100644 index 39f17eaa..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/console/CMakeFiles/__idf_console.dir/linenoise/linenoise.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/console/CMakeFiles/__idf_console.dir/split_argv.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/console/CMakeFiles/__idf_console.dir/split_argv.c.obj deleted file mode 100644 index c8957bb3..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/console/CMakeFiles/__idf_console.dir/split_argv.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/console/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/console/cmake_install.cmake deleted file mode 100644 index 3bcf2372..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/console/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/console - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/console/libconsole.a b/esp32-thread/open-thread-rcp/build/esp-idf/console/libconsole.a deleted file mode 100644 index 0dd6fff9..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/console/libconsole.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_exception_stubs.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_exception_stubs.cpp.obj deleted file mode 100644 index f5f50f20..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_exception_stubs.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_guards.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_guards.cpp.obj deleted file mode 100644 index 1af1baec..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_guards.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_init.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_init.cpp.obj deleted file mode 100644 index 54f8bffd..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_init.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/cxx/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/cxx/cmake_install.cmake deleted file mode 100644 index 47238946..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/cxx/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/cxx - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/cxx/libcxx.a b/esp32-thread/open-thread-rcp/build/esp-idf/cxx/libcxx.a deleted file mode 100644 index 9c36feac..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/cxx/libcxx.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_dma_legacy.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_dma_legacy.c.obj deleted file mode 100644 index 8626b5a5..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_dma_legacy.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_legacy.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_legacy.c.obj deleted file mode 100644 index eea775a7..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_legacy.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/i2s_legacy.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/i2s_legacy.c.obj deleted file mode 100644 index b9927048..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/i2s_legacy.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/mcpwm_legacy.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/mcpwm_legacy.c.obj deleted file mode 100644 index 8b2f6cb2..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/mcpwm_legacy.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/pcnt_legacy.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/pcnt_legacy.c.obj deleted file mode 100644 index f3a7ceba..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/pcnt_legacy.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rmt_legacy.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rmt_legacy.c.obj deleted file mode 100644 index 421004f5..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rmt_legacy.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rtc_temperature_legacy.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rtc_temperature_legacy.c.obj deleted file mode 100644 index d222499d..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rtc_temperature_legacy.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/sigma_delta_legacy.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/sigma_delta_legacy.c.obj deleted file mode 100644 index 09bd7043..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/sigma_delta_legacy.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/timer_legacy.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/timer_legacy.c.obj deleted file mode 100644 index 54b498e5..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/timer_legacy.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c/i2c.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c/i2c.c.obj deleted file mode 100644 index 61f39f05..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c/i2c.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/twai/twai.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/twai/twai.c.obj deleted file mode 100644 index 0b6ce11d..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/driver/CMakeFiles/__idf_driver.dir/twai/twai.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/driver/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/driver/cmake_install.cmake deleted file mode 100644 index 32d6cb78..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/driver/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/driver/libdriver.a b/esp32-thread/open-thread-rcp/build/esp-idf/driver/libdriver.a deleted file mode 100644 index b3c955eb..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/driver/libdriver.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32h2/esp_efuse_fields.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32h2/esp_efuse_fields.c.obj deleted file mode 100644 index 5191ada0..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32h2/esp_efuse_fields.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32h2/esp_efuse_rtc_calib.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32h2/esp_efuse_rtc_calib.c.obj deleted file mode 100644 index baafc60b..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32h2/esp_efuse_rtc_calib.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32h2/esp_efuse_table.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32h2/esp_efuse_table.c.obj deleted file mode 100644 index 37bc11a6..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32h2/esp_efuse_table.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32h2/esp_efuse_table_v0.0_v1.1.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32h2/esp_efuse_table_v0.0_v1.1.c.obj deleted file mode 100644 index 294580d0..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32h2/esp_efuse_table_v0.0_v1.1.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32h2/esp_efuse_utility.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32h2/esp_efuse_utility.c.obj deleted file mode 100644 index 05e32094..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32h2/esp_efuse_utility.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c.obj deleted file mode 100644 index fe0cba12..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj deleted file mode 100644 index 47135464..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj deleted file mode 100644 index ba47c0a6..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_startup.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_startup.c.obj deleted file mode 100644 index 37462d77..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_startup.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj deleted file mode 100644 index ebe7f3e0..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/efuse/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/efuse/cmake_install.cmake deleted file mode 100644 index 7c2175b0..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/efuse/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/efuse/libefuse.a b/esp32-thread/open-thread-rcp/build/esp-idf/efuse/libefuse.a deleted file mode 100644 index 43c7585a..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/efuse/libefuse.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp-tls-crypto/esp_tls_crypto.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp-tls-crypto/esp_tls_crypto.c.obj deleted file mode 100644 index fd9a4168..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp-tls-crypto/esp_tls_crypto.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls.c.obj deleted file mode 100644 index dd243e9a..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_error_capture.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_error_capture.c.obj deleted file mode 100644 index 1ba5f5e5..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_error_capture.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_mbedtls.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_mbedtls.c.obj deleted file mode 100644 index 4532bd82..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_mbedtls.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_platform_port.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_platform_port.c.obj deleted file mode 100644 index f9a1d39e..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_platform_port.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp-tls/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/esp-tls/cmake_install.cmake deleted file mode 100644 index 88307df6..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/esp-tls/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp-tls - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp-tls/libesp-tls.a b/esp32-thread/open-thread-rcp/build/esp-idf/esp-tls/libesp-tls.a deleted file mode 100644 index b8f7e66f..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp-tls/libesp-tls.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir/esp_app_desc.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir/esp_app_desc.c.obj deleted file mode 100644 index cca334fc..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir/esp_app_desc.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_app_format/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/esp_app_format/cmake_install.cmake deleted file mode 100644 index 2605ee9e..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/esp_app_format/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_app_format/libesp_app_format.a b/esp32-thread/open-thread-rcp/build/esp-idf/esp_app_format/libesp_app_format.a deleted file mode 100644 index 29305789..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_app_format/libesp_app_format.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj deleted file mode 100644 index dbc2044b..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_bootloader_format/CMakeFiles/__idf_esp_bootloader_format.dir/esp_bootloader_desc.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_bootloader_format/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/esp_bootloader_format/cmake_install.cmake deleted file mode 100644 index 1bff0186..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/esp_bootloader_format/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_bootloader_format/libesp_bootloader_format.a b/esp32-thread/open-thread-rcp/build/esp-idf/esp_bootloader_format/libesp_bootloader_format.a deleted file mode 100644 index f79d783d..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_bootloader_format/libesp_bootloader_format.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_coex/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/esp_coex/cmake_install.cmake deleted file mode 100644 index 1654037f..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/esp_coex/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj deleted file mode 100644 index 8000614a..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_common/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/esp_common/cmake_install.cmake deleted file mode 100644 index 330abe83..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/esp_common/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_common/libesp_common.a b/esp32-thread/open-thread-rcp/build/esp-idf/esp_common/libesp_common.a deleted file mode 100644 index 255baa32..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_common/libesp_common.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_ana_cmpr/CMakeFiles/__idf_esp_driver_ana_cmpr.dir/ana_cmpr.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_ana_cmpr/CMakeFiles/__idf_esp_driver_ana_cmpr.dir/ana_cmpr.c.obj deleted file mode 100644 index 0de3f312..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_ana_cmpr/CMakeFiles/__idf_esp_driver_ana_cmpr.dir/ana_cmpr.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_ana_cmpr/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_ana_cmpr/cmake_install.cmake deleted file mode 100644 index 7116436e..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_ana_cmpr/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_ana_cmpr/libesp_driver_ana_cmpr.a b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_ana_cmpr/libesp_driver_ana_cmpr.a deleted file mode 100644 index dfedec09..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_ana_cmpr/libesp_driver_ana_cmpr.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_bitscrambler/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_bitscrambler/cmake_install.cmake deleted file mode 100644 index 3949d377..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_bitscrambler/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_bitscrambler - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_dac/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_dac/cmake_install.cmake deleted file mode 100644 index c2e223e5..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_dac/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/dedic_gpio.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/dedic_gpio.c.obj deleted file mode 100644 index 2ec337a4..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/dedic_gpio.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio.c.obj deleted file mode 100644 index a9c5f1f7..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_etm.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_etm.c.obj deleted file mode 100644 index 365ab62b..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_etm.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_flex_glitch_filter.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_flex_glitch_filter.c.obj deleted file mode 100644 index 18e949ff..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_flex_glitch_filter.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_glitch_filter_ops.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_glitch_filter_ops.c.obj deleted file mode 100644 index e2a93f78..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_glitch_filter_ops.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_pin_glitch_filter.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_pin_glitch_filter.c.obj deleted file mode 100644 index 56977e12..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/gpio_pin_glitch_filter.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/rtc_io.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/rtc_io.c.obj deleted file mode 100644 index c0c2cd4c..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_gpio/CMakeFiles/__idf_esp_driver_gpio.dir/src/rtc_io.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_gpio/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_gpio/cmake_install.cmake deleted file mode 100644 index 911cb860..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_gpio/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_gpio/libesp_driver_gpio.a b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_gpio/libesp_driver_gpio.a deleted file mode 100644 index 886ed5be..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_gpio/libesp_driver_gpio.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer.c.obj deleted file mode 100644 index c5a6b8e8..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer_common.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer_common.c.obj deleted file mode 100644 index e2a22106..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer_common.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer_etm.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer_etm.c.obj deleted file mode 100644 index 42a3fa3e..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_gptimer/CMakeFiles/__idf_esp_driver_gptimer.dir/src/gptimer_etm.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_gptimer/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_gptimer/cmake_install.cmake deleted file mode 100644 index 5bbf5624..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_gptimer/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a deleted file mode 100644 index eba798ad..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_common.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_common.c.obj deleted file mode 100644 index 6a352e6d..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_common.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_master.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_master.c.obj deleted file mode 100644 index bbe8f405..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_master.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_slave.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_slave.c.obj deleted file mode 100644 index e1ee6f40..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_i2c/CMakeFiles/__idf_esp_driver_i2c.dir/i2c_slave.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_i2c/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_i2c/cmake_install.cmake deleted file mode 100644 index e02dcc07..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_i2c/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_i2c/libesp_driver_i2c.a b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_i2c/libesp_driver_i2c.a deleted file mode 100644 index efc7563f..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_i2c/libesp_driver_i2c.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_common.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_common.c.obj deleted file mode 100644 index bac4a739..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_common.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_etm.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_etm.c.obj deleted file mode 100644 index 85b2111e..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_etm.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_pdm.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_pdm.c.obj deleted file mode 100644 index 48083852..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_pdm.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_platform.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_platform.c.obj deleted file mode 100644 index 2bff4982..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_platform.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_std.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_std.c.obj deleted file mode 100644 index 05759fde..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_std.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_tdm.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_tdm.c.obj deleted file mode 100644 index 0ba2a4b7..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_i2s/CMakeFiles/__idf_esp_driver_i2s.dir/i2s_tdm.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_i2s/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_i2s/cmake_install.cmake deleted file mode 100644 index 3b84c094..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_i2s/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_i2s/libesp_driver_i2s.a b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_i2s/libesp_driver_i2s.a deleted file mode 100644 index 376813ab..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_i2s/libesp_driver_i2s.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_ledc/CMakeFiles/__idf_esp_driver_ledc.dir/src/ledc.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_ledc/CMakeFiles/__idf_esp_driver_ledc.dir/src/ledc.c.obj deleted file mode 100644 index 363e7570..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_ledc/CMakeFiles/__idf_esp_driver_ledc.dir/src/ledc.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_ledc/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_ledc/cmake_install.cmake deleted file mode 100644 index ef11fdf1..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_ledc/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_ledc/libesp_driver_ledc.a b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_ledc/libesp_driver_ledc.a deleted file mode 100644 index 6a1f9492..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_ledc/libesp_driver_ledc.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_cap.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_cap.c.obj deleted file mode 100644 index 5e8e3915..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_cap.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_cmpr.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_cmpr.c.obj deleted file mode 100644 index bae3ce7b..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_cmpr.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_com.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_com.c.obj deleted file mode 100644 index ddc49314..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_com.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_etm.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_etm.c.obj deleted file mode 100644 index ccfa8b77..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_etm.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_fault.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_fault.c.obj deleted file mode 100644 index c8489925..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_fault.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_gen.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_gen.c.obj deleted file mode 100644 index 4f11bf36..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_gen.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_oper.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_oper.c.obj deleted file mode 100644 index ed5c7338..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_oper.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_sync.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_sync.c.obj deleted file mode 100644 index 22a79e52..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_sync.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_timer.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_timer.c.obj deleted file mode 100644 index 0583191f..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_mcpwm/CMakeFiles/__idf_esp_driver_mcpwm.dir/src/mcpwm_timer.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_mcpwm/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_mcpwm/cmake_install.cmake deleted file mode 100644 index 2024b648..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_mcpwm/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a deleted file mode 100644 index b5d90e78..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_parlio/CMakeFiles/__idf_esp_driver_parlio.dir/src/parlio_common.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_parlio/CMakeFiles/__idf_esp_driver_parlio.dir/src/parlio_common.c.obj deleted file mode 100644 index fed6552a..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_parlio/CMakeFiles/__idf_esp_driver_parlio.dir/src/parlio_common.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_parlio/CMakeFiles/__idf_esp_driver_parlio.dir/src/parlio_rx.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_parlio/CMakeFiles/__idf_esp_driver_parlio.dir/src/parlio_rx.c.obj deleted file mode 100644 index fdf255d0..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_parlio/CMakeFiles/__idf_esp_driver_parlio.dir/src/parlio_rx.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_parlio/CMakeFiles/__idf_esp_driver_parlio.dir/src/parlio_tx.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_parlio/CMakeFiles/__idf_esp_driver_parlio.dir/src/parlio_tx.c.obj deleted file mode 100644 index 0196213d..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_parlio/CMakeFiles/__idf_esp_driver_parlio.dir/src/parlio_tx.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_parlio/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_parlio/cmake_install.cmake deleted file mode 100644 index 720e9901..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_parlio/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_parlio/libesp_driver_parlio.a b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_parlio/libesp_driver_parlio.a deleted file mode 100644 index d6a93333..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_parlio/libesp_driver_parlio.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_pcnt/CMakeFiles/__idf_esp_driver_pcnt.dir/src/pulse_cnt.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_pcnt/CMakeFiles/__idf_esp_driver_pcnt.dir/src/pulse_cnt.c.obj deleted file mode 100644 index 03e9513b..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_pcnt/CMakeFiles/__idf_esp_driver_pcnt.dir/src/pulse_cnt.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_pcnt/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_pcnt/cmake_install.cmake deleted file mode 100644 index 88a0c08b..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_pcnt/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a deleted file mode 100644 index b88f2dc5..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_common.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_common.c.obj deleted file mode 100644 index 37ec63ee..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_common.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder.c.obj deleted file mode 100644 index c48d299c..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder_bytes.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder_bytes.c.obj deleted file mode 100644 index 7a15f9db..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder_bytes.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder_copy.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder_copy.c.obj deleted file mode 100644 index 31f02177..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder_copy.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder_simple.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder_simple.c.obj deleted file mode 100644 index c3bf02ec..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_encoder_simple.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_rx.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_rx.c.obj deleted file mode 100644 index 003c68f3..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_rx.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_tx.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_tx.c.obj deleted file mode 100644 index b335d074..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_rmt/CMakeFiles/__idf_esp_driver_rmt.dir/src/rmt_tx.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_rmt/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_rmt/cmake_install.cmake deleted file mode 100644 index b018198f..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_rmt/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_rmt/libesp_driver_rmt.a b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_rmt/libesp_driver_rmt.a deleted file mode 100644 index 06f65806..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_rmt/libesp_driver_rmt.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_sdio/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_sdio/cmake_install.cmake deleted file mode 100644 index ea6ca24c..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_sdio/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_sdm/CMakeFiles/__idf_esp_driver_sdm.dir/src/sdm.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_sdm/CMakeFiles/__idf_esp_driver_sdm.dir/src/sdm.c.obj deleted file mode 100644 index c2b84ef6..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_sdm/CMakeFiles/__idf_esp_driver_sdm.dir/src/sdm.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_sdm/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_sdm/cmake_install.cmake deleted file mode 100644 index 14262104..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_sdm/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_sdm/libesp_driver_sdm.a b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_sdm/libesp_driver_sdm.a deleted file mode 100644 index 8aad2518..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_sdm/libesp_driver_sdm.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_sdmmc/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_sdmmc/cmake_install.cmake deleted file mode 100644 index 3051096d..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_sdmmc/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_crc.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_crc.c.obj deleted file mode 100644 index cd663d97..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_crc.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_host.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_host.c.obj deleted file mode 100644 index bc73330d..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_host.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_transaction.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_transaction.c.obj deleted file mode 100644 index 619d00b7..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_sdspi/CMakeFiles/__idf_esp_driver_sdspi.dir/src/sdspi_transaction.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_sdspi/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_sdspi/cmake_install.cmake deleted file mode 100644 index b7540987..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_sdspi/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a deleted file mode 100644 index 3d077202..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_common.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_common.c.obj deleted file mode 100644 index c1794e22..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_common.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_master.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_master.c.obj deleted file mode 100644 index ebcaf7fe..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_master.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_slave.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_slave.c.obj deleted file mode 100644 index 212deebb..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_slave.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_slave_hd.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_slave_hd.c.obj deleted file mode 100644 index 83615f0c..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_spi/CMakeFiles/__idf_esp_driver_spi.dir/src/gpspi/spi_slave_hd.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_spi/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_spi/cmake_install.cmake deleted file mode 100644 index 05b6d32c..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_spi/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_spi/libesp_driver_spi.a b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_spi/libesp_driver_spi.a deleted file mode 100644 index 6322fdda..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_spi/libesp_driver_spi.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_tsens/CMakeFiles/__idf_esp_driver_tsens.dir/src/temperature_sensor.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_tsens/CMakeFiles/__idf_esp_driver_tsens.dir/src/temperature_sensor.c.obj deleted file mode 100644 index 141f359c..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_tsens/CMakeFiles/__idf_esp_driver_tsens.dir/src/temperature_sensor.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_tsens/CMakeFiles/__idf_esp_driver_tsens.dir/src/temperature_sensor_etm.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_tsens/CMakeFiles/__idf_esp_driver_tsens.dir/src/temperature_sensor_etm.c.obj deleted file mode 100644 index bd955b12..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_tsens/CMakeFiles/__idf_esp_driver_tsens.dir/src/temperature_sensor_etm.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_tsens/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_tsens/cmake_install.cmake deleted file mode 100644 index aee7f23d..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_tsens/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_tsens/libesp_driver_tsens.a b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_tsens/libesp_driver_tsens.a deleted file mode 100644 index 7a570b2f..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_tsens/libesp_driver_tsens.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_twai/CMakeFiles/__idf_esp_driver_twai.dir/esp_twai.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_twai/CMakeFiles/__idf_esp_driver_twai.dir/esp_twai.c.obj deleted file mode 100644 index 27dcc57e..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_twai/CMakeFiles/__idf_esp_driver_twai.dir/esp_twai.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_twai/CMakeFiles/__idf_esp_driver_twai.dir/esp_twai_onchip.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_twai/CMakeFiles/__idf_esp_driver_twai.dir/esp_twai_onchip.c.obj deleted file mode 100644 index b3b1eead..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_twai/CMakeFiles/__idf_esp_driver_twai.dir/esp_twai_onchip.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_twai/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_twai/cmake_install.cmake deleted file mode 100644 index 9fd9394f..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_twai/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_twai/libesp_driver_twai.a b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_twai/libesp_driver_twai.a deleted file mode 100644 index 85a4232f..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_twai/libesp_driver_twai.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart.c.obj deleted file mode 100644 index 74554504..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart_vfs.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart_vfs.c.obj deleted file mode 100644 index 0ca8960e..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart_vfs.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart_wakeup.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart_wakeup.c.obj deleted file mode 100644 index 7fb9fd52..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uart_wakeup.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uhci.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uhci.c.obj deleted file mode 100644 index 8674731d..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_uart/CMakeFiles/__idf_esp_driver_uart.dir/src/uhci.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_uart/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_uart/cmake_install.cmake deleted file mode 100644 index cafe4fe5..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_uart/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_uart/libesp_driver_uart.a b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_uart/libesp_driver_uart.a deleted file mode 100644 index 632f3d8d..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_uart/libesp_driver_uart.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag.c.obj deleted file mode 100644 index a391d940..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag_connection_monitor.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag_connection_monitor.c.obj deleted file mode 100644 index 1f6215bd..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag_connection_monitor.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag_vfs.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag_vfs.c.obj deleted file mode 100644 index d55e2c80..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_usb_serial_jtag/CMakeFiles/__idf_esp_driver_usb_serial_jtag.dir/src/usb_serial_jtag_vfs.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_usb_serial_jtag/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_usb_serial_jtag/cmake_install.cmake deleted file mode 100644 index c61a92ef..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_usb_serial_jtag/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a b/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a deleted file mode 100644 index 03dcb408..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/default_event_loop.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/default_event_loop.c.obj deleted file mode 100644 index 10222e76..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/default_event_loop.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event.c.obj deleted file mode 100644 index 7f7f9dcc..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event_private.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event_private.c.obj deleted file mode 100644 index ab771f39..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event_private.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_event/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/esp_event/cmake_install.cmake deleted file mode 100644 index 164e91d7..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/esp_event/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_event/libesp_event.a b/esp32-thread/open-thread-rcp/build/esp-idf/esp_event/libesp_event.a deleted file mode 100644 index d1e946e3..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_event/libesp_event.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/esp_http_client.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/esp_http_client.c.obj deleted file mode 100644 index e752e2b1..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/esp_http_client.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_auth.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_auth.c.obj deleted file mode 100644 index 736fdd9a..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_auth.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_header.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_header.c.obj deleted file mode 100644 index 1cfbc76a..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_header.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_utils.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_utils.c.obj deleted file mode 100644 index d4ee37b5..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_utils.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_http_client/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/esp_http_client/cmake_install.cmake deleted file mode 100644 index 7c6d2cf5..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/esp_http_client/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_http_client - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_http_client/libesp_http_client.a b/esp32-thread/open-thread-rcp/build/esp-idf/esp_http_client/libesp_http_client.a deleted file mode 100644 index 3f01a338..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_http_client/libesp_http_client.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/adc_share_hw_ctrl.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/adc_share_hw_ctrl.c.obj deleted file mode 100644 index 73c29928..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/adc_share_hw_ctrl.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_ctrl_os.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_ctrl_os.c.obj deleted file mode 100644 index d3814fcb..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_ctrl_os.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_utils.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_utils.c.obj deleted file mode 100644 index 8d885900..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_utils.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj deleted file mode 100644 index 15c8ad38..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/deprecated/gdma_legacy.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/deprecated/gdma_legacy.c.obj deleted file mode 100644 index d9f59a80..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/deprecated/gdma_legacy.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/async_memcpy_gdma.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/async_memcpy_gdma.c.obj deleted file mode 100644 index 267ab4e5..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/async_memcpy_gdma.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/esp_async_memcpy.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/esp_async_memcpy.c.obj deleted file mode 100644 index 51647719..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/esp_async_memcpy.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/esp_dma_utils.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/esp_dma_utils.c.obj deleted file mode 100644 index e8cea6f1..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/esp_dma_utils.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma.c.obj deleted file mode 100644 index 4edaadab..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma_etm.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma_etm.c.obj deleted file mode 100644 index 59d586a1..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma_etm.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma_link.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma_link.c.obj deleted file mode 100644 index 9b16e015..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma_link.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma_sleep_retention.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma_sleep_retention.c.obj deleted file mode 100644 index 23dbfa7d..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/dma/gdma_sleep_retention.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clk.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clk.c.obj deleted file mode 100644 index d1a355d8..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clk.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clock_output.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clock_output.c.obj deleted file mode 100644 index 6826be5c..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clock_output.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_etm.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_etm.c.obj deleted file mode 100644 index 8956dd70..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_etm.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_gpio_reserve.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_gpio_reserve.c.obj deleted file mode 100644 index 57bd7fbb..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_gpio_reserve.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj deleted file mode 100644 index e67fcfa0..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/hw_random.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/hw_random.c.obj deleted file mode 100644 index a26cf678..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/hw_random.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/intr_alloc.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/intr_alloc.c.obj deleted file mode 100644 index 465086c2..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/intr_alloc.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/lowpower/port/esp32h2/sleep_clock.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/lowpower/port/esp32h2/sleep_clock.c.obj deleted file mode 100644 index 965b1579..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/lowpower/port/esp32h2/sleep_clock.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/lowpower/port/esp32h2/sleep_cpu.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/lowpower/port/esp32h2/sleep_cpu.c.obj deleted file mode 100644 index 1b510886..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/lowpower/port/esp32h2/sleep_cpu.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/lowpower/port/esp32h2/sleep_cpu_asm.S.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/lowpower/port/esp32h2/sleep_cpu_asm.S.obj deleted file mode 100644 index ac197f53..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/lowpower/port/esp32h2/sleep_cpu_asm.S.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mac_addr.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mac_addr.c.obj deleted file mode 100644 index 8154f2ba..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mac_addr.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/modem_clock.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/modem_clock.c.obj deleted file mode 100644 index 1f24fda1..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/modem_clock.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mspi_timing_tuning/mspi_timing_tuning.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mspi_timing_tuning/mspi_timing_tuning.c.obj deleted file mode 100644 index fc311a6b..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mspi_timing_tuning/mspi_timing_tuning.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/periph_ctrl.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/periph_ctrl.c.obj deleted file mode 100644 index 62c50e89..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/periph_ctrl.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/chip_info.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/chip_info.c.obj deleted file mode 100644 index 5a6bb383..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/chip_info.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/cpu_region_protect.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/cpu_region_protect.c.obj deleted file mode 100644 index 39f44abf..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/cpu_region_protect.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/esp_clk_tree.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/esp_clk_tree.c.obj deleted file mode 100644 index 918b75bb..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/esp_clk_tree.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/esp_cpu_intr.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/esp_cpu_intr.c.obj deleted file mode 100644 index ac49f5c5..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/esp_cpu_intr.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/io_mux.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/io_mux.c.obj deleted file mode 100644 index afa09e06..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/io_mux.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/pmu_init.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/pmu_init.c.obj deleted file mode 100644 index 35b9c895..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/pmu_init.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/pmu_param.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/pmu_param.c.obj deleted file mode 100644 index dfb7ed1a..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/pmu_param.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/pmu_sleep.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/pmu_sleep.c.obj deleted file mode 100644 index 38edbaf7..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/pmu_sleep.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/rtc_clk.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/rtc_clk.c.obj deleted file mode 100644 index 2f1fcc65..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/rtc_clk.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/rtc_clk_init.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/rtc_clk_init.c.obj deleted file mode 100644 index 5b60a7c1..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/rtc_clk_init.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/rtc_time.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/rtc_time.c.obj deleted file mode 100644 index cbddaa8b..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/rtc_time.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/sar_periph_ctrl.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/sar_periph_ctrl.c.obj deleted file mode 100644 index 7bd138a8..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/sar_periph_ctrl.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/systimer.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/systimer.c.obj deleted file mode 100644 index 177331ed..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32h2/systimer.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp_clk_tree_common.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp_clk_tree_common.c.obj deleted file mode 100644 index 25383327..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp_clk_tree_common.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/pau_regdma.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/pau_regdma.c.obj deleted file mode 100644 index 42b0d3fd..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/pau_regdma.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/regdma_link.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/regdma_link.c.obj deleted file mode 100644 index a049fdaf..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/regdma_link.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/power_supply/brownout.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/power_supply/brownout.c.obj deleted file mode 100644 index e7a2356d..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/power_supply/brownout.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/power_supply/vbat.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/power_supply/vbat.c.obj deleted file mode 100644 index 72c22954..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/power_supply/vbat.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/regi2c_ctrl.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/regi2c_ctrl.c.obj deleted file mode 100644 index a6c1243f..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/regi2c_ctrl.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/revision.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/revision.c.obj deleted file mode 100644 index 9085fdc6..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/revision.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/rtc_module.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/rtc_module.c.obj deleted file mode 100644 index aee150c8..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/rtc_module.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sar_periph_ctrl_common.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sar_periph_ctrl_common.c.obj deleted file mode 100644 index f02025b6..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sar_periph_ctrl_common.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_console.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_console.c.obj deleted file mode 100644 index 423c9f42..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_console.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_event.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_event.c.obj deleted file mode 100644 index 4fe41751..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_event.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_gpio.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_gpio.c.obj deleted file mode 100644 index c4c795d1..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_gpio.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modem.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modem.c.obj deleted file mode 100644 index ee9fd7bc..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modem.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modes.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modes.c.obj deleted file mode 100644 index 06ac95d1..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modes.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_retention.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_retention.c.obj deleted file mode 100644 index 8c7129bf..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_retention.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_system_peripheral.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_system_peripheral.c.obj deleted file mode 100644 index db72135e..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_system_peripheral.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_usb.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_usb.c.obj deleted file mode 100644 index 7ab467e0..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_usb.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_wake_stub.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_wake_stub.c.obj deleted file mode 100644 index 17d05fe0..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_wake_stub.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/spi_bus_lock.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/spi_bus_lock.c.obj deleted file mode 100644 index 0810c314..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/spi_bus_lock.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/spi_share_hw_ctrl.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/spi_share_hw_ctrl.c.obj deleted file mode 100644 index 4ead749a..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/spi_share_hw_ctrl.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/cmake_install.cmake deleted file mode 100644 index ccdb847a..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/cmake_install.cmake +++ /dev/null @@ -1,49 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/port/esp32h2/cmake_install.cmake") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/lowpower/cmake_install.cmake") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/libesp_hw_support.a b/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/libesp_hw_support.a deleted file mode 100644 index 18e59eb3..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/libesp_hw_support.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/lowpower/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/lowpower/cmake_install.cmake deleted file mode 100644 index 5fc15c9a..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/lowpower/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/lowpower - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/port/esp32h2/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/port/esp32h2/cmake_install.cmake deleted file mode 100644 index d5c5ec83..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/port/esp32h2/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2 - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_cache_msync.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_cache_msync.c.obj deleted file mode 100644 index 3a82df86..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_cache_msync.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_cache_utils.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_cache_utils.c.obj deleted file mode 100644 index 488ccdbf..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_cache_utils.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_mmu_map.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_mmu_map.c.obj deleted file mode 100644 index ec9f00c0..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_mmu_map.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/heap_align_hw.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/heap_align_hw.c.obj deleted file mode 100644 index efae2339..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/heap_align_hw.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/port/esp32h2/ext_mem_layout.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/port/esp32h2/ext_mem_layout.c.obj deleted file mode 100644 index 8110f7af..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/port/esp32h2/ext_mem_layout.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_mm/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/esp_mm/cmake_install.cmake deleted file mode 100644 index c4b45b53..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/esp_mm/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_mm/libesp_mm.a b/esp32-thread/open-thread-rcp/build/esp-idf/esp_mm/libesp_mm.a deleted file mode 100644 index a2278bb6..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_mm/libesp_mm.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_defaults.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_defaults.c.obj deleted file mode 100644 index d6115b50..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_defaults.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_handlers.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_handlers.c.obj deleted file mode 100644 index d1393bb3..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_handlers.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_objects.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_objects.c.obj deleted file mode 100644 index eb0c6670..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_objects.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip.c.obj deleted file mode 100644 index 5b50b60a..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip_defaults.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip_defaults.c.obj deleted file mode 100644 index c48d7138..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip_defaults.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_sntp.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_sntp.c.obj deleted file mode 100644 index 87101704..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_sntp.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/esp_pbuf_ref.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/esp_pbuf_ref.c.obj deleted file mode 100644 index 8f23fada..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/esp_pbuf_ref.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/ethernetif.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/ethernetif.c.obj deleted file mode 100644 index 5df99a55..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/ethernetif.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/wlanif.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/wlanif.c.obj deleted file mode 100644 index 9f95fe40..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/wlanif.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_netif/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/esp_netif/cmake_install.cmake deleted file mode 100644 index c7afb59e..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/esp_netif/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_netif/libesp_netif.a b/esp32-thread/open-thread-rcp/build/esp-idf/esp_netif/libesp_netif.a deleted file mode 100644 index 7d7dd83f..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_netif/libesp_netif.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_netif_stack/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/esp_netif_stack/cmake_install.cmake deleted file mode 100644 index 23f0d833..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/esp_netif_stack/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif_stack - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition.c.obj deleted file mode 100644 index 4e8c7bff..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition_target.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition_target.c.obj deleted file mode 100644 index 54a06b0b..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition_target.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_partition/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/esp_partition/cmake_install.cmake deleted file mode 100644 index 7cd4404c..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/esp_partition/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_partition/libesp_partition.a b/esp32-thread/open-thread-rcp/build/esp-idf/esp_partition/libesp_partition.a deleted file mode 100644 index 15657420..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_partition/libesp_partition.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/btbb_init.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/btbb_init.c.obj deleted file mode 100644 index 72ecaade..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/btbb_init.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/lib_printf.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/lib_printf.c.obj deleted file mode 100644 index 26f7021f..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/lib_printf.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_common.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_common.c.obj deleted file mode 100644 index 89053a6a..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_common.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_init_esp32hxx.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_init_esp32hxx.c.obj deleted file mode 100644 index 8d360c94..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_init_esp32hxx.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_override.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_override.c.obj deleted file mode 100644 index 13027219..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_override.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_phy/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/esp_phy/cmake_install.cmake deleted file mode 100644 index 24bda02b..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/esp_phy/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_phy/libesp_phy.a b/esp32-thread/open-thread-rcp/build/esp-idf/esp_phy/libesp_phy.a deleted file mode 100644 index 3845358d..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_phy/libesp_phy.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_impl.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_impl.c.obj deleted file mode 100644 index c33da3fe..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_impl.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_locks.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_locks.c.obj deleted file mode 100644 index c75a6cb9..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_locks.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_trace.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_trace.c.obj deleted file mode 100644 index bea030c3..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_trace.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_pm/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/esp_pm/cmake_install.cmake deleted file mode 100644 index c98be45f..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/esp_pm/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_pm/libesp_pm.a b/esp32-thread/open-thread-rcp/build/esp-idf/esp_pm/libesp_pm.a deleted file mode 100644 index 4151e6d6..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_pm/libesp_pm.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir/ringbuf.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir/ringbuf.c.obj deleted file mode 100644 index c0b08224..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir/ringbuf.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_ringbuf/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/esp_ringbuf/cmake_install.cmake deleted file mode 100644 index b525dbe1..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/esp_ringbuf/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_ringbuf/libesp_ringbuf.a b/esp32-thread/open-thread-rcp/build/esp-idf/esp_ringbuf/libesp_ringbuf.a deleted file mode 100644 index d6df7b58..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_ringbuf/libesp_ringbuf.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj deleted file mode 100644 index 6a6e52fd..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj deleted file mode 100644 index b027d255..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_gpio.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_gpio.c.obj deleted file mode 100644 index 91e88d84..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_gpio.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_multi_heap.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_multi_heap.c.obj deleted file mode 100644 index 688e788f..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_multi_heap.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_print.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_print.c.obj deleted file mode 100644 index 9b9f0ed2..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_print.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_regi2c_esp32h2.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_regi2c_esp32h2.c.obj deleted file mode 100644 index 75634f54..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_regi2c_esp32h2.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj deleted file mode 100644 index b1e0b5e8..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj deleted file mode 100644 index e863519b..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj deleted file mode 100644 index 906d475e..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_systimer.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_tlsf.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_tlsf.c.obj deleted file mode 100644 index e372d147..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_tlsf.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj deleted file mode 100644 index f2c8020c..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_usb_serial.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_usb_serial.c.obj deleted file mode 100644 index 6df32282..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_usb_serial.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_wdt.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_wdt.c.obj deleted file mode 100644 index 666b4d84..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_wdt.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_rom/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/esp_rom/cmake_install.cmake deleted file mode 100644 index 92b4306c..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/esp_rom/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_rom/libesp_rom.a b/esp32-thread/open-thread-rcp/build/esp-idf/esp_rom/libesp_rom.a deleted file mode 100644 index 2578d4c7..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_rom/libesp_rom.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_crypto_lock.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_crypto_lock.c.obj deleted file mode 100644 index 62f0c3e3..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_crypto_lock.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_crypto_periph_clk.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_crypto_periph_clk.c.obj deleted file mode 100644 index bd92a70a..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_crypto_periph_clk.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_dpa_protection.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_dpa_protection.c.obj deleted file mode 100644 index 1b94a9d9..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_dpa_protection.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_ds.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_ds.c.obj deleted file mode 100644 index 3494a494..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_ds.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_hmac.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_hmac.c.obj deleted file mode 100644 index 885ef11c..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/esp_hmac.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/init.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/init.c.obj deleted file mode 100644 index 975ba3cf..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_security/CMakeFiles/__idf_esp_security.dir/src/init.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_security/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/esp_security/cmake_install.cmake deleted file mode 100644 index 2a095bd0..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/esp_security/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_security/libesp_security.a b/esp32-thread/open-thread-rcp/build/esp-idf/esp_security/libesp_security.a deleted file mode 100644 index af451349..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_security/libesp_security.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/crosscore_int.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/crosscore_int.c.obj deleted file mode 100644 index ec2cb174..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/crosscore_int.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj deleted file mode 100644 index 092b9603..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_ipc.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_ipc.c.obj deleted file mode 100644 index 7dfc2857..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_ipc.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_system.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_system.c.obj deleted file mode 100644 index cbfad102..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_system.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_system_console.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_system_console.c.obj deleted file mode 100644 index 2b9a0c5a..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_system_console.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/freertos_hooks.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/freertos_hooks.c.obj deleted file mode 100644 index bdd35d15..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/freertos_hooks.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/hw_stack_guard.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/hw_stack_guard.c.obj deleted file mode 100644 index 19ae9812..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/hw_stack_guard.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/int_wdt.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/int_wdt.c.obj deleted file mode 100644 index ebf6fbf2..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/int_wdt.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/panic.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/panic.c.obj deleted file mode 100644 index 634d6169..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/panic.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/debug_helpers.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/debug_helpers.c.obj deleted file mode 100644 index 2c90e5b1..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/debug_helpers.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/debug_stubs.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/debug_stubs.c.obj deleted file mode 100644 index 78e57788..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/debug_stubs.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/expression_with_stack.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/expression_with_stack.c.obj deleted file mode 100644 index 4b8eb8c6..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/expression_with_stack.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/panic_arch.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/panic_arch.c.obj deleted file mode 100644 index 44b2a5c5..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/riscv/panic_arch.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/cpu_start.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/cpu_start.c.obj deleted file mode 100644 index 8854aadd..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/cpu_start.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp_system_chip.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp_system_chip.c.obj deleted file mode 100644 index 3f817d0e..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp_system_chip.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/image_process.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/image_process.c.obj deleted file mode 100644 index 95edd9f9..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/image_process.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/panic_handler.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/panic_handler.c.obj deleted file mode 100644 index 38b17129..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/panic_handler.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32h2/cache_err_int.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32h2/cache_err_int.c.obj deleted file mode 100644 index 3478147c..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32h2/cache_err_int.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32h2/clk.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32h2/clk.c.obj deleted file mode 100644 index d50ab5af..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32h2/clk.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32h2/reset_reason.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32h2/reset_reason.c.obj deleted file mode 100644 index 901eca3d..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32h2/reset_reason.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32h2/system_internal.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32h2/system_internal.c.obj deleted file mode 100644 index 69809ba3..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32h2/system_internal.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/stack_check.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/stack_check.c.obj deleted file mode 100644 index 45b5e544..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/stack_check.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup.c.obj deleted file mode 100644 index fb261b5e..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup_funcs.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup_funcs.c.obj deleted file mode 100644 index efa0d92c..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup_funcs.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/system_time.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/system_time.c.obj deleted file mode 100644 index a6f12eb3..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/system_time.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/systick_etm.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/systick_etm.c.obj deleted file mode 100644 index 2a5ad6ba..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/systick_etm.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt.c.obj deleted file mode 100644 index 82d30074..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt_impl_timergroup.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt_impl_timergroup.c.obj deleted file mode 100644 index 474f6d03..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt_impl_timergroup.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/ubsan.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/ubsan.c.obj deleted file mode 100644 index 663bb2ae..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/ubsan.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/xt_wdt.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/xt_wdt.c.obj deleted file mode 100644 index 95b5e644..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/xt_wdt.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/cmake_install.cmake deleted file mode 100644 index c02d05cd..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/cmake_install.cmake +++ /dev/null @@ -1,44 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/port/cmake_install.cmake") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/ld/linker_script_generator.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/ld/linker_script_generator.cmake deleted file mode 100644 index 845c872e..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/ld/linker_script_generator.cmake +++ /dev/null @@ -1,9 +0,0 @@ -execute_process(COMMAND "${CC}" "-C" "-P" "-x" "c" "-E" "-I" "${CONFIG_DIR}" "-I" "${LD_DIR}" "${SOURCE}" - RESULT_VARIABLE RET_CODE - OUTPUT_VARIABLE PREPROCESSED_LINKER_SCRIPT - ERROR_VARIABLE ERROR_VAR) -if(RET_CODE AND NOT RET_CODE EQUAL 0) - message(FATAL_ERROR "Can't generate ${TARGET}\nRET_CODE: ${RET_CODE}\nERROR_MESSAGE: ${ERROR_VAR}") -endif() -string(REPLACE "\\n" "\n" TEXT "${PREPROCESSED_LINKER_SCRIPT}") -file(WRITE "${TARGET}" "${TEXT}") diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/ld/memory.ld b/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/ld/memory.ld deleted file mode 100644 index 20f0c070..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/ld/memory.ld +++ /dev/null @@ -1,144 +0,0 @@ -/* - - * SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD - - * - - * SPDX-License-Identifier: Apache-2.0 - - */ -/** - - * ESP32-H2 Linker Script Memory Layout - - * This file describes the memory layout (memory blocks) by virtual memory addresses. - - * This linker script is passed through the C preprocessor to include configuration options. - - * Please use preprocessor features sparingly! - - * Restrict to simple macros with numeric values, and/or #if/#endif blocks. - - */ -/* - - * Automatically generated file. DO NOT EDIT. - - * Espressif IoT Development Framework (ESP-IDF) 5.5.1 Configuration Header - - */ - -/* List of deprecated options */ -/* - - * SPDX-FileCopyrightText: 2021-2024 Espressif Systems (Shanghai) CO LTD - - * - - * SPDX-License-Identifier: Apache-2.0 - - */ -/* CPU instruction prefetch padding size for flash mmap scenario */ -/* - - * PMP region granularity size - - * Software may determine the PMP granularity by writing zero to pmp0cfg, then writing all ones - - * to pmpaddr0, then reading back pmpaddr0. If G is the index of the least-significant bit set, - - * the PMP granularity is 2^G+2 bytes. - - */ -/* CPU instruction prefetch padding size for memory protection scenario */ -/* Memory alignment size for PMS */ - /* rtc timer data (s_rtc_timer_retain_mem, see esp_clk.c files). For rtc_timer_data_in_rtc_mem section. */ -/* - - * IDRAM0_2_SEG_SIZE_DEFAULT is used when page size is 64KB - - */ -MEMORY -{ - /** - - * All these values assume the flash cache is on, and have the blocks this uses subtracted from the length - - * of the various regions. The 'data access port' dram/drom regions map to the same iram/irom regions but - - * are connected to the data port of the CPU and eg allow byte-wise access. - - */ - /* Flash mapped instruction data */ - irom_seg (RX) : org = 0x42000020, len = (0x8000 << 8) - 0x20 - /** - - * (0x20 offset above is a convenience for the app binary image generation. - - * Flash cache has 64KB pages. The .bin file which is flashed to the chip - - * has a 0x18 byte file header, and each segment has a 0x08 byte segment - - * header. Setting this offset makes it simple to meet the flash cache MMU's - - * constraint that (paddr % 64KB == vaddr % 64KB).) - - */ - /** - - * Shared data RAM, excluding memory reserved for ROM bss/data/stack. - - * Enabling Bluetooth & Trace Memory features in menuconfig will decrease the amount of RAM available. - - */ - sram_seg (RWX) : org = (0x40800000), len = 0x4083EFD0 - (0x40800000) - /* Flash mapped instruction data */ - drom_seg (R) : org = 0x42000020, len = (0x8000 << 8) - 0x20 - /* (See irom_seg for meaning of 0x20 offset in the above.) */ - /** - - * lp ram memory (RWX). Persists over deep sleep. - - */ - lp_ram_seg(RW) : org = 0x50000000, len = 0x1000 - (0 + (24)) - /* We reduced the size of lp_ram_seg by RESERVE_RTC_MEM value. - - It reserves the amount of LP memory that we use for this memory segment. - - This segment is intended for keeping: - - - (lower addr) rtc timer data (s_rtc_timer_retain_mem, see esp_clk.c files). - - - (higher addr) bootloader rtc data (s_bootloader_retain_mem, when a Kconfig option is on). - - The aim of this is to keep data that will not be moved around and have a fixed address. - - */ - lp_reserved_seg(RW) : org = 0x50000000 + 0x1000 - (0 + (24)), len = (0 + (24)) -} -/* Heap ends at top of sram_seg */ -_heap_end = 0x40000000; -_data_seg_org = ORIGIN(rtc_data_seg); -/** - - * The lines below define location alias for .rtc.data section - - * As H2 only has RTC fast memory, this is not configurable like on other targets - - */ -REGION_ALIAS("rtc_iram_seg", lp_ram_seg ); -REGION_ALIAS("rtc_data_seg", rtc_iram_seg ); -REGION_ALIAS("rtc_slow_seg", rtc_iram_seg ); -REGION_ALIAS("rtc_data_location", rtc_iram_seg ); -REGION_ALIAS("rtc_reserved_seg", lp_reserved_seg ); - REGION_ALIAS("default_code_seg", irom_seg); - REGION_ALIAS("default_rodata_seg", drom_seg); -/** - - * If rodata default segment is placed in `drom_seg`, then flash's first rodata section must - - * also be first in the segment. - - */ - ASSERT(_flash_rodata_dummy_start == ORIGIN(default_rodata_seg), - ".flash_rodata_dummy section must be placed at the beginning of the rodata segment.") diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/ld/sections.ld b/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/ld/sections.ld deleted file mode 100644 index e6cb0d58..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/ld/sections.ld +++ /dev/null @@ -1,1010 +0,0 @@ -/* Automatically generated file; DO NOT EDIT */ -/* Espressif IoT Development Framework Linker Script */ -/* Generated from: C:\Users\Laurent\Desktop\board-mate\esp32-thread\open-thread-rcp\build\esp-idf\esp_system\ld\sections.ld.in */ - -/* - - * SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD - - * - - * SPDX-License-Identifier: Apache-2.0 - - */ -/* - - * SPDX-FileCopyrightText: 2021-2024 Espressif Systems (Shanghai) CO LTD - - * - - * SPDX-License-Identifier: Apache-2.0 - - */ -/* - - * Automatically generated file. DO NOT EDIT. - - * Espressif IoT Development Framework (ESP-IDF) 5.5.1 Configuration Header - - */ - -/* List of deprecated options */ -/* CPU instruction prefetch padding size for flash mmap scenario */ -/* - - * PMP region granularity size - - * Software may determine the PMP granularity by writing zero to pmp0cfg, then writing all ones - - * to pmpaddr0, then reading back pmpaddr0. If G is the index of the least-significant bit set, - - * the PMP granularity is 2^G+2 bytes. - - */ -/* CPU instruction prefetch padding size for memory protection scenario */ -/* Memory alignment size for PMS */ - /* rtc timer data (s_rtc_timer_retain_mem, see esp_clk.c files). For rtc_timer_data_in_rtc_mem section. */ -/* Default entry point */ -ENTRY(call_start_cpu0); -SECTIONS -{ - /** - - * RTC fast memory holds RTC wake stub code, - - * including from any source file named rtc_wake_stub*.c - - */ - .rtc.text : - { - /* Align the start of RTC code region as per PMP granularity - - * this ensures we do not overwrite the permissions for any potential previous - - * region regardless of its end alignment - - */ - - . = ALIGN(4); - _rtc_fast_start = ABSOLUTE(.); - - . = ALIGN(4); - _rtc_text_start = ABSOLUTE(.); - *(.rtc.entry.text) - *(.rtc.literal .rtc.text .rtc.text.*) - *rtc_wake_stub*.*(.text .text.*) - *(.rtc_text_end_test) - /* Align the end of RTC code region as per PMP granularity */ - . = ALIGN(4); - _rtc_text_end = ABSOLUTE(.); - } > lp_ram_seg - /** - - * This section located in RTC FAST Memory area. - - * It holds data marked with RTC_FAST_ATTR attribute. - - * See the file "esp_attr.h" for more information. - - */ - .rtc.force_fast : - { - - . = ALIGN(4); - _rtc_force_fast_start = ABSOLUTE(.); - *(.rtc.force_fast .rtc.force_fast.*) - - . = ALIGN(4); - _rtc_force_fast_end = ABSOLUTE(.); - } > lp_ram_seg - /** - - * RTC data section holds RTC wake stub - - * data/rodata, including from any source file - - * named rtc_wake_stub*.c and the data marked with - - * RTC_DATA_ATTR, RTC_RODATA_ATTR attributes. - - */ - .rtc.data : - { - _rtc_data_start = ABSOLUTE(.); - *(.rtc.data .rtc.data.*) - *(.rtc.rodata .rtc.rodata.*) - *rtc_wake_stub*.*(.data .rodata .data.* .rodata.* .srodata.*) - _rtc_data_end = ABSOLUTE(.); - } > lp_ram_seg - /* RTC bss, from any source file named rtc_wake_stub*.c */ - .rtc.bss (NOLOAD) : - { - _rtc_bss_start = ABSOLUTE(.); - *rtc_wake_stub*.*(.bss .bss.* .sbss .sbss.*) - *rtc_wake_stub*.*(COMMON) - *(.rtc.bss) - _rtc_bss_end = ABSOLUTE(.); - } > lp_ram_seg - /** - - * This section holds data that should not be initialized at power up - - * and will be retained during deep sleep. - - * User data marked with RTC_NOINIT_ATTR will be placed - - * into this section. See the file "esp_attr.h" for more information. - - */ - .rtc_noinit (NOLOAD): - { - - . = ALIGN(4); - _rtc_noinit_start = ABSOLUTE(.); - *(.rtc_noinit .rtc_noinit.*) - - . = ALIGN(4); - _rtc_noinit_end = ABSOLUTE(.); - } > lp_ram_seg - /** - - * This section located in RTC SLOW Memory area. - - * It holds data marked with RTC_SLOW_ATTR attribute. - - * See the file "esp_attr.h" for more information. - - */ - .rtc.force_slow : - { - - . = ALIGN(4); - _rtc_force_slow_start = ABSOLUTE(.); - *(.rtc.force_slow .rtc.force_slow.*) - - . = ALIGN(4); - _rtc_force_slow_end = ABSOLUTE(.); - } > lp_ram_seg - /** - - * This section holds RTC data that should have fixed addresses. - - * The data are not initialized at power-up and are retained during deep - - * sleep. - - */ - .rtc_reserved (NOLOAD): - { - - . = ALIGN(4); - _rtc_reserved_start = ABSOLUTE(.); - /** - - * New data can only be added here to ensure existing data are not moved. - - * Because data have adhered to the end of the segment and code is relied - - * on it. - - * >> put new data here << - - */ - *(.rtc_timer_data_in_rtc_mem .rtc_timer_data_in_rtc_mem.*) - KEEP(*(.bootloader_data_rtc_mem .bootloader_data_rtc_mem.*)) - _rtc_reserved_end = ABSOLUTE(.); - } > rtc_reserved_seg - _rtc_reserved_length = _rtc_reserved_end - _rtc_reserved_start; - ASSERT((_rtc_reserved_length <= LENGTH(rtc_reserved_seg)), - "RTC reserved segment data does not fit.") - /* Get size of rtc slow data based on rtc_data_location alias */ - _rtc_slow_length = (ORIGIN(rtc_slow_seg) == ORIGIN(rtc_data_location)) - ? (_rtc_force_slow_end - _rtc_data_start) - : (_rtc_force_slow_end - _rtc_force_slow_start); - _rtc_fast_length = (ORIGIN(rtc_slow_seg) == ORIGIN(rtc_data_location)) - ? (_rtc_force_fast_end - _rtc_fast_start) - : (_rtc_noinit_end - _rtc_fast_start); - ASSERT((_rtc_slow_length <= LENGTH(rtc_slow_seg)), - "RTC_SLOW segment data does not fit.") - ASSERT((_rtc_fast_length <= LENGTH(rtc_data_seg)), - "RTC_FAST segment data does not fit.") - .iram0.text : - { - _iram_start = ABSOLUTE(.); - /* Vectors go to start of IRAM */ - ASSERT(ABSOLUTE(.) % 0x100 == 0, "vector address must be 256 byte aligned"); - _vector_table_start = ABSOLUTE(.); - KEEP(*(.exception_vectors_table.text)); - KEEP(*(.exception_vectors.text)); - - . = ALIGN(4); - _invalid_pc_placeholder = ABSOLUTE(.); - /* esp_tee_config_t structure: used to share information between the TEE and REE - - * (e.g. interrupt handler addresses, REE flash text-rodata boundaries, etc.) - - * This symbol is expected by the TEE at an offset of 0x300 from the vector table start. - - */ - /* Code marked as running out of IRAM */ - _iram_text_start = ABSOLUTE(.); - *(.iram1 .iram1.*) - *libclang_rt.builtins.a:_divsf3.*(.literal .literal.* .text .text.*) - *libclang_rt.builtins.a:restore.*(.literal .literal.* .text .text.*) - *libclang_rt.builtins.a:save.*(.literal .literal.* .text .text.*) - *libesp_driver_ana_cmpr.a:ana_cmpr.*(.literal.ana_cmpr_default_intr_handler .text.ana_cmpr_default_intr_handler) - *libesp_driver_gptimer.a:gptimer.*(.literal.gptimer_default_isr .text.gptimer_default_isr) - *libesp_driver_i2c.a:i2c_master.*(.literal.i2c_master_isr_handler_default .text.i2c_master_isr_handler_default) - *libesp_driver_mcpwm.a:mcpwm_cap.*(.literal.mcpwm_capture_default_isr .text.mcpwm_capture_default_isr) - *libesp_driver_mcpwm.a:mcpwm_cmpr.*(.literal.mcpwm_comparator_default_isr .text.mcpwm_comparator_default_isr) - *libesp_driver_mcpwm.a:mcpwm_fault.*(.literal.mcpwm_gpio_fault_default_isr .text.mcpwm_gpio_fault_default_isr) - *libesp_driver_mcpwm.a:mcpwm_oper.*(.literal.mcpwm_operator_default_isr .text.mcpwm_operator_default_isr) - *libesp_driver_mcpwm.a:mcpwm_timer.*(.literal.mcpwm_timer_default_isr .text.mcpwm_timer_default_isr) - *libesp_driver_parlio.a:parlio_rx.*(.literal.parlio_rx_default_desc_done_callback .text.parlio_rx_default_desc_done_callback) - *libesp_driver_parlio.a:parlio_rx.*(.literal.parlio_rx_default_eof_callback .text.parlio_rx_default_eof_callback) - *libesp_driver_parlio.a:parlio_rx.*(.literal.parlio_rx_mount_transaction_buffer .text.parlio_rx_mount_transaction_buffer) - *libesp_driver_parlio.a:parlio_rx.*(.literal.parlio_rx_set_delimiter_config .text.parlio_rx_set_delimiter_config) - *libesp_driver_parlio.a:parlio_tx.*(.literal.parlio_mount_buffer .text.parlio_mount_buffer) - *libesp_driver_parlio.a:parlio_tx.*(.literal.parlio_tx_default_isr .text.parlio_tx_default_isr) - *libesp_driver_parlio.a:parlio_tx.*(.literal.parlio_tx_do_transaction .text.parlio_tx_do_transaction) - *libesp_driver_parlio.a:parlio_tx.*(.literal.parlio_tx_gdma_eof_callback .text.parlio_tx_gdma_eof_callback) - *libesp_driver_rmt.a:rmt_encoder.*(.literal.rmt_encoder_reset .text.rmt_encoder_reset) - *libesp_driver_rmt.a:rmt_rx.*(.literal.rmt_isr_handle_rx_done .text.rmt_isr_handle_rx_done) - *libesp_driver_rmt.a:rmt_rx.*(.literal.rmt_isr_handle_rx_threshold .text.rmt_isr_handle_rx_threshold) - *libesp_driver_rmt.a:rmt_rx.*(.literal.rmt_rx_default_isr .text.rmt_rx_default_isr) - *libesp_driver_rmt.a:rmt_tx.*(.literal.rmt_encode_check_result .text.rmt_encode_check_result) - *libesp_driver_rmt.a:rmt_tx.*(.literal.rmt_isr_handle_tx_done .text.rmt_isr_handle_tx_done) - *libesp_driver_rmt.a:rmt_tx.*(.literal.rmt_isr_handle_tx_loop_end .text.rmt_isr_handle_tx_loop_end) - *libesp_driver_rmt.a:rmt_tx.*(.literal.rmt_isr_handle_tx_threshold .text.rmt_isr_handle_tx_threshold) - *libesp_driver_rmt.a:rmt_tx.*(.literal.rmt_tx_default_isr .text.rmt_tx_default_isr) - *libesp_driver_rmt.a:rmt_tx.*(.literal.rmt_tx_do_transaction .text.rmt_tx_do_transaction) - *libesp_driver_rmt.a:rmt_tx.*(.literal.rmt_tx_mark_eof .text.rmt_tx_mark_eof) - *libesp_driver_uart.a:uart_vfs.*(.literal.select_notif_callback_isr .text.select_notif_callback_isr) - *libesp_driver_usb_serial_jtag.a:usb_serial_jtag_vfs.*(.literal.select_notif_callback_isr .text.select_notif_callback_isr) - *libesp_event.a:default_event_loop.*(.literal.esp_event_isr_post .text.esp_event_isr_post) - *libesp_event.a:esp_event.*(.literal.esp_event_isr_post_to .text.esp_event_isr_post_to) - *libesp_hw_support.a:adc_share_hw_ctrl.*(.literal.adc_apb_periph_claim .text.adc_apb_periph_claim) - *libesp_hw_support.a:adc_share_hw_ctrl.*(.literal.adc_apb_periph_free .text.adc_apb_periph_free) - *libesp_hw_support.a:clk_utils.*(.literal .literal.* .text .text.*) - *libesp_hw_support.a:cpu.*(.literal.esp_cpu_compare_and_set .text.esp_cpu_compare_and_set) - *libesp_hw_support.a:cpu.*(.literal.esp_cpu_reset .text.esp_cpu_reset) - *libesp_hw_support.a:cpu.*(.literal.esp_cpu_stall .text.esp_cpu_stall) - *libesp_hw_support.a:cpu.*(.literal.esp_cpu_unstall .text.esp_cpu_unstall) - *libesp_hw_support.a:cpu.*(.literal.esp_cpu_wait_for_intr .text.esp_cpu_wait_for_intr) - *libesp_hw_support.a:esp_clk.*(.literal.esp_clk_private_lock .text.esp_clk_private_lock) - *libesp_hw_support.a:esp_clk.*(.literal.esp_clk_private_unlock .text.esp_clk_private_unlock) - *libesp_hw_support.a:esp_clk.*(.literal.esp_clk_slowclk_cal_get .text.esp_clk_slowclk_cal_get) - *libesp_hw_support.a:esp_clk.*(.literal.esp_clk_slowclk_cal_set .text.esp_clk_slowclk_cal_set) - *libesp_hw_support.a:esp_clk.*(.literal.esp_rtc_get_time_us .text.esp_rtc_get_time_us) - *libesp_hw_support.a:esp_clk_tree.*(.literal.esp_clk_tree_enable_src .text.esp_clk_tree_enable_src) - *libesp_hw_support.a:esp_memory_utils.*(.literal .literal.* .text .text.*) - *libesp_hw_support.a:gdma.*(.literal.gdma_append .text.gdma_append) - *libesp_hw_support.a:gdma.*(.literal.gdma_default_rx_isr .text.gdma_default_rx_isr) - *libesp_hw_support.a:gdma.*(.literal.gdma_default_tx_isr .text.gdma_default_tx_isr) - *libesp_hw_support.a:gdma.*(.literal.gdma_reset .text.gdma_reset) - *libesp_hw_support.a:gdma.*(.literal.gdma_start .text.gdma_start) - *libesp_hw_support.a:gdma.*(.literal.gdma_stop .text.gdma_stop) - *libesp_hw_support.a:gdma_link.*(.literal.gdma_link_concat .text.gdma_link_concat) - *libesp_hw_support.a:gdma_link.*(.literal.gdma_link_get_buffer .text.gdma_link_get_buffer) - *libesp_hw_support.a:gdma_link.*(.literal.gdma_link_get_head_addr .text.gdma_link_get_head_addr) - *libesp_hw_support.a:gdma_link.*(.literal.gdma_link_mount_buffers .text.gdma_link_mount_buffers) - *libesp_hw_support.a:mspi_timing_tuning.*(.literal .literal.* .text .text.*) - *libesp_hw_support.a:periph_ctrl.*(.literal.periph_module_reset .text.periph_module_reset) - *libesp_hw_support.a:periph_ctrl.*(.literal.periph_rcc_acquire_enter .text.periph_rcc_acquire_enter) - *libesp_hw_support.a:periph_ctrl.*(.literal.periph_rcc_acquire_exit .text.periph_rcc_acquire_exit) - *libesp_hw_support.a:periph_ctrl.*(.literal.periph_rcc_enter .text.periph_rcc_enter) - *libesp_hw_support.a:periph_ctrl.*(.literal.periph_rcc_exit .text.periph_rcc_exit) - *libesp_hw_support.a:periph_ctrl.*(.literal.periph_rcc_release_enter .text.periph_rcc_release_enter) - *libesp_hw_support.a:periph_ctrl.*(.literal.periph_rcc_release_exit .text.periph_rcc_release_exit) - *libesp_hw_support.a:pmu_param.*(.literal.get_act_hp_dbias .text.get_act_hp_dbias) - *libesp_hw_support.a:pmu_param.*(.literal.get_act_lp_dbias .text.get_act_lp_dbias) - *libesp_hw_support.a:pmu_sleep.*(.literal .literal.* .text .text.*) - *libesp_hw_support.a:regi2c_ctrl.*(.literal.regi2c_ctrl_read_reg .text.regi2c_ctrl_read_reg) - *libesp_hw_support.a:regi2c_ctrl.*(.literal.regi2c_ctrl_read_reg_mask .text.regi2c_ctrl_read_reg_mask) - *libesp_hw_support.a:regi2c_ctrl.*(.literal.regi2c_ctrl_write_reg .text.regi2c_ctrl_write_reg) - *libesp_hw_support.a:regi2c_ctrl.*(.literal.regi2c_ctrl_write_reg_mask .text.regi2c_ctrl_write_reg_mask) - *libesp_hw_support.a:regi2c_ctrl.*(.literal.regi2c_enter_critical .text.regi2c_enter_critical) - *libesp_hw_support.a:regi2c_ctrl.*(.literal.regi2c_exit_critical .text.regi2c_exit_critical) - *libesp_hw_support.a:regi2c_ctrl.*(.literal.regi2c_saradc_disable .text.regi2c_saradc_disable) - *libesp_hw_support.a:regi2c_ctrl.*(.literal.regi2c_saradc_enable .text.regi2c_saradc_enable) - *libesp_hw_support.a:rtc_clk.*(.literal .literal.* .text .text.*) - *libesp_hw_support.a:rtc_time.*(.literal .literal.* .text .text.*) - *libesp_hw_support.a:sar_periph_ctrl.*(.literal.sar_periph_ctrl_power_disable .text.sar_periph_ctrl_power_disable) - *libesp_hw_support.a:sar_periph_ctrl.*(.literal.sar_periph_ctrl_power_enable .text.sar_periph_ctrl_power_enable) - *libesp_hw_support.a:sar_periph_ctrl_common.*(.literal.temp_sensor_get_raw_value .text.temp_sensor_get_raw_value) - *libesp_hw_support.a:sar_periph_ctrl_common.*(.literal.temperature_sensor_power_acquire .text.temperature_sensor_power_acquire) - *libesp_hw_support.a:sar_periph_ctrl_common.*(.literal.temperature_sensor_power_release .text.temperature_sensor_power_release) - *libesp_hw_support.a:sleep_clock.*(.literal.clock_domain_pd_allowed .text.clock_domain_pd_allowed) - *libesp_hw_support.a:sleep_console.*(.literal .literal.* .text .text.*) - *libesp_hw_support.a:sleep_cpu.*(.literal.cpu_domain_pd_allowed .text.cpu_domain_pd_allowed) - *libesp_hw_support.a:sleep_modem.*(.literal.modem_domain_pd_allowed .text.modem_domain_pd_allowed) - *libesp_hw_support.a:sleep_modem.*(.literal.periph_inform_out_light_sleep_overhead .text.periph_inform_out_light_sleep_overhead) - *libesp_hw_support.a:sleep_modem.*(.literal.sleep_modem_reject_triggers .text.sleep_modem_reject_triggers) - *libesp_hw_support.a:sleep_modes.*(.literal.esp_light_sleep_start .text.esp_light_sleep_start) - *libesp_hw_support.a:sleep_modes.*(.literal.esp_sleep_enable_timer_wakeup .text.esp_sleep_enable_timer_wakeup) - *libesp_hw_support.a:sleep_system_peripheral.*(.literal.peripheral_domain_pd_allowed .text.peripheral_domain_pd_allowed) - *libesp_hw_support.a:systimer.*(.literal .literal.* .text .text.*) - *libesp_mm.a:esp_cache_msync.*(.literal .literal.* .text .text.*) - *libesp_mm.a:esp_cache_utils.*(.literal .literal.* .text .text.*) - *libesp_phy.a:phy_override.*(.literal.phy_get_tsens_value .text.phy_get_tsens_value) - *libesp_pm.a:pm_impl.*(.literal.esp_pm_impl_get_cpu_freq .text.esp_pm_impl_get_cpu_freq) - *libesp_ringbuf.a:(.literal .literal.* .text .text.*) - *libesp_rom.a:esp_rom_print.*(.literal .literal.* .text .text.*) - *libesp_rom.a:esp_rom_spiflash.*(.literal .literal.* .text .text.*) - *libesp_rom.a:esp_rom_sys.*(.literal .literal.* .text .text.*) - *libesp_rom.a:esp_rom_systimer.*(.literal .literal.* .text .text.*) - *libesp_rom.a:esp_rom_tlsf.*(.literal .literal.* .text .text.*) - *libesp_rom.a:esp_rom_wdt.*(.literal .literal.* .text .text.*) - *libesp_system.a:esp_err.*(.literal .literal.* .text .text.*) - *libesp_system.a:esp_system_chip.*(.literal.esp_system_abort .text.esp_system_abort) - *libesp_system.a:freertos_hooks.*(.literal.esp_vApplicationTickHook .text.esp_vApplicationTickHook) - *libesp_system.a:image_process.*(.literal .literal.* .text .text.*) - *libesp_system.a:panic.*(.literal.panic_abort .text.panic_abort) - *libesp_system.a:reset_reason.*(.literal.esp_reset_reason_set_hint .text.esp_reset_reason_set_hint) - *libesp_system.a:system_internal.*(.literal.esp_restart_noos .text.esp_restart_noos) - *libesp_system.a:system_internal.*(.literal.esp_system_reset_modules_on_exit .text.esp_system_reset_modules_on_exit) - *libesp_system.a:system_time.*(.literal.esp_system_get_time .text.esp_system_get_time) - *libesp_system.a:system_time.*(.literal.esp_system_get_time_resolution .text.esp_system_get_time_resolution) - *libesp_system.a:ubsan.*(.literal .literal.* .text .text.*) - *libesp_timer.a:esp_timer_impl_common.*(.literal.esp_timer_impl_lock .text.esp_timer_impl_lock) - *libesp_timer.a:esp_timer_impl_common.*(.literal.esp_timer_impl_unlock .text.esp_timer_impl_unlock) - *libesp_timer.a:esp_timer_impl_systimer.*(.literal.esp_timer_impl_advance .text.esp_timer_impl_advance) - *libesp_timer.a:esp_timer_impl_systimer.*(.literal.esp_timer_impl_set .text.esp_timer_impl_set) - *libfreertos.a:(EXCLUDE_FILE(*libfreertos.a:app_startup.* *libfreertos.a:freertos_compatibility.* *libfreertos.a:idf_additions.* *libfreertos.a:idf_additions_event_groups.* *libfreertos.a:tasks.*) .literal EXCLUDE_FILE(*libfreertos.a:app_startup.* *libfreertos.a:freertos_compatibility.* *libfreertos.a:idf_additions.* *libfreertos.a:idf_additions_event_groups.* *libfreertos.a:tasks.*) .literal.* EXCLUDE_FILE(*libfreertos.a:app_startup.* *libfreertos.a:freertos_compatibility.* *libfreertos.a:idf_additions.* *libfreertos.a:idf_additions_event_groups.* *libfreertos.a:tasks.*) .text EXCLUDE_FILE(*libfreertos.a:app_startup.* *libfreertos.a:freertos_compatibility.* *libfreertos.a:idf_additions.* *libfreertos.a:idf_additions_event_groups.* *libfreertos.a:tasks.*) .text.*) - *libfreertos.a:tasks.*(.text .text.__getreent .text.eTaskGetState .text.pcTaskGetName .text.prvAddCurrentTaskToDelayedList .text.prvAddNewTaskToReadyList .text.prvDeleteTCB .text.prvIdleTask .text.prvInitialiseNewTask.constprop.0 .text.prvResetNextTaskUnblockTime .text.prvSearchForNameWithinSingleList .text.prvTaskIsTaskSuspended.part.0 .text.prvTaskPriorityRaise .text.prvTaskPriorityRestore .text.pvTaskGetCurrentTCBForCore .text.pvTaskGetThreadLocalStoragePointer .text.pvTaskIncrementMutexHeldCount .text.pxTaskGetStackStart .text.ulTaskGenericNotifyTake .text.ulTaskGenericNotifyValueClear .text.uxTaskGetNumberOfTasks .text.uxTaskGetStackHighWaterMark .text.uxTaskGetStackHighWaterMark2 .text.uxTaskPriorityGet .text.uxTaskPriorityGetFromISR .text.uxTaskResetEventItemValue .text.vTaskDelay .text.vTaskDelete .text.vTaskEndScheduler .text.vTaskGenericNotifyGiveFromISR .text.vTaskGetSnapshot .text.vTaskInternalSetTimeOutState .text.vTaskMissedYield .text.vTaskPlaceOnEventList .text.vTaskPlaceOnEventListRestricted .text.vTaskPlaceOnUnorderedEventList .text.vTaskPriorityDisinheritAfterTimeout .text.vTaskPrioritySet .text.vTaskRemoveFromUnorderedEventList .text.vTaskResume .text.vTaskSetThreadLocalStoragePointer .text.vTaskSetThreadLocalStoragePointerAndDelCallback .text.vTaskSetTimeOutState .text.vTaskStartScheduler .text.vTaskSuspend .text.vTaskSuspendAll .text.vTaskSwitchContext .text.xTaskAbortDelay .text.xTaskCatchUpTicks .text.xTaskCheckForTimeOut .text.xTaskCreatePinnedToCore .text.xTaskCreateStaticPinnedToCore .text.xTaskDelayUntil .text.xTaskGenericNotify .text.xTaskGenericNotifyFromISR .text.xTaskGenericNotifyStateClear .text.xTaskGenericNotifyWait .text.xTaskGetCoreID .text.xTaskGetCurrentTaskHandle .text.xTaskGetCurrentTaskHandleForCore .text.xTaskGetHandle .text.xTaskGetIdleTaskHandle .text.xTaskGetIdleTaskHandleForCore .text.xTaskGetSchedulerState .text.xTaskGetStaticBuffers .text.xTaskGetTickCount .text.xTaskGetTickCountFromISR .text.xTaskIncrementTick .text.xTaskPriorityDisinherit .text.xTaskPriorityInherit .text.xTaskRemoveFromEventList .text.xTaskResumeAll .text.xTaskResumeFromISR .text.xTimerCreateTimerTask) - *libgcc.a:_divsf3.*(.literal .literal.* .text .text.*) - *libgcc.a:lib2funcs.*(.literal .literal.* .text .text.*) - *libgcc.a:save-restore.*(.literal .literal.* .text .text.*) - *libgcov.a:(.literal .literal.* .text .text.*) - *libhal.a:cache_hal.*(.literal .literal.* .text .text.*) - *libhal.a:gdma_hal_ahb_v1.*(.literal.gdma_ahb_hal_append .text.gdma_ahb_hal_append) - *libhal.a:gdma_hal_ahb_v1.*(.literal.gdma_ahb_hal_clear_intr .text.gdma_ahb_hal_clear_intr) - *libhal.a:gdma_hal_ahb_v1.*(.literal.gdma_ahb_hal_get_eof_desc_addr .text.gdma_ahb_hal_get_eof_desc_addr) - *libhal.a:gdma_hal_ahb_v1.*(.literal.gdma_ahb_hal_read_intr_status .text.gdma_ahb_hal_read_intr_status) - *libhal.a:gdma_hal_ahb_v1.*(.literal.gdma_ahb_hal_reset .text.gdma_ahb_hal_reset) - *libhal.a:gdma_hal_ahb_v1.*(.literal.gdma_ahb_hal_start_with_desc .text.gdma_ahb_hal_start_with_desc) - *libhal.a:gdma_hal_ahb_v1.*(.literal.gdma_ahb_hal_stop .text.gdma_ahb_hal_stop) - *libhal.a:gdma_hal_top.*(.literal.gdma_hal_append .text.gdma_hal_append) - *libhal.a:gdma_hal_top.*(.literal.gdma_hal_clear_intr .text.gdma_hal_clear_intr) - *libhal.a:gdma_hal_top.*(.literal.gdma_hal_get_eof_desc_addr .text.gdma_hal_get_eof_desc_addr) - *libhal.a:gdma_hal_top.*(.literal.gdma_hal_read_intr_status .text.gdma_hal_read_intr_status) - *libhal.a:gdma_hal_top.*(.literal.gdma_hal_reset .text.gdma_hal_reset) - *libhal.a:gdma_hal_top.*(.literal.gdma_hal_start_with_desc .text.gdma_hal_start_with_desc) - *libhal.a:gdma_hal_top.*(.literal.gdma_hal_stop .text.gdma_hal_stop) - *libhal.a:gpio_hal.*(.literal.gpio_hal_isolate_in_sleep .text.gpio_hal_isolate_in_sleep) - *libhal.a:i2c_hal_iram.*(.literal .literal.* .text .text.*) - *libhal.a:ledc_hal_iram.*(.literal .literal.* .text .text.*) - *libhal.a:mmu_hal.*(.literal .literal.* .text .text.*) - *libhal.a:pmu_hal.*(.literal .literal.* .text .text.*) - *libhal.a:spi_flash_encrypt_hal_iram.*(.literal .literal.* .text .text.*) - *libhal.a:spi_flash_hal_gpspi.*(.literal .literal.* .text .text.*) - *libhal.a:spi_flash_hal_iram.*(.literal .literal.* .text .text.*) - *libhal.a:spi_hal_iram.*(.literal .literal.* .text .text.*) - *libhal.a:spi_slave_hal_iram.*(.literal .literal.* .text .text.*) - *libhal.a:timer_hal.*(.literal.timer_hal_capture_and_get_counter_value .text.timer_hal_capture_and_get_counter_value) - *libhal.a:uart_hal_iram.*(.literal .literal.* .text .text.*) - *libheap.a:multi_heap.*(.literal._multi_heap_lock .text._multi_heap_lock) - *libheap.a:multi_heap.*(.literal._multi_heap_unlock .text._multi_heap_unlock) - *libheap.a:multi_heap.*(.literal.multi_heap_aligned_alloc_offs .text.multi_heap_aligned_alloc_offs) - *libheap.a:multi_heap.*(.literal.multi_heap_get_full_block_size .text.multi_heap_get_full_block_size) - *libheap.a:multi_heap.*(.literal.multi_heap_in_rom_init .text.multi_heap_in_rom_init) - *libieee802154.a:esp_ieee802154.*(.literal.esp_ieee802154_enh_ack_generator .text.esp_ieee802154_enh_ack_generator) - *libieee802154.a:esp_ieee802154.*(.literal.esp_ieee802154_get_extended_address .text.esp_ieee802154_get_extended_address) - *libieee802154.a:esp_ieee802154.*(.literal.esp_ieee802154_get_recent_lqi .text.esp_ieee802154_get_recent_lqi) - *libieee802154.a:esp_ieee802154.*(.literal.esp_ieee802154_get_recent_rssi .text.esp_ieee802154_get_recent_rssi) - *libieee802154.a:esp_ieee802154.*(.literal.esp_ieee802154_receive .text.esp_ieee802154_receive) - *libieee802154.a:esp_ieee802154.*(.literal.esp_ieee802154_receive_at .text.esp_ieee802154_receive_at) - *libieee802154.a:esp_ieee802154.*(.literal.esp_ieee802154_set_transmit_security .text.esp_ieee802154_set_transmit_security) - *libieee802154.a:esp_ieee802154.*(.literal.esp_ieee802154_transmit .text.esp_ieee802154_transmit) - *libieee802154.a:esp_ieee802154.*(.literal.esp_ieee802154_transmit_at .text.esp_ieee802154_transmit_at) - *libieee802154.a:esp_ieee802154_ack.*(.literal.ieee802154_ack_config_pending_bit .text.ieee802154_ack_config_pending_bit) - *libieee802154.a:esp_ieee802154_dev.*(.literal.ieee802154_finish_receive_at .text.ieee802154_finish_receive_at) - *libieee802154.a:esp_ieee802154_dev.*(.literal.ieee802154_get_recent_lqi .text.ieee802154_get_recent_lqi) - *libieee802154.a:esp_ieee802154_dev.*(.literal.ieee802154_get_recent_rssi .text.ieee802154_get_recent_rssi) - *libieee802154.a:esp_ieee802154_dev.*(.literal.ieee802154_isr .text.ieee802154_isr) - *libieee802154.a:esp_ieee802154_dev.*(.literal.ieee802154_receive .text.ieee802154_receive) - *libieee802154.a:esp_ieee802154_dev.*(.literal.ieee802154_receive_at .text.ieee802154_receive_at) - *libieee802154.a:esp_ieee802154_dev.*(.literal.ieee802154_rx_frame_info_update .text.ieee802154_rx_frame_info_update) - *libieee802154.a:esp_ieee802154_dev.*(.literal.ieee802154_start_receive_at .text.ieee802154_start_receive_at) - *libieee802154.a:esp_ieee802154_dev.*(.literal.ieee802154_transmit .text.ieee802154_transmit) - *libieee802154.a:esp_ieee802154_dev.*(.literal.ieee802154_transmit_at .text.ieee802154_transmit_at) - *libieee802154.a:esp_ieee802154_dev.*(.literal.set_next_rx_buffer .text.set_next_rx_buffer) - *libieee802154.a:esp_ieee802154_dev.*(.literal.stop_cca .text.stop_cca) - *libieee802154.a:esp_ieee802154_dev.*(.literal.stop_current_operation .text.stop_current_operation) - *libieee802154.a:esp_ieee802154_dev.*(.literal.stop_ed .text.stop_ed) - *libieee802154.a:esp_ieee802154_dev.*(.literal.stop_rx .text.stop_rx) - *libieee802154.a:esp_ieee802154_dev.*(.literal.stop_rx_ack .text.stop_rx_ack) - *libieee802154.a:esp_ieee802154_dev.*(.literal.stop_tx .text.stop_tx) - *libieee802154.a:esp_ieee802154_dev.*(.literal.stop_tx_ack .text.stop_tx_ack) - *libieee802154.a:esp_ieee802154_dev.*(.literal.stop_tx_cca .text.stop_tx_cca) - *libieee802154.a:esp_ieee802154_event.*(.literal.ieee802154_inner_energy_detect_done .text.ieee802154_inner_energy_detect_done) - *libieee802154.a:esp_ieee802154_event.*(.literal.ieee802154_inner_enh_ack_generator .text.ieee802154_inner_enh_ack_generator) - *libieee802154.a:esp_ieee802154_event.*(.literal.ieee802154_inner_receive_done .text.ieee802154_inner_receive_done) - *libieee802154.a:esp_ieee802154_event.*(.literal.ieee802154_inner_receive_sfd_done .text.ieee802154_inner_receive_sfd_done) - *libieee802154.a:esp_ieee802154_event.*(.literal.ieee802154_inner_transmit_done .text.ieee802154_inner_transmit_done) - *libieee802154.a:esp_ieee802154_event.*(.literal.ieee802154_inner_transmit_failed .text.ieee802154_inner_transmit_failed) - *libieee802154.a:esp_ieee802154_event.*(.literal.ieee802154_inner_transmit_sfd_done .text.ieee802154_inner_transmit_sfd_done) - *libieee802154.a:esp_ieee802154_frame.*(.literal.ieee802154_frame_get_security_field_len .text.ieee802154_frame_get_security_field_len) - *libieee802154.a:esp_ieee802154_frame.*(.literal.ieee802154_frame_get_security_payload_offset .text.ieee802154_frame_get_security_payload_offset) - *libieee802154.a:esp_ieee802154_frame.*(.literal.ieee802154_frame_get_src_addr .text.ieee802154_frame_get_src_addr) - *libieee802154.a:esp_ieee802154_frame.*(.literal.ieee802154_frame_security_header_offset .text.ieee802154_frame_security_header_offset) - *libieee802154.a:esp_ieee802154_frame.*(.literal.is_dst_panid_present .text.is_dst_panid_present) - *libieee802154.a:esp_ieee802154_frame.*(.literal.is_src_panid_present .text.is_src_panid_present) - *libieee802154.a:esp_ieee802154_pib.*(.literal.ieee802154_pib_get_pending_mode .text.ieee802154_pib_get_pending_mode) - *libieee802154.a:esp_ieee802154_pib.*(.literal.ieee802154_pib_get_rx_when_idle .text.ieee802154_pib_get_rx_when_idle) - *libieee802154.a:esp_ieee802154_pib.*(.literal.ieee802154_pib_update .text.ieee802154_pib_update) - *libieee802154.a:esp_ieee802154_pib.*(.literal.ieee802154_txpower_convert .text.ieee802154_txpower_convert) - *libieee802154.a:esp_ieee802154_sec.*(.literal.ieee802154_sec_update .text.ieee802154_sec_update) - *libieee802154.a:esp_ieee802154_sec.*(.literal.ieee802154_transmit_security_config .text.ieee802154_transmit_security_config) - *libieee802154.a:esp_ieee802154_timer.*(.literal.ieee802154_timer0_fire_at .text.ieee802154_timer0_fire_at) - *libieee802154.a:esp_ieee802154_timer.*(.literal.ieee802154_timer0_fire_at_with_callback .text.ieee802154_timer0_fire_at_with_callback) - *libieee802154.a:esp_ieee802154_timer.*(.literal.ieee802154_timer0_set_callback .text.ieee802154_timer0_set_callback) - *libieee802154.a:esp_ieee802154_timer.*(.literal.ieee802154_timer0_set_threshold .text.ieee802154_timer0_set_threshold) - *libieee802154.a:esp_ieee802154_timer.*(.literal.ieee802154_timer0_start .text.ieee802154_timer0_start) - *libieee802154.a:esp_ieee802154_timer.*(.literal.ieee802154_timer0_stop .text.ieee802154_timer0_stop) - *libieee802154.a:esp_ieee802154_timer.*(.literal.ieee802154_timer1_fire_at .text.ieee802154_timer1_fire_at) - *libieee802154.a:esp_ieee802154_timer.*(.literal.ieee802154_timer1_fire_at_with_callback .text.ieee802154_timer1_fire_at_with_callback) - *libieee802154.a:esp_ieee802154_timer.*(.literal.ieee802154_timer1_set_callback .text.ieee802154_timer1_set_callback) - *libieee802154.a:esp_ieee802154_timer.*(.literal.ieee802154_timer1_set_threshold .text.ieee802154_timer1_set_threshold) - *libieee802154.a:esp_ieee802154_timer.*(.literal.ieee802154_timer1_start .text.ieee802154_timer1_start) - *libieee802154.a:esp_ieee802154_timer.*(.literal.ieee802154_timer1_stop .text.ieee802154_timer1_stop) - *libieee802154.a:esp_ieee802154_timer.*(.literal.isr_handle_timer0_done .text.isr_handle_timer0_done) - *libieee802154.a:esp_ieee802154_timer.*(.literal.isr_handle_timer1_done .text.isr_handle_timer1_done) - *libieee802154.a:esp_ieee802154_util.*(.literal.ieee802154_channel_to_freq .text.ieee802154_channel_to_freq) - *libieee802154.a:esp_ieee802154_util.*(.literal.ieee802154_etm_channel_clear .text.ieee802154_etm_channel_clear) - *liblog.a:log.*(.literal .literal.* .text .text.*) - *liblog.a:log_format_text.*(.literal .literal.* .text .text.*) - *liblog.a:log_lock.*(.literal .literal.* .text .text.*) - *liblog.a:log_print.*(.literal .literal.* .text .text.*) - *liblog.a:log_timestamp.*(.literal.esp_log_early_timestamp .text.esp_log_early_timestamp) - *liblog.a:log_timestamp.*(.literal.esp_log_timestamp .text.esp_log_timestamp) - *liblog.a:log_timestamp_common.*(.literal .literal.* .text .text.*) - *liblog.a:log_write.*(.literal.esp_log_write .text.esp_log_write) - *liblog.a:log_write.*(.literal.esp_log_writev .text.esp_log_writev) - *liblog.a:tag_log_level.*(.literal.esp_log_level_get_timeout .text.esp_log_level_get_timeout) - *liblog.a:util.*(.literal .literal.* .text .text.*) - *liblwip.a:vfs_lwip.*(.literal.lwip_stop_socket_select_isr .text.lwip_stop_socket_select_isr) - *libnewlib.a:abort.*(.literal .literal.* .text .text.*) - *libnewlib.a:assert.*(.literal .literal.* .text .text.*) - *libnewlib.a:esp_time_impl.*(.literal.esp_set_time_from_rtc .text.esp_set_time_from_rtc) - *libnewlib.a:esp_time_impl.*(.literal.esp_time_impl_get_boot_time .text.esp_time_impl_get_boot_time) - *libnewlib.a:esp_time_impl.*(.literal.esp_time_impl_set_boot_time .text.esp_time_impl_set_boot_time) - *libnewlib.a:heap.*(.literal .literal.* .text .text.*) - *libnewlib.a:stdatomic.*(.literal .literal.* .text .text.*) - *libriscv.a:interrupt.*(.text .text._global_interrupt_handler .text.intr_get_item.part.0 .text.intr_handler_get_arg) - *libriscv.a:rv_utils.*(.literal .literal.* .text .text.*) - *libriscv.a:vectors.*(.literal .literal.* .text .text.*) - *librtc.a:(.literal .literal.* .text .text.*) - *libsoc.a:lldesc.*(.literal .literal.* .text .text.*) - *libspi_flash.a:esp_flash_api.*(.literal.check_chip_pointer_default .text.check_chip_pointer_default) - *libspi_flash.a:esp_flash_api.*(.literal.detect_spi_flash_chip .text.detect_spi_flash_chip) - *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_chip_driver_initialized .text.esp_flash_chip_driver_initialized) - *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_erase_chip .text.esp_flash_erase_chip) - *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_erase_region .text.esp_flash_erase_region) - *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_get_chip_write_protect .text.esp_flash_get_chip_write_protect) - *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_get_io_mode .text.esp_flash_get_io_mode) - *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_get_physical_size .text.esp_flash_get_physical_size) - *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_get_protected_region .text.esp_flash_get_protected_region) - *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_get_size .text.esp_flash_get_size) - *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_init .text.esp_flash_init) - *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_init_main .text.esp_flash_init_main) - *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_read .text.esp_flash_read) - *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_read_encrypted .text.esp_flash_read_encrypted) - *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_set_chip_write_protect .text.esp_flash_set_chip_write_protect) - *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_set_io_mode .text.esp_flash_set_io_mode) - *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_set_protected_region .text.esp_flash_set_protected_region) - *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_write .text.esp_flash_write) - *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_write_encrypted .text.esp_flash_write_encrypted) - *libspi_flash.a:esp_flash_api.*(.literal.flash_end_flush_cache .text.flash_end_flush_cache) - *libspi_flash.a:esp_flash_api.*(.literal.read_unique_id .text.read_unique_id) - *libspi_flash.a:esp_flash_api.*(.literal.spiflash_end_default .text.spiflash_end_default) - *libspi_flash.a:esp_flash_api.*(.literal.spiflash_start_default .text.spiflash_start_default) - *libspi_flash.a:flash_brownout_hook.*(.literal .literal.* .text .text.*) - *libspi_flash.a:memspi_host_driver.*(.literal .literal.* .text .text.*) - *libspi_flash.a:spi_flash_chip_boya.*(.literal .literal.* .text .text.*) - *libspi_flash.a:spi_flash_chip_gd.*(.literal .literal.* .text .text.*) - *libspi_flash.a:spi_flash_chip_generic.*(.literal .literal.* .text .text.*) - *libspi_flash.a:spi_flash_chip_issi.*(.literal .literal.* .text .text.*) - *libspi_flash.a:spi_flash_chip_mxic.*(.literal .literal.* .text .text.*) - *libspi_flash.a:spi_flash_chip_th.*(.literal .literal.* .text .text.*) - *libspi_flash.a:spi_flash_chip_winbond.*(.literal .literal.* .text .text.*) - *libspi_flash.a:spi_flash_os_func_app.*(.literal.delay_us .text.delay_us) - *libspi_flash.a:spi_flash_os_func_app.*(.literal.get_buffer_malloc .text.get_buffer_malloc) - *libspi_flash.a:spi_flash_os_func_app.*(.literal.main_flash_op_status .text.main_flash_op_status) - *libspi_flash.a:spi_flash_os_func_app.*(.literal.main_flash_region_protected .text.main_flash_region_protected) - *libspi_flash.a:spi_flash_os_func_app.*(.literal.release_buffer_malloc .text.release_buffer_malloc) - *libspi_flash.a:spi_flash_os_func_app.*(.literal.spi23_end .text.spi23_end) - *libspi_flash.a:spi_flash_os_func_app.*(.literal.spi23_start .text.spi23_start) - *libspi_flash.a:spi_flash_os_func_app.*(.literal.spi_flash_os_check_yield .text.spi_flash_os_check_yield) - *libspi_flash.a:spi_flash_os_func_app.*(.literal.spi_flash_os_yield .text.spi_flash_os_yield) - *libspi_flash.a:spi_flash_os_func_noos.*(.literal.delay_us .text.delay_us) - *libspi_flash.a:spi_flash_os_func_noos.*(.literal.esp_flash_app_disable_os_functions .text.esp_flash_app_disable_os_functions) - *libspi_flash.a:spi_flash_os_func_noos.*(.literal.get_temp_buffer_not_supported .text.get_temp_buffer_not_supported) - *libspi_flash.a:spi_flash_wrap.*(.literal .literal.* .text .text.*) - *libvfs.a:vfs.*(.literal.esp_vfs_select_triggered_isr .text.esp_vfs_select_triggered_isr) - } > sram_seg - /* Marks the end of IRAM code segment */ - .iram0.text_end (NOLOAD) : - { - /* Align the end of code region as per PMP region granularity */ - . = ALIGN(4); - - . = ALIGN(4); - _iram_text_end = ABSOLUTE(.); - } > sram_seg - .iram0.data : - { - - . = ALIGN(16); - _iram_data_start = ABSOLUTE(.); - *(.iram.data .iram.data.*) - _iram_data_end = ABSOLUTE(.); - } > sram_seg - .iram0.bss (NOLOAD) : - { - - . = ALIGN(16); - _iram_bss_start = ABSOLUTE(.); - *(.iram.bss .iram.bss.*) - _iram_bss_end = ABSOLUTE(.); - - . = ALIGN(16); - _iram_end = ABSOLUTE(.); - } > sram_seg - .dram0.data : - { - _data_start = ABSOLUTE(.); - *(.gnu.linkonce.d.*) - *(.data1) - __global_pointer$ = . + 0x800; - *(.sdata) - *(.sdata.*) - *(.gnu.linkonce.s.*) - *(.gnu.linkonce.s2.*) - *(.jcr) - *(.data .data.*) - *(.dram1 .dram1.*) - *libclang_rt.builtins.a:_divsf3.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libclang_rt.builtins.a:restore.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libclang_rt.builtins.a:save.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libesp_hw_support.a:clk_utils.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libesp_hw_support.a:esp_memory_utils.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libesp_hw_support.a:mspi_timing_tuning.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libesp_hw_support.a:pmu_sleep.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libesp_hw_support.a:rtc_clk.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libesp_hw_support.a:sleep_console.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libesp_hw_support.a:systimer.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libesp_mm.a:esp_cache_msync.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libesp_mm.a:esp_cache_utils.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libesp_rom.a:esp_rom_print.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libesp_rom.a:esp_rom_spiflash.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libesp_rom.a:esp_rom_sys.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libesp_rom.a:esp_rom_systimer.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libesp_rom.a:esp_rom_tlsf.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libesp_rom.a:esp_rom_wdt.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libesp_system.a:esp_err.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libesp_system.a:image_process.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libesp_system.a:ubsan.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libgcc.a:_divsf3.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libgcc.a:save-restore.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libgcov.a:(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libhal.a:cache_hal.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libhal.a:i2c_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libhal.a:ledc_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libhal.a:mmu_hal.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libhal.a:pmu_hal.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libhal.a:spi_flash_encrypt_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libhal.a:spi_flash_hal_gpspi.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libhal.a:spi_flash_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libhal.a:spi_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libhal.a:spi_slave_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libhal.a:uart_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *liblog.a:log.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *liblog.a:log_format_text.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *liblog.a:log_lock.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *liblog.a:log_print.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *liblog.a:log_timestamp_common.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *liblog.a:util.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libnewlib.a:abort.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libnewlib.a:assert.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libnewlib.a:heap.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libnewlib.a:stdatomic.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libphy.a:(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libsoc.a:lldesc.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libsoc.a:temperature_sensor_periph.*(.rodata.temperature_sensor_attributes .sdata2.temperature_sensor_attributes .srodata.temperature_sensor_attributes) - *libspi_flash.a:flash_brownout_hook.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libspi_flash.a:memspi_host_driver.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libspi_flash.a:spi_flash_chip_boya.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libspi_flash.a:spi_flash_chip_gd.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libspi_flash.a:spi_flash_chip_generic.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libspi_flash.a:spi_flash_chip_issi.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libspi_flash.a:spi_flash_chip_mxic.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libspi_flash.a:spi_flash_chip_th.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libspi_flash.a:spi_flash_chip_winbond.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libspi_flash.a:spi_flash_wrap.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - _data_end = ABSOLUTE(.); - } > sram_seg - /** - - * This section holds data that should not be initialized at power up. - - * The section located in Internal SRAM memory region. The macro _NOINIT - - * can be used as attribute to place data into this section. - - * See the "esp_attr.h" file for more information. - - */ - .noinit (NOLOAD): - { - - . = ALIGN(4); - _noinit_start = ABSOLUTE(.); - *(.noinit .noinit.*) - - . = ALIGN(4); - _noinit_end = ABSOLUTE(.); - } > sram_seg - /* Shared RAM */ - .dram0.bss (NOLOAD) : - { - - . = ALIGN(8); - _bss_start = ABSOLUTE(.); - /** - - * ldgen places all bss-related data to mapping[dram0_bss] - - * (See components/esp_system/app.lf). - - */ - *(.bss .bss.*) - *(.dynbss .dynsbss .gnu.linkonce.b .gnu.linkonce.b.* .gnu.linkonce.sb .gnu.linkonce.sb.* .gnu.linkonce.sb2 .gnu.linkonce.sb2.* .sbss .sbss.* .sbss2 .sbss2.* .scommon .share.mem) - *(.ext_ram.bss .ext_ram.bss.*) - *(COMMON) - - . = ALIGN(8); - _bss_end = ABSOLUTE(.); - } > sram_seg - .flash.text : - { - _stext = .; - /** - - * Mark the start of flash.text. - - * This can be used by the MMU driver to maintain the virtual address. - - */ - _instruction_reserved_start = ABSOLUTE(.); - _text_start = ABSOLUTE(.); - *(EXCLUDE_FILE(*libesp_ringbuf.a *libfreertos.a *libgcov.a *librtc.a *libclang_rt.builtins.a:_divsf3.* *libclang_rt.builtins.a:restore.* *libclang_rt.builtins.a:save.* *libesp_driver_ana_cmpr.a:ana_cmpr.* *libesp_driver_gptimer.a:gptimer.* *libesp_driver_i2c.a:i2c_master.* *libesp_driver_mcpwm.a:mcpwm_cap.* *libesp_driver_mcpwm.a:mcpwm_cmpr.* *libesp_driver_mcpwm.a:mcpwm_fault.* *libesp_driver_mcpwm.a:mcpwm_oper.* *libesp_driver_mcpwm.a:mcpwm_timer.* *libesp_driver_parlio.a:parlio_rx.* *libesp_driver_parlio.a:parlio_tx.* *libesp_driver_rmt.a:rmt_encoder.* *libesp_driver_rmt.a:rmt_rx.* *libesp_driver_rmt.a:rmt_tx.* *libesp_driver_uart.a:uart_vfs.* *libesp_driver_usb_serial_jtag.a:usb_serial_jtag_vfs.* *libesp_event.a:default_event_loop.* *libesp_event.a:esp_event.* *libesp_hw_support.a:adc_share_hw_ctrl.* *libesp_hw_support.a:clk_utils.* *libesp_hw_support.a:cpu.* *libesp_hw_support.a:esp_clk.* *libesp_hw_support.a:esp_clk_tree.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:gdma.* *libesp_hw_support.a:gdma_link.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:periph_ctrl.* *libesp_hw_support.a:pmu_param.* *libesp_hw_support.a:pmu_sleep.* *libesp_hw_support.a:regi2c_ctrl.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:rtc_time.* *libesp_hw_support.a:sar_periph_ctrl.* *libesp_hw_support.a:sar_periph_ctrl_common.* *libesp_hw_support.a:sleep_clock.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:sleep_cpu.* *libesp_hw_support.a:sleep_modem.* *libesp_hw_support.a:sleep_modes.* *libesp_hw_support.a:sleep_system_peripheral.* *libesp_hw_support.a:systimer.* *libesp_mm.a:esp_cache_msync.* *libesp_mm.a:esp_cache_utils.* *libesp_phy.a:phy_override.* *libesp_pm.a:pm_impl.* *libesp_rom.a:esp_rom_print.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_tlsf.* *libesp_rom.a:esp_rom_wdt.* *libesp_system.a:esp_err.* *libesp_system.a:esp_system_chip.* *libesp_system.a:freertos_hooks.* *libesp_system.a:image_process.* *libesp_system.a:panic.* *libesp_system.a:reset_reason.* *libesp_system.a:system_internal.* *libesp_system.a:system_time.* *libesp_system.a:ubsan.* *libesp_timer.a:esp_timer_impl_common.* *libesp_timer.a:esp_timer_impl_systimer.* *libgcc.a:_divsf3.* *libgcc.a:lib2funcs.* *libgcc.a:save-restore.* *libhal.a:cache_hal.* *libhal.a:gdma_hal_ahb_v1.* *libhal.a:gdma_hal_top.* *libhal.a:gpio_hal.* *libhal.a:i2c_hal_iram.* *libhal.a:ledc_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:pmu_hal.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:timer_hal.* *libhal.a:uart_hal_iram.* *libheap.a:multi_heap.* *libieee802154.a:esp_ieee802154.* *libieee802154.a:esp_ieee802154_ack.* *libieee802154.a:esp_ieee802154_dev.* *libieee802154.a:esp_ieee802154_event.* *libieee802154.a:esp_ieee802154_frame.* *libieee802154.a:esp_ieee802154_pib.* *libieee802154.a:esp_ieee802154_sec.* *libieee802154.a:esp_ieee802154_timer.* *libieee802154.a:esp_ieee802154_util.* *liblog.a:log.* *liblog.a:log_format_text.* *liblog.a:log_lock.* *liblog.a:log_print.* *liblog.a:log_timestamp.* *liblog.a:log_timestamp_common.* *liblog.a:log_write.* *liblog.a:tag_log_level.* *liblog.a:util.* *liblwip.a:vfs_lwip.* *libnewlib.a:abort.* *libnewlib.a:assert.* *libnewlib.a:esp_time_impl.* *libnewlib.a:heap.* *libnewlib.a:stdatomic.* *libriscv.a:interrupt.* *libriscv.a:rv_utils.* *libriscv.a:vectors.* *libsoc.a:lldesc.* *libspi_flash.a:esp_flash_api.* *libspi_flash.a:flash_brownout_hook.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_os_func_app.* *libspi_flash.a:spi_flash_os_func_noos.* *libspi_flash.a:spi_flash_wrap.* *libvfs.a:vfs.*) .literal EXCLUDE_FILE(*libesp_ringbuf.a *libfreertos.a *libgcov.a *librtc.a *libclang_rt.builtins.a:_divsf3.* *libclang_rt.builtins.a:restore.* *libclang_rt.builtins.a:save.* *libesp_driver_ana_cmpr.a:ana_cmpr.* *libesp_driver_gptimer.a:gptimer.* *libesp_driver_i2c.a:i2c_master.* *libesp_driver_mcpwm.a:mcpwm_cap.* *libesp_driver_mcpwm.a:mcpwm_cmpr.* *libesp_driver_mcpwm.a:mcpwm_fault.* *libesp_driver_mcpwm.a:mcpwm_oper.* *libesp_driver_mcpwm.a:mcpwm_timer.* *libesp_driver_parlio.a:parlio_rx.* *libesp_driver_parlio.a:parlio_tx.* *libesp_driver_rmt.a:rmt_encoder.* *libesp_driver_rmt.a:rmt_rx.* *libesp_driver_rmt.a:rmt_tx.* *libesp_driver_uart.a:uart_vfs.* *libesp_driver_usb_serial_jtag.a:usb_serial_jtag_vfs.* *libesp_event.a:default_event_loop.* *libesp_event.a:esp_event.* *libesp_hw_support.a:adc_share_hw_ctrl.* *libesp_hw_support.a:clk_utils.* *libesp_hw_support.a:cpu.* *libesp_hw_support.a:esp_clk.* *libesp_hw_support.a:esp_clk_tree.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:gdma.* *libesp_hw_support.a:gdma_link.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:periph_ctrl.* *libesp_hw_support.a:pmu_param.* *libesp_hw_support.a:pmu_sleep.* *libesp_hw_support.a:regi2c_ctrl.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:rtc_time.* *libesp_hw_support.a:sar_periph_ctrl.* *libesp_hw_support.a:sar_periph_ctrl_common.* *libesp_hw_support.a:sleep_clock.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:sleep_cpu.* *libesp_hw_support.a:sleep_modem.* *libesp_hw_support.a:sleep_modes.* *libesp_hw_support.a:sleep_system_peripheral.* *libesp_hw_support.a:systimer.* *libesp_mm.a:esp_cache_msync.* *libesp_mm.a:esp_cache_utils.* *libesp_phy.a:phy_override.* *libesp_pm.a:pm_impl.* *libesp_rom.a:esp_rom_print.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_tlsf.* *libesp_rom.a:esp_rom_wdt.* *libesp_system.a:esp_err.* *libesp_system.a:esp_system_chip.* *libesp_system.a:freertos_hooks.* *libesp_system.a:image_process.* *libesp_system.a:panic.* *libesp_system.a:reset_reason.* *libesp_system.a:system_internal.* *libesp_system.a:system_time.* *libesp_system.a:ubsan.* *libesp_timer.a:esp_timer_impl_common.* *libesp_timer.a:esp_timer_impl_systimer.* *libgcc.a:_divsf3.* *libgcc.a:lib2funcs.* *libgcc.a:save-restore.* *libhal.a:cache_hal.* *libhal.a:gdma_hal_ahb_v1.* *libhal.a:gdma_hal_top.* *libhal.a:gpio_hal.* *libhal.a:i2c_hal_iram.* *libhal.a:ledc_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:pmu_hal.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:timer_hal.* *libhal.a:uart_hal_iram.* *libheap.a:multi_heap.* *libieee802154.a:esp_ieee802154.* *libieee802154.a:esp_ieee802154_ack.* *libieee802154.a:esp_ieee802154_dev.* *libieee802154.a:esp_ieee802154_event.* *libieee802154.a:esp_ieee802154_frame.* *libieee802154.a:esp_ieee802154_pib.* *libieee802154.a:esp_ieee802154_sec.* *libieee802154.a:esp_ieee802154_timer.* *libieee802154.a:esp_ieee802154_util.* *liblog.a:log.* *liblog.a:log_format_text.* *liblog.a:log_lock.* *liblog.a:log_print.* *liblog.a:log_timestamp.* *liblog.a:log_timestamp_common.* *liblog.a:log_write.* *liblog.a:tag_log_level.* *liblog.a:util.* *liblwip.a:vfs_lwip.* *libnewlib.a:abort.* *libnewlib.a:assert.* *libnewlib.a:esp_time_impl.* *libnewlib.a:heap.* *libnewlib.a:stdatomic.* *libriscv.a:interrupt.* *libriscv.a:rv_utils.* *libriscv.a:vectors.* *libsoc.a:lldesc.* *libspi_flash.a:esp_flash_api.* *libspi_flash.a:flash_brownout_hook.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_os_func_app.* *libspi_flash.a:spi_flash_os_func_noos.* *libspi_flash.a:spi_flash_wrap.* *libvfs.a:vfs.*) .literal.* EXCLUDE_FILE(*libesp_ringbuf.a *libfreertos.a *libgcov.a *librtc.a *libclang_rt.builtins.a:_divsf3.* *libclang_rt.builtins.a:restore.* *libclang_rt.builtins.a:save.* *libesp_driver_ana_cmpr.a:ana_cmpr.* *libesp_driver_gptimer.a:gptimer.* *libesp_driver_i2c.a:i2c_master.* *libesp_driver_mcpwm.a:mcpwm_cap.* *libesp_driver_mcpwm.a:mcpwm_cmpr.* *libesp_driver_mcpwm.a:mcpwm_fault.* *libesp_driver_mcpwm.a:mcpwm_oper.* *libesp_driver_mcpwm.a:mcpwm_timer.* *libesp_driver_parlio.a:parlio_rx.* *libesp_driver_parlio.a:parlio_tx.* *libesp_driver_rmt.a:rmt_encoder.* *libesp_driver_rmt.a:rmt_rx.* *libesp_driver_rmt.a:rmt_tx.* *libesp_driver_uart.a:uart_vfs.* *libesp_driver_usb_serial_jtag.a:usb_serial_jtag_vfs.* *libesp_event.a:default_event_loop.* *libesp_event.a:esp_event.* *libesp_hw_support.a:adc_share_hw_ctrl.* *libesp_hw_support.a:clk_utils.* *libesp_hw_support.a:cpu.* *libesp_hw_support.a:esp_clk.* *libesp_hw_support.a:esp_clk_tree.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:gdma.* *libesp_hw_support.a:gdma_link.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:periph_ctrl.* *libesp_hw_support.a:pmu_param.* *libesp_hw_support.a:pmu_sleep.* *libesp_hw_support.a:regi2c_ctrl.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:rtc_time.* *libesp_hw_support.a:sar_periph_ctrl.* *libesp_hw_support.a:sar_periph_ctrl_common.* *libesp_hw_support.a:sleep_clock.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:sleep_cpu.* *libesp_hw_support.a:sleep_modem.* *libesp_hw_support.a:sleep_modes.* *libesp_hw_support.a:sleep_system_peripheral.* *libesp_hw_support.a:systimer.* *libesp_mm.a:esp_cache_msync.* *libesp_mm.a:esp_cache_utils.* *libesp_phy.a:phy_override.* *libesp_pm.a:pm_impl.* *libesp_rom.a:esp_rom_print.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_tlsf.* *libesp_rom.a:esp_rom_wdt.* *libesp_system.a:esp_err.* *libesp_system.a:esp_system_chip.* *libesp_system.a:freertos_hooks.* *libesp_system.a:image_process.* *libesp_system.a:panic.* *libesp_system.a:reset_reason.* *libesp_system.a:system_internal.* *libesp_system.a:system_time.* *libesp_system.a:ubsan.* *libesp_timer.a:esp_timer_impl_common.* *libesp_timer.a:esp_timer_impl_systimer.* *libgcc.a:_divsf3.* *libgcc.a:lib2funcs.* *libgcc.a:save-restore.* *libhal.a:cache_hal.* *libhal.a:gdma_hal_ahb_v1.* *libhal.a:gdma_hal_top.* *libhal.a:gpio_hal.* *libhal.a:i2c_hal_iram.* *libhal.a:ledc_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:pmu_hal.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:timer_hal.* *libhal.a:uart_hal_iram.* *libheap.a:multi_heap.* *libieee802154.a:esp_ieee802154.* *libieee802154.a:esp_ieee802154_ack.* *libieee802154.a:esp_ieee802154_dev.* *libieee802154.a:esp_ieee802154_event.* *libieee802154.a:esp_ieee802154_frame.* *libieee802154.a:esp_ieee802154_pib.* *libieee802154.a:esp_ieee802154_sec.* *libieee802154.a:esp_ieee802154_timer.* *libieee802154.a:esp_ieee802154_util.* *liblog.a:log.* *liblog.a:log_format_text.* *liblog.a:log_lock.* *liblog.a:log_print.* *liblog.a:log_timestamp.* *liblog.a:log_timestamp_common.* *liblog.a:log_write.* *liblog.a:tag_log_level.* *liblog.a:util.* *liblwip.a:vfs_lwip.* *libnewlib.a:abort.* *libnewlib.a:assert.* *libnewlib.a:esp_time_impl.* *libnewlib.a:heap.* *libnewlib.a:stdatomic.* *libriscv.a:interrupt.* *libriscv.a:rv_utils.* *libriscv.a:vectors.* *libsoc.a:lldesc.* *libspi_flash.a:esp_flash_api.* *libspi_flash.a:flash_brownout_hook.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_os_func_app.* *libspi_flash.a:spi_flash_os_func_noos.* *libspi_flash.a:spi_flash_wrap.* *libvfs.a:vfs.*) .text EXCLUDE_FILE(*libesp_ringbuf.a *libfreertos.a *libgcov.a *librtc.a *libclang_rt.builtins.a:_divsf3.* *libclang_rt.builtins.a:restore.* *libclang_rt.builtins.a:save.* *libesp_driver_ana_cmpr.a:ana_cmpr.* *libesp_driver_gptimer.a:gptimer.* *libesp_driver_i2c.a:i2c_master.* *libesp_driver_mcpwm.a:mcpwm_cap.* *libesp_driver_mcpwm.a:mcpwm_cmpr.* *libesp_driver_mcpwm.a:mcpwm_fault.* *libesp_driver_mcpwm.a:mcpwm_oper.* *libesp_driver_mcpwm.a:mcpwm_timer.* *libesp_driver_parlio.a:parlio_rx.* *libesp_driver_parlio.a:parlio_tx.* *libesp_driver_rmt.a:rmt_encoder.* *libesp_driver_rmt.a:rmt_rx.* *libesp_driver_rmt.a:rmt_tx.* *libesp_driver_uart.a:uart_vfs.* *libesp_driver_usb_serial_jtag.a:usb_serial_jtag_vfs.* *libesp_event.a:default_event_loop.* *libesp_event.a:esp_event.* *libesp_hw_support.a:adc_share_hw_ctrl.* *libesp_hw_support.a:clk_utils.* *libesp_hw_support.a:cpu.* *libesp_hw_support.a:esp_clk.* *libesp_hw_support.a:esp_clk_tree.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:gdma.* *libesp_hw_support.a:gdma_link.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:periph_ctrl.* *libesp_hw_support.a:pmu_param.* *libesp_hw_support.a:pmu_sleep.* *libesp_hw_support.a:regi2c_ctrl.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:rtc_time.* *libesp_hw_support.a:sar_periph_ctrl.* *libesp_hw_support.a:sar_periph_ctrl_common.* *libesp_hw_support.a:sleep_clock.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:sleep_cpu.* *libesp_hw_support.a:sleep_modem.* *libesp_hw_support.a:sleep_modes.* *libesp_hw_support.a:sleep_system_peripheral.* *libesp_hw_support.a:systimer.* *libesp_mm.a:esp_cache_msync.* *libesp_mm.a:esp_cache_utils.* *libesp_phy.a:phy_override.* *libesp_pm.a:pm_impl.* *libesp_rom.a:esp_rom_print.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_tlsf.* *libesp_rom.a:esp_rom_wdt.* *libesp_system.a:esp_err.* *libesp_system.a:esp_system_chip.* *libesp_system.a:freertos_hooks.* *libesp_system.a:image_process.* *libesp_system.a:panic.* *libesp_system.a:reset_reason.* *libesp_system.a:system_internal.* *libesp_system.a:system_time.* *libesp_system.a:ubsan.* *libesp_timer.a:esp_timer_impl_common.* *libesp_timer.a:esp_timer_impl_systimer.* *libgcc.a:_divsf3.* *libgcc.a:lib2funcs.* *libgcc.a:save-restore.* *libhal.a:cache_hal.* *libhal.a:gdma_hal_ahb_v1.* *libhal.a:gdma_hal_top.* *libhal.a:gpio_hal.* *libhal.a:i2c_hal_iram.* *libhal.a:ledc_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:pmu_hal.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:timer_hal.* *libhal.a:uart_hal_iram.* *libheap.a:multi_heap.* *libieee802154.a:esp_ieee802154.* *libieee802154.a:esp_ieee802154_ack.* *libieee802154.a:esp_ieee802154_dev.* *libieee802154.a:esp_ieee802154_event.* *libieee802154.a:esp_ieee802154_frame.* *libieee802154.a:esp_ieee802154_pib.* *libieee802154.a:esp_ieee802154_sec.* *libieee802154.a:esp_ieee802154_timer.* *libieee802154.a:esp_ieee802154_util.* *liblog.a:log.* *liblog.a:log_format_text.* *liblog.a:log_lock.* *liblog.a:log_print.* *liblog.a:log_timestamp.* *liblog.a:log_timestamp_common.* *liblog.a:log_write.* *liblog.a:tag_log_level.* *liblog.a:util.* *liblwip.a:vfs_lwip.* *libnewlib.a:abort.* *libnewlib.a:assert.* *libnewlib.a:esp_time_impl.* *libnewlib.a:heap.* *libnewlib.a:stdatomic.* *libriscv.a:interrupt.* *libriscv.a:rv_utils.* *libriscv.a:vectors.* *libsoc.a:lldesc.* *libspi_flash.a:esp_flash_api.* *libspi_flash.a:flash_brownout_hook.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_os_func_app.* *libspi_flash.a:spi_flash_os_func_noos.* *libspi_flash.a:spi_flash_wrap.* *libvfs.a:vfs.*) .text.*) - *libesp_driver_ana_cmpr.a:ana_cmpr.*(.text .text.ana_cmpr_del_unit .text.ana_cmpr_destroy_unit .text.ana_cmpr_disable .text.ana_cmpr_enable .text.ana_cmpr_get_gpio .text.ana_cmpr_get_unit_id .text.ana_cmpr_new_unit .text.ana_cmpr_register_event_callbacks .text.ana_cmpr_set_cross_type .text.ana_cmpr_set_debounce .text.ana_cmpr_set_internal_reference) - *libesp_driver_gptimer.a:gptimer.*(.text .text.gptimer_del_timer .text.gptimer_destroy .text.gptimer_disable .text.gptimer_enable .text.gptimer_get_captured_count .text.gptimer_get_raw_count .text.gptimer_get_resolution .text.gptimer_new_timer .text.gptimer_register_event_callbacks .text.gptimer_set_alarm_action .text.gptimer_set_raw_count .text.gptimer_start .text.gptimer_stop) - *libesp_driver_i2c.a:i2c_master.*(.text .text.i2c_del_master_bus .text.i2c_ll_master_set_fractional_divider.constprop.0 .text.i2c_master_bus_add_device .text.i2c_master_bus_destroy .text.i2c_master_bus_reset .text.i2c_master_bus_rm_device .text.i2c_master_bus_wait_all_done .text.i2c_master_device_change_address .text.i2c_master_execute_defined_operations .text.i2c_master_get_bus_handle .text.i2c_master_multi_buffer_transmit .text.i2c_master_probe .text.i2c_master_receive .text.i2c_master_register_event_callbacks .text.i2c_master_transmit .text.i2c_master_transmit_receive .text.i2c_new_master_bus .text.s_i2c_asynchronous_transaction .text.s_i2c_hw_fsm_reset.constprop.0 .text.s_i2c_read_command .text.s_i2c_send_command_async .text.s_i2c_send_commands .text.s_i2c_start_end_command .text.s_i2c_synchronous_transaction .text.s_i2c_transaction_start .text.s_i2c_write_command) - *libesp_driver_mcpwm.a:mcpwm_cap.*(.text .text.mcpwm_cap_timer_destroy.isra.0 .text.mcpwm_capture_channel_destroy .text.mcpwm_capture_channel_disable .text.mcpwm_capture_channel_enable .text.mcpwm_capture_channel_register_event_callbacks .text.mcpwm_capture_channel_trigger_soft_catch .text.mcpwm_capture_timer_disable .text.mcpwm_capture_timer_enable .text.mcpwm_capture_timer_get_resolution .text.mcpwm_capture_timer_set_phase_on_sync .text.mcpwm_capture_timer_start .text.mcpwm_capture_timer_stop .text.mcpwm_del_capture_channel .text.mcpwm_del_capture_timer .text.mcpwm_new_capture_channel .text.mcpwm_new_capture_timer) - *libesp_driver_mcpwm.a:mcpwm_cmpr.*(.text .text.mcpwm_comparator_destroy .text.mcpwm_comparator_register_event_callbacks .text.mcpwm_comparator_set_compare_value .text.mcpwm_del_comparator .text.mcpwm_new_comparator) - *libesp_driver_mcpwm.a:mcpwm_fault.*(.text .text.mcpwm_del_fault .text.mcpwm_del_gpio_fault .text.mcpwm_del_soft_fault .text.mcpwm_fault_register_event_callbacks .text.mcpwm_gpio_fault_destroy .text.mcpwm_new_gpio_fault .text.mcpwm_new_soft_fault .text.mcpwm_soft_fault_activate) - *libesp_driver_mcpwm.a:mcpwm_oper.*(.text .text.mcpwm_del_operator .text.mcpwm_new_operator .text.mcpwm_operator_apply_carrier .text.mcpwm_operator_connect_timer .text.mcpwm_operator_destroy .text.mcpwm_operator_recover_from_fault .text.mcpwm_operator_register_event_callbacks .text.mcpwm_operator_set_brake_on_fault) - *libesp_driver_mcpwm.a:mcpwm_timer.*(.text .text.mcpwm_del_timer .text.mcpwm_new_timer .text.mcpwm_timer_destroy .text.mcpwm_timer_disable .text.mcpwm_timer_enable .text.mcpwm_timer_get_phase .text.mcpwm_timer_register_event_callbacks .text.mcpwm_timer_set_period .text.mcpwm_timer_set_phase_on_sync .text.mcpwm_timer_start_stop) - *libesp_driver_parlio.a:parlio_rx.*(.text .text.parlio_del_rx_delimiter .text.parlio_del_rx_unit .text.parlio_destroy_rx_unit .text.parlio_new_rx_level_delimiter .text.parlio_new_rx_pulse_delimiter .text.parlio_new_rx_soft_delimiter .text.parlio_new_rx_unit .text.parlio_rx_soft_delimiter_start_stop .text.parlio_rx_unit_disable .text.parlio_rx_unit_enable .text.parlio_rx_unit_receive .text.parlio_rx_unit_register_event_callbacks .text.parlio_rx_unit_wait_all_done) - *libesp_driver_parlio.a:parlio_tx.*(.text .text.parlio_del_tx_unit .text.parlio_destroy_tx_unit .text.parlio_new_tx_unit .text.parlio_tx_get_alignment_constraints .text.parlio_tx_unit_disable .text.parlio_tx_unit_enable .text.parlio_tx_unit_register_event_callbacks .text.parlio_tx_unit_transmit .text.parlio_tx_unit_wait_all_done) - *libesp_driver_rmt.a:rmt_encoder.*(.text .text.rmt_alloc_encoder_mem .text.rmt_del_encoder) - *libesp_driver_rmt.a:rmt_rx.*(.text .text.rmt_del_rx_channel .text.rmt_new_rx_channel .text.rmt_receive .text.rmt_rx_demodulate_carrier .text.rmt_rx_destroy .text.rmt_rx_disable .text.rmt_rx_enable .text.rmt_rx_register_event_callbacks) - *libesp_driver_rmt.a:rmt_tx.*(.text .text.rmt_del_sync_manager .text.rmt_del_tx_channel .text.rmt_new_sync_manager .text.rmt_new_tx_channel .text.rmt_sync_reset .text.rmt_transmit .text.rmt_tx_destroy .text.rmt_tx_disable .text.rmt_tx_enable .text.rmt_tx_modulate_carrier .text.rmt_tx_register_event_callbacks .text.rmt_tx_switch_gpio .text.rmt_tx_wait_all_done) - *libesp_driver_uart.a:uart_vfs.*(.text .text.__esp_system_init_fn_init_vfs_uart .text.esp_vfs_uart_get_vfs .text.uart_access .text.uart_close .text.uart_end_select .text.uart_fcntl .text.uart_fstat .text.uart_fstat.part.0 .text.uart_fsync .text.uart_get_avail_data_len .text.uart_get_avail_data_len_via_driver .text.uart_open .text.uart_read .text.uart_read_char .text.uart_return_char .text.uart_rx_char .text.uart_rx_char_via_driver .text.uart_start_select .text.uart_tcdrain .text.uart_tcflush .text.uart_tcgetattr .text.uart_tcsetattr .text.uart_tx_char .text.uart_tx_char_via_driver .text.uart_vfs_dev_port_set_rx_line_endings .text.uart_vfs_dev_port_set_tx_line_endings .text.uart_vfs_dev_register .text.uart_vfs_dev_set_rx_line_endings .text.uart_vfs_dev_set_tx_line_endings .text.uart_vfs_dev_use_driver .text.uart_vfs_dev_use_nonblocking .text.uart_vfs_include_dev_init .text.uart_write) - *libesp_driver_usb_serial_jtag.a:usb_serial_jtag_vfs.*(.text .text.__esp_system_init_fn_init_vfs_usj_sec .text.esp_vfs_usb_serial_jtag_get_vfs .text.usb_serial_jtag_close .text.usb_serial_jtag_end_select .text.usb_serial_jtag_fcntl .text.usb_serial_jtag_fstat .text.usb_serial_jtag_fsync .text.usb_serial_jtag_open .text.usb_serial_jtag_read .text.usb_serial_jtag_read_char.constprop.0 .text.usb_serial_jtag_return_char.constprop.0 .text.usb_serial_jtag_rx_char_no_driver .text.usb_serial_jtag_start_select .text.usb_serial_jtag_tcdrain .text.usb_serial_jtag_tcflush .text.usb_serial_jtag_tcgetattr .text.usb_serial_jtag_tcsetattr .text.usb_serial_jtag_tx_char_no_driver .text.usb_serial_jtag_vfs_include_dev_init .text.usb_serial_jtag_vfs_register .text.usb_serial_jtag_vfs_set_rx_line_endings .text.usb_serial_jtag_vfs_set_tx_line_endings .text.usb_serial_jtag_vfs_use_driver .text.usb_serial_jtag_vfs_use_nonblocking .text.usb_serial_jtag_wait_tx_done_no_driver .text.usb_serial_jtag_write .text.usbjtag_rx_char_via_driver .text.usbjtag_tx_char_via_driver .text.usbjtag_wait_tx_done_via_driver) - *libesp_event.a:default_event_loop.*(.text .text.esp_event_handler_instance_register .text.esp_event_handler_instance_unregister .text.esp_event_handler_register .text.esp_event_handler_unregister .text.esp_event_loop_create_default .text.esp_event_loop_delete_default .text.esp_event_post) - *libesp_event.a:esp_event.*(.text .text.base_node_add_handler .text.esp_event_dump .text.esp_event_handler_instance_register_with .text.esp_event_handler_instance_unregister_with .text.esp_event_handler_register_with .text.esp_event_handler_register_with_internal .text.esp_event_handler_unregister_with .text.esp_event_handler_unregister_with_internal .text.esp_event_loop_create .text.esp_event_loop_delete .text.esp_event_loop_run .text.esp_event_loop_run_task .text.esp_event_post_to .text.handler_instances_add .text.handler_instances_remove .text.handler_instances_remove_all .text.loop_node_add_handler .text.loop_remove_handler) - *libesp_hw_support.a:adc_share_hw_ctrl.*(.text .text.adc2_wifi_acquire .text.adc2_wifi_release .text.adc_calc_hw_calibration_code .text.adc_load_hw_calibration_chan_compens .text.adc_lock_acquire .text.adc_lock_release .text.adc_lock_try_acquire) - *libesp_hw_support.a:cpu.*(.text .text.esp_cpu_clear_breakpoint .text.esp_cpu_clear_watchpoint .text.esp_cpu_set_breakpoint .text.esp_cpu_set_watchpoint .text.semihosting_call_noerrno) - *libesp_hw_support.a:esp_clk.*(.text .text.esp_clk_rtc_time) - *libesp_hw_support.a:esp_clk_tree.*(.text .text.esp_clk_tree_src_get_freq_hz) - *libesp_hw_support.a:gdma.*(.text .text.gdma_apply_strategy .text.gdma_config_transfer .text.gdma_connect .text.gdma_del_channel .text.gdma_del_rx_channel .text.gdma_del_tx_channel .text.gdma_disconnect .text.gdma_get_alignment_constraints .text.gdma_get_free_m2m_trig_id_mask .text.gdma_get_group_channel_id .text.gdma_new_ahb_channel .text.gdma_register_rx_event_callbacks .text.gdma_register_tx_event_callbacks .text.gdma_release_group_handle .text.gdma_release_group_handle.part.0 .text.gdma_release_pair_handle .text.gdma_set_priority) - *libesp_hw_support.a:gdma_link.*(.text .text.gdma_del_link_list .text.gdma_link_count_buffer_size_till_eof .text.gdma_link_get_length .text.gdma_link_get_owner .text.gdma_link_set_owner .text.gdma_new_link_list) - *libesp_hw_support.a:periph_ctrl.*(.text .text.periph_ll_get_clk_en_mask .text.periph_ll_get_clk_en_reg .text.periph_ll_get_rst_en_mask .text.periph_ll_get_rst_en_reg .text.periph_module_disable .text.periph_module_enable) - *libesp_hw_support.a:pmu_param.*(.text .text.pmu_hp_system_analog_param_default .text.pmu_hp_system_clock_param_default .text.pmu_hp_system_digital_param_default .text.pmu_hp_system_power_param_default .text.pmu_hp_system_retention_param_default .text.pmu_lp_system_analog_param_default .text.pmu_lp_system_power_param_default) - *libesp_hw_support.a:regi2c_ctrl.*(.text) - *libesp_hw_support.a:sar_periph_ctrl.*(.text .text.s_sar_power_acquire .text.s_sar_power_release .text.sar_periph_ctrl_adc_continuous_power_acquire .text.sar_periph_ctrl_adc_continuous_power_release .text.sar_periph_ctrl_adc_oneshot_power_acquire .text.sar_periph_ctrl_adc_oneshot_power_release .text.sar_periph_ctrl_init .text.sar_periph_ctrl_pwdet_power_acquire .text.sar_periph_ctrl_pwdet_power_release) - *libesp_hw_support.a:sar_periph_ctrl_common.*(.text .text.temp_sensor_sync_tsens_idx) - *libesp_hw_support.a:sleep_clock.*(.text .text.__esp_system_init_fn_sleep_clock_startup_init .text.sleep_clock_system_retention_init) - *libesp_hw_support.a:sleep_cpu.*(.text .text.cpu_domain_dev_sleep_frame_alloc_and_init .text.esp_sleep_cpu_retention_deinit .text.esp_sleep_cpu_retention_deinit_impl.isra.0 .text.esp_sleep_cpu_retention_init .text.esp_sleep_cpu_retention_init_impl .text.sleep_cpu_configure) - *libesp_hw_support.a:sleep_modem.*(.text .text.esp_pm_register_inform_out_light_sleep_overhead_callback .text.esp_pm_register_light_sleep_default_params_config_callback .text.esp_pm_unregister_inform_out_light_sleep_overhead_callback .text.esp_pm_unregister_light_sleep_default_params_config_callback .text.sleep_modem_configure) - *libesp_hw_support.a:sleep_modes.*(.text .text.esp_deep_sleep .text.esp_deep_sleep_deregister_hook .text.esp_deep_sleep_deregister_phy_hook .text.esp_deep_sleep_register_hook .text.esp_deep_sleep_register_phy_hook .text.esp_deep_sleep_try .text.esp_get_deep_sleep_wake_stub .text.esp_sleep_clock_config .text.esp_sleep_disable_bt_wakeup .text.esp_sleep_disable_ext1_wakeup_io .text.esp_sleep_disable_wakeup_source .text.esp_sleep_disable_wifi_beacon_wakeup .text.esp_sleep_disable_wifi_wakeup .text.esp_sleep_enable_adc_tsens_monitor .text.esp_sleep_enable_bt_wakeup .text.esp_sleep_enable_ext1_wakeup .text.esp_sleep_enable_ext1_wakeup_io .text.esp_sleep_enable_ext1_wakeup_with_level_mask .text.esp_sleep_enable_gpio_wakeup .text.esp_sleep_enable_uart_wakeup .text.esp_sleep_enable_ulp_wakeup .text.esp_sleep_enable_vbat_under_volt_wakeup .text.esp_sleep_enable_wifi_beacon_wakeup .text.esp_sleep_enable_wifi_wakeup .text.esp_sleep_get_ext1_wakeup_status .text.esp_sleep_get_wakeup_cause .text.esp_sleep_is_valid_wakeup_gpio .text.esp_sleep_overhead_out_time_refresh .text.esp_sleep_pd_config .text.esp_sleep_periph_use_8m .text.esp_sleep_sub_mode_config .text.esp_sleep_sub_mode_dump_config .text.esp_sleep_sub_mode_force_disable .text.rtc_sleep_enable_ultra_low .text.s_sleep_hook_deregister .text.s_sleep_hook_register) - *libesp_hw_support.a:sleep_system_peripheral.*(.text) - *libesp_phy.a:phy_override.*(.text .text.esp_phy_efuse_get_chip_ver_pkg .text.esp_phy_efuse_get_mac .text.include_esp_phy_override .text.phy_set_pwdet_power .text.set_xpd_sar) - *libesp_pm.a:pm_impl.*(.text .text.esp_pm_configure .text.esp_pm_get_configuration .text.esp_pm_impl_get_mode .text.esp_pm_impl_idle_hook .text.esp_pm_impl_init .text.esp_pm_impl_waiti) - *libesp_system.a:esp_system_chip.*(.text .text.esp_get_free_heap_size .text.esp_get_free_internal_heap_size .text.esp_get_idf_version .text.esp_get_minimum_free_heap_size) - *libesp_system.a:freertos_hooks.*(.text .text.esp_deregister_freertos_idle_hook .text.esp_deregister_freertos_idle_hook_for_cpu .text.esp_deregister_freertos_idle_hook_for_cpu.part.0 .text.esp_deregister_freertos_tick_hook .text.esp_deregister_freertos_tick_hook_for_cpu .text.esp_deregister_freertos_tick_hook_for_cpu.part.0 .text.esp_register_freertos_idle_hook .text.esp_register_freertos_idle_hook_for_cpu .text.esp_register_freertos_idle_hook_for_cpu.part.0 .text.esp_register_freertos_tick_hook .text.esp_register_freertos_tick_hook_for_cpu .text.esp_register_freertos_tick_hook_for_cpu.part.0 .text.esp_vApplicationIdleHook) - *libesp_system.a:panic.*(.text .text.esp_panic_handler .text.esp_panic_handler_disable_timg_wdts .text.esp_panic_handler_enable_rtc_wdt .text.esp_panic_handler_feed_wdts .text.esp_panic_handler_increment_entry_count .text.esp_reset_reason_get_hint .text.esp_reset_reason_set_hint .text.print_abort_details) - *libesp_system.a:reset_reason.*(.text .text.esp_reset_reason .text.esp_reset_reason_get_hint .text.startup.esp_reset_reason_init) - *libesp_system.a:system_internal.*(.text) - *libesp_system.a:system_time.*(.text) - *libesp_timer.a:esp_timer_impl_common.*(.text) - *libesp_timer.a:esp_timer_impl_systimer.*(.text .text.esp_timer_impl_deinit .text.esp_timer_impl_early_init .text.esp_timer_impl_get_alarm_reg .text.esp_timer_impl_init) - *libfreertos.a:app_startup.*(.literal .literal.* .text .text.*) - *libfreertos.a:freertos_compatibility.*(.literal .literal.* .text .text.*) - *libfreertos.a:idf_additions.*(.literal .literal.* .text .text.*) - *libfreertos.a:idf_additions_event_groups.*(.literal .literal.* .text .text.*) - *libfreertos.a:tasks.*(.literal.uxTaskGetSnapshotAll .text.uxTaskGetSnapshotAll) - *libfreertos.a:tasks.*(.literal.xTaskGetNext .text.xTaskGetNext) - *libhal.a:gdma_hal_ahb_v1.*(.text .text.gdma_ahb_hal_connect_peri .text.gdma_ahb_hal_disconnect_peri .text.gdma_ahb_hal_enable_burst .text.gdma_ahb_hal_enable_etm_task .text.gdma_ahb_hal_enable_intr .text.gdma_ahb_hal_get_intr_status_reg .text.gdma_ahb_hal_init .text.gdma_ahb_hal_set_priority .text.gdma_ahb_hal_set_strategy) - *libhal.a:gdma_hal_top.*(.text .text.gdma_hal_connect_peri .text.gdma_hal_deinit .text.gdma_hal_disconnect_peri .text.gdma_hal_enable_access_encrypt_mem .text.gdma_hal_enable_burst .text.gdma_hal_enable_etm_task .text.gdma_hal_enable_intr .text.gdma_hal_get_intr_status_reg .text.gdma_hal_set_burst_size .text.gdma_hal_set_priority .text.gdma_hal_set_strategy) - *libhal.a:gpio_hal.*(.text .text.gpio_hal_hysteresis_soft_enable .text.gpio_hal_intr_disable .text.gpio_hal_intr_enable_on_core .text.gpio_hal_iomux_in .text.gpio_hal_iomux_out) - *libhal.a:timer_hal.*(.text .text.timer_hal_deinit .text.timer_hal_init .text.timer_hal_set_counter_value) - *libheap.a:multi_heap.*(.text .text.multi_heap_reset_minimum_free_bytes .text.multi_heap_restore_minimum_free_bytes) - *libieee802154.a:esp_ieee802154.*(.text .text.esp_ieee802154_add_pending_addr .text.esp_ieee802154_cca .text.esp_ieee802154_cca_done .text.esp_ieee802154_clear_pending_addr .text.esp_ieee802154_disable .text.esp_ieee802154_ed_failed .text.esp_ieee802154_enable .text.esp_ieee802154_energy_detect .text.esp_ieee802154_energy_detect_done .text.esp_ieee802154_event_callback_list_register .text.esp_ieee802154_event_callback_list_unregister .text.esp_ieee802154_get_ack_timeout .text.esp_ieee802154_get_auto_ack_rx .text.esp_ieee802154_get_auto_ack_tx .text.esp_ieee802154_get_cca_mode .text.esp_ieee802154_get_cca_threshold .text.esp_ieee802154_get_channel .text.esp_ieee802154_get_coordinator .text.esp_ieee802154_get_panid .text.esp_ieee802154_get_pending_mode .text.esp_ieee802154_get_power_table .text.esp_ieee802154_get_power_with_channel .text.esp_ieee802154_get_promiscuous .text.esp_ieee802154_get_rx_when_idle .text.esp_ieee802154_get_short_address .text.esp_ieee802154_get_state .text.esp_ieee802154_get_txpower .text.esp_ieee802154_receive_at_done .text.esp_ieee802154_receive_done .text.esp_ieee802154_receive_failed .text.esp_ieee802154_receive_handle_done .text.esp_ieee802154_receive_sfd_done .text.esp_ieee802154_reset_pending_table .text.esp_ieee802154_set_ack_timeout .text.esp_ieee802154_set_auto_ack_rx .text.esp_ieee802154_set_auto_ack_tx .text.esp_ieee802154_set_cca_mode .text.esp_ieee802154_set_cca_threshold .text.esp_ieee802154_set_channel .text.esp_ieee802154_set_coordinator .text.esp_ieee802154_set_extended_address .text.esp_ieee802154_set_panid .text.esp_ieee802154_set_pending_mode .text.esp_ieee802154_set_power_table .text.esp_ieee802154_set_power_with_channel .text.esp_ieee802154_set_promiscuous .text.esp_ieee802154_set_rx_when_idle .text.esp_ieee802154_set_short_address .text.esp_ieee802154_set_txpower .text.esp_ieee802154_sleep .text.esp_ieee802154_transmit_done .text.esp_ieee802154_transmit_failed .text.esp_ieee802154_transmit_sfd_done) - *libieee802154.a:esp_ieee802154_ack.*(.text .text.ieee802154_add_pending_addr .text.ieee802154_clear_pending_addr .text.ieee802154_reset_pending_table) - *libieee802154.a:esp_ieee802154_dev.*(.text .text.ieee802154_cca .text.ieee802154_disable .text.ieee802154_enable .text.ieee802154_energy_detect .text.ieee802154_get_state .text.ieee802154_mac_deinit .text.ieee802154_mac_init .text.ieee802154_mac_is_inited .text.ieee802154_receive_done .text.ieee802154_receive_handle_done .text.ieee802154_rx_ack_timeout_callback .text.ieee802154_sleep .text.ieee802154_transmit_internal.isra.0 .text.tx_init) - *libieee802154.a:esp_ieee802154_event.*(.text .text.ieee802154_event_callback_list_register .text.ieee802154_event_callback_list_unregister) - *libieee802154.a:esp_ieee802154_frame.*(.text .text.ieee802154_frame_address_offset .text.ieee802154_frame_get_dest_panid .text.ieee802154_frame_get_dst_addr .text.ieee802154_frame_get_src_panid .text.ieee802154_frame_get_type .text.ieee802154_frame_get_version .text.ieee802154_frame_is_ack_required) - *libieee802154.a:esp_ieee802154_pib.*(.text .text.ieee802154_pib_get_auto_ack_rx .text.ieee802154_pib_get_auto_ack_tx .text.ieee802154_pib_get_cca_mode .text.ieee802154_pib_get_cca_threshold .text.ieee802154_pib_get_channel .text.ieee802154_pib_get_coordinator .text.ieee802154_pib_get_enhance_ack_tx .text.ieee802154_pib_get_power .text.ieee802154_pib_get_power_table .text.ieee802154_pib_get_power_with_channel .text.ieee802154_pib_get_promiscuous .text.ieee802154_pib_init .text.ieee802154_pib_is_pending .text.ieee802154_pib_set_auto_ack_rx .text.ieee802154_pib_set_auto_ack_tx .text.ieee802154_pib_set_cca_mode .text.ieee802154_pib_set_cca_threshold .text.ieee802154_pib_set_channel .text.ieee802154_pib_set_coordinator .text.ieee802154_pib_set_enhance_ack_tx .text.ieee802154_pib_set_pending_mode .text.ieee802154_pib_set_power .text.ieee802154_pib_set_power_table .text.ieee802154_pib_set_power_with_channel .text.ieee802154_pib_set_promiscuous .text.ieee802154_pib_set_rx_when_idle) - *libieee802154.a:esp_ieee802154_sec.*(.text) - *libieee802154.a:esp_ieee802154_timer.*(.text .text.ieee802154_timer0_get_value .text.ieee802154_timer1_get_value) - *libieee802154.a:esp_ieee802154_util.*(.text .text.ieee802154_etm_set_event_task .text.ieee802154_freq_to_channel) - *liblog.a:log_timestamp.*(.text) - *liblog.a:log_write.*(.text .text.esp_log_set_vprintf) - *liblog.a:tag_log_level.*(.text .text.esp_log_level_get .text.esp_log_level_set .text.log_level_get) - *liblwip.a:vfs_lwip.*(.text .text.esp_vfs_lwip_sockets_register .text.lwip_fcntl_r_wrapper .text.lwip_fstat .text.lwip_get_socket_select_semaphore .text.lwip_ioctl_r_wrapper .text.lwip_stop_socket_select) - *libnewlib.a:esp_time_impl.*(.text .text.esp_sync_timekeeping_timers .text.esp_time_impl_get_time .text.esp_time_impl_get_time_since_boot) - *libriscv.a:interrupt.*(.literal.intr_handler_get .text.intr_handler_get) - *libriscv.a:interrupt.*(.literal.intr_handler_set .text.intr_handler_set) - *libspi_flash.a:esp_flash_api.*(.text .text.esp_flash_app_disable_protect .text.esp_flash_get_protectable_regions .text.esp_flash_read_chip_id .text.esp_flash_read_id .text.esp_flash_read_unique_chip_id .text.esp_flash_suspend_cmd_init .text.find_region) - *libspi_flash.a:spi_flash_os_func_app.*(.text .text.esp_flash_app_enable_os_functions .text.esp_flash_deinit_os_functions .text.esp_flash_init_main_bus_lock .text.esp_flash_init_os_functions .text.esp_flash_set_dangerous_write_protection .text.use_bus_lock) - *libspi_flash.a:spi_flash_os_func_noos.*(.text) - *libvfs.a:vfs.*(.text .text.call_end_selects .text.esp_vfs_access .text.esp_vfs_close .text.esp_vfs_closedir .text.esp_vfs_dump_fds .text.esp_vfs_dump_registered_paths .text.esp_vfs_fcntl_r .text.esp_vfs_free_fs_ops .text.esp_vfs_fstat .text.esp_vfs_fsync .text.esp_vfs_ftruncate .text.esp_vfs_ioctl .text.esp_vfs_link .text.esp_vfs_lseek .text.esp_vfs_mkdir .text.esp_vfs_open .text.esp_vfs_opendir .text.esp_vfs_pread .text.esp_vfs_pwrite .text.esp_vfs_read .text.esp_vfs_readdir .text.esp_vfs_readdir_r .text.esp_vfs_register .text.esp_vfs_register_common .text.esp_vfs_register_fd .text.esp_vfs_register_fd_range .text.esp_vfs_register_fd_with_local_fd .text.esp_vfs_register_fs .text.esp_vfs_register_fs_common .text.esp_vfs_register_fs_with_id .text.esp_vfs_register_with_id .text.esp_vfs_rename .text.esp_vfs_rewinddir .text.esp_vfs_rmdir .text.esp_vfs_safe_fd_isset .text.esp_vfs_seekdir .text.esp_vfs_select .text.esp_vfs_select_triggered .text.esp_vfs_set_readonly_flag .text.esp_vfs_stat .text.esp_vfs_telldir .text.esp_vfs_truncate .text.esp_vfs_unlink .text.esp_vfs_unregister .text.esp_vfs_unregister_fd .text.esp_vfs_unregister_with_id .text.esp_vfs_utime .text.esp_vfs_write .text.get_local_fd .text.get_vfs_for_fd .text.get_vfs_for_index .text.get_vfs_for_path .text.set_global_fd_sets .text.tcdrain .text.tcflow .text.tcflush .text.tcgetattr .text.tcgetsid .text.tcsendbreak .text.tcsetattr .text.translate_path .text.vfs_include_syscalls_impl) - *(.stub) - *(.gnu.linkonce.t.*) - *(.gnu.warning) - *(.irom0.text) /* catch stray ICACHE_RODATA_ATTR */ - /** - - * CPU will try to prefetch up to 16 bytes of of instructions. - - * This means that any configuration (e.g. MMU, PMS) must allow - - * safe access to up to 16 bytes after the last real instruction, add - - * dummy bytes to ensure this - - */ - . += 16; - _text_end = ABSOLUTE(.); - /** - - * Mark the flash.text end. - - * This can be used for MMU driver to maintain virtual address. - - */ - _instruction_reserved_end = ABSOLUTE(.); - _etext = .; - /** - - * Similar to _iram_start, this symbol goes here so it is - - * resolved by addr2line in preference to the first symbol in - - * the flash.text segment. - - */ - _flash_cache_start = ABSOLUTE(0); - } > default_code_seg - /** - - * Dummy section represents the .flash.text section but in default_rodata_seg. - - * Thus, it must have its alignment and (at least) its size. - - */ - .flash_rodata_dummy (NOLOAD): - { - _flash_rodata_dummy_start = .; - . = ALIGN(ALIGNOF(.flash.text)) + SIZEOF(.flash.text); - /* Add alignment of MMU page size + 0x20 bytes for the mapping header. */ - . = ALIGN(0x8000) + 0x20; - } > default_rodata_seg - .flash.appdesc : ALIGN(0x10) - { - /** - - * Mark flash.rodata start. - - * This can be used for mmu driver to maintain virtual address - - */ - _rodata_reserved_start = ABSOLUTE(.); - _rodata_start = ABSOLUTE(.); - /* !DO NOT PUT ANYTHING BEFORE THIS! */ - /* Should be the first. App version info. */ - *(.rodata_desc .rodata_desc.*) - /* Should be the second. Custom app version info. */ - *(.rodata_custom_desc .rodata_custom_desc.*) - /** - - * Create an empty gap within this section. Thanks to this, the end of this - - * section will match .flash.rodata's begin address. Thus, both sections - - * will be merged when creating the final bin image. - - */ - . = ALIGN(ALIGNOF(.flash.rodata)); - } > default_rodata_seg - ASSERT((ADDR(.flash.rodata) == ADDR(.flash.appdesc) + SIZEOF(.flash.appdesc)), "The gap between .flash.appdesc and .flash.rodata must not exist to produce the final bin image.") - .flash.rodata : ALIGN(0x10) - { - _flash_rodata_start = ABSOLUTE(.); - *(EXCLUDE_FILE(*libgcov.a *libphy.a *libclang_rt.builtins.a:_divsf3.* *libclang_rt.builtins.a:restore.* *libclang_rt.builtins.a:save.* *libesp_hw_support.a:clk_utils.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:pmu_sleep.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:systimer.* *libesp_mm.a:esp_cache_msync.* *libesp_mm.a:esp_cache_utils.* *libesp_rom.a:esp_rom_print.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_tlsf.* *libesp_rom.a:esp_rom_wdt.* *libesp_system.a:esp_err.* *libesp_system.a:image_process.* *libesp_system.a:ubsan.* *libgcc.a:_divsf3.* *libgcc.a:save-restore.* *libhal.a:cache_hal.* *libhal.a:i2c_hal_iram.* *libhal.a:ledc_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:pmu_hal.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:uart_hal_iram.* *liblog.a:log.* *liblog.a:log_format_text.* *liblog.a:log_lock.* *liblog.a:log_print.* *liblog.a:log_timestamp_common.* *liblog.a:util.* *libnewlib.a:abort.* *libnewlib.a:assert.* *libnewlib.a:heap.* *libnewlib.a:stdatomic.* *libsoc.a:lldesc.* *libsoc.a:temperature_sensor_periph.* *libspi_flash.a:flash_brownout_hook.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_wrap.*) .rodata EXCLUDE_FILE(*libgcov.a *libphy.a *libclang_rt.builtins.a:_divsf3.* *libclang_rt.builtins.a:restore.* *libclang_rt.builtins.a:save.* *libesp_hw_support.a:clk_utils.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:pmu_sleep.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:systimer.* *libesp_mm.a:esp_cache_msync.* *libesp_mm.a:esp_cache_utils.* *libesp_rom.a:esp_rom_print.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_tlsf.* *libesp_rom.a:esp_rom_wdt.* *libesp_system.a:esp_err.* *libesp_system.a:image_process.* *libesp_system.a:ubsan.* *libgcc.a:_divsf3.* *libgcc.a:save-restore.* *libhal.a:cache_hal.* *libhal.a:i2c_hal_iram.* *libhal.a:ledc_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:pmu_hal.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:uart_hal_iram.* *liblog.a:log.* *liblog.a:log_format_text.* *liblog.a:log_lock.* *liblog.a:log_print.* *liblog.a:log_timestamp_common.* *liblog.a:util.* *libnewlib.a:abort.* *libnewlib.a:assert.* *libnewlib.a:heap.* *libnewlib.a:stdatomic.* *libsoc.a:lldesc.* *libsoc.a:temperature_sensor_periph.* *libspi_flash.a:flash_brownout_hook.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_wrap.*) .rodata.* EXCLUDE_FILE(*libgcov.a *libphy.a *libclang_rt.builtins.a:_divsf3.* *libclang_rt.builtins.a:restore.* *libclang_rt.builtins.a:save.* *libesp_hw_support.a:clk_utils.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:pmu_sleep.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:systimer.* *libesp_mm.a:esp_cache_msync.* *libesp_mm.a:esp_cache_utils.* *libesp_rom.a:esp_rom_print.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_tlsf.* *libesp_rom.a:esp_rom_wdt.* *libesp_system.a:esp_err.* *libesp_system.a:image_process.* *libesp_system.a:ubsan.* *libgcc.a:_divsf3.* *libgcc.a:save-restore.* *libhal.a:cache_hal.* *libhal.a:i2c_hal_iram.* *libhal.a:ledc_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:pmu_hal.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:uart_hal_iram.* *liblog.a:log.* *liblog.a:log_format_text.* *liblog.a:log_lock.* *liblog.a:log_print.* *liblog.a:log_timestamp_common.* *liblog.a:util.* *libnewlib.a:abort.* *libnewlib.a:assert.* *libnewlib.a:heap.* *libnewlib.a:stdatomic.* *libsoc.a:lldesc.* *libsoc.a:temperature_sensor_periph.* *libspi_flash.a:flash_brownout_hook.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_wrap.*) .sdata2 EXCLUDE_FILE(*libgcov.a *libphy.a *libclang_rt.builtins.a:_divsf3.* *libclang_rt.builtins.a:restore.* *libclang_rt.builtins.a:save.* *libesp_hw_support.a:clk_utils.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:pmu_sleep.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:systimer.* *libesp_mm.a:esp_cache_msync.* *libesp_mm.a:esp_cache_utils.* *libesp_rom.a:esp_rom_print.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_tlsf.* *libesp_rom.a:esp_rom_wdt.* *libesp_system.a:esp_err.* *libesp_system.a:image_process.* *libesp_system.a:ubsan.* *libgcc.a:_divsf3.* *libgcc.a:save-restore.* *libhal.a:cache_hal.* *libhal.a:i2c_hal_iram.* *libhal.a:ledc_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:pmu_hal.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:uart_hal_iram.* *liblog.a:log.* *liblog.a:log_format_text.* *liblog.a:log_lock.* *liblog.a:log_print.* *liblog.a:log_timestamp_common.* *liblog.a:util.* *libnewlib.a:abort.* *libnewlib.a:assert.* *libnewlib.a:heap.* *libnewlib.a:stdatomic.* *libsoc.a:lldesc.* *libsoc.a:temperature_sensor_periph.* *libspi_flash.a:flash_brownout_hook.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_wrap.*) .sdata2.* EXCLUDE_FILE(*libgcov.a *libphy.a *libclang_rt.builtins.a:_divsf3.* *libclang_rt.builtins.a:restore.* *libclang_rt.builtins.a:save.* *libesp_hw_support.a:clk_utils.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:pmu_sleep.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:systimer.* *libesp_mm.a:esp_cache_msync.* *libesp_mm.a:esp_cache_utils.* *libesp_rom.a:esp_rom_print.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_tlsf.* *libesp_rom.a:esp_rom_wdt.* *libesp_system.a:esp_err.* *libesp_system.a:image_process.* *libesp_system.a:ubsan.* *libgcc.a:_divsf3.* *libgcc.a:save-restore.* *libhal.a:cache_hal.* *libhal.a:i2c_hal_iram.* *libhal.a:ledc_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:pmu_hal.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:uart_hal_iram.* *liblog.a:log.* *liblog.a:log_format_text.* *liblog.a:log_lock.* *liblog.a:log_print.* *liblog.a:log_timestamp_common.* *liblog.a:util.* *libnewlib.a:abort.* *libnewlib.a:assert.* *libnewlib.a:heap.* *libnewlib.a:stdatomic.* *libsoc.a:lldesc.* *libsoc.a:temperature_sensor_periph.* *libspi_flash.a:flash_brownout_hook.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_wrap.*) .srodata EXCLUDE_FILE(*libgcov.a *libphy.a *libclang_rt.builtins.a:_divsf3.* *libclang_rt.builtins.a:restore.* *libclang_rt.builtins.a:save.* *libesp_hw_support.a:clk_utils.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:pmu_sleep.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:systimer.* *libesp_mm.a:esp_cache_msync.* *libesp_mm.a:esp_cache_utils.* *libesp_rom.a:esp_rom_print.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_tlsf.* *libesp_rom.a:esp_rom_wdt.* *libesp_system.a:esp_err.* *libesp_system.a:image_process.* *libesp_system.a:ubsan.* *libgcc.a:_divsf3.* *libgcc.a:save-restore.* *libhal.a:cache_hal.* *libhal.a:i2c_hal_iram.* *libhal.a:ledc_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:pmu_hal.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:uart_hal_iram.* *liblog.a:log.* *liblog.a:log_format_text.* *liblog.a:log_lock.* *liblog.a:log_print.* *liblog.a:log_timestamp_common.* *liblog.a:util.* *libnewlib.a:abort.* *libnewlib.a:assert.* *libnewlib.a:heap.* *libnewlib.a:stdatomic.* *libsoc.a:lldesc.* *libsoc.a:temperature_sensor_periph.* *libspi_flash.a:flash_brownout_hook.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_wrap.*) .srodata.*) - *libsoc.a:temperature_sensor_periph.*(.rodata.temperature_sensor_regs_entries .rodata.temperature_sensor_regs_retention) - *(.irom1.text) /* catch stray ICACHE_RODATA_ATTR */ - *(.gnu.linkonce.r.*) - *(.rodata1) - *(.gcc_except_table .gcc_except_table.*) - *(.gnu.linkonce.e.*) - /** - - * C++ constructor tables. - - * - - * Excluding crtbegin.o/crtend.o since IDF doesn't use the toolchain crt. - - * - - * RISC-V gcc is configured with --enable-initfini-array so it emits - - * .init_array section instead. But the init_priority sections will be - - * sorted for iteration in ascending order during startup. - - * The rest of the init_array sections is sorted for iteration in descending - - * order during startup, however. Hence a different section is generated for - - * the init_priority functions which is iterated in ascending order during - - * startup. The corresponding code can be found in startup.c. - - */ - - . = ALIGN(4); - __init_priority_array_start = ABSOLUTE(.); - KEEP (*(EXCLUDE_FILE (*crtend.* *crtbegin.*) .init_array.*)) - __init_priority_array_end = ABSOLUTE(.); - - . = ALIGN(4); - __init_array_start = ABSOLUTE(.); - KEEP (*(EXCLUDE_FILE (*crtend.* *crtbegin.*) .init_array)) - __init_array_end = ABSOLUTE(.); - /* Addresses of memory regions reserved via SOC_RESERVE_MEMORY_REGION() */ - - . = ALIGN(4); - soc_reserved_memory_region_start = ABSOLUTE(.); - KEEP (*(.reserved_memory_address)) - soc_reserved_memory_region_end = ABSOLUTE(.); - /* System init functions registered via ESP_SYSTEM_INIT_FN */ - - . = ALIGN(4); - _esp_system_init_fn_array_start = ABSOLUTE(.); - KEEP (*(SORT_BY_INIT_PRIORITY(.esp_system_init_fn.*))) - _esp_system_init_fn_array_end = ABSOLUTE(.); - _rodata_end = ABSOLUTE(.); - . = ALIGN(ALIGNOF(.flash.tdata)); - } > default_rodata_seg - ASSERT((ADDR(.flash.tdata) == ADDR(.flash.rodata) + SIZEOF(.flash.rodata)), "The gap between .flash.rodata and .flash.tdata must not exist to produce the final bin image.") - .flash.tdata : - { - _thread_local_data_start = ABSOLUTE(.); - *(.tdata .tdata.* .gnu.linkonce.td.*) - . = ALIGN(ALIGNOF(.flash.tbss)); - _thread_local_data_end = ABSOLUTE(.); - } > default_rodata_seg - ASSERT((ADDR(.flash.tbss) == ADDR(.flash.tdata) + SIZEOF(.flash.tdata)), "The gap between .flash.tdata and .flash.tbss must not exist to produce the final bin image.") - .flash.tbss (NOLOAD) : - { - _thread_local_bss_start = ABSOLUTE(.); - *(.tbss .tbss.* .gnu.linkonce.tb.*) - *(.tcommon .tcommon.*) - _thread_local_bss_end = ABSOLUTE(.); - } > default_rodata_seg - /** - - * This section contains all the rodata that is not used - - * at runtime, helping to avoid an increase in binary size. - - */ - .flash.rodata_noload (NOLOAD) : - { - /** - - * This symbol marks the end of flash.rodata. It can be utilized by the MMU - - * driver to maintain the virtual address. - - * NOLOAD rodata may not be included in this section. - - */ - _rodata_reserved_end = ADDR(.flash.tbss); - } > default_rodata_seg - /* Marks the end of data, bss and possibly rodata */ - .dram0.heap_start (NOLOAD) : - { - - . = ALIGN(16); - _heap_start = ABSOLUTE(.); - } > sram_seg - /** - - * This section is not included in the binary image; it is only present in the ELF file. - - * It is used to keep certain symbols in the ELF file. - - */ - .noload 0 (INFO) : - { - _noload_keep_in_elf_start = ABSOLUTE(.); - KEEP(*(.noload_keep_in_elf .noload_keep_in_elf.*)) - _noload_keep_in_elf_end = ABSOLUTE(.); - } - /* DWARF 1 */ - .debug 0 : { *(.debug) } - .line 0 : { *(.line) } - /* GNU DWARF 1 extensions */ - .debug_srcinfo 0 : { *(.debug_srcinfo) } - .debug_sfnames 0 : { *(.debug_sfnames) } - /* DWARF 1.1 and DWARF 2 */ - .debug_aranges 0 : { *(.debug_aranges) } - .debug_pubnames 0 : { *(.debug_pubnames) } - /* DWARF 2 */ - .debug_info 0 : { *(.debug_info .gnu.linkonce.wi.*) } - .debug_abbrev 0 : { *(.debug_abbrev) } - .debug_line 0 : { *(.debug_line) } - .debug_frame 0 : { *(.debug_frame) } - .debug_str 0 : { *(.debug_str) } - .debug_loc 0 : { *(.debug_loc) } - .debug_macinfo 0 : { *(.debug_macinfo) } - .debug_pubtypes 0 : { *(.debug_pubtypes) } - /* DWARF 3 */ - .debug_ranges 0 : { *(.debug_ranges) } - /* SGI/MIPS DWARF 2 extensions */ - .debug_weaknames 0 : { *(.debug_weaknames) } - .debug_funcnames 0 : { *(.debug_funcnames) } - .debug_typenames 0 : { *(.debug_typenames) } - .debug_varnames 0 : { *(.debug_varnames) } - /* GNU DWARF 2 extensions */ - .debug_gnu_pubnames 0 : { *(.debug_gnu_pubnames) } - .debug_gnu_pubtypes 0 : { *(.debug_gnu_pubtypes) } - /* DWARF 4 */ - .debug_types 0 : { *(.debug_types) } - /* DWARF 5 */ - .debug_addr 0 : { *(.debug_addr) } - .debug_line_str 0 : { *(.debug_line_str) } - .debug_loclists 0 : { *(.debug_loclists) } - .debug_macro 0 : { *(.debug_macro) } - .debug_names 0 : { *(.debug_names) } - .debug_rnglists 0 : { *(.debug_rnglists) } - .debug_str_offsets 0 : { *(.debug_str_offsets) } - .comment 0 : { *(.comment) } - .note.GNU-stack 0: { *(.note.GNU-stack) } - .riscv.attributes 0: { *(.riscv.attributes) } - /DISCARD/ : - { - /** - - * Discarding .rela.* sections results in the following mapping: - - * .rela.text.* -> .text.* - - * .rela.data.* -> .data.* - - * And so forth... - - */ - *(.rela.*) - *(.got .got.plt) /* TODO: GCC-382 */ - *(.eh_frame_hdr) - *(.eh_frame) - } -} diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/ld/sections.ld.in b/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/ld/sections.ld.in deleted file mode 100644 index 23f2d225..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/ld/sections.ld.in +++ /dev/null @@ -1,578 +0,0 @@ -/* - - * SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD - - * - - * SPDX-License-Identifier: Apache-2.0 - - */ -/* - - * SPDX-FileCopyrightText: 2021-2024 Espressif Systems (Shanghai) CO LTD - - * - - * SPDX-License-Identifier: Apache-2.0 - - */ -/* - - * Automatically generated file. DO NOT EDIT. - - * Espressif IoT Development Framework (ESP-IDF) 5.5.1 Configuration Header - - */ - -/* List of deprecated options */ -/* CPU instruction prefetch padding size for flash mmap scenario */ -/* - - * PMP region granularity size - - * Software may determine the PMP granularity by writing zero to pmp0cfg, then writing all ones - - * to pmpaddr0, then reading back pmpaddr0. If G is the index of the least-significant bit set, - - * the PMP granularity is 2^G+2 bytes. - - */ -/* CPU instruction prefetch padding size for memory protection scenario */ -/* Memory alignment size for PMS */ - /* rtc timer data (s_rtc_timer_retain_mem, see esp_clk.c files). For rtc_timer_data_in_rtc_mem section. */ -/* Default entry point */ -ENTRY(call_start_cpu0); -SECTIONS -{ - /** - - * RTC fast memory holds RTC wake stub code, - - * including from any source file named rtc_wake_stub*.c - - */ - .rtc.text : - { - /* Align the start of RTC code region as per PMP granularity - - * this ensures we do not overwrite the permissions for any potential previous - - * region regardless of its end alignment - - */ - - . = ALIGN(4); - _rtc_fast_start = ABSOLUTE(.); - - . = ALIGN(4); - _rtc_text_start = ABSOLUTE(.); - *(.rtc.entry.text) - mapping[rtc_text] - *rtc_wake_stub*.*(.text .text.*) - *(.rtc_text_end_test) - /* Align the end of RTC code region as per PMP granularity */ - . = ALIGN(4); - _rtc_text_end = ABSOLUTE(.); - } > lp_ram_seg - /** - - * This section located in RTC FAST Memory area. - - * It holds data marked with RTC_FAST_ATTR attribute. - - * See the file "esp_attr.h" for more information. - - */ - .rtc.force_fast : - { - - . = ALIGN(4); - _rtc_force_fast_start = ABSOLUTE(.); - mapping[rtc_force_fast] - *(.rtc.force_fast .rtc.force_fast.*) - - . = ALIGN(4); - _rtc_force_fast_end = ABSOLUTE(.); - } > lp_ram_seg - /** - - * RTC data section holds RTC wake stub - - * data/rodata, including from any source file - - * named rtc_wake_stub*.c and the data marked with - - * RTC_DATA_ATTR, RTC_RODATA_ATTR attributes. - - */ - .rtc.data : - { - _rtc_data_start = ABSOLUTE(.); - mapping[rtc_data] - *rtc_wake_stub*.*(.data .rodata .data.* .rodata.* .srodata.*) - _rtc_data_end = ABSOLUTE(.); - } > lp_ram_seg - /* RTC bss, from any source file named rtc_wake_stub*.c */ - .rtc.bss (NOLOAD) : - { - _rtc_bss_start = ABSOLUTE(.); - *rtc_wake_stub*.*(.bss .bss.* .sbss .sbss.*) - *rtc_wake_stub*.*(COMMON) - mapping[rtc_bss] - _rtc_bss_end = ABSOLUTE(.); - } > lp_ram_seg - /** - - * This section holds data that should not be initialized at power up - - * and will be retained during deep sleep. - - * User data marked with RTC_NOINIT_ATTR will be placed - - * into this section. See the file "esp_attr.h" for more information. - - */ - .rtc_noinit (NOLOAD): - { - - . = ALIGN(4); - _rtc_noinit_start = ABSOLUTE(.); - *(.rtc_noinit .rtc_noinit.*) - - . = ALIGN(4); - _rtc_noinit_end = ABSOLUTE(.); - } > lp_ram_seg - /** - - * This section located in RTC SLOW Memory area. - - * It holds data marked with RTC_SLOW_ATTR attribute. - - * See the file "esp_attr.h" for more information. - - */ - .rtc.force_slow : - { - - . = ALIGN(4); - _rtc_force_slow_start = ABSOLUTE(.); - *(.rtc.force_slow .rtc.force_slow.*) - - . = ALIGN(4); - _rtc_force_slow_end = ABSOLUTE(.); - } > lp_ram_seg - /** - - * This section holds RTC data that should have fixed addresses. - - * The data are not initialized at power-up and are retained during deep - - * sleep. - - */ - .rtc_reserved (NOLOAD): - { - - . = ALIGN(4); - _rtc_reserved_start = ABSOLUTE(.); - /** - - * New data can only be added here to ensure existing data are not moved. - - * Because data have adhered to the end of the segment and code is relied - - * on it. - - * >> put new data here << - - */ - *(.rtc_timer_data_in_rtc_mem .rtc_timer_data_in_rtc_mem.*) - KEEP(*(.bootloader_data_rtc_mem .bootloader_data_rtc_mem.*)) - _rtc_reserved_end = ABSOLUTE(.); - } > rtc_reserved_seg - _rtc_reserved_length = _rtc_reserved_end - _rtc_reserved_start; - ASSERT((_rtc_reserved_length <= LENGTH(rtc_reserved_seg)), - "RTC reserved segment data does not fit.") - /* Get size of rtc slow data based on rtc_data_location alias */ - _rtc_slow_length = (ORIGIN(rtc_slow_seg) == ORIGIN(rtc_data_location)) - ? (_rtc_force_slow_end - _rtc_data_start) - : (_rtc_force_slow_end - _rtc_force_slow_start); - _rtc_fast_length = (ORIGIN(rtc_slow_seg) == ORIGIN(rtc_data_location)) - ? (_rtc_force_fast_end - _rtc_fast_start) - : (_rtc_noinit_end - _rtc_fast_start); - ASSERT((_rtc_slow_length <= LENGTH(rtc_slow_seg)), - "RTC_SLOW segment data does not fit.") - ASSERT((_rtc_fast_length <= LENGTH(rtc_data_seg)), - "RTC_FAST segment data does not fit.") - .iram0.text : - { - _iram_start = ABSOLUTE(.); - /* Vectors go to start of IRAM */ - ASSERT(ABSOLUTE(.) % 0x100 == 0, "vector address must be 256 byte aligned"); - _vector_table_start = ABSOLUTE(.); - KEEP(*(.exception_vectors_table.text)); - KEEP(*(.exception_vectors.text)); - - . = ALIGN(4); - _invalid_pc_placeholder = ABSOLUTE(.); - /* esp_tee_config_t structure: used to share information between the TEE and REE - - * (e.g. interrupt handler addresses, REE flash text-rodata boundaries, etc.) - - * This symbol is expected by the TEE at an offset of 0x300 from the vector table start. - - */ - /* Code marked as running out of IRAM */ - _iram_text_start = ABSOLUTE(.); - mapping[iram0_text] - } > sram_seg - /* Marks the end of IRAM code segment */ - .iram0.text_end (NOLOAD) : - { - /* Align the end of code region as per PMP region granularity */ - . = ALIGN(4); - - . = ALIGN(4); - _iram_text_end = ABSOLUTE(.); - } > sram_seg - .iram0.data : - { - - . = ALIGN(16); - _iram_data_start = ABSOLUTE(.); - mapping[iram0_data] - _iram_data_end = ABSOLUTE(.); - } > sram_seg - .iram0.bss (NOLOAD) : - { - - . = ALIGN(16); - _iram_bss_start = ABSOLUTE(.); - mapping[iram0_bss] - _iram_bss_end = ABSOLUTE(.); - - . = ALIGN(16); - _iram_end = ABSOLUTE(.); - } > sram_seg - .dram0.data : - { - _data_start = ABSOLUTE(.); - *(.gnu.linkonce.d.*) - *(.data1) - __global_pointer$ = . + 0x800; - *(.sdata) - *(.sdata.*) - *(.gnu.linkonce.s.*) - *(.gnu.linkonce.s2.*) - *(.jcr) - mapping[dram0_data] - _data_end = ABSOLUTE(.); - } > sram_seg - /** - - * This section holds data that should not be initialized at power up. - - * The section located in Internal SRAM memory region. The macro _NOINIT - - * can be used as attribute to place data into this section. - - * See the "esp_attr.h" file for more information. - - */ - .noinit (NOLOAD): - { - - . = ALIGN(4); - _noinit_start = ABSOLUTE(.); - *(.noinit .noinit.*) - - . = ALIGN(4); - _noinit_end = ABSOLUTE(.); - } > sram_seg - /* Shared RAM */ - .dram0.bss (NOLOAD) : - { - - . = ALIGN(8); - _bss_start = ABSOLUTE(.); - /** - - * ldgen places all bss-related data to mapping[dram0_bss] - - * (See components/esp_system/app.lf). - - */ - mapping[dram0_bss] - - . = ALIGN(8); - _bss_end = ABSOLUTE(.); - } > sram_seg - .flash.text : - { - _stext = .; - /** - - * Mark the start of flash.text. - - * This can be used by the MMU driver to maintain the virtual address. - - */ - _instruction_reserved_start = ABSOLUTE(.); - _text_start = ABSOLUTE(.); - mapping[flash_text] - *(.stub) - *(.gnu.linkonce.t.*) - *(.gnu.warning) - *(.irom0.text) /* catch stray ICACHE_RODATA_ATTR */ - /** - - * CPU will try to prefetch up to 16 bytes of of instructions. - - * This means that any configuration (e.g. MMU, PMS) must allow - - * safe access to up to 16 bytes after the last real instruction, add - - * dummy bytes to ensure this - - */ - . += 16; - _text_end = ABSOLUTE(.); - /** - - * Mark the flash.text end. - - * This can be used for MMU driver to maintain virtual address. - - */ - _instruction_reserved_end = ABSOLUTE(.); - _etext = .; - /** - - * Similar to _iram_start, this symbol goes here so it is - - * resolved by addr2line in preference to the first symbol in - - * the flash.text segment. - - */ - _flash_cache_start = ABSOLUTE(0); - } > default_code_seg - /** - - * Dummy section represents the .flash.text section but in default_rodata_seg. - - * Thus, it must have its alignment and (at least) its size. - - */ - .flash_rodata_dummy (NOLOAD): - { - _flash_rodata_dummy_start = .; - . = ALIGN(ALIGNOF(.flash.text)) + SIZEOF(.flash.text); - /* Add alignment of MMU page size + 0x20 bytes for the mapping header. */ - . = ALIGN(0x8000) + 0x20; - } > default_rodata_seg - .flash.appdesc : ALIGN(0x10) - { - /** - - * Mark flash.rodata start. - - * This can be used for mmu driver to maintain virtual address - - */ - _rodata_reserved_start = ABSOLUTE(.); - _rodata_start = ABSOLUTE(.); - /* !DO NOT PUT ANYTHING BEFORE THIS! */ - /* Should be the first. App version info. */ - *(.rodata_desc .rodata_desc.*) - /* Should be the second. Custom app version info. */ - *(.rodata_custom_desc .rodata_custom_desc.*) - /** - - * Create an empty gap within this section. Thanks to this, the end of this - - * section will match .flash.rodata's begin address. Thus, both sections - - * will be merged when creating the final bin image. - - */ - . = ALIGN(ALIGNOF(.flash.rodata)); - } > default_rodata_seg - ASSERT((ADDR(.flash.rodata) == ADDR(.flash.appdesc) + SIZEOF(.flash.appdesc)), "The gap between .flash.appdesc and .flash.rodata must not exist to produce the final bin image.") - .flash.rodata : ALIGN(0x10) - { - _flash_rodata_start = ABSOLUTE(.); - mapping[flash_rodata] - *(.irom1.text) /* catch stray ICACHE_RODATA_ATTR */ - *(.gnu.linkonce.r.*) - *(.rodata1) - *(.gcc_except_table .gcc_except_table.*) - *(.gnu.linkonce.e.*) - /** - - * C++ constructor tables. - - * - - * Excluding crtbegin.o/crtend.o since IDF doesn't use the toolchain crt. - - * - - * RISC-V gcc is configured with --enable-initfini-array so it emits - - * .init_array section instead. But the init_priority sections will be - - * sorted for iteration in ascending order during startup. - - * The rest of the init_array sections is sorted for iteration in descending - - * order during startup, however. Hence a different section is generated for - - * the init_priority functions which is iterated in ascending order during - - * startup. The corresponding code can be found in startup.c. - - */ - - . = ALIGN(4); - __init_priority_array_start = ABSOLUTE(.); - KEEP (*(EXCLUDE_FILE (*crtend.* *crtbegin.*) .init_array.*)) - __init_priority_array_end = ABSOLUTE(.); - - . = ALIGN(4); - __init_array_start = ABSOLUTE(.); - KEEP (*(EXCLUDE_FILE (*crtend.* *crtbegin.*) .init_array)) - __init_array_end = ABSOLUTE(.); - /* Addresses of memory regions reserved via SOC_RESERVE_MEMORY_REGION() */ - - . = ALIGN(4); - soc_reserved_memory_region_start = ABSOLUTE(.); - KEEP (*(.reserved_memory_address)) - soc_reserved_memory_region_end = ABSOLUTE(.); - /* System init functions registered via ESP_SYSTEM_INIT_FN */ - - . = ALIGN(4); - _esp_system_init_fn_array_start = ABSOLUTE(.); - KEEP (*(SORT_BY_INIT_PRIORITY(.esp_system_init_fn.*))) - _esp_system_init_fn_array_end = ABSOLUTE(.); - _rodata_end = ABSOLUTE(.); - . = ALIGN(ALIGNOF(.flash.tdata)); - } > default_rodata_seg - ASSERT((ADDR(.flash.tdata) == ADDR(.flash.rodata) + SIZEOF(.flash.rodata)), "The gap between .flash.rodata and .flash.tdata must not exist to produce the final bin image.") - .flash.tdata : - { - _thread_local_data_start = ABSOLUTE(.); - *(.tdata .tdata.* .gnu.linkonce.td.*) - . = ALIGN(ALIGNOF(.flash.tbss)); - _thread_local_data_end = ABSOLUTE(.); - } > default_rodata_seg - ASSERT((ADDR(.flash.tbss) == ADDR(.flash.tdata) + SIZEOF(.flash.tdata)), "The gap between .flash.tdata and .flash.tbss must not exist to produce the final bin image.") - .flash.tbss (NOLOAD) : - { - _thread_local_bss_start = ABSOLUTE(.); - *(.tbss .tbss.* .gnu.linkonce.tb.*) - *(.tcommon .tcommon.*) - _thread_local_bss_end = ABSOLUTE(.); - } > default_rodata_seg - /** - - * This section contains all the rodata that is not used - - * at runtime, helping to avoid an increase in binary size. - - */ - .flash.rodata_noload (NOLOAD) : - { - /** - - * This symbol marks the end of flash.rodata. It can be utilized by the MMU - - * driver to maintain the virtual address. - - * NOLOAD rodata may not be included in this section. - - */ - _rodata_reserved_end = ADDR(.flash.tbss); - mapping[rodata_noload] - } > default_rodata_seg - /* Marks the end of data, bss and possibly rodata */ - .dram0.heap_start (NOLOAD) : - { - - . = ALIGN(16); - _heap_start = ABSOLUTE(.); - } > sram_seg - /** - - * This section is not included in the binary image; it is only present in the ELF file. - - * It is used to keep certain symbols in the ELF file. - - */ - .noload 0 (INFO) : - { - _noload_keep_in_elf_start = ABSOLUTE(.); - KEEP(*(.noload_keep_in_elf .noload_keep_in_elf.*)) - mapping[noload_keep_in_elf] - _noload_keep_in_elf_end = ABSOLUTE(.); - } - /* DWARF 1 */ - .debug 0 : { *(.debug) } - .line 0 : { *(.line) } - /* GNU DWARF 1 extensions */ - .debug_srcinfo 0 : { *(.debug_srcinfo) } - .debug_sfnames 0 : { *(.debug_sfnames) } - /* DWARF 1.1 and DWARF 2 */ - .debug_aranges 0 : { *(.debug_aranges) } - .debug_pubnames 0 : { *(.debug_pubnames) } - /* DWARF 2 */ - .debug_info 0 : { *(.debug_info .gnu.linkonce.wi.*) } - .debug_abbrev 0 : { *(.debug_abbrev) } - .debug_line 0 : { *(.debug_line) } - .debug_frame 0 : { *(.debug_frame) } - .debug_str 0 : { *(.debug_str) } - .debug_loc 0 : { *(.debug_loc) } - .debug_macinfo 0 : { *(.debug_macinfo) } - .debug_pubtypes 0 : { *(.debug_pubtypes) } - /* DWARF 3 */ - .debug_ranges 0 : { *(.debug_ranges) } - /* SGI/MIPS DWARF 2 extensions */ - .debug_weaknames 0 : { *(.debug_weaknames) } - .debug_funcnames 0 : { *(.debug_funcnames) } - .debug_typenames 0 : { *(.debug_typenames) } - .debug_varnames 0 : { *(.debug_varnames) } - /* GNU DWARF 2 extensions */ - .debug_gnu_pubnames 0 : { *(.debug_gnu_pubnames) } - .debug_gnu_pubtypes 0 : { *(.debug_gnu_pubtypes) } - /* DWARF 4 */ - .debug_types 0 : { *(.debug_types) } - /* DWARF 5 */ - .debug_addr 0 : { *(.debug_addr) } - .debug_line_str 0 : { *(.debug_line_str) } - .debug_loclists 0 : { *(.debug_loclists) } - .debug_macro 0 : { *(.debug_macro) } - .debug_names 0 : { *(.debug_names) } - .debug_rnglists 0 : { *(.debug_rnglists) } - .debug_str_offsets 0 : { *(.debug_str_offsets) } - .comment 0 : { *(.comment) } - .note.GNU-stack 0: { *(.note.GNU-stack) } - .riscv.attributes 0: { *(.riscv.attributes) } - /DISCARD/ : - { - /** - - * Discarding .rela.* sections results in the following mapping: - - * .rela.text.* -> .text.* - - * .rela.data.* -> .data.* - - * And so forth... - - */ - *(.rela.*) - *(.got .got.plt) /* TODO: GCC-382 */ - *(.eh_frame_hdr) - *(.eh_frame) - } -} diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/libesp_system.a b/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/libesp_system.a deleted file mode 100644 index d116fdd9..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/libesp_system.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/port/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/port/cmake_install.cmake deleted file mode 100644 index b2bff13d..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/port/cmake_install.cmake +++ /dev/null @@ -1,44 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/port/soc/esp32h2/cmake_install.cmake") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/port/soc/esp32h2/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/port/soc/esp32h2/cmake_install.cmake deleted file mode 100644 index 1adcda78..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/port/soc/esp32h2/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc/esp32h2 - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer.c.obj deleted file mode 100644 index cd5b1690..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_etm.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_etm.c.obj deleted file mode 100644 index 42d27e39..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_etm.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_common.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_common.c.obj deleted file mode 100644 index ed0d3d99..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_common.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_systimer.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_systimer.c.obj deleted file mode 100644 index 9be5b5fa..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_systimer.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_init.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_init.c.obj deleted file mode 100644 index 59b2dfb4..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_init.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/ets_timer_legacy.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/ets_timer_legacy.c.obj deleted file mode 100644 index ef758077..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/ets_timer_legacy.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/system_time.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/system_time.c.obj deleted file mode 100644 index eaf5f0e5..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/system_time.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_timer/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/esp_timer/cmake_install.cmake deleted file mode 100644 index 0c8db820..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/esp_timer/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_timer/libesp_timer.a b/esp32-thread/open-thread-rcp/build/esp-idf/esp_timer/libesp_timer.a deleted file mode 100644 index a63d9742..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_timer/libesp_timer.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_vfs_console/CMakeFiles/__idf_esp_vfs_console.dir/vfs_console.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_vfs_console/CMakeFiles/__idf_esp_vfs_console.dir/vfs_console.c.obj deleted file mode 100644 index f1805653..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_vfs_console/CMakeFiles/__idf_esp_vfs_console.dir/vfs_console.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_vfs_console/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/esp_vfs_console/cmake_install.cmake deleted file mode 100644 index 889a63ef..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/esp_vfs_console/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_vfs_console/libesp_vfs_console.a b/esp32-thread/open-thread-rcp/build/esp-idf/esp_vfs_console/libesp_vfs_console.a deleted file mode 100644 index 92b3c48a..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_vfs_console/libesp_vfs_console.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default.c.obj deleted file mode 100644 index 2c57bb8e..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default_ap.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default_ap.c.obj deleted file mode 100644 index 7a8ebea8..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default_ap.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_netif.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_netif.c.obj deleted file mode 100644 index daff795a..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_netif.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_wifi/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/esp_wifi/cmake_install.cmake deleted file mode 100644 index 607c74cd..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/esp_wifi/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_wifi - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esp_wifi/libesp_wifi.a b/esp32-thread/open-thread-rcp/build/esp-idf/esp_wifi/libesp_wifi.a deleted file mode 100644 index 50905b9e..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/esp_wifi/libesp_wifi.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/espressif__led_strip/CMakeFiles/__idf_espressif__led_strip.dir/src/led_strip_api.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/espressif__led_strip/CMakeFiles/__idf_espressif__led_strip.dir/src/led_strip_api.c.obj deleted file mode 100644 index 39f8b8db..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/espressif__led_strip/CMakeFiles/__idf_espressif__led_strip.dir/src/led_strip_api.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/espressif__led_strip/CMakeFiles/__idf_espressif__led_strip.dir/src/led_strip_rmt_dev.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/espressif__led_strip/CMakeFiles/__idf_espressif__led_strip.dir/src/led_strip_rmt_dev.c.obj deleted file mode 100644 index 8768ab0f..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/espressif__led_strip/CMakeFiles/__idf_espressif__led_strip.dir/src/led_strip_rmt_dev.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/espressif__led_strip/CMakeFiles/__idf_espressif__led_strip.dir/src/led_strip_rmt_encoder.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/espressif__led_strip/CMakeFiles/__idf_espressif__led_strip.dir/src/led_strip_rmt_encoder.c.obj deleted file mode 100644 index a1bbca29..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/espressif__led_strip/CMakeFiles/__idf_espressif__led_strip.dir/src/led_strip_rmt_encoder.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/espressif__led_strip/CMakeFiles/__idf_espressif__led_strip.dir/src/led_strip_spi_dev.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/espressif__led_strip/CMakeFiles/__idf_espressif__led_strip.dir/src/led_strip_spi_dev.c.obj deleted file mode 100644 index ce792186..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/espressif__led_strip/CMakeFiles/__idf_espressif__led_strip.dir/src/led_strip_spi_dev.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/espressif__led_strip/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/espressif__led_strip/cmake_install.cmake deleted file mode 100644 index 4532263e..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/espressif__led_strip/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/managed_components/espressif__led_strip - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/espressif__led_strip/libespressif__led_strip.a b/esp32-thread/open-thread-rcp/build/esp-idf/espressif__led_strip/libespressif__led_strip.a deleted file mode 100644 index baef88e7..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/espressif__led_strip/libespressif__led_strip.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esptool_py/app-flash_args.in b/esp32-thread/open-thread-rcp/build/esp-idf/esptool_py/app-flash_args.in deleted file mode 100644 index a81edcc9..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/esptool_py/app-flash_args.in +++ /dev/null @@ -1,2 +0,0 @@ ---flash_mode dio --flash_freq 48m --flash_size 2MB -0x10000 $.bin \ No newline at end of file diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esptool_py/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/esptool_py/cmake_install.cmake deleted file mode 100644 index b9840d3b..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/esptool_py/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esptool_py - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/esptool_py/flasher_args.json.in b/esp32-thread/open-thread-rcp/build/esp-idf/esptool_py/flasher_args.json.in deleted file mode 100644 index a9944cb5..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/esptool_py/flasher_args.json.in +++ /dev/null @@ -1,24 +0,0 @@ -{ - "write_flash_args" : [ "--flash_mode", "dio", - "--flash_size", "2MB", - "--flash_freq", "48m" ], - "flash_settings" : { - "flash_mode": "dio", - "flash_size": "2MB", - "flash_freq": "48m" - }, - "flash_files" : { - "0x0" : "bootloader/bootloader.bin", - "0x10000" : "$.bin", - "0x8000" : "partition_table/partition-table.bin" - }, - "bootloader" : { "offset" : "0x0", "file" : "bootloader/bootloader.bin", "encrypted" : "false" }, - "app" : { "offset" : "0x10000", "file" : "$.bin", "encrypted" : "false" }, - "partition-table" : { "offset" : "0x8000", "file" : "partition_table/partition-table.bin", "encrypted" : "false" }, - "extra_esptool_args" : { - "after" : "hard_reset", - "before" : "default_reset", - "stub" : true, - "chip" : "esp32h2" - } -} diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/event_groups.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/event_groups.c.obj deleted file mode 100644 index a5e34566..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/event_groups.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/list.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/list.c.obj deleted file mode 100644 index 701312bb..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/list.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/riscv/port.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/riscv/port.c.obj deleted file mode 100644 index ef85933d..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/riscv/port.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/riscv/portasm.S.obj b/esp32-thread/open-thread-rcp/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/riscv/portasm.S.obj deleted file mode 100644 index efb30188..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/riscv/portasm.S.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/queue.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/queue.c.obj deleted file mode 100644 index e15ddd21..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/queue.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/stream_buffer.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/stream_buffer.c.obj deleted file mode 100644 index f08329ec..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/stream_buffer.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/tasks.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/tasks.c.obj deleted file mode 100644 index 35fe6664..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/tasks.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/timers.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/timers.c.obj deleted file mode 100644 index 659397b4..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/timers.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/app_startup.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/app_startup.c.obj deleted file mode 100644 index 3182ee3a..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/app_startup.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/freertos_compatibility.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/freertos_compatibility.c.obj deleted file mode 100644 index 39b5bf47..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/freertos_compatibility.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions.c.obj deleted file mode 100644 index 793f9e2f..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions_event_groups.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions_event_groups.c.obj deleted file mode 100644 index 37944619..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions_event_groups.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/heap_idf.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/heap_idf.c.obj deleted file mode 100644 index 2e58876e..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/heap_idf.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_common.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_common.c.obj deleted file mode 100644 index 2ec27e21..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_common.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_systick.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_systick.c.obj deleted file mode 100644 index 6801b198..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_systick.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/freertos/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/freertos/cmake_install.cmake deleted file mode 100644 index 68e8d74f..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/freertos/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/freertos/libfreertos.a b/esp32-thread/open-thread-rcp/build/esp-idf/freertos/libfreertos.a deleted file mode 100644 index 8c20d623..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/freertos/libfreertos.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal.c.obj deleted file mode 100644 index 0e85f450..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal_common.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal_common.c.obj deleted file mode 100644 index c9de8b41..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal_common.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_oneshot_hal.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_oneshot_hal.c.obj deleted file mode 100644 index 9fbd3ae8..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_oneshot_hal.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/aes_hal.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/aes_hal.c.obj deleted file mode 100644 index 377e7c95..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/aes_hal.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/apm_hal.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/apm_hal.c.obj deleted file mode 100644 index c33df3fb..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/apm_hal.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/brownout_hal.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/brownout_hal.c.obj deleted file mode 100644 index d34d628c..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/brownout_hal.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj deleted file mode 100644 index c54db700..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/cache_hal.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/color_hal.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/color_hal.c.obj deleted file mode 100644 index ebe1180e..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/color_hal.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/ds_hal.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/ds_hal.c.obj deleted file mode 100644 index 855ff2e8..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/ds_hal.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/ecc_hal.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/ecc_hal.c.obj deleted file mode 100644 index 4dbffa43..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/ecc_hal.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/ecdsa_hal.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/ecdsa_hal.c.obj deleted file mode 100644 index 777d5a21..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/ecdsa_hal.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj deleted file mode 100644 index 47854c41..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32h2/clk_tree_hal.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32h2/clk_tree_hal.c.obj deleted file mode 100644 index c8e15c78..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32h2/clk_tree_hal.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32h2/efuse_hal.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32h2/efuse_hal.c.obj deleted file mode 100644 index 94975c55..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32h2/efuse_hal.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32h2/modem_clock_hal.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32h2/modem_clock_hal.c.obj deleted file mode 100644 index fe473cc3..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32h2/modem_clock_hal.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32h2/pau_hal.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32h2/pau_hal.c.obj deleted file mode 100644 index f3b6cb59..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32h2/pau_hal.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32h2/pmu_hal.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32h2/pmu_hal.c.obj deleted file mode 100644 index 2b0f2627..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32h2/pmu_hal.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/etm_hal.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/etm_hal.c.obj deleted file mode 100644 index 8e36b359..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/etm_hal.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal_ahb_v1.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal_ahb_v1.c.obj deleted file mode 100644 index f2174fac..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal_ahb_v1.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal_top.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal_top.c.obj deleted file mode 100644 index 0356504e..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/gdma_hal_top.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/gpio_hal.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/gpio_hal.c.obj deleted file mode 100644 index 2c6c24ee..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/gpio_hal.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj deleted file mode 100644 index 30791e12..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/hal_utils.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/hmac_hal.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/hmac_hal.c.obj deleted file mode 100644 index 47b1b89e..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/hmac_hal.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal.c.obj deleted file mode 100644 index a3e67166..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal_iram.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal_iram.c.obj deleted file mode 100644 index 954b7172..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal_iram.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/i2s_hal.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/i2s_hal.c.obj deleted file mode 100644 index aec70f83..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/i2s_hal.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal.c.obj deleted file mode 100644 index 821c6289..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal_iram.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal_iram.c.obj deleted file mode 100644 index 8cb2c72b..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal_iram.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/lp_timer_hal.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/lp_timer_hal.c.obj deleted file mode 100644 index b2d65384..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/lp_timer_hal.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/mcpwm_hal.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/mcpwm_hal.c.obj deleted file mode 100644 index e0e381cb..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/mcpwm_hal.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj deleted file mode 100644 index 68b6608c..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/mpi_hal.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/mpi_hal.c.obj deleted file mode 100644 index 2c7b589e..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/mpi_hal.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/parlio_hal.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/parlio_hal.c.obj deleted file mode 100644 index 406752e5..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/parlio_hal.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/pcnt_hal.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/pcnt_hal.c.obj deleted file mode 100644 index 3c6575b9..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/pcnt_hal.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/rmt_hal.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/rmt_hal.c.obj deleted file mode 100644 index 221d62e5..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/rmt_hal.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/rtc_io_hal.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/rtc_io_hal.c.obj deleted file mode 100644 index 59d6b86e..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/rtc_io_hal.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/sdm_hal.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/sdm_hal.c.obj deleted file mode 100644 index db6b0e59..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/sdm_hal.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/sha_hal.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/sha_hal.c.obj deleted file mode 100644 index 2b762044..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/sha_hal.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_encrypt_hal_iram.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_encrypt_hal_iram.c.obj deleted file mode 100644 index c2a62d69..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_encrypt_hal_iram.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal.c.obj deleted file mode 100644 index 80fe88ac..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_gpspi.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_gpspi.c.obj deleted file mode 100644 index 19efa64c..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_gpspi.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_iram.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_iram.c.obj deleted file mode 100644 index edd0c3d5..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_iram.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal.c.obj deleted file mode 100644 index 91844e91..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal_iram.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal_iram.c.obj deleted file mode 100644 index 3ccee677..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal_iram.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal.c.obj deleted file mode 100644 index 210a90b9..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal_iram.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal_iram.c.obj deleted file mode 100644 index f36681a3..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal_iram.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hd_hal.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hd_hal.c.obj deleted file mode 100644 index 3e9cf06b..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hd_hal.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/timer_hal.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/timer_hal.c.obj deleted file mode 100644 index be37b0ea..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/timer_hal.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal_sja1000.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal_sja1000.c.obj deleted file mode 100644 index c1f1157e..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal_sja1000.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal.c.obj deleted file mode 100644 index 6de57cbf..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal_iram.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal_iram.c.obj deleted file mode 100644 index 8b723276..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal_iram.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/uhci_hal.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/uhci_hal.c.obj deleted file mode 100644 index eaa15f7c..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/uhci_hal.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_serial_jtag_hal.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_serial_jtag_hal.c.obj deleted file mode 100644 index 858fba01..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/usb_serial_jtag_hal.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/vbat_hal.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/vbat_hal.c.obj deleted file mode 100644 index 3ea7d349..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/hal/CMakeFiles/__idf_hal.dir/vbat_hal.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/hal/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/hal/cmake_install.cmake deleted file mode 100644 index f12a4ae8..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/hal/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/hal/libhal.a b/esp32-thread/open-thread-rcp/build/esp-idf/hal/libhal.a deleted file mode 100644 index 6c38176e..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/hal/libhal.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps.c.obj deleted file mode 100644 index e80a449e..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_base.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_base.c.obj deleted file mode 100644 index 31775d32..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_base.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_init.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_init.c.obj deleted file mode 100644 index 0e31b499..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_init.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/multi_heap.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/multi_heap.c.obj deleted file mode 100644 index c3f28813..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/multi_heap.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/port/esp32h2/memory_layout.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/port/esp32h2/memory_layout.c.obj deleted file mode 100644 index 7cdca176..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/port/esp32h2/memory_layout.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/port/memory_layout_utils.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/port/memory_layout_utils.c.obj deleted file mode 100644 index 459e79c5..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/heap/CMakeFiles/__idf_heap.dir/port/memory_layout_utils.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/heap/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/heap/cmake_install.cmake deleted file mode 100644 index 02437742..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/heap/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/heap/libheap.a b/esp32-thread/open-thread-rcp/build/esp-idf/heap/libheap.a deleted file mode 100644 index 041a1ee2..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/heap/libheap.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/http_parser/CMakeFiles/__idf_http_parser.dir/http_parser.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/http_parser/CMakeFiles/__idf_http_parser.dir/http_parser.c.obj deleted file mode 100644 index 904bd102..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/http_parser/CMakeFiles/__idf_http_parser.dir/http_parser.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/http_parser/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/http_parser/cmake_install.cmake deleted file mode 100644 index cec3218c..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/http_parser/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/http_parser - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/http_parser/libhttp_parser.a b/esp32-thread/open-thread-rcp/build/esp-idf/http_parser/libhttp_parser.a deleted file mode 100644 index 2397d63d..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/http_parser/libhttp_parser.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_ack.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_ack.c.obj deleted file mode 100644 index c07d29ce..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_ack.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_dev.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_dev.c.obj deleted file mode 100644 index 503138fa..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_dev.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_event.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_event.c.obj deleted file mode 100644 index 2492e0d3..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_event.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_frame.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_frame.c.obj deleted file mode 100644 index 01c88faa..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_frame.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_pib.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_pib.c.obj deleted file mode 100644 index 57a84183..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_pib.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_sec.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_sec.c.obj deleted file mode 100644 index b2e05bb6..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_sec.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_timer.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_timer.c.obj deleted file mode 100644 index a06220c1..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_timer.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_util.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_util.c.obj deleted file mode 100644 index e5677d46..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/driver/esp_ieee802154_util.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/esp_ieee802154.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/esp_ieee802154.c.obj deleted file mode 100644 index 26a7dee1..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/ieee802154/CMakeFiles/__idf_ieee802154.dir/esp_ieee802154.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/ieee802154/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/ieee802154/cmake_install.cmake deleted file mode 100644 index de970620..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/ieee802154/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154 - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/ieee802154/libieee802154.a b/esp32-thread/open-thread-rcp/build/esp-idf/ieee802154/libieee802154.a deleted file mode 100644 index 32ea03f8..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/ieee802154/libieee802154.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/buffer/log_buffers.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/buffer/log_buffers.c.obj deleted file mode 100644 index 2125d575..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/buffer/log_buffers.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log.c.obj deleted file mode 100644 index a3e19c17..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_format_text.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_format_text.c.obj deleted file mode 100644 index ea7ab09c..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_format_text.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/log_level.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/log_level.c.obj deleted file mode 100644 index 5c6c5d74..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/log_level.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/cache/log_binary_heap.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/cache/log_binary_heap.c.obj deleted file mode 100644 index 8265001f..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/cache/log_binary_heap.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/linked_list/log_linked_list.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/linked_list/log_linked_list.c.obj deleted file mode 100644 index b2dcf80b..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/linked_list/log_linked_list.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/tag_log_level.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/tag_log_level.c.obj deleted file mode 100644 index 5f9afc78..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/tag_log_level.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_print.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_print.c.obj deleted file mode 100644 index 053fed0d..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_print.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_timestamp_common.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_timestamp_common.c.obj deleted file mode 100644 index e7fa297a..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/log_timestamp_common.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_lock.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_lock.c.obj deleted file mode 100644 index 11f8df21..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_lock.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_timestamp.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_timestamp.c.obj deleted file mode 100644 index 16909d33..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_timestamp.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_write.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_write.c.obj deleted file mode 100644 index 816b1cf5..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/os/log_write.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/os/util.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/os/util.c.obj deleted file mode 100644 index 9876cbb2..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/os/util.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/util.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/util.c.obj deleted file mode 100644 index 6bf6f01b..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/log/CMakeFiles/__idf_log.dir/src/util.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/log/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/log/cmake_install.cmake deleted file mode 100644 index 2f1d4221..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/log/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/log - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/log/liblog.a b/esp32-thread/open-thread-rcp/build/esp-idf/log/liblog.a deleted file mode 100644 index 5a5243f2..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/log/liblog.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/dhcpserver/dhcpserver.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/dhcpserver/dhcpserver.c.obj deleted file mode 100644 index aff9167d..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/dhcpserver/dhcpserver.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/esp_ping.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/esp_ping.c.obj deleted file mode 100644 index ae0053f3..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/esp_ping.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping.c.obj deleted file mode 100644 index d33693d8..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping_sock.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping_sock.c.obj deleted file mode 100644 index a1ab34ff..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping_sock.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/sntp/sntp.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/sntp/sntp.c.obj deleted file mode 100644 index 85ca4fc9..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/sntp/sntp.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_lib.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_lib.c.obj deleted file mode 100644 index 6a18970a..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_lib.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_msg.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_msg.c.obj deleted file mode 100644 index 9f8c933e..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_msg.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/err.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/err.c.obj deleted file mode 100644 index b6ed6861..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/err.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/if_api.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/if_api.c.obj deleted file mode 100644 index 21907b55..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/if_api.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netbuf.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netbuf.c.obj deleted file mode 100644 index 36ccc60e..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netbuf.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netdb.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netdb.c.obj deleted file mode 100644 index c8962cea..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netdb.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netifapi.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netifapi.c.obj deleted file mode 100644 index 54b687cd..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netifapi.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/sockets.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/sockets.c.obj deleted file mode 100644 index 476ff2ab..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/sockets.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/tcpip.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/tcpip.c.obj deleted file mode 100644 index 1ffa985d..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/tcpip.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/netbiosns/netbiosns.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/netbiosns/netbiosns.c.obj deleted file mode 100644 index 290d5f27..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/netbiosns/netbiosns.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/sntp/sntp.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/sntp/sntp.c.obj deleted file mode 100644 index 87db1de1..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/sntp/sntp.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/def.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/def.c.obj deleted file mode 100644 index b074e0fd..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/def.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/dns.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/dns.c.obj deleted file mode 100644 index c28f9cc7..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/dns.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/inet_chksum.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/inet_chksum.c.obj deleted file mode 100644 index 27eec753..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/inet_chksum.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/init.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/init.c.obj deleted file mode 100644 index d19810e1..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/init.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ip.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ip.c.obj deleted file mode 100644 index 5ed58662..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ip.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/autoip.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/autoip.c.obj deleted file mode 100644 index 359c03ef..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/autoip.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/dhcp.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/dhcp.c.obj deleted file mode 100644 index 8ce60a2a..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/dhcp.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/etharp.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/etharp.c.obj deleted file mode 100644 index d555da36..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/etharp.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/icmp.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/icmp.c.obj deleted file mode 100644 index c86f2911..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/icmp.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/igmp.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/igmp.c.obj deleted file mode 100644 index 63906e88..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/igmp.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4.c.obj deleted file mode 100644 index c47e49cf..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_addr.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_addr.c.obj deleted file mode 100644 index 789ad0ab..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_addr.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_frag.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_frag.c.obj deleted file mode 100644 index 19da541d..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_frag.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_napt.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_napt.c.obj deleted file mode 100644 index 8d5371a4..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_napt.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/dhcp6.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/dhcp6.c.obj deleted file mode 100644 index d6d4b58a..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/dhcp6.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ethip6.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ethip6.c.obj deleted file mode 100644 index a0088b88..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ethip6.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/icmp6.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/icmp6.c.obj deleted file mode 100644 index 4d799c7c..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/icmp6.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/inet6.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/inet6.c.obj deleted file mode 100644 index d0d20ce8..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/inet6.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6.c.obj deleted file mode 100644 index fd7e7b67..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_addr.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_addr.c.obj deleted file mode 100644 index f745c818..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_addr.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_frag.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_frag.c.obj deleted file mode 100644 index 4e68388e..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_frag.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/mld6.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/mld6.c.obj deleted file mode 100644 index 080e14ef..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/mld6.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/nd6.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/nd6.c.obj deleted file mode 100644 index 05846ea0..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/nd6.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/mem.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/mem.c.obj deleted file mode 100644 index c32fab4d..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/mem.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/memp.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/memp.c.obj deleted file mode 100644 index 17b44602..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/memp.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/netif.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/netif.c.obj deleted file mode 100644 index 6c604167..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/netif.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/pbuf.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/pbuf.c.obj deleted file mode 100644 index 74f138d3..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/pbuf.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/raw.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/raw.c.obj deleted file mode 100644 index 9edf9530..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/raw.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/stats.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/stats.c.obj deleted file mode 100644 index f8d78bb0..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/stats.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/sys.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/sys.c.obj deleted file mode 100644 index 8728a990..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/sys.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp.c.obj deleted file mode 100644 index 9012dd3a..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_in.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_in.c.obj deleted file mode 100644 index d57a32af..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_in.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_out.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_out.c.obj deleted file mode 100644 index 06125f59..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_out.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/timeouts.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/timeouts.c.obj deleted file mode 100644 index 5c1a3f54..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/timeouts.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/udp.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/udp.c.obj deleted file mode 100644 index dcfc1120..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/udp.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif.c.obj deleted file mode 100644 index 83aaecd0..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif_fdb.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif_fdb.c.obj deleted file mode 100644 index e65b4ef8..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif_fdb.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ethernet.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ethernet.c.obj deleted file mode 100644 index f70ba929..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ethernet.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/auth.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/auth.c.obj deleted file mode 100644 index 2c527267..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/auth.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ccp.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ccp.c.obj deleted file mode 100644 index f29abdde..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ccp.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-md5.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-md5.c.obj deleted file mode 100644 index a9abf277..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-md5.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-new.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-new.c.obj deleted file mode 100644 index 4daa1a4e..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-new.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap_ms.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap_ms.c.obj deleted file mode 100644 index fab70715..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap_ms.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/demand.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/demand.c.obj deleted file mode 100644 index 55659408..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/demand.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eap.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eap.c.obj deleted file mode 100644 index c24307d6..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eap.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ecp.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ecp.c.obj deleted file mode 100644 index 35c49071..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ecp.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eui64.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eui64.c.obj deleted file mode 100644 index fcbd6824..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eui64.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/fsm.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/fsm.c.obj deleted file mode 100644 index 1055f96c..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/fsm.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipcp.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipcp.c.obj deleted file mode 100644 index ac434ad3..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipcp.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipv6cp.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipv6cp.c.obj deleted file mode 100644 index d6b19e44..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipv6cp.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/lcp.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/lcp.c.obj deleted file mode 100644 index ee96fc05..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/lcp.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/magic.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/magic.c.obj deleted file mode 100644 index 7fbd494c..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/magic.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/mppe.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/mppe.c.obj deleted file mode 100644 index 4603cb8e..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/mppe.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/multilink.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/multilink.c.obj deleted file mode 100644 index 35f270b4..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/multilink.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/arc4.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/arc4.c.obj deleted file mode 100644 index 702984fe..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/arc4.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/des.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/des.c.obj deleted file mode 100644 index 52f42ded..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/des.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/md4.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/md4.c.obj deleted file mode 100644 index 01805c38..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/md4.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/md5.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/md5.c.obj deleted file mode 100644 index cf0207a6..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/md5.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/sha1.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/sha1.c.obj deleted file mode 100644 index 46021774..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/polarssl/sha1.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ppp.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ppp.c.obj deleted file mode 100644 index 72c782db..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ppp.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppapi.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppapi.c.obj deleted file mode 100644 index ba43638d..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppapi.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppcrypt.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppcrypt.c.obj deleted file mode 100644 index cced5052..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppcrypt.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppoe.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppoe.c.obj deleted file mode 100644 index 7f84abe2..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppoe.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppol2tp.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppol2tp.c.obj deleted file mode 100644 index ef3bb707..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppol2tp.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppos.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppos.c.obj deleted file mode 100644 index 2e9b4881..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppos.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/upap.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/upap.c.obj deleted file mode 100644 index 2fb8ea77..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/upap.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/utils.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/utils.c.obj deleted file mode 100644 index 37391953..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/utils.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/vj.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/vj.c.obj deleted file mode 100644 index 20dbf9c2..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/vj.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/slipif.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/slipif.c.obj deleted file mode 100644 index f40cf546..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/slipif.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/acd_dhcp_check.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/acd_dhcp_check.c.obj deleted file mode 100644 index 38c2f1db..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/acd_dhcp_check.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/debug/lwip_debug.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/debug/lwip_debug.c.obj deleted file mode 100644 index c8eea15e..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/debug/lwip_debug.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32xx/vfs_lwip.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32xx/vfs_lwip.c.obj deleted file mode 100644 index a0a69eef..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32xx/vfs_lwip.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/freertos/sys_arch.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/freertos/sys_arch.c.obj deleted file mode 100644 index 2b645dbe..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/freertos/sys_arch.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks/lwip_default_hooks.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks/lwip_default_hooks.c.obj deleted file mode 100644 index 676970df..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks/lwip_default_hooks.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks/tcp_isn_default.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks/tcp_isn_default.c.obj deleted file mode 100644 index 4086e1dc..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks/tcp_isn_default.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/if_index.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/if_index.c.obj deleted file mode 100644 index b68b105e..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/if_index.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/sockets_ext.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/sockets_ext.c.obj deleted file mode 100644 index 27af26e2..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/sockets_ext.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/cmake_install.cmake deleted file mode 100644 index 30692ee2..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/liblwip.a b/esp32-thread/open-thread-rcp/build/esp-idf/lwip/liblwip.a deleted file mode 100644 index 367abd66..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/lwip/liblwip.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/main/CMakeFiles/__idf_main.dir/esp_ot_rcp.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/main/CMakeFiles/__idf_main.dir/esp_ot_rcp.c.obj deleted file mode 100644 index d389eb56..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/main/CMakeFiles/__idf_main.dir/esp_ot_rcp.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/main/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/main/cmake_install.cmake deleted file mode 100644 index 615ead13..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/main/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/main - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/main/libmain.a b/esp32-thread/open-thread-rcp/build/esp-idf/main/libmain.a deleted file mode 100644 index 68900242..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/main/libmain.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/__/__/x509_crt_bundle.S.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/__/__/x509_crt_bundle.S.obj deleted file mode 100644 index 66d61cf7..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/__/__/x509_crt_bundle.S.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/esp_crt_bundle/esp_crt_bundle.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/esp_crt_bundle/esp_crt_bundle.c.obj deleted file mode 100644 index 94b1bce1..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/esp_crt_bundle/esp_crt_bundle.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/cmake_install.cmake deleted file mode 100644 index b99e3eb2..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/cmake_install.cmake +++ /dev/null @@ -1,44 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/cmake_install.cmake") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/libmbedtls.a b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/libmbedtls.a deleted file mode 100644 index 8ecfebfb..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/libmbedtls.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/3rdparty/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/3rdparty/cmake_install.cmake deleted file mode 100644 index 88e69a9d..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/3rdparty/cmake_install.cmake +++ /dev/null @@ -1,46 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for each subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/cmake_install.cmake") - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/cmake_install.cmake") - -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/Hacl_Curve25519_joined.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/Hacl_Curve25519_joined.c.obj deleted file mode 100644 index 77039f4c..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/Hacl_Curve25519_joined.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/everest.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/everest.c.obj deleted file mode 100644 index 87aebfa2..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/everest.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/x25519.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/x25519.c.obj deleted file mode 100644 index c4c709fc..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/x25519.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/cmake_install.cmake deleted file mode 100644 index 287434dd..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/cmake_install.cmake +++ /dev/null @@ -1,51 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - -if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) - file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include" TYPE DIRECTORY PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ DIR_PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE FILES "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest" FILES_MATCHING REGEX "/[^/]*\\.h$") -endif() - -if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) - file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE STATIC_LIBRARY PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ FILES "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a") -endif() - -if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/install-cxx-module-bmi-noconfig.cmake" OPTIONAL) -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a deleted file mode 100644 index 7f2bf67d..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m/p256-m.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m/p256-m.c.obj deleted file mode 100644 index b6ca9ecd..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m/p256-m.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m_driver_entrypoints.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m_driver_entrypoints.c.obj deleted file mode 100644 index 37e0f378..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m_driver_entrypoints.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/cmake_install.cmake deleted file mode 100644 index 93f3d01a..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/cmake_install.cmake +++ /dev/null @@ -1,51 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - -if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) - file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include" TYPE DIRECTORY PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ DIR_PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE FILES "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/:C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m" FILES_MATCHING REGEX "/[^/]*\\.h$") -endif() - -if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) - file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE STATIC_LIBRARY PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ FILES "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a") -endif() - -if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/install-cxx-module-bmi-noconfig.cmake" OPTIONAL) -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a deleted file mode 100644 index 6556e5f8..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/cmake_install.cmake deleted file mode 100644 index 8af58176..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/cmake_install.cmake +++ /dev/null @@ -1,48 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for each subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/include/cmake_install.cmake") - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/3rdparty/cmake_install.cmake") - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/cmake_install.cmake") - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/pkgconfig/cmake_install.cmake") - -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/include/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/include/cmake_install.cmake deleted file mode 100644 index 4b1ee552..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/include/cmake_install.cmake +++ /dev/null @@ -1,146 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - -if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) - file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/mbedtls" TYPE FILE PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ FILES - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/aes.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/aria.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/asn1.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/asn1write.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/base64.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/bignum.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/block_cipher.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/build_info.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/camellia.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ccm.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/chacha20.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/chachapoly.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/check_config.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/cipher.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/cmac.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/compat-2.x.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/config_adjust_legacy_crypto.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/config_adjust_legacy_from_psa.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/config_adjust_psa_from_legacy.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/config_adjust_psa_superset_legacy.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/config_adjust_ssl.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/config_adjust_x509.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/config_psa.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/constant_time.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ctr_drbg.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/debug.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/des.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/dhm.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ecdh.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ecdsa.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ecjpake.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ecp.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/entropy.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/error.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/gcm.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/hkdf.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/hmac_drbg.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/lms.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/mbedtls_config.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/md.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/md5.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/memory_buffer_alloc.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/net_sockets.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/nist_kw.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/oid.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/pem.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/pk.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/pkcs12.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/pkcs5.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/pkcs7.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/platform.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/platform_time.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/platform_util.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/poly1305.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/private_access.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/psa_util.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ripemd160.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/rsa.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/sha1.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/sha256.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/sha3.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/sha512.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ssl.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ssl_cache.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ssl_ciphersuites.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ssl_cookie.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ssl_ticket.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/threading.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/timing.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/version.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/x509.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/x509_crl.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/x509_crt.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/mbedtls/x509_csr.h" - ) -endif() - -if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) - file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/psa" TYPE FILE PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ FILES - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/psa/build_info.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_adjust_auto_enabled.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_adjust_config_dependencies.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_adjust_config_key_pair_types.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_adjust_config_synonyms.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_builtin_composites.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_builtin_key_derivation.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_builtin_primitives.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_compat.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_config.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_driver_common.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_driver_contexts_composites.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_driver_contexts_key_derivation.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_driver_contexts_primitives.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_extra.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_legacy.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_platform.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_se_driver.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_sizes.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_struct.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_types.h" - "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include/psa/crypto_values.h" - ) -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes.c.obj deleted file mode 100644 index b755cdb3..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes_dma_core.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes_dma_core.c.obj deleted file mode 100644 index d0e5908a..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes_dma_core.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes_gdma_impl.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes_gdma_impl.c.obj deleted file mode 100644 index e79768b5..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/dma/esp_aes_gdma_impl.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/esp_aes_common.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/esp_aes_common.c.obj deleted file mode 100644 index 830f13a0..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/esp_aes_common.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/esp_aes_gcm.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/esp_aes_gcm.c.obj deleted file mode 100644 index a6b0fb67..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/esp_aes_gcm.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/esp_aes_xts.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/esp_aes_xts.c.obj deleted file mode 100644 index b7d66a28..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/aes/esp_aes_xts.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/bignum/bignum_alt.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/bignum/bignum_alt.c.obj deleted file mode 100644 index 292a1ed4..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/bignum/bignum_alt.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/bignum/esp_bignum.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/bignum/esp_bignum.c.obj deleted file mode 100644 index 6ea73f05..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/bignum/esp_bignum.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/crypto_shared_gdma/esp_crypto_shared_gdma.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/crypto_shared_gdma/esp_crypto_shared_gdma.c.obj deleted file mode 100644 index c42e830c..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/crypto_shared_gdma/esp_crypto_shared_gdma.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/ecc/ecc_alt.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/ecc/ecc_alt.c.obj deleted file mode 100644 index 91f0826f..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/ecc/ecc_alt.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/ecc/esp_ecc.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/ecc/esp_ecc.c.obj deleted file mode 100644 index 48e0c4c6..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/ecc/esp_ecc.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/ecdsa/ecdsa_alt.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/ecdsa/ecdsa_alt.c.obj deleted file mode 100644 index ae67203a..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/ecdsa/ecdsa_alt.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_ds/esp_ds_common.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_ds/esp_ds_common.c.obj deleted file mode 100644 index cbe3b0a0..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_ds/esp_ds_common.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_ds/esp_rsa_dec_alt.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_ds/esp_rsa_dec_alt.c.obj deleted file mode 100644 index 4b753ada..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_ds/esp_rsa_dec_alt.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_ds/esp_rsa_sign_alt.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_ds/esp_rsa_sign_alt.c.obj deleted file mode 100644 index 1c3cade1..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_ds/esp_rsa_sign_alt.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_hardware.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_hardware.c.obj deleted file mode 100644 index 60219894..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_hardware.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_mem.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_mem.c.obj deleted file mode 100644 index 496b0d60..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_mem.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_timing.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_timing.c.obj deleted file mode 100644 index 18293f97..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_timing.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/md/esp_md.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/md/esp_md.c.obj deleted file mode 100644 index ebf42669..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/md/esp_md.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha1.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha1.c.obj deleted file mode 100644 index bd4f8bd4..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha1.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha256.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha256.c.obj deleted file mode 100644 index 8ed07e0f..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha256.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha512.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha512.c.obj deleted file mode 100644 index 52278209..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha512.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha_gdma_impl.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha_gdma_impl.c.obj deleted file mode 100644 index 12f30d20..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/esp_sha_gdma_impl.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/sha.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/sha.c.obj deleted file mode 100644 index eaffcfe9..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/core/sha.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/esp_sha.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/esp_sha.c.obj deleted file mode 100644 index 361d80ae..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/sha/esp_sha.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aes.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aes.c.obj deleted file mode 100644 index d1d11e4e..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aes.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesce.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesce.c.obj deleted file mode 100644 index 6289c00d..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesce.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesni.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesni.c.obj deleted file mode 100644 index 210c9108..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesni.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aria.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aria.c.obj deleted file mode 100644 index 4781ff7c..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aria.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1parse.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1parse.c.obj deleted file mode 100644 index e061c897..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1parse.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1write.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1write.c.obj deleted file mode 100644 index 9bdf2e95..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1write.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/base64.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/base64.c.obj deleted file mode 100644 index bbac7638..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/base64.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum.c.obj deleted file mode 100644 index ee55ffaa..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_core.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_core.c.obj deleted file mode 100644 index 5285c79b..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_core.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod.c.obj deleted file mode 100644 index 2a3161ca..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod_raw.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod_raw.c.obj deleted file mode 100644 index 0c743ab4..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod_raw.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/block_cipher.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/block_cipher.c.obj deleted file mode 100644 index a9f8c605..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/block_cipher.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/camellia.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/camellia.c.obj deleted file mode 100644 index 3a208987..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/camellia.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ccm.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ccm.c.obj deleted file mode 100644 index 73b43680..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ccm.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chacha20.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chacha20.c.obj deleted file mode 100644 index 59008f39..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chacha20.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chachapoly.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chachapoly.c.obj deleted file mode 100644 index d7f1dffa..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chachapoly.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher.c.obj deleted file mode 100644 index d4acd444..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher_wrap.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher_wrap.c.obj deleted file mode 100644 index 1c982161..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher_wrap.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cmac.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cmac.c.obj deleted file mode 100644 index 0eedea2a..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cmac.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/constant_time.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/constant_time.c.obj deleted file mode 100644 index 654cf473..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/constant_time.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ctr_drbg.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ctr_drbg.c.obj deleted file mode 100644 index ef03005d..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ctr_drbg.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/des.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/des.c.obj deleted file mode 100644 index 5ee7c6e8..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/des.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/dhm.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/dhm.c.obj deleted file mode 100644 index b3300a59..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/dhm.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdh.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdh.c.obj deleted file mode 100644 index fd3df11a..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdh.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdsa.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdsa.c.obj deleted file mode 100644 index 1534c1e9..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdsa.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecjpake.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecjpake.c.obj deleted file mode 100644 index fa47ae82..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecjpake.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp.c.obj deleted file mode 100644 index 811f3468..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves.c.obj deleted file mode 100644 index e8cee093..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves_new.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves_new.c.obj deleted file mode 100644 index 567c5308..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves_new.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy.c.obj deleted file mode 100644 index 8cfe5076..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy_poll.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy_poll.c.obj deleted file mode 100644 index bc1bc7f8..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy_poll.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/error.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/error.c.obj deleted file mode 100644 index 33f968f7..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/error.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/gcm.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/gcm.c.obj deleted file mode 100644 index dc6b7d90..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/gcm.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hkdf.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hkdf.c.obj deleted file mode 100644 index 0a2e7d3b..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hkdf.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hmac_drbg.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hmac_drbg.c.obj deleted file mode 100644 index a4b7a6d6..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hmac_drbg.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lmots.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lmots.c.obj deleted file mode 100644 index 1604ec17..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lmots.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lms.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lms.c.obj deleted file mode 100644 index 170baa70..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lms.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md.c.obj deleted file mode 100644 index 8e17ec07..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md5.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md5.c.obj deleted file mode 100644 index 04d0de57..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md5.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/memory_buffer_alloc.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/memory_buffer_alloc.c.obj deleted file mode 100644 index ea96f7db..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/memory_buffer_alloc.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/nist_kw.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/nist_kw.c.obj deleted file mode 100644 index ceafefaa..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/nist_kw.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/oid.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/oid.c.obj deleted file mode 100644 index 203fa111..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/oid.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/padlock.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/padlock.c.obj deleted file mode 100644 index 5dc6932f..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/padlock.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pem.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pem.c.obj deleted file mode 100644 index 38a3092d..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pem.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk.c.obj deleted file mode 100644 index 018038ff..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_ecc.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_ecc.c.obj deleted file mode 100644 index 5f6e1a8e..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_ecc.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_wrap.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_wrap.c.obj deleted file mode 100644 index f7028321..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_wrap.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs12.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs12.c.obj deleted file mode 100644 index e217f30d..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs12.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs5.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs5.c.obj deleted file mode 100644 index b19d6d04..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs5.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkparse.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkparse.c.obj deleted file mode 100644 index 04e109ca..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkparse.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkwrite.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkwrite.c.obj deleted file mode 100644 index 9717613d..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkwrite.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform.c.obj deleted file mode 100644 index 6470ab67..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform_util.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform_util.c.obj deleted file mode 100644 index b5f7a728..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform_util.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/poly1305.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/poly1305.c.obj deleted file mode 100644 index 1894d2e4..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/poly1305.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto.c.obj deleted file mode 100644 index 0ce60cc6..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_aead.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_aead.c.obj deleted file mode 100644 index fa21d7a0..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_aead.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_cipher.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_cipher.c.obj deleted file mode 100644 index 701766b9..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_cipher.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_client.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_client.c.obj deleted file mode 100644 index 0d080594..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_client.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_driver_wrappers_no_static.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_driver_wrappers_no_static.c.obj deleted file mode 100644 index 8c28842f..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_driver_wrappers_no_static.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ecp.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ecp.c.obj deleted file mode 100644 index c0f53f4c..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ecp.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ffdh.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ffdh.c.obj deleted file mode 100644 index 8714a14f..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ffdh.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_hash.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_hash.c.obj deleted file mode 100644 index e89a0832..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_hash.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_mac.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_mac.c.obj deleted file mode 100644 index 042e1aa9..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_mac.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_pake.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_pake.c.obj deleted file mode 100644 index 9862aae2..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_pake.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_rsa.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_rsa.c.obj deleted file mode 100644 index acf11cf3..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_rsa.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_se.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_se.c.obj deleted file mode 100644 index 49072963..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_se.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_slot_management.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_slot_management.c.obj deleted file mode 100644 index 039ab282..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_slot_management.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_storage.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_storage.c.obj deleted file mode 100644 index a866083e..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_storage.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_its_file.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_its_file.c.obj deleted file mode 100644 index 8c784429..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_its_file.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_util.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_util.c.obj deleted file mode 100644 index bbe067b8..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_util.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ripemd160.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ripemd160.c.obj deleted file mode 100644 index c8056ed1..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ripemd160.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa.c.obj deleted file mode 100644 index ffd17bbc..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa_alt_helpers.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa_alt_helpers.c.obj deleted file mode 100644 index 2b4b63ef..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa_alt_helpers.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha1.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha1.c.obj deleted file mode 100644 index a6904705..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha1.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha256.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha256.c.obj deleted file mode 100644 index 2f053ab1..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha256.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha3.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha3.c.obj deleted file mode 100644 index e81849cf..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha3.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha512.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha512.c.obj deleted file mode 100644 index fd20df38..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha512.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/threading.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/threading.c.obj deleted file mode 100644 index 79ad85df..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/threading.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/timing.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/timing.c.obj deleted file mode 100644 index 9154e0fd..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/timing.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version.c.obj deleted file mode 100644 index 03ac387c..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version_features.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version_features.c.obj deleted file mode 100644 index e7fc3e0c..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version_features.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_platform_time.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_platform_time.c.obj deleted file mode 100644 index 53597157..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_platform_time.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/mbedtls_debug.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/mbedtls_debug.c.obj deleted file mode 100644 index c121cd7d..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/mbedtls_debug.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/net_sockets.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/net_sockets.c.obj deleted file mode 100644 index b337d497..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/port/net_sockets.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/debug.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/debug.c.obj deleted file mode 100644 index 2a8fc8ea..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/debug.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_reader.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_reader.c.obj deleted file mode 100644 index 237fc7e3..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_reader.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_trace.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_trace.c.obj deleted file mode 100644 index 6a073b75..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_trace.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cache.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cache.c.obj deleted file mode 100644 index a95fd202..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cache.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ciphersuites.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ciphersuites.c.obj deleted file mode 100644 index ec177e15..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ciphersuites.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_client.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_client.c.obj deleted file mode 100644 index 1919dca0..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_client.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cookie.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cookie.c.obj deleted file mode 100644 index 19a76843..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cookie.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_debug_helpers_generated.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_debug_helpers_generated.c.obj deleted file mode 100644 index 49a7e21d..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_debug_helpers_generated.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_msg.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_msg.c.obj deleted file mode 100644 index 4c359141..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_msg.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ticket.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ticket.c.obj deleted file mode 100644 index cabb5aee..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ticket.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls.c.obj deleted file mode 100644 index bfb2e4eb..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_client.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_client.c.obj deleted file mode 100644 index 7b4e7dde..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_client.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_server.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_server.c.obj deleted file mode 100644 index 6db3875b..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_server.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_client.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_client.c.obj deleted file mode 100644 index b6ed2a10..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_client.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_generic.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_generic.c.obj deleted file mode 100644 index 4449a7fd..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_generic.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_keys.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_keys.c.obj deleted file mode 100644 index 0557489f..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_keys.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_server.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_server.c.obj deleted file mode 100644 index 1531f47d..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_server.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/pkcs7.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/pkcs7.c.obj deleted file mode 100644 index 26ad7612..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/pkcs7.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509.c.obj deleted file mode 100644 index b2a03a80..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_create.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_create.c.obj deleted file mode 100644 index afbe31fd..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_create.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crl.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crl.c.obj deleted file mode 100644 index 8c8c0194..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crl.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crt.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crt.c.obj deleted file mode 100644 index e43d5125..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crt.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_csr.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_csr.c.obj deleted file mode 100644 index b921e3d6..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_csr.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write.c.obj deleted file mode 100644 index c26b4ff3..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_crt.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_crt.c.obj deleted file mode 100644 index 1dd3c3bb..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_crt.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_csr.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_csr.c.obj deleted file mode 100644 index 9697b270..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_csr.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/cmake_install.cmake deleted file mode 100644 index e86bd377..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/cmake_install.cmake +++ /dev/null @@ -1,51 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - -if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) - file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE STATIC_LIBRARY FILES "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a") -endif() - -if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) - file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE STATIC_LIBRARY FILES "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/libmbedx509.a") -endif() - -if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) - file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE STATIC_LIBRARY FILES "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/libmbedtls.a") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/error.c b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/error.c deleted file mode 100644 index 297eccd0..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/error.c +++ /dev/null @@ -1,878 +0,0 @@ -/* - * Error message information - * - * Copyright The Mbed TLS Contributors - * SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later - */ - -#include "common.h" - -#include "mbedtls/error.h" - -#if defined(MBEDTLS_ERROR_C) || defined(MBEDTLS_ERROR_STRERROR_DUMMY) - -#if defined(MBEDTLS_ERROR_C) - -#include "mbedtls/platform.h" - -#include -#include - -#if defined(MBEDTLS_AES_C) -#include "mbedtls/aes.h" -#endif - -#if defined(MBEDTLS_ARIA_C) -#include "mbedtls/aria.h" -#endif - -#if defined(MBEDTLS_ASN1_PARSE_C) -#include "mbedtls/asn1.h" -#endif - -#if defined(MBEDTLS_BASE64_C) -#include "mbedtls/base64.h" -#endif - -#if defined(MBEDTLS_BIGNUM_C) -#include "mbedtls/bignum.h" -#endif - -#if defined(MBEDTLS_CAMELLIA_C) -#include "mbedtls/camellia.h" -#endif - -#if defined(MBEDTLS_CCM_C) -#include "mbedtls/ccm.h" -#endif - -#if defined(MBEDTLS_CHACHA20_C) -#include "mbedtls/chacha20.h" -#endif - -#if defined(MBEDTLS_CHACHAPOLY_C) -#include "mbedtls/chachapoly.h" -#endif - -#if defined(MBEDTLS_CIPHER_C) -#include "mbedtls/cipher.h" -#endif - -#if defined(MBEDTLS_CTR_DRBG_C) -#include "mbedtls/ctr_drbg.h" -#endif - -#if defined(MBEDTLS_DES_C) -#include "mbedtls/des.h" -#endif - -#if defined(MBEDTLS_DHM_C) -#include "mbedtls/dhm.h" -#endif - -#if defined(MBEDTLS_ECP_C) -#include "mbedtls/ecp.h" -#endif - -#if defined(MBEDTLS_ENTROPY_C) -#include "mbedtls/entropy.h" -#endif - -#if defined(MBEDTLS_ERROR_C) -#include "mbedtls/error.h" -#endif - -#if defined(MBEDTLS_PLATFORM_C) -#include "mbedtls/platform.h" -#endif - -#if defined(MBEDTLS_GCM_C) -#include "mbedtls/gcm.h" -#endif - -#if defined(MBEDTLS_HKDF_C) -#include "mbedtls/hkdf.h" -#endif - -#if defined(MBEDTLS_HMAC_DRBG_C) -#include "mbedtls/hmac_drbg.h" -#endif - -#if defined(MBEDTLS_LMS_C) -#include "mbedtls/lms.h" -#endif - -#if defined(MBEDTLS_MD_C) -#include "mbedtls/md.h" -#endif - -#if defined(MBEDTLS_NET_C) -#include "mbedtls/net_sockets.h" -#endif - -#if defined(MBEDTLS_OID_C) -#include "mbedtls/oid.h" -#endif - -#if defined(MBEDTLS_PEM_PARSE_C) || defined(MBEDTLS_PEM_WRITE_C) -#include "mbedtls/pem.h" -#endif - -#if defined(MBEDTLS_PK_C) -#include "mbedtls/pk.h" -#endif - -#if defined(MBEDTLS_PKCS12_C) -#include "mbedtls/pkcs12.h" -#endif - -#if defined(MBEDTLS_PKCS5_C) -#include "mbedtls/pkcs5.h" -#endif - -#if defined(MBEDTLS_PKCS7_C) -#include "mbedtls/pkcs7.h" -#endif - -#if defined(MBEDTLS_POLY1305_C) -#include "mbedtls/poly1305.h" -#endif - -#if defined(MBEDTLS_RSA_C) -#include "mbedtls/rsa.h" -#endif - -#if defined(MBEDTLS_SHA1_C) -#include "mbedtls/sha1.h" -#endif - -#if defined(MBEDTLS_SHA256_C) -#include "mbedtls/sha256.h" -#endif - -#if defined(MBEDTLS_SHA3_C) -#include "mbedtls/sha3.h" -#endif - -#if defined(MBEDTLS_SHA512_C) -#include "mbedtls/sha512.h" -#endif - -#if defined(MBEDTLS_SSL_TLS_C) -#include "mbedtls/ssl.h" -#endif - -#if defined(MBEDTLS_THREADING_C) -#include "mbedtls/threading.h" -#endif - -#if defined(MBEDTLS_X509_USE_C) || defined(MBEDTLS_X509_CREATE_C) -#include "mbedtls/x509.h" -#endif - - -const char *mbedtls_high_level_strerr(int error_code) -{ - int high_level_error_code; - - if (error_code < 0) { - error_code = -error_code; - } - - /* Extract the high-level part from the error code. */ - high_level_error_code = error_code & 0xFF80; - - switch (high_level_error_code) { - /* Begin Auto-Generated Code. */ - #if defined(MBEDTLS_CIPHER_C) - case -(MBEDTLS_ERR_CIPHER_FEATURE_UNAVAILABLE): - return( "CIPHER - The selected feature is not available" ); - case -(MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA): - return( "CIPHER - Bad input parameters" ); - case -(MBEDTLS_ERR_CIPHER_ALLOC_FAILED): - return( "CIPHER - Failed to allocate memory" ); - case -(MBEDTLS_ERR_CIPHER_INVALID_PADDING): - return( "CIPHER - Input data contains invalid padding and is rejected" ); - case -(MBEDTLS_ERR_CIPHER_FULL_BLOCK_EXPECTED): - return( "CIPHER - Decryption of block requires a full block" ); - case -(MBEDTLS_ERR_CIPHER_AUTH_FAILED): - return( "CIPHER - Authentication failed (for AEAD modes)" ); - case -(MBEDTLS_ERR_CIPHER_INVALID_CONTEXT): - return( "CIPHER - The context is invalid. For example, because it was freed" ); -#endif /* MBEDTLS_CIPHER_C */ - -#if defined(MBEDTLS_DHM_C) - case -(MBEDTLS_ERR_DHM_BAD_INPUT_DATA): - return( "DHM - Bad input parameters" ); - case -(MBEDTLS_ERR_DHM_READ_PARAMS_FAILED): - return( "DHM - Reading of the DHM parameters failed" ); - case -(MBEDTLS_ERR_DHM_MAKE_PARAMS_FAILED): - return( "DHM - Making of the DHM parameters failed" ); - case -(MBEDTLS_ERR_DHM_READ_PUBLIC_FAILED): - return( "DHM - Reading of the public values failed" ); - case -(MBEDTLS_ERR_DHM_MAKE_PUBLIC_FAILED): - return( "DHM - Making of the public value failed" ); - case -(MBEDTLS_ERR_DHM_CALC_SECRET_FAILED): - return( "DHM - Calculation of the DHM secret failed" ); - case -(MBEDTLS_ERR_DHM_INVALID_FORMAT): - return( "DHM - The ASN.1 data is not formatted correctly" ); - case -(MBEDTLS_ERR_DHM_ALLOC_FAILED): - return( "DHM - Allocation of memory failed" ); - case -(MBEDTLS_ERR_DHM_FILE_IO_ERROR): - return( "DHM - Read or write of file failed" ); - case -(MBEDTLS_ERR_DHM_SET_GROUP_FAILED): - return( "DHM - Setting the modulus and generator failed" ); -#endif /* MBEDTLS_DHM_C */ - -#if defined(MBEDTLS_ECP_C) - case -(MBEDTLS_ERR_ECP_BAD_INPUT_DATA): - return( "ECP - Bad input parameters to function" ); - case -(MBEDTLS_ERR_ECP_BUFFER_TOO_SMALL): - return( "ECP - The buffer is too small to write to" ); - case -(MBEDTLS_ERR_ECP_FEATURE_UNAVAILABLE): - return( "ECP - The requested feature is not available, for example, the requested curve is not supported" ); - case -(MBEDTLS_ERR_ECP_VERIFY_FAILED): - return( "ECP - The signature is not valid" ); - case -(MBEDTLS_ERR_ECP_ALLOC_FAILED): - return( "ECP - Memory allocation failed" ); - case -(MBEDTLS_ERR_ECP_RANDOM_FAILED): - return( "ECP - Generation of random value, such as ephemeral key, failed" ); - case -(MBEDTLS_ERR_ECP_INVALID_KEY): - return( "ECP - Invalid private or public key" ); - case -(MBEDTLS_ERR_ECP_SIG_LEN_MISMATCH): - return( "ECP - The buffer contains a valid signature followed by more data" ); - case -(MBEDTLS_ERR_ECP_IN_PROGRESS): - return( "ECP - Operation in progress, call again with the same parameters to continue" ); -#endif /* MBEDTLS_ECP_C */ - -#if defined(MBEDTLS_MD_C) - case -(MBEDTLS_ERR_MD_FEATURE_UNAVAILABLE): - return( "MD - The selected feature is not available" ); - case -(MBEDTLS_ERR_MD_BAD_INPUT_DATA): - return( "MD - Bad input parameters to function" ); - case -(MBEDTLS_ERR_MD_ALLOC_FAILED): - return( "MD - Failed to allocate memory" ); - case -(MBEDTLS_ERR_MD_FILE_IO_ERROR): - return( "MD - Opening or reading of file failed" ); -#endif /* MBEDTLS_MD_C */ - -#if defined(MBEDTLS_PEM_PARSE_C) || defined(MBEDTLS_PEM_WRITE_C) - case -(MBEDTLS_ERR_PEM_NO_HEADER_FOOTER_PRESENT): - return( "PEM - No PEM header or footer found" ); - case -(MBEDTLS_ERR_PEM_INVALID_DATA): - return( "PEM - PEM string is not as expected" ); - case -(MBEDTLS_ERR_PEM_ALLOC_FAILED): - return( "PEM - Failed to allocate memory" ); - case -(MBEDTLS_ERR_PEM_INVALID_ENC_IV): - return( "PEM - RSA IV is not in hex-format" ); - case -(MBEDTLS_ERR_PEM_UNKNOWN_ENC_ALG): - return( "PEM - Unsupported key encryption algorithm" ); - case -(MBEDTLS_ERR_PEM_PASSWORD_REQUIRED): - return( "PEM - Private key password can't be empty" ); - case -(MBEDTLS_ERR_PEM_PASSWORD_MISMATCH): - return( "PEM - Given private key password does not allow for correct decryption" ); - case -(MBEDTLS_ERR_PEM_FEATURE_UNAVAILABLE): - return( "PEM - Unavailable feature, e.g. hashing/encryption combination" ); - case -(MBEDTLS_ERR_PEM_BAD_INPUT_DATA): - return( "PEM - Bad input parameters to function" ); -#endif /* MBEDTLS_PEM_PARSE_C || MBEDTLS_PEM_WRITE_C */ - -#if defined(MBEDTLS_PK_C) - case -(MBEDTLS_ERR_PK_ALLOC_FAILED): - return( "PK - Memory allocation failed" ); - case -(MBEDTLS_ERR_PK_TYPE_MISMATCH): - return( "PK - Type mismatch, eg attempt to encrypt with an ECDSA key" ); - case -(MBEDTLS_ERR_PK_BAD_INPUT_DATA): - return( "PK - Bad input parameters to function" ); - case -(MBEDTLS_ERR_PK_FILE_IO_ERROR): - return( "PK - Read/write of file failed" ); - case -(MBEDTLS_ERR_PK_KEY_INVALID_VERSION): - return( "PK - Unsupported key version" ); - case -(MBEDTLS_ERR_PK_KEY_INVALID_FORMAT): - return( "PK - Invalid key tag or value" ); - case -(MBEDTLS_ERR_PK_UNKNOWN_PK_ALG): - return( "PK - Key algorithm is unsupported (only RSA and EC are supported)" ); - case -(MBEDTLS_ERR_PK_PASSWORD_REQUIRED): - return( "PK - Private key password can't be empty" ); - case -(MBEDTLS_ERR_PK_PASSWORD_MISMATCH): - return( "PK - Given private key password does not allow for correct decryption" ); - case -(MBEDTLS_ERR_PK_INVALID_PUBKEY): - return( "PK - The pubkey tag or value is invalid (only RSA and EC are supported)" ); - case -(MBEDTLS_ERR_PK_INVALID_ALG): - return( "PK - The algorithm tag or value is invalid" ); - case -(MBEDTLS_ERR_PK_UNKNOWN_NAMED_CURVE): - return( "PK - Elliptic curve is unsupported (only NIST curves are supported)" ); - case -(MBEDTLS_ERR_PK_FEATURE_UNAVAILABLE): - return( "PK - Unavailable feature, e.g. RSA disabled for RSA key" ); - case -(MBEDTLS_ERR_PK_SIG_LEN_MISMATCH): - return( "PK - The buffer contains a valid signature followed by more data" ); - case -(MBEDTLS_ERR_PK_BUFFER_TOO_SMALL): - return( "PK - The output buffer is too small" ); -#endif /* MBEDTLS_PK_C */ - -#if defined(MBEDTLS_PKCS12_C) - case -(MBEDTLS_ERR_PKCS12_BAD_INPUT_DATA): - return( "PKCS12 - Bad input parameters to function" ); - case -(MBEDTLS_ERR_PKCS12_FEATURE_UNAVAILABLE): - return( "PKCS12 - Feature not available, e.g. unsupported encryption scheme" ); - case -(MBEDTLS_ERR_PKCS12_PBE_INVALID_FORMAT): - return( "PKCS12 - PBE ASN.1 data not as expected" ); - case -(MBEDTLS_ERR_PKCS12_PASSWORD_MISMATCH): - return( "PKCS12 - Given private key password does not allow for correct decryption" ); -#endif /* MBEDTLS_PKCS12_C */ - -#if defined(MBEDTLS_PKCS5_C) - case -(MBEDTLS_ERR_PKCS5_BAD_INPUT_DATA): - return( "PKCS5 - Bad input parameters to function" ); - case -(MBEDTLS_ERR_PKCS5_INVALID_FORMAT): - return( "PKCS5 - Unexpected ASN.1 data" ); - case -(MBEDTLS_ERR_PKCS5_FEATURE_UNAVAILABLE): - return( "PKCS5 - Requested encryption or digest alg not available" ); - case -(MBEDTLS_ERR_PKCS5_PASSWORD_MISMATCH): - return( "PKCS5 - Given private key password does not allow for correct decryption" ); -#endif /* MBEDTLS_PKCS5_C */ - -#if defined(MBEDTLS_PKCS7_C) - case -(MBEDTLS_ERR_PKCS7_INVALID_FORMAT): - return( "PKCS7 - The format is invalid, e.g. different type expected" ); - case -(MBEDTLS_ERR_PKCS7_FEATURE_UNAVAILABLE): - return( "PKCS7 - Unavailable feature, e.g. anything other than signed data" ); - case -(MBEDTLS_ERR_PKCS7_INVALID_VERSION): - return( "PKCS7 - The PKCS #7 version element is invalid or cannot be parsed" ); - case -(MBEDTLS_ERR_PKCS7_INVALID_CONTENT_INFO): - return( "PKCS7 - The PKCS #7 content info is invalid or cannot be parsed" ); - case -(MBEDTLS_ERR_PKCS7_INVALID_ALG): - return( "PKCS7 - The algorithm tag or value is invalid or cannot be parsed" ); - case -(MBEDTLS_ERR_PKCS7_INVALID_CERT): - return( "PKCS7 - The certificate tag or value is invalid or cannot be parsed" ); - case -(MBEDTLS_ERR_PKCS7_INVALID_SIGNATURE): - return( "PKCS7 - Error parsing the signature" ); - case -(MBEDTLS_ERR_PKCS7_INVALID_SIGNER_INFO): - return( "PKCS7 - Error parsing the signer's info" ); - case -(MBEDTLS_ERR_PKCS7_BAD_INPUT_DATA): - return( "PKCS7 - Input invalid" ); - case -(MBEDTLS_ERR_PKCS7_ALLOC_FAILED): - return( "PKCS7 - Allocation of memory failed" ); - case -(MBEDTLS_ERR_PKCS7_VERIFY_FAIL): - return( "PKCS7 - Verification Failed" ); - case -(MBEDTLS_ERR_PKCS7_CERT_DATE_INVALID): - return( "PKCS7 - The PKCS #7 date issued/expired dates are invalid" ); -#endif /* MBEDTLS_PKCS7_C */ - -#if defined(MBEDTLS_RSA_C) - case -(MBEDTLS_ERR_RSA_BAD_INPUT_DATA): - return( "RSA - Bad input parameters to function" ); - case -(MBEDTLS_ERR_RSA_INVALID_PADDING): - return( "RSA - Input data contains invalid padding and is rejected" ); - case -(MBEDTLS_ERR_RSA_KEY_GEN_FAILED): - return( "RSA - Something failed during generation of a key" ); - case -(MBEDTLS_ERR_RSA_KEY_CHECK_FAILED): - return( "RSA - Key failed to pass the validity check of the library" ); - case -(MBEDTLS_ERR_RSA_PUBLIC_FAILED): - return( "RSA - The public key operation failed" ); - case -(MBEDTLS_ERR_RSA_PRIVATE_FAILED): - return( "RSA - The private key operation failed" ); - case -(MBEDTLS_ERR_RSA_VERIFY_FAILED): - return( "RSA - The PKCS#1 verification failed" ); - case -(MBEDTLS_ERR_RSA_OUTPUT_TOO_LARGE): - return( "RSA - The output buffer for decryption is not large enough" ); - case -(MBEDTLS_ERR_RSA_RNG_FAILED): - return( "RSA - The random generator failed to generate non-zeros" ); -#endif /* MBEDTLS_RSA_C */ - -#if defined(MBEDTLS_SSL_TLS_C) - case -(MBEDTLS_ERR_SSL_CRYPTO_IN_PROGRESS): - return( "SSL - A cryptographic operation is in progress. Try again later" ); - case -(MBEDTLS_ERR_SSL_FEATURE_UNAVAILABLE): - return( "SSL - The requested feature is not available" ); - case -(MBEDTLS_ERR_SSL_BAD_INPUT_DATA): - return( "SSL - Bad input parameters to function" ); - case -(MBEDTLS_ERR_SSL_INVALID_MAC): - return( "SSL - Verification of the message MAC failed" ); - case -(MBEDTLS_ERR_SSL_INVALID_RECORD): - return( "SSL - An invalid SSL record was received" ); - case -(MBEDTLS_ERR_SSL_CONN_EOF): - return( "SSL - The connection indicated an EOF" ); - case -(MBEDTLS_ERR_SSL_DECODE_ERROR): - return( "SSL - A message could not be parsed due to a syntactic error" ); - case -(MBEDTLS_ERR_SSL_NO_RNG): - return( "SSL - No RNG was provided to the SSL module" ); - case -(MBEDTLS_ERR_SSL_NO_CLIENT_CERTIFICATE): - return( "SSL - No client certification received from the client, but required by the authentication mode" ); - case -(MBEDTLS_ERR_SSL_UNSUPPORTED_EXTENSION): - return( "SSL - Client received an extended server hello containing an unsupported extension" ); - case -(MBEDTLS_ERR_SSL_NO_APPLICATION_PROTOCOL): - return( "SSL - No ALPN protocols supported that the client advertises" ); - case -(MBEDTLS_ERR_SSL_PRIVATE_KEY_REQUIRED): - return( "SSL - The own private key or pre-shared key is not set, but needed" ); - case -(MBEDTLS_ERR_SSL_CA_CHAIN_REQUIRED): - return( "SSL - No CA Chain is set, but required to operate" ); - case -(MBEDTLS_ERR_SSL_UNEXPECTED_MESSAGE): - return( "SSL - An unexpected message was received from our peer" ); - case -(MBEDTLS_ERR_SSL_FATAL_ALERT_MESSAGE): - return( "SSL - A fatal alert message was received from our peer" ); - case -(MBEDTLS_ERR_SSL_UNRECOGNIZED_NAME): - return( "SSL - No server could be identified matching the client's SNI" ); - case -(MBEDTLS_ERR_SSL_PEER_CLOSE_NOTIFY): - return( "SSL - The peer notified us that the connection is going to be closed" ); - case -(MBEDTLS_ERR_SSL_BAD_CERTIFICATE): - return( "SSL - Processing of the Certificate handshake message failed" ); - case -(MBEDTLS_ERR_SSL_RECEIVED_NEW_SESSION_TICKET): - return( "SSL - A TLS 1.3 NewSessionTicket message has been received" ); - case -(MBEDTLS_ERR_SSL_CANNOT_READ_EARLY_DATA): - return( "SSL - Not possible to read early data" ); - case -(MBEDTLS_ERR_SSL_RECEIVED_EARLY_DATA): - return( "SSL - * Early data has been received as part of an on-going handshake. This error code can be returned only on server side if and only if early data has been enabled by means of the mbedtls_ssl_conf_early_data() API. This error code can then be returned by mbedtls_ssl_handshake(), mbedtls_ssl_handshake_step(), mbedtls_ssl_read() or mbedtls_ssl_write() if early data has been received as part of the handshake sequence they triggered. To read the early data, call mbedtls_ssl_read_early_data()" ); - case -(MBEDTLS_ERR_SSL_CANNOT_WRITE_EARLY_DATA): - return( "SSL - Not possible to write early data" ); - case -(MBEDTLS_ERR_SSL_CACHE_ENTRY_NOT_FOUND): - return( "SSL - Cache entry not found" ); - case -(MBEDTLS_ERR_SSL_ALLOC_FAILED): - return( "SSL - Memory allocation failed" ); - case -(MBEDTLS_ERR_SSL_HW_ACCEL_FAILED): - return( "SSL - Hardware acceleration function returned with error" ); - case -(MBEDTLS_ERR_SSL_HW_ACCEL_FALLTHROUGH): - return( "SSL - Hardware acceleration function skipped / left alone data" ); - case -(MBEDTLS_ERR_SSL_BAD_PROTOCOL_VERSION): - return( "SSL - Handshake protocol not within min/max boundaries" ); - case -(MBEDTLS_ERR_SSL_HANDSHAKE_FAILURE): - return( "SSL - The handshake negotiation failed" ); - case -(MBEDTLS_ERR_SSL_SESSION_TICKET_EXPIRED): - return( "SSL - Session ticket has expired" ); - case -(MBEDTLS_ERR_SSL_PK_TYPE_MISMATCH): - return( "SSL - Public key type mismatch (eg, asked for RSA key exchange and presented EC key)" ); - case -(MBEDTLS_ERR_SSL_UNKNOWN_IDENTITY): - return( "SSL - Unknown identity received (eg, PSK identity)" ); - case -(MBEDTLS_ERR_SSL_INTERNAL_ERROR): - return( "SSL - Internal error (eg, unexpected failure in lower-level module)" ); - case -(MBEDTLS_ERR_SSL_COUNTER_WRAPPING): - return( "SSL - A counter would wrap (eg, too many messages exchanged)" ); - case -(MBEDTLS_ERR_SSL_WAITING_SERVER_HELLO_RENEGO): - return( "SSL - Unexpected message at ServerHello in renegotiation" ); - case -(MBEDTLS_ERR_SSL_HELLO_VERIFY_REQUIRED): - return( "SSL - DTLS client must retry for hello verification" ); - case -(MBEDTLS_ERR_SSL_BUFFER_TOO_SMALL): - return( "SSL - A buffer is too small to receive or write a message" ); - case -(MBEDTLS_ERR_SSL_WANT_READ): - return( "SSL - No data of requested type currently available on underlying transport" ); - case -(MBEDTLS_ERR_SSL_WANT_WRITE): - return( "SSL - Connection requires a write call" ); - case -(MBEDTLS_ERR_SSL_TIMEOUT): - return( "SSL - The operation timed out" ); - case -(MBEDTLS_ERR_SSL_CLIENT_RECONNECT): - return( "SSL - The client initiated a reconnect from the same port" ); - case -(MBEDTLS_ERR_SSL_UNEXPECTED_RECORD): - return( "SSL - Record header looks valid but is not expected" ); - case -(MBEDTLS_ERR_SSL_NON_FATAL): - return( "SSL - The alert message received indicates a non-fatal error" ); - case -(MBEDTLS_ERR_SSL_ILLEGAL_PARAMETER): - return( "SSL - A field in a message was incorrect or inconsistent with other fields" ); - case -(MBEDTLS_ERR_SSL_CONTINUE_PROCESSING): - return( "SSL - Internal-only message signaling that further message-processing should be done" ); - case -(MBEDTLS_ERR_SSL_ASYNC_IN_PROGRESS): - return( "SSL - The asynchronous operation is not completed yet" ); - case -(MBEDTLS_ERR_SSL_EARLY_MESSAGE): - return( "SSL - Internal-only message signaling that a message arrived early" ); - case -(MBEDTLS_ERR_SSL_UNEXPECTED_CID): - return( "SSL - An encrypted DTLS-frame with an unexpected CID was received" ); - case -(MBEDTLS_ERR_SSL_VERSION_MISMATCH): - return( "SSL - An operation failed due to an unexpected version or configuration" ); - case -(MBEDTLS_ERR_SSL_BAD_CONFIG): - return( "SSL - Invalid value in SSL config" ); - case -(MBEDTLS_ERR_SSL_CERTIFICATE_VERIFICATION_WITHOUT_HOSTNAME): - return( "SSL - Attempt to verify a certificate without an expected hostname. This is usually insecure. In TLS clients, when a client authenticates a server through its certificate, the client normally checks three things: - the certificate chain must be valid; - the chain must start from a trusted CA; - the certificate must cover the server name that is expected by the client. Omitting any of these checks is generally insecure, and can allow a malicious server to impersonate a legitimate server. The third check may be safely skipped in some unusual scenarios, such as networks where eavesdropping is a risk but not active attacks, or a private PKI where the client equally trusts all servers that are accredited by the root CA. You should call mbedtls_ssl_set_hostname() with the expected server name before starting a TLS handshake on a client (unless the client is set up to only use PSK-based authentication, which does not rely on the host name). If you have determined that server name verification is not required for security in your scenario, call mbedtls_ssl_set_hostname() with \\p NULL as the server name. This error is raised if all of the following conditions are met: - A TLS client is configured with the authentication mode #MBEDTLS_SSL_VERIFY_REQUIRED (default). - Certificate authentication is enabled. - The client does not call mbedtls_ssl_set_hostname(). - The configuration option #MBEDTLS_SSL_CLI_ALLOW_WEAK_CERTIFICATE_VERIFICATION_WITHOUT_HOSTNAME is not enabled" ); -#endif /* MBEDTLS_SSL_TLS_C */ - -#if defined(MBEDTLS_X509_USE_C) || defined(MBEDTLS_X509_CREATE_C) - case -(MBEDTLS_ERR_X509_FEATURE_UNAVAILABLE): - return( "X509 - Unavailable feature, e.g. RSA hashing/encryption combination" ); - case -(MBEDTLS_ERR_X509_UNKNOWN_OID): - return( "X509 - Requested OID is unknown" ); - case -(MBEDTLS_ERR_X509_INVALID_FORMAT): - return( "X509 - The CRT/CRL/CSR format is invalid, e.g. different type expected" ); - case -(MBEDTLS_ERR_X509_INVALID_VERSION): - return( "X509 - The CRT/CRL/CSR version element is invalid" ); - case -(MBEDTLS_ERR_X509_INVALID_SERIAL): - return( "X509 - The serial tag or value is invalid" ); - case -(MBEDTLS_ERR_X509_INVALID_ALG): - return( "X509 - The algorithm tag or value is invalid" ); - case -(MBEDTLS_ERR_X509_INVALID_NAME): - return( "X509 - The name tag or value is invalid" ); - case -(MBEDTLS_ERR_X509_INVALID_DATE): - return( "X509 - The date tag or value is invalid" ); - case -(MBEDTLS_ERR_X509_INVALID_SIGNATURE): - return( "X509 - The signature tag or value invalid" ); - case -(MBEDTLS_ERR_X509_INVALID_EXTENSIONS): - return( "X509 - The extension tag or value is invalid" ); - case -(MBEDTLS_ERR_X509_UNKNOWN_VERSION): - return( "X509 - CRT/CRL/CSR has an unsupported version number" ); - case -(MBEDTLS_ERR_X509_UNKNOWN_SIG_ALG): - return( "X509 - Signature algorithm (oid) is unsupported" ); - case -(MBEDTLS_ERR_X509_SIG_MISMATCH): - return( "X509 - Signature algorithms do not match. (see \\c ::mbedtls_x509_crt sig_oid)" ); - case -(MBEDTLS_ERR_X509_CERT_VERIFY_FAILED): - return( "X509 - Certificate verification failed, e.g. CRL, CA or signature check failed" ); - case -(MBEDTLS_ERR_X509_CERT_UNKNOWN_FORMAT): - return( "X509 - Format not recognized as DER or PEM" ); - case -(MBEDTLS_ERR_X509_BAD_INPUT_DATA): - return( "X509 - Input invalid" ); - case -(MBEDTLS_ERR_X509_ALLOC_FAILED): - return( "X509 - Allocation of memory failed" ); - case -(MBEDTLS_ERR_X509_FILE_IO_ERROR): - return( "X509 - Read/write of file failed" ); - case -(MBEDTLS_ERR_X509_BUFFER_TOO_SMALL): - return( "X509 - Destination buffer is too small" ); - case -(MBEDTLS_ERR_X509_FATAL_ERROR): - return( "X509 - A fatal error occurred, eg the chain is too long or the vrfy callback failed" ); -#endif /* MBEDTLS_X509_USE_C || MBEDTLS_X509_CREATE_C */ - /* End Auto-Generated Code. */ - - default: - break; - } - - return NULL; -} - -const char *mbedtls_low_level_strerr(int error_code) -{ - int low_level_error_code; - - if (error_code < 0) { - error_code = -error_code; - } - - /* Extract the low-level part from the error code. */ - low_level_error_code = error_code & ~0xFF80; - - switch (low_level_error_code) { - /* Begin Auto-Generated Code. */ - #if defined(MBEDTLS_AES_C) - case -(MBEDTLS_ERR_AES_INVALID_KEY_LENGTH): - return( "AES - Invalid key length" ); - case -(MBEDTLS_ERR_AES_INVALID_INPUT_LENGTH): - return( "AES - Invalid data input length" ); - case -(MBEDTLS_ERR_AES_BAD_INPUT_DATA): - return( "AES - Invalid input data" ); -#endif /* MBEDTLS_AES_C */ - -#if defined(MBEDTLS_ARIA_C) - case -(MBEDTLS_ERR_ARIA_BAD_INPUT_DATA): - return( "ARIA - Bad input data" ); - case -(MBEDTLS_ERR_ARIA_INVALID_INPUT_LENGTH): - return( "ARIA - Invalid data input length" ); -#endif /* MBEDTLS_ARIA_C */ - -#if defined(MBEDTLS_ASN1_PARSE_C) - case -(MBEDTLS_ERR_ASN1_OUT_OF_DATA): - return( "ASN1 - Out of data when parsing an ASN1 data structure" ); - case -(MBEDTLS_ERR_ASN1_UNEXPECTED_TAG): - return( "ASN1 - ASN1 tag was of an unexpected value" ); - case -(MBEDTLS_ERR_ASN1_INVALID_LENGTH): - return( "ASN1 - Error when trying to determine the length or invalid length" ); - case -(MBEDTLS_ERR_ASN1_LENGTH_MISMATCH): - return( "ASN1 - Actual length differs from expected length" ); - case -(MBEDTLS_ERR_ASN1_INVALID_DATA): - return( "ASN1 - Data is invalid" ); - case -(MBEDTLS_ERR_ASN1_ALLOC_FAILED): - return( "ASN1 - Memory allocation failed" ); - case -(MBEDTLS_ERR_ASN1_BUF_TOO_SMALL): - return( "ASN1 - Buffer too small when writing ASN.1 data structure" ); -#endif /* MBEDTLS_ASN1_PARSE_C */ - -#if defined(MBEDTLS_BASE64_C) - case -(MBEDTLS_ERR_BASE64_BUFFER_TOO_SMALL): - return( "BASE64 - Output buffer too small" ); - case -(MBEDTLS_ERR_BASE64_INVALID_CHARACTER): - return( "BASE64 - Invalid character in input" ); -#endif /* MBEDTLS_BASE64_C */ - -#if defined(MBEDTLS_BIGNUM_C) - case -(MBEDTLS_ERR_MPI_FILE_IO_ERROR): - return( "BIGNUM - An error occurred while reading from or writing to a file" ); - case -(MBEDTLS_ERR_MPI_BAD_INPUT_DATA): - return( "BIGNUM - Bad input parameters to function" ); - case -(MBEDTLS_ERR_MPI_INVALID_CHARACTER): - return( "BIGNUM - There is an invalid character in the digit string" ); - case -(MBEDTLS_ERR_MPI_BUFFER_TOO_SMALL): - return( "BIGNUM - The buffer is too small to write to" ); - case -(MBEDTLS_ERR_MPI_NEGATIVE_VALUE): - return( "BIGNUM - The input arguments are negative or result in illegal output" ); - case -(MBEDTLS_ERR_MPI_DIVISION_BY_ZERO): - return( "BIGNUM - The input argument for division is zero, which is not allowed" ); - case -(MBEDTLS_ERR_MPI_NOT_ACCEPTABLE): - return( "BIGNUM - The input arguments are not acceptable" ); - case -(MBEDTLS_ERR_MPI_ALLOC_FAILED): - return( "BIGNUM - Memory allocation failed" ); -#endif /* MBEDTLS_BIGNUM_C */ - -#if defined(MBEDTLS_CAMELLIA_C) - case -(MBEDTLS_ERR_CAMELLIA_BAD_INPUT_DATA): - return( "CAMELLIA - Bad input data" ); - case -(MBEDTLS_ERR_CAMELLIA_INVALID_INPUT_LENGTH): - return( "CAMELLIA - Invalid data input length" ); -#endif /* MBEDTLS_CAMELLIA_C */ - -#if defined(MBEDTLS_CCM_C) - case -(MBEDTLS_ERR_CCM_BAD_INPUT): - return( "CCM - Bad input parameters to the function" ); - case -(MBEDTLS_ERR_CCM_AUTH_FAILED): - return( "CCM - Authenticated decryption failed" ); -#endif /* MBEDTLS_CCM_C */ - -#if defined(MBEDTLS_CHACHA20_C) - case -(MBEDTLS_ERR_CHACHA20_BAD_INPUT_DATA): - return( "CHACHA20 - Invalid input parameter(s)" ); -#endif /* MBEDTLS_CHACHA20_C */ - -#if defined(MBEDTLS_CHACHAPOLY_C) - case -(MBEDTLS_ERR_CHACHAPOLY_BAD_STATE): - return( "CHACHAPOLY - The requested operation is not permitted in the current state" ); - case -(MBEDTLS_ERR_CHACHAPOLY_AUTH_FAILED): - return( "CHACHAPOLY - Authenticated decryption failed: data was not authentic" ); -#endif /* MBEDTLS_CHACHAPOLY_C */ - -#if defined(MBEDTLS_CTR_DRBG_C) - case -(MBEDTLS_ERR_CTR_DRBG_ENTROPY_SOURCE_FAILED): - return( "CTR_DRBG - The entropy source failed" ); - case -(MBEDTLS_ERR_CTR_DRBG_REQUEST_TOO_BIG): - return( "CTR_DRBG - The requested random buffer length is too big" ); - case -(MBEDTLS_ERR_CTR_DRBG_INPUT_TOO_BIG): - return( "CTR_DRBG - The input (entropy + additional data) is too large" ); - case -(MBEDTLS_ERR_CTR_DRBG_FILE_IO_ERROR): - return( "CTR_DRBG - Read or write error in file" ); -#endif /* MBEDTLS_CTR_DRBG_C */ - -#if defined(MBEDTLS_DES_C) - case -(MBEDTLS_ERR_DES_INVALID_INPUT_LENGTH): - return( "DES - The data input has an invalid length" ); -#endif /* MBEDTLS_DES_C */ - -#if defined(MBEDTLS_ENTROPY_C) - case -(MBEDTLS_ERR_ENTROPY_SOURCE_FAILED): - return( "ENTROPY - Critical entropy source failure" ); - case -(MBEDTLS_ERR_ENTROPY_MAX_SOURCES): - return( "ENTROPY - No more sources can be added" ); - case -(MBEDTLS_ERR_ENTROPY_NO_SOURCES_DEFINED): - return( "ENTROPY - No sources have been added to poll" ); - case -(MBEDTLS_ERR_ENTROPY_NO_STRONG_SOURCE): - return( "ENTROPY - No strong sources have been added to poll" ); - case -(MBEDTLS_ERR_ENTROPY_FILE_IO_ERROR): - return( "ENTROPY - Read/write error in file" ); -#endif /* MBEDTLS_ENTROPY_C */ - -#if defined(MBEDTLS_ERROR_C) - case -(MBEDTLS_ERR_ERROR_GENERIC_ERROR): - return( "ERROR - Generic error" ); - case -(MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED): - return( "ERROR - This is a bug in the library" ); -#endif /* MBEDTLS_ERROR_C */ - -#if defined(MBEDTLS_PLATFORM_C) - case -(MBEDTLS_ERR_PLATFORM_HW_ACCEL_FAILED): - return( "PLATFORM - Hardware accelerator failed" ); - case -(MBEDTLS_ERR_PLATFORM_FEATURE_UNSUPPORTED): - return( "PLATFORM - The requested feature is not supported by the platform" ); -#endif /* MBEDTLS_PLATFORM_C */ - -#if defined(MBEDTLS_GCM_C) - case -(MBEDTLS_ERR_GCM_AUTH_FAILED): - return( "GCM - Authenticated decryption failed" ); - case -(MBEDTLS_ERR_GCM_BAD_INPUT): - return( "GCM - Bad input parameters to function" ); - case -(MBEDTLS_ERR_GCM_BUFFER_TOO_SMALL): - return( "GCM - An output buffer is too small" ); -#endif /* MBEDTLS_GCM_C */ - -#if defined(MBEDTLS_HKDF_C) - case -(MBEDTLS_ERR_HKDF_BAD_INPUT_DATA): - return( "HKDF - Bad input parameters to function" ); -#endif /* MBEDTLS_HKDF_C */ - -#if defined(MBEDTLS_HMAC_DRBG_C) - case -(MBEDTLS_ERR_HMAC_DRBG_REQUEST_TOO_BIG): - return( "HMAC_DRBG - Too many random requested in single call" ); - case -(MBEDTLS_ERR_HMAC_DRBG_INPUT_TOO_BIG): - return( "HMAC_DRBG - Input too large (Entropy + additional)" ); - case -(MBEDTLS_ERR_HMAC_DRBG_FILE_IO_ERROR): - return( "HMAC_DRBG - Read/write error in file" ); - case -(MBEDTLS_ERR_HMAC_DRBG_ENTROPY_SOURCE_FAILED): - return( "HMAC_DRBG - The entropy source failed" ); -#endif /* MBEDTLS_HMAC_DRBG_C */ - -#if defined(MBEDTLS_LMS_C) - case -(MBEDTLS_ERR_LMS_BAD_INPUT_DATA): - return( "LMS - Bad data has been input to an LMS function" ); - case -(MBEDTLS_ERR_LMS_OUT_OF_PRIVATE_KEYS): - return( "LMS - Specified LMS key has utilised all of its private keys" ); - case -(MBEDTLS_ERR_LMS_VERIFY_FAILED): - return( "LMS - LMS signature verification failed" ); - case -(MBEDTLS_ERR_LMS_ALLOC_FAILED): - return( "LMS - LMS failed to allocate space for a private key" ); - case -(MBEDTLS_ERR_LMS_BUFFER_TOO_SMALL): - return( "LMS - Input/output buffer is too small to contain requited data" ); -#endif /* MBEDTLS_LMS_C */ - -#if defined(MBEDTLS_NET_C) - case -(MBEDTLS_ERR_NET_SOCKET_FAILED): - return( "NET - Failed to open a socket" ); - case -(MBEDTLS_ERR_NET_CONNECT_FAILED): - return( "NET - The connection to the given server / port failed" ); - case -(MBEDTLS_ERR_NET_BIND_FAILED): - return( "NET - Binding of the socket failed" ); - case -(MBEDTLS_ERR_NET_LISTEN_FAILED): - return( "NET - Could not listen on the socket" ); - case -(MBEDTLS_ERR_NET_ACCEPT_FAILED): - return( "NET - Could not accept the incoming connection" ); - case -(MBEDTLS_ERR_NET_RECV_FAILED): - return( "NET - Reading information from the socket failed" ); - case -(MBEDTLS_ERR_NET_SEND_FAILED): - return( "NET - Sending information through the socket failed" ); - case -(MBEDTLS_ERR_NET_CONN_RESET): - return( "NET - Connection was reset by peer" ); - case -(MBEDTLS_ERR_NET_UNKNOWN_HOST): - return( "NET - Failed to get an IP address for the given hostname" ); - case -(MBEDTLS_ERR_NET_BUFFER_TOO_SMALL): - return( "NET - Buffer is too small to hold the data" ); - case -(MBEDTLS_ERR_NET_INVALID_CONTEXT): - return( "NET - The context is invalid, eg because it was free()ed" ); - case -(MBEDTLS_ERR_NET_POLL_FAILED): - return( "NET - Polling the net context failed" ); - case -(MBEDTLS_ERR_NET_BAD_INPUT_DATA): - return( "NET - Input invalid" ); -#endif /* MBEDTLS_NET_C */ - -#if defined(MBEDTLS_OID_C) - case -(MBEDTLS_ERR_OID_NOT_FOUND): - return( "OID - OID is not found" ); - case -(MBEDTLS_ERR_OID_BUF_TOO_SMALL): - return( "OID - output buffer is too small" ); -#endif /* MBEDTLS_OID_C */ - -#if defined(MBEDTLS_POLY1305_C) - case -(MBEDTLS_ERR_POLY1305_BAD_INPUT_DATA): - return( "POLY1305 - Invalid input parameter(s)" ); -#endif /* MBEDTLS_POLY1305_C */ - -#if defined(MBEDTLS_SHA1_C) - case -(MBEDTLS_ERR_SHA1_BAD_INPUT_DATA): - return( "SHA1 - SHA-1 input data was malformed" ); -#endif /* MBEDTLS_SHA1_C */ - -#if defined(MBEDTLS_SHA256_C) - case -(MBEDTLS_ERR_SHA256_BAD_INPUT_DATA): - return( "SHA256 - SHA-256 input data was malformed" ); -#endif /* MBEDTLS_SHA256_C */ - -#if defined(MBEDTLS_SHA3_C) - case -(MBEDTLS_ERR_SHA3_BAD_INPUT_DATA): - return( "SHA3 - SHA-3 input data was malformed" ); -#endif /* MBEDTLS_SHA3_C */ - -#if defined(MBEDTLS_SHA512_C) - case -(MBEDTLS_ERR_SHA512_BAD_INPUT_DATA): - return( "SHA512 - SHA-512 input data was malformed" ); -#endif /* MBEDTLS_SHA512_C */ - -#if defined(MBEDTLS_THREADING_C) - case -(MBEDTLS_ERR_THREADING_BAD_INPUT_DATA): - return( "THREADING - Bad input parameters to function" ); - case -(MBEDTLS_ERR_THREADING_MUTEX_ERROR): - return( "THREADING - Locking / unlocking / free failed with error code" ); -#endif /* MBEDTLS_THREADING_C */ - /* End Auto-Generated Code. */ - - default: - break; - } - - return NULL; -} - -void mbedtls_strerror(int ret, char *buf, size_t buflen) -{ - size_t len; - int use_ret; - const char *high_level_error_description = NULL; - const char *low_level_error_description = NULL; - - if (buflen == 0) { - return; - } - - memset(buf, 0x00, buflen); - - if (ret < 0) { - ret = -ret; - } - - if (ret & 0xFF80) { - use_ret = ret & 0xFF80; - - // Translate high level error code. - high_level_error_description = mbedtls_high_level_strerr(ret); - - if (high_level_error_description == NULL) { - mbedtls_snprintf(buf, buflen, "UNKNOWN ERROR CODE (%04X)", (unsigned int) use_ret); - } else { - mbedtls_snprintf(buf, buflen, "%s", high_level_error_description); - } - -#if defined(MBEDTLS_SSL_TLS_C) - // Early return in case of a fatal error - do not try to translate low - // level code. - if (use_ret == -(MBEDTLS_ERR_SSL_FATAL_ALERT_MESSAGE)) { - return; - } -#endif /* MBEDTLS_SSL_TLS_C */ - } - - use_ret = ret & ~0xFF80; - - if (use_ret == 0) { - return; - } - - // If high level code is present, make a concatenation between both - // error strings. - // - len = strlen(buf); - - if (len > 0) { - if (buflen - len < 5) { - return; - } - - mbedtls_snprintf(buf + len, buflen - len, " : "); - - buf += len + 3; - buflen -= len + 3; - } - - // Translate low level error code. - low_level_error_description = mbedtls_low_level_strerr(ret); - - if (low_level_error_description == NULL) { - mbedtls_snprintf(buf, buflen, "UNKNOWN ERROR CODE (%04X)", (unsigned int) use_ret); - } else { - mbedtls_snprintf(buf, buflen, "%s", low_level_error_description); - } -} - -#else /* MBEDTLS_ERROR_C */ - -/* - * Provide a dummy implementation when MBEDTLS_ERROR_C is not defined - */ -void mbedtls_strerror(int ret, char *buf, size_t buflen) -{ - ((void) ret); - - if (buflen > 0) { - buf[0] = '\0'; - } -} - -#endif /* MBEDTLS_ERROR_C */ - -#endif /* MBEDTLS_ERROR_C || MBEDTLS_ERROR_STRERROR_DUMMY */ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a deleted file mode 100644 index 8bae14d8..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/libmbedtls.a b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/libmbedtls.a deleted file mode 100644 index 4ffa62f8..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/libmbedtls.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/libmbedx509.a b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/libmbedx509.a deleted file mode 100644 index 32d25bbc..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/libmbedx509.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/psa_crypto_driver_wrappers_no_static.c b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/psa_crypto_driver_wrappers_no_static.c deleted file mode 100644 index de8a5269..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/psa_crypto_driver_wrappers_no_static.c +++ /dev/null @@ -1,256 +0,0 @@ -/* - * Functions to delegate cryptographic operations to an available - * and appropriate accelerator. - * Warning: This file is now auto-generated. - */ -/* Copyright The Mbed TLS Contributors - * SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later - */ - - -/* BEGIN-common headers */ -#include "common.h" -#include "psa_crypto_aead.h" -#include "psa_crypto_cipher.h" -#include "psa_crypto_core.h" -#include "psa_crypto_driver_wrappers_no_static.h" -#include "psa_crypto_hash.h" -#include "psa_crypto_mac.h" -#include "psa_crypto_pake.h" -#include "psa_crypto_rsa.h" - -#include "mbedtls/platform.h" -/* END-common headers */ - -#if defined(MBEDTLS_PSA_CRYPTO_C) - -/* BEGIN-driver headers */ -/* Headers for mbedtls_test opaque driver */ -#if defined(PSA_CRYPTO_DRIVER_TEST) -#include "test/drivers/test_driver.h" - -#endif -/* Headers for mbedtls_test transparent driver */ -#if defined(PSA_CRYPTO_DRIVER_TEST) -#include "test/drivers/test_driver.h" - -#endif -/* Headers for p256 transparent driver */ -#if defined(MBEDTLS_PSA_P256M_DRIVER_ENABLED) -#include "../3rdparty/p256-m/p256-m_driver_entrypoints.h" - -#endif - -/* END-driver headers */ - -/* Auto-generated values depending on which drivers are registered. - * ID 0 is reserved for unallocated operations. - * ID 1 is reserved for the Mbed TLS software driver. */ -/* BEGIN-driver id definition */ -#define PSA_CRYPTO_MBED_TLS_DRIVER_ID (1) -#define MBEDTLS_TEST_OPAQUE_DRIVER_ID (2) -#define MBEDTLS_TEST_TRANSPARENT_DRIVER_ID (3) -#define P256_TRANSPARENT_DRIVER_ID (4) - -/* END-driver id */ - -/* BEGIN-Common Macro definitions */ - -/* END-Common Macro definitions */ - -/* Support the 'old' SE interface when asked to */ -#if defined(MBEDTLS_PSA_CRYPTO_SE_C) -/* PSA_CRYPTO_DRIVER_PRESENT is defined when either a new-style or old-style - * SE driver is present, to avoid unused argument errors at compile time. */ -#ifndef PSA_CRYPTO_DRIVER_PRESENT -#define PSA_CRYPTO_DRIVER_PRESENT -#endif -#include "psa_crypto_se.h" -#endif - -/** Get the key buffer size required to store the key material of a key - * associated with an opaque driver. - * - * \param[in] attributes The key attributes. - * \param[out] key_buffer_size Minimum buffer size to contain the key material - * - * \retval #PSA_SUCCESS - * The minimum size for a buffer to contain the key material has been - * returned successfully. - * \retval #PSA_ERROR_NOT_SUPPORTED - * The type and/or the size in bits of the key or the combination of - * the two is not supported. - * \retval #PSA_ERROR_INVALID_ARGUMENT - * The key is declared with a lifetime not known to us. - */ -psa_status_t psa_driver_wrapper_get_key_buffer_size( - const psa_key_attributes_t *attributes, - size_t *key_buffer_size ) -{ - psa_key_location_t location = PSA_KEY_LIFETIME_GET_LOCATION( psa_get_key_lifetime(attributes) ); - psa_key_type_t key_type = psa_get_key_type(attributes); - size_t key_bits = psa_get_key_bits(attributes); - - *key_buffer_size = 0; - switch( location ) - { -#if defined(PSA_CRYPTO_DRIVER_TEST) - case PSA_CRYPTO_TEST_DRIVER_LOCATION: -#if defined(MBEDTLS_PSA_CRYPTO_BUILTIN_KEYS) - /* Emulate property 'builtin_key_size' */ - if( psa_key_id_is_builtin( - MBEDTLS_SVC_KEY_ID_GET_KEY_ID( - psa_get_key_id( attributes ) ) ) ) - { - *key_buffer_size = sizeof( psa_drv_slot_number_t ); - return( PSA_SUCCESS ); - } -#endif /* MBEDTLS_PSA_CRYPTO_BUILTIN_KEYS */ - *key_buffer_size = mbedtls_test_opaque_size_function( key_type, - key_bits ); - return( ( *key_buffer_size != 0 ) ? - PSA_SUCCESS : PSA_ERROR_NOT_SUPPORTED ); -#endif /* PSA_CRYPTO_DRIVER_TEST */ - - default: - (void)key_type; - (void)key_bits; - return( PSA_ERROR_INVALID_ARGUMENT ); - } -} - -psa_status_t psa_driver_wrapper_export_public_key( - const psa_key_attributes_t *attributes, - const uint8_t *key_buffer, size_t key_buffer_size, - uint8_t *data, size_t data_size, size_t *data_length ) - -{ - - psa_status_t status = PSA_ERROR_INVALID_ARGUMENT; - psa_key_location_t location = PSA_KEY_LIFETIME_GET_LOCATION( - psa_get_key_lifetime( attributes ) ); - - /* Try dynamically-registered SE interface first */ -#if defined(MBEDTLS_PSA_CRYPTO_SE_C) - const psa_drv_se_t *drv; - psa_drv_se_context_t *drv_context; - - if( psa_get_se_driver( psa_get_key_lifetime(attributes), &drv, &drv_context ) ) - { - if( ( drv->key_management == NULL ) || - ( drv->key_management->p_export_public == NULL ) ) - { - return( PSA_ERROR_NOT_SUPPORTED ); - } - - return( drv->key_management->p_export_public( - drv_context, - *( (psa_key_slot_number_t *)key_buffer ), - data, data_size, data_length ) ); - } -#endif /* MBEDTLS_PSA_CRYPTO_SE_C */ - - switch( location ) - { - case PSA_KEY_LOCATION_LOCAL_STORAGE: - /* Key is stored in the slot in export representation, so - * cycle through all known transparent accelerators */ -#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT) - -#if (defined(PSA_CRYPTO_DRIVER_TEST) ) - status = mbedtls_test_transparent_export_public_key - (attributes, - key_buffer, - key_buffer_size, - data, - data_size, - data_length - ); - - if( status != PSA_ERROR_NOT_SUPPORTED ) - return( status ); -#endif - -#if (defined(MBEDTLS_PSA_P256M_DRIVER_ENABLED) ) - status = p256_transparent_export_public_key - (attributes, - key_buffer, - key_buffer_size, - data, - data_size, - data_length - ); - - if( status != PSA_ERROR_NOT_SUPPORTED ) - return( status ); -#endif - - -#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */ - /* Fell through, meaning no accelerator supports this operation */ - return( psa_export_public_key_internal( attributes, - key_buffer, - key_buffer_size, - data, - data_size, - data_length ) ); - - /* Add cases for opaque driver here */ -#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT) - -#if (defined(PSA_CRYPTO_DRIVER_TEST) ) - case 0x7fffff: - return( mbedtls_test_opaque_export_public_key - (attributes, - key_buffer, - key_buffer_size, - data, - data_size, - data_length - )); -#endif - - -#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */ - default: - /* Key is declared with a lifetime not known to us */ - return( status ); - } - -} - -psa_status_t psa_driver_wrapper_get_builtin_key( - psa_drv_slot_number_t slot_number, - psa_key_attributes_t *attributes, - uint8_t *key_buffer, size_t key_buffer_size, size_t *key_buffer_length ) -{ - - psa_key_location_t location = PSA_KEY_LIFETIME_GET_LOCATION( psa_get_key_lifetime(attributes) ); - switch( location ) - { -#if defined(PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT) - -#if (defined(PSA_CRYPTO_DRIVER_TEST) ) - case 0x7fffff: - return( mbedtls_test_opaque_get_builtin_key - (slot_number, - attributes, - key_buffer, - key_buffer_size, - key_buffer_length - )); -#endif - - -#endif /* PSA_CRYPTO_ACCELERATOR_DRIVER_PRESENT */ - default: - (void) slot_number; - (void) key_buffer; - (void) key_buffer_size; - (void) key_buffer_length; - return( PSA_ERROR_DOES_NOT_EXIST ); - } - -} - -#endif /* MBEDTLS_PSA_CRYPTO_C */ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/ssl_debug_helpers_generated.c b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/ssl_debug_helpers_generated.c deleted file mode 100644 index 808fce73..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/ssl_debug_helpers_generated.c +++ /dev/null @@ -1,251 +0,0 @@ -/* Automatically generated by generate_ssl_debug_helpers.py. DO NOT EDIT. */ - -/** - * \file ssl_debug_helpers_generated.c - * - * \brief Automatically generated helper functions for debugging - */ -/* - * Copyright The Mbed TLS Contributors - * SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later - * - */ - -#include "ssl_misc.h" - -#if defined(MBEDTLS_DEBUG_C) - -#include "ssl_debug_helpers.h" - - -const char *mbedtls_ssl_named_group_to_str( uint16_t in ) -{ - switch( in ) - { - case MBEDTLS_SSL_IANA_TLS_GROUP_SECP192K1: - return "secp192k1"; - case MBEDTLS_SSL_IANA_TLS_GROUP_SECP192R1: - return "secp192r1"; - case MBEDTLS_SSL_IANA_TLS_GROUP_SECP224K1: - return "secp224k1"; - case MBEDTLS_SSL_IANA_TLS_GROUP_SECP224R1: - return "secp224r1"; - case MBEDTLS_SSL_IANA_TLS_GROUP_SECP256K1: - return "secp256k1"; - case MBEDTLS_SSL_IANA_TLS_GROUP_SECP256R1: - return "secp256r1"; - case MBEDTLS_SSL_IANA_TLS_GROUP_SECP384R1: - return "secp384r1"; - case MBEDTLS_SSL_IANA_TLS_GROUP_SECP521R1: - return "secp521r1"; - case MBEDTLS_SSL_IANA_TLS_GROUP_BP256R1: - return "bp256r1"; - case MBEDTLS_SSL_IANA_TLS_GROUP_BP384R1: - return "bp384r1"; - case MBEDTLS_SSL_IANA_TLS_GROUP_BP512R1: - return "bp512r1"; - case MBEDTLS_SSL_IANA_TLS_GROUP_X25519: - return "x25519"; - case MBEDTLS_SSL_IANA_TLS_GROUP_X448: - return "x448"; - case MBEDTLS_SSL_IANA_TLS_GROUP_FFDHE2048: - return "ffdhe2048"; - case MBEDTLS_SSL_IANA_TLS_GROUP_FFDHE3072: - return "ffdhe3072"; - case MBEDTLS_SSL_IANA_TLS_GROUP_FFDHE4096: - return "ffdhe4096"; - case MBEDTLS_SSL_IANA_TLS_GROUP_FFDHE6144: - return "ffdhe6144"; - case MBEDTLS_SSL_IANA_TLS_GROUP_FFDHE8192: - return "ffdhe8192"; - }; - - return "UNKNOWN"; -} -const char *mbedtls_ssl_sig_alg_to_str( uint16_t in ) -{ - switch( in ) - { - case MBEDTLS_TLS1_3_SIG_RSA_PKCS1_SHA256: - return "rsa_pkcs1_sha256"; - case MBEDTLS_TLS1_3_SIG_RSA_PKCS1_SHA384: - return "rsa_pkcs1_sha384"; - case MBEDTLS_TLS1_3_SIG_RSA_PKCS1_SHA512: - return "rsa_pkcs1_sha512"; - case MBEDTLS_TLS1_3_SIG_ECDSA_SECP256R1_SHA256: - return "ecdsa_secp256r1_sha256"; - case MBEDTLS_TLS1_3_SIG_ECDSA_SECP384R1_SHA384: - return "ecdsa_secp384r1_sha384"; - case MBEDTLS_TLS1_3_SIG_ECDSA_SECP521R1_SHA512: - return "ecdsa_secp521r1_sha512"; - case MBEDTLS_TLS1_3_SIG_RSA_PSS_RSAE_SHA256: - return "rsa_pss_rsae_sha256"; - case MBEDTLS_TLS1_3_SIG_RSA_PSS_RSAE_SHA384: - return "rsa_pss_rsae_sha384"; - case MBEDTLS_TLS1_3_SIG_RSA_PSS_RSAE_SHA512: - return "rsa_pss_rsae_sha512"; - case MBEDTLS_TLS1_3_SIG_ED25519: - return "ed25519"; - case MBEDTLS_TLS1_3_SIG_ED448: - return "ed448"; - case MBEDTLS_TLS1_3_SIG_RSA_PSS_PSS_SHA256: - return "rsa_pss_pss_sha256"; - case MBEDTLS_TLS1_3_SIG_RSA_PSS_PSS_SHA384: - return "rsa_pss_pss_sha384"; - case MBEDTLS_TLS1_3_SIG_RSA_PSS_PSS_SHA512: - return "rsa_pss_pss_sha512"; - case MBEDTLS_TLS1_3_SIG_RSA_PKCS1_SHA1: - return "rsa_pkcs1_sha1"; - case MBEDTLS_TLS1_3_SIG_ECDSA_SHA1: - return "ecdsa_sha1"; - case MBEDTLS_TLS1_3_SIG_NONE: - return "none"; - }; - - return "UNKNOWN"; -} -const char *mbedtls_ssl_states_str( mbedtls_ssl_states in ) -{ - switch (in) { - case MBEDTLS_SSL_HELLO_REQUEST: - return "MBEDTLS_SSL_HELLO_REQUEST"; - case MBEDTLS_SSL_CLIENT_HELLO: - return "MBEDTLS_SSL_CLIENT_HELLO"; - case MBEDTLS_SSL_SERVER_HELLO: - return "MBEDTLS_SSL_SERVER_HELLO"; - case MBEDTLS_SSL_SERVER_CERTIFICATE: - return "MBEDTLS_SSL_SERVER_CERTIFICATE"; - case MBEDTLS_SSL_SERVER_KEY_EXCHANGE: - return "MBEDTLS_SSL_SERVER_KEY_EXCHANGE"; - case MBEDTLS_SSL_CERTIFICATE_REQUEST: - return "MBEDTLS_SSL_CERTIFICATE_REQUEST"; - case MBEDTLS_SSL_SERVER_HELLO_DONE: - return "MBEDTLS_SSL_SERVER_HELLO_DONE"; - case MBEDTLS_SSL_CLIENT_CERTIFICATE: - return "MBEDTLS_SSL_CLIENT_CERTIFICATE"; - case MBEDTLS_SSL_CLIENT_KEY_EXCHANGE: - return "MBEDTLS_SSL_CLIENT_KEY_EXCHANGE"; - case MBEDTLS_SSL_CERTIFICATE_VERIFY: - return "MBEDTLS_SSL_CERTIFICATE_VERIFY"; - case MBEDTLS_SSL_CLIENT_CHANGE_CIPHER_SPEC: - return "MBEDTLS_SSL_CLIENT_CHANGE_CIPHER_SPEC"; - case MBEDTLS_SSL_CLIENT_FINISHED: - return "MBEDTLS_SSL_CLIENT_FINISHED"; - case MBEDTLS_SSL_SERVER_CHANGE_CIPHER_SPEC: - return "MBEDTLS_SSL_SERVER_CHANGE_CIPHER_SPEC"; - case MBEDTLS_SSL_SERVER_FINISHED: - return "MBEDTLS_SSL_SERVER_FINISHED"; - case MBEDTLS_SSL_FLUSH_BUFFERS: - return "MBEDTLS_SSL_FLUSH_BUFFERS"; - case MBEDTLS_SSL_HANDSHAKE_WRAPUP: - return "MBEDTLS_SSL_HANDSHAKE_WRAPUP"; - case MBEDTLS_SSL_NEW_SESSION_TICKET: - return "MBEDTLS_SSL_NEW_SESSION_TICKET"; - case MBEDTLS_SSL_SERVER_HELLO_VERIFY_REQUEST_SENT: - return "MBEDTLS_SSL_SERVER_HELLO_VERIFY_REQUEST_SENT"; - case MBEDTLS_SSL_HELLO_RETRY_REQUEST: - return "MBEDTLS_SSL_HELLO_RETRY_REQUEST"; - case MBEDTLS_SSL_ENCRYPTED_EXTENSIONS: - return "MBEDTLS_SSL_ENCRYPTED_EXTENSIONS"; - case MBEDTLS_SSL_END_OF_EARLY_DATA: - return "MBEDTLS_SSL_END_OF_EARLY_DATA"; - case MBEDTLS_SSL_CLIENT_CERTIFICATE_VERIFY: - return "MBEDTLS_SSL_CLIENT_CERTIFICATE_VERIFY"; - case MBEDTLS_SSL_CLIENT_CCS_AFTER_SERVER_FINISHED: - return "MBEDTLS_SSL_CLIENT_CCS_AFTER_SERVER_FINISHED"; - case MBEDTLS_SSL_CLIENT_CCS_BEFORE_2ND_CLIENT_HELLO: - return "MBEDTLS_SSL_CLIENT_CCS_BEFORE_2ND_CLIENT_HELLO"; - case MBEDTLS_SSL_SERVER_CCS_AFTER_SERVER_HELLO: - return "MBEDTLS_SSL_SERVER_CCS_AFTER_SERVER_HELLO"; - case MBEDTLS_SSL_CLIENT_CCS_AFTER_CLIENT_HELLO: - return "MBEDTLS_SSL_CLIENT_CCS_AFTER_CLIENT_HELLO"; - case MBEDTLS_SSL_SERVER_CCS_AFTER_HELLO_RETRY_REQUEST: - return "MBEDTLS_SSL_SERVER_CCS_AFTER_HELLO_RETRY_REQUEST"; - case MBEDTLS_SSL_HANDSHAKE_OVER: - return "MBEDTLS_SSL_HANDSHAKE_OVER"; - case MBEDTLS_SSL_TLS1_3_NEW_SESSION_TICKET: - return "MBEDTLS_SSL_TLS1_3_NEW_SESSION_TICKET"; - case MBEDTLS_SSL_TLS1_3_NEW_SESSION_TICKET_FLUSH: - return "MBEDTLS_SSL_TLS1_3_NEW_SESSION_TICKET_FLUSH"; - default: - return "UNKNOWN_VALUE"; - } -} - -#if defined(MBEDTLS_SSL_EARLY_DATA) && defined(MBEDTLS_SSL_CLI_C) -const char *mbedtls_ssl_early_data_status_str( mbedtls_ssl_early_data_status in ) -{ - switch (in) { - case MBEDTLS_SSL_EARLY_DATA_STATUS_NOT_INDICATED: - return "MBEDTLS_SSL_EARLY_DATA_STATUS_NOT_INDICATED"; - case MBEDTLS_SSL_EARLY_DATA_STATUS_ACCEPTED: - return "MBEDTLS_SSL_EARLY_DATA_STATUS_ACCEPTED"; - case MBEDTLS_SSL_EARLY_DATA_STATUS_REJECTED: - return "MBEDTLS_SSL_EARLY_DATA_STATUS_REJECTED"; - default: - return "UNKNOWN_VALUE"; - } -} - -#endif /* defined(MBEDTLS_SSL_EARLY_DATA) && defined(MBEDTLS_SSL_CLI_C) */ -const char *mbedtls_ssl_protocol_version_str( mbedtls_ssl_protocol_version in ) -{ - switch (in) { - case MBEDTLS_SSL_VERSION_UNKNOWN: - return "MBEDTLS_SSL_VERSION_UNKNOWN"; - case MBEDTLS_SSL_VERSION_TLS1_2: - return "MBEDTLS_SSL_VERSION_TLS1_2"; - case MBEDTLS_SSL_VERSION_TLS1_3: - return "MBEDTLS_SSL_VERSION_TLS1_3"; - default: - return "UNKNOWN_VALUE"; - } -} - -const char *mbedtls_tls_prf_types_str( mbedtls_tls_prf_types in ) -{ - switch (in) { - case MBEDTLS_SSL_TLS_PRF_NONE: - return "MBEDTLS_SSL_TLS_PRF_NONE"; - case MBEDTLS_SSL_TLS_PRF_SHA384: - return "MBEDTLS_SSL_TLS_PRF_SHA384"; - case MBEDTLS_SSL_TLS_PRF_SHA256: - return "MBEDTLS_SSL_TLS_PRF_SHA256"; - case MBEDTLS_SSL_HKDF_EXPAND_SHA384: - return "MBEDTLS_SSL_HKDF_EXPAND_SHA384"; - case MBEDTLS_SSL_HKDF_EXPAND_SHA256: - return "MBEDTLS_SSL_HKDF_EXPAND_SHA256"; - default: - return "UNKNOWN_VALUE"; - } -} - -const char *mbedtls_ssl_key_export_type_str( mbedtls_ssl_key_export_type in ) -{ - switch (in) { - case MBEDTLS_SSL_KEY_EXPORT_TLS12_MASTER_SECRET: - return "MBEDTLS_SSL_KEY_EXPORT_TLS12_MASTER_SECRET"; -#if defined(MBEDTLS_SSL_PROTO_TLS1_3) - case MBEDTLS_SSL_KEY_EXPORT_TLS1_3_CLIENT_EARLY_SECRET: - return "MBEDTLS_SSL_KEY_EXPORT_TLS1_3_CLIENT_EARLY_SECRET"; - case MBEDTLS_SSL_KEY_EXPORT_TLS1_3_EARLY_EXPORTER_SECRET: - return "MBEDTLS_SSL_KEY_EXPORT_TLS1_3_EARLY_EXPORTER_SECRET"; - case MBEDTLS_SSL_KEY_EXPORT_TLS1_3_CLIENT_HANDSHAKE_TRAFFIC_SECRET: - return "MBEDTLS_SSL_KEY_EXPORT_TLS1_3_CLIENT_HANDSHAKE_TRAFFIC_SECRET"; - case MBEDTLS_SSL_KEY_EXPORT_TLS1_3_SERVER_HANDSHAKE_TRAFFIC_SECRET: - return "MBEDTLS_SSL_KEY_EXPORT_TLS1_3_SERVER_HANDSHAKE_TRAFFIC_SECRET"; - case MBEDTLS_SSL_KEY_EXPORT_TLS1_3_CLIENT_APPLICATION_TRAFFIC_SECRET: - return "MBEDTLS_SSL_KEY_EXPORT_TLS1_3_CLIENT_APPLICATION_TRAFFIC_SECRET"; - case MBEDTLS_SSL_KEY_EXPORT_TLS1_3_SERVER_APPLICATION_TRAFFIC_SECRET: - return "MBEDTLS_SSL_KEY_EXPORT_TLS1_3_SERVER_APPLICATION_TRAFFIC_SECRET"; -#endif - default: - return "UNKNOWN_VALUE"; - } -} - - - -#endif /* MBEDTLS_DEBUG_C */ -/* End of automatically generated file. */ - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/version_features.c b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/version_features.c deleted file mode 100644 index 4fd10299..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/version_features.c +++ /dev/null @@ -1,853 +0,0 @@ -/* - * Version feature information - * - * Copyright The Mbed TLS Contributors - * SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later - */ - -#include "common.h" - -#if defined(MBEDTLS_VERSION_C) - -#include "mbedtls/version.h" - -#include - -static const char * const features[] = { -#if defined(MBEDTLS_VERSION_FEATURES) - #if defined(MBEDTLS_HAVE_ASM) - "HAVE_ASM", //no-check-names -#endif /* MBEDTLS_HAVE_ASM */ -#if defined(MBEDTLS_NO_UDBL_DIVISION) - "NO_UDBL_DIVISION", //no-check-names -#endif /* MBEDTLS_NO_UDBL_DIVISION */ -#if defined(MBEDTLS_NO_64BIT_MULTIPLICATION) - "NO_64BIT_MULTIPLICATION", //no-check-names -#endif /* MBEDTLS_NO_64BIT_MULTIPLICATION */ -#if defined(MBEDTLS_HAVE_SSE2) - "HAVE_SSE2", //no-check-names -#endif /* MBEDTLS_HAVE_SSE2 */ -#if defined(MBEDTLS_HAVE_TIME) - "HAVE_TIME", //no-check-names -#endif /* MBEDTLS_HAVE_TIME */ -#if defined(MBEDTLS_HAVE_TIME_DATE) - "HAVE_TIME_DATE", //no-check-names -#endif /* MBEDTLS_HAVE_TIME_DATE */ -#if defined(MBEDTLS_PLATFORM_MEMORY) - "PLATFORM_MEMORY", //no-check-names -#endif /* MBEDTLS_PLATFORM_MEMORY */ -#if defined(MBEDTLS_PLATFORM_NO_STD_FUNCTIONS) - "PLATFORM_NO_STD_FUNCTIONS", //no-check-names -#endif /* MBEDTLS_PLATFORM_NO_STD_FUNCTIONS */ -#if defined(MBEDTLS_PLATFORM_SETBUF_ALT) - "PLATFORM_SETBUF_ALT", //no-check-names -#endif /* MBEDTLS_PLATFORM_SETBUF_ALT */ -#if defined(MBEDTLS_PLATFORM_EXIT_ALT) - "PLATFORM_EXIT_ALT", //no-check-names -#endif /* MBEDTLS_PLATFORM_EXIT_ALT */ -#if defined(MBEDTLS_PLATFORM_TIME_ALT) - "PLATFORM_TIME_ALT", //no-check-names -#endif /* MBEDTLS_PLATFORM_TIME_ALT */ -#if defined(MBEDTLS_PLATFORM_FPRINTF_ALT) - "PLATFORM_FPRINTF_ALT", //no-check-names -#endif /* MBEDTLS_PLATFORM_FPRINTF_ALT */ -#if defined(MBEDTLS_PLATFORM_PRINTF_ALT) - "PLATFORM_PRINTF_ALT", //no-check-names -#endif /* MBEDTLS_PLATFORM_PRINTF_ALT */ -#if defined(MBEDTLS_PLATFORM_SNPRINTF_ALT) - "PLATFORM_SNPRINTF_ALT", //no-check-names -#endif /* MBEDTLS_PLATFORM_SNPRINTF_ALT */ -#if defined(MBEDTLS_PLATFORM_VSNPRINTF_ALT) - "PLATFORM_VSNPRINTF_ALT", //no-check-names -#endif /* MBEDTLS_PLATFORM_VSNPRINTF_ALT */ -#if defined(MBEDTLS_PLATFORM_NV_SEED_ALT) - "PLATFORM_NV_SEED_ALT", //no-check-names -#endif /* MBEDTLS_PLATFORM_NV_SEED_ALT */ -#if defined(MBEDTLS_PLATFORM_SETUP_TEARDOWN_ALT) - "PLATFORM_SETUP_TEARDOWN_ALT", //no-check-names -#endif /* MBEDTLS_PLATFORM_SETUP_TEARDOWN_ALT */ -#if defined(MBEDTLS_PLATFORM_MS_TIME_ALT) - "PLATFORM_MS_TIME_ALT", //no-check-names -#endif /* MBEDTLS_PLATFORM_MS_TIME_ALT */ -#if defined(MBEDTLS_PLATFORM_GMTIME_R_ALT) - "PLATFORM_GMTIME_R_ALT", //no-check-names -#endif /* MBEDTLS_PLATFORM_GMTIME_R_ALT */ -#if defined(MBEDTLS_PLATFORM_ZEROIZE_ALT) - "PLATFORM_ZEROIZE_ALT", //no-check-names -#endif /* MBEDTLS_PLATFORM_ZEROIZE_ALT */ -#if defined(MBEDTLS_DEPRECATED_WARNING) - "DEPRECATED_WARNING", //no-check-names -#endif /* MBEDTLS_DEPRECATED_WARNING */ -#if defined(MBEDTLS_DEPRECATED_REMOVED) - "DEPRECATED_REMOVED", //no-check-names -#endif /* MBEDTLS_DEPRECATED_REMOVED */ -#if defined(MBEDTLS_TIMING_ALT) - "TIMING_ALT", //no-check-names -#endif /* MBEDTLS_TIMING_ALT */ -#if defined(MBEDTLS_AES_ALT) - "AES_ALT", //no-check-names -#endif /* MBEDTLS_AES_ALT */ -#if defined(MBEDTLS_ARIA_ALT) - "ARIA_ALT", //no-check-names -#endif /* MBEDTLS_ARIA_ALT */ -#if defined(MBEDTLS_CAMELLIA_ALT) - "CAMELLIA_ALT", //no-check-names -#endif /* MBEDTLS_CAMELLIA_ALT */ -#if defined(MBEDTLS_CCM_ALT) - "CCM_ALT", //no-check-names -#endif /* MBEDTLS_CCM_ALT */ -#if defined(MBEDTLS_CHACHA20_ALT) - "CHACHA20_ALT", //no-check-names -#endif /* MBEDTLS_CHACHA20_ALT */ -#if defined(MBEDTLS_CHACHAPOLY_ALT) - "CHACHAPOLY_ALT", //no-check-names -#endif /* MBEDTLS_CHACHAPOLY_ALT */ -#if defined(MBEDTLS_CMAC_ALT) - "CMAC_ALT", //no-check-names -#endif /* MBEDTLS_CMAC_ALT */ -#if defined(MBEDTLS_DES_ALT) - "DES_ALT", //no-check-names -#endif /* MBEDTLS_DES_ALT */ -#if defined(MBEDTLS_DHM_ALT) - "DHM_ALT", //no-check-names -#endif /* MBEDTLS_DHM_ALT */ -#if defined(MBEDTLS_ECJPAKE_ALT) - "ECJPAKE_ALT", //no-check-names -#endif /* MBEDTLS_ECJPAKE_ALT */ -#if defined(MBEDTLS_GCM_ALT) - "GCM_ALT", //no-check-names -#endif /* MBEDTLS_GCM_ALT */ -#if defined(MBEDTLS_NIST_KW_ALT) - "NIST_KW_ALT", //no-check-names -#endif /* MBEDTLS_NIST_KW_ALT */ -#if defined(MBEDTLS_MD5_ALT) - "MD5_ALT", //no-check-names -#endif /* MBEDTLS_MD5_ALT */ -#if defined(MBEDTLS_POLY1305_ALT) - "POLY1305_ALT", //no-check-names -#endif /* MBEDTLS_POLY1305_ALT */ -#if defined(MBEDTLS_RIPEMD160_ALT) - "RIPEMD160_ALT", //no-check-names -#endif /* MBEDTLS_RIPEMD160_ALT */ -#if defined(MBEDTLS_RSA_ALT) - "RSA_ALT", //no-check-names -#endif /* MBEDTLS_RSA_ALT */ -#if defined(MBEDTLS_SHA1_ALT) - "SHA1_ALT", //no-check-names -#endif /* MBEDTLS_SHA1_ALT */ -#if defined(MBEDTLS_SHA256_ALT) - "SHA256_ALT", //no-check-names -#endif /* MBEDTLS_SHA256_ALT */ -#if defined(MBEDTLS_SHA512_ALT) - "SHA512_ALT", //no-check-names -#endif /* MBEDTLS_SHA512_ALT */ -#if defined(MBEDTLS_ECP_ALT) - "ECP_ALT", //no-check-names -#endif /* MBEDTLS_ECP_ALT */ -#if defined(MBEDTLS_MD5_PROCESS_ALT) - "MD5_PROCESS_ALT", //no-check-names -#endif /* MBEDTLS_MD5_PROCESS_ALT */ -#if defined(MBEDTLS_RIPEMD160_PROCESS_ALT) - "RIPEMD160_PROCESS_ALT", //no-check-names -#endif /* MBEDTLS_RIPEMD160_PROCESS_ALT */ -#if defined(MBEDTLS_SHA1_PROCESS_ALT) - "SHA1_PROCESS_ALT", //no-check-names -#endif /* MBEDTLS_SHA1_PROCESS_ALT */ -#if defined(MBEDTLS_SHA256_PROCESS_ALT) - "SHA256_PROCESS_ALT", //no-check-names -#endif /* MBEDTLS_SHA256_PROCESS_ALT */ -#if defined(MBEDTLS_SHA512_PROCESS_ALT) - "SHA512_PROCESS_ALT", //no-check-names -#endif /* MBEDTLS_SHA512_PROCESS_ALT */ -#if defined(MBEDTLS_DES_SETKEY_ALT) - "DES_SETKEY_ALT", //no-check-names -#endif /* MBEDTLS_DES_SETKEY_ALT */ -#if defined(MBEDTLS_DES_CRYPT_ECB_ALT) - "DES_CRYPT_ECB_ALT", //no-check-names -#endif /* MBEDTLS_DES_CRYPT_ECB_ALT */ -#if defined(MBEDTLS_DES3_CRYPT_ECB_ALT) - "DES3_CRYPT_ECB_ALT", //no-check-names -#endif /* MBEDTLS_DES3_CRYPT_ECB_ALT */ -#if defined(MBEDTLS_AES_SETKEY_ENC_ALT) - "AES_SETKEY_ENC_ALT", //no-check-names -#endif /* MBEDTLS_AES_SETKEY_ENC_ALT */ -#if defined(MBEDTLS_AES_SETKEY_DEC_ALT) - "AES_SETKEY_DEC_ALT", //no-check-names -#endif /* MBEDTLS_AES_SETKEY_DEC_ALT */ -#if defined(MBEDTLS_AES_ENCRYPT_ALT) - "AES_ENCRYPT_ALT", //no-check-names -#endif /* MBEDTLS_AES_ENCRYPT_ALT */ -#if defined(MBEDTLS_AES_DECRYPT_ALT) - "AES_DECRYPT_ALT", //no-check-names -#endif /* MBEDTLS_AES_DECRYPT_ALT */ -#if defined(MBEDTLS_ECDH_GEN_PUBLIC_ALT) - "ECDH_GEN_PUBLIC_ALT", //no-check-names -#endif /* MBEDTLS_ECDH_GEN_PUBLIC_ALT */ -#if defined(MBEDTLS_ECDH_COMPUTE_SHARED_ALT) - "ECDH_COMPUTE_SHARED_ALT", //no-check-names -#endif /* MBEDTLS_ECDH_COMPUTE_SHARED_ALT */ -#if defined(MBEDTLS_ECDSA_VERIFY_ALT) - "ECDSA_VERIFY_ALT", //no-check-names -#endif /* MBEDTLS_ECDSA_VERIFY_ALT */ -#if defined(MBEDTLS_ECDSA_SIGN_ALT) - "ECDSA_SIGN_ALT", //no-check-names -#endif /* MBEDTLS_ECDSA_SIGN_ALT */ -#if defined(MBEDTLS_ECDSA_GENKEY_ALT) - "ECDSA_GENKEY_ALT", //no-check-names -#endif /* MBEDTLS_ECDSA_GENKEY_ALT */ -#if defined(MBEDTLS_ECP_INTERNAL_ALT) - "ECP_INTERNAL_ALT", //no-check-names -#endif /* MBEDTLS_ECP_INTERNAL_ALT */ -#if defined(MBEDTLS_ECP_NO_FALLBACK) - "ECP_NO_FALLBACK", //no-check-names -#endif /* MBEDTLS_ECP_NO_FALLBACK */ -#if defined(MBEDTLS_ECP_RANDOMIZE_JAC_ALT) - "ECP_RANDOMIZE_JAC_ALT", //no-check-names -#endif /* MBEDTLS_ECP_RANDOMIZE_JAC_ALT */ -#if defined(MBEDTLS_ECP_ADD_MIXED_ALT) - "ECP_ADD_MIXED_ALT", //no-check-names -#endif /* MBEDTLS_ECP_ADD_MIXED_ALT */ -#if defined(MBEDTLS_ECP_DOUBLE_JAC_ALT) - "ECP_DOUBLE_JAC_ALT", //no-check-names -#endif /* MBEDTLS_ECP_DOUBLE_JAC_ALT */ -#if defined(MBEDTLS_ECP_NORMALIZE_JAC_MANY_ALT) - "ECP_NORMALIZE_JAC_MANY_ALT", //no-check-names -#endif /* MBEDTLS_ECP_NORMALIZE_JAC_MANY_ALT */ -#if defined(MBEDTLS_ECP_NORMALIZE_JAC_ALT) - "ECP_NORMALIZE_JAC_ALT", //no-check-names -#endif /* MBEDTLS_ECP_NORMALIZE_JAC_ALT */ -#if defined(MBEDTLS_ECP_DOUBLE_ADD_MXZ_ALT) - "ECP_DOUBLE_ADD_MXZ_ALT", //no-check-names -#endif /* MBEDTLS_ECP_DOUBLE_ADD_MXZ_ALT */ -#if defined(MBEDTLS_ECP_RANDOMIZE_MXZ_ALT) - "ECP_RANDOMIZE_MXZ_ALT", //no-check-names -#endif /* MBEDTLS_ECP_RANDOMIZE_MXZ_ALT */ -#if defined(MBEDTLS_ECP_NORMALIZE_MXZ_ALT) - "ECP_NORMALIZE_MXZ_ALT", //no-check-names -#endif /* MBEDTLS_ECP_NORMALIZE_MXZ_ALT */ -#if defined(MBEDTLS_ENTROPY_HARDWARE_ALT) - "ENTROPY_HARDWARE_ALT", //no-check-names -#endif /* MBEDTLS_ENTROPY_HARDWARE_ALT */ -#if defined(MBEDTLS_AES_ROM_TABLES) - "AES_ROM_TABLES", //no-check-names -#endif /* MBEDTLS_AES_ROM_TABLES */ -#if defined(MBEDTLS_AES_FEWER_TABLES) - "AES_FEWER_TABLES", //no-check-names -#endif /* MBEDTLS_AES_FEWER_TABLES */ -#if defined(MBEDTLS_AES_ONLY_128_BIT_KEY_LENGTH) - "AES_ONLY_128_BIT_KEY_LENGTH", //no-check-names -#endif /* MBEDTLS_AES_ONLY_128_BIT_KEY_LENGTH */ -#if defined(MBEDTLS_AES_USE_HARDWARE_ONLY) - "AES_USE_HARDWARE_ONLY", //no-check-names -#endif /* MBEDTLS_AES_USE_HARDWARE_ONLY */ -#if defined(MBEDTLS_CAMELLIA_SMALL_MEMORY) - "CAMELLIA_SMALL_MEMORY", //no-check-names -#endif /* MBEDTLS_CAMELLIA_SMALL_MEMORY */ -#if defined(MBEDTLS_CHECK_RETURN_WARNING) - "CHECK_RETURN_WARNING", //no-check-names -#endif /* MBEDTLS_CHECK_RETURN_WARNING */ -#if defined(MBEDTLS_CIPHER_MODE_CBC) - "CIPHER_MODE_CBC", //no-check-names -#endif /* MBEDTLS_CIPHER_MODE_CBC */ -#if defined(MBEDTLS_CIPHER_MODE_CFB) - "CIPHER_MODE_CFB", //no-check-names -#endif /* MBEDTLS_CIPHER_MODE_CFB */ -#if defined(MBEDTLS_CIPHER_MODE_CTR) - "CIPHER_MODE_CTR", //no-check-names -#endif /* MBEDTLS_CIPHER_MODE_CTR */ -#if defined(MBEDTLS_CIPHER_MODE_OFB) - "CIPHER_MODE_OFB", //no-check-names -#endif /* MBEDTLS_CIPHER_MODE_OFB */ -#if defined(MBEDTLS_CIPHER_MODE_XTS) - "CIPHER_MODE_XTS", //no-check-names -#endif /* MBEDTLS_CIPHER_MODE_XTS */ -#if defined(MBEDTLS_CIPHER_NULL_CIPHER) - "CIPHER_NULL_CIPHER", //no-check-names -#endif /* MBEDTLS_CIPHER_NULL_CIPHER */ -#if defined(MBEDTLS_CIPHER_PADDING_PKCS7) - "CIPHER_PADDING_PKCS7", //no-check-names -#endif /* MBEDTLS_CIPHER_PADDING_PKCS7 */ -#if defined(MBEDTLS_CIPHER_PADDING_ONE_AND_ZEROS) - "CIPHER_PADDING_ONE_AND_ZEROS", //no-check-names -#endif /* MBEDTLS_CIPHER_PADDING_ONE_AND_ZEROS */ -#if defined(MBEDTLS_CIPHER_PADDING_ZEROS_AND_LEN) - "CIPHER_PADDING_ZEROS_AND_LEN", //no-check-names -#endif /* MBEDTLS_CIPHER_PADDING_ZEROS_AND_LEN */ -#if defined(MBEDTLS_CIPHER_PADDING_ZEROS) - "CIPHER_PADDING_ZEROS", //no-check-names -#endif /* MBEDTLS_CIPHER_PADDING_ZEROS */ -#if defined(MBEDTLS_CTR_DRBG_USE_128_BIT_KEY) - "CTR_DRBG_USE_128_BIT_KEY", //no-check-names -#endif /* MBEDTLS_CTR_DRBG_USE_128_BIT_KEY */ -#if defined(MBEDTLS_ECDH_VARIANT_EVEREST_ENABLED) - "ECDH_VARIANT_EVEREST_ENABLED", //no-check-names -#endif /* MBEDTLS_ECDH_VARIANT_EVEREST_ENABLED */ -#if defined(MBEDTLS_ECP_DP_SECP192R1_ENABLED) - "ECP_DP_SECP192R1_ENABLED", //no-check-names -#endif /* MBEDTLS_ECP_DP_SECP192R1_ENABLED */ -#if defined(MBEDTLS_ECP_DP_SECP224R1_ENABLED) - "ECP_DP_SECP224R1_ENABLED", //no-check-names -#endif /* MBEDTLS_ECP_DP_SECP224R1_ENABLED */ -#if defined(MBEDTLS_ECP_DP_SECP256R1_ENABLED) - "ECP_DP_SECP256R1_ENABLED", //no-check-names -#endif /* MBEDTLS_ECP_DP_SECP256R1_ENABLED */ -#if defined(MBEDTLS_ECP_DP_SECP384R1_ENABLED) - "ECP_DP_SECP384R1_ENABLED", //no-check-names -#endif /* MBEDTLS_ECP_DP_SECP384R1_ENABLED */ -#if defined(MBEDTLS_ECP_DP_SECP521R1_ENABLED) - "ECP_DP_SECP521R1_ENABLED", //no-check-names -#endif /* MBEDTLS_ECP_DP_SECP521R1_ENABLED */ -#if defined(MBEDTLS_ECP_DP_SECP192K1_ENABLED) - "ECP_DP_SECP192K1_ENABLED", //no-check-names -#endif /* MBEDTLS_ECP_DP_SECP192K1_ENABLED */ -#if defined(MBEDTLS_ECP_DP_SECP224K1_ENABLED) - "ECP_DP_SECP224K1_ENABLED", //no-check-names -#endif /* MBEDTLS_ECP_DP_SECP224K1_ENABLED */ -#if defined(MBEDTLS_ECP_DP_SECP256K1_ENABLED) - "ECP_DP_SECP256K1_ENABLED", //no-check-names -#endif /* MBEDTLS_ECP_DP_SECP256K1_ENABLED */ -#if defined(MBEDTLS_ECP_DP_BP256R1_ENABLED) - "ECP_DP_BP256R1_ENABLED", //no-check-names -#endif /* MBEDTLS_ECP_DP_BP256R1_ENABLED */ -#if defined(MBEDTLS_ECP_DP_BP384R1_ENABLED) - "ECP_DP_BP384R1_ENABLED", //no-check-names -#endif /* MBEDTLS_ECP_DP_BP384R1_ENABLED */ -#if defined(MBEDTLS_ECP_DP_BP512R1_ENABLED) - "ECP_DP_BP512R1_ENABLED", //no-check-names -#endif /* MBEDTLS_ECP_DP_BP512R1_ENABLED */ -#if defined(MBEDTLS_ECP_DP_CURVE25519_ENABLED) - "ECP_DP_CURVE25519_ENABLED", //no-check-names -#endif /* MBEDTLS_ECP_DP_CURVE25519_ENABLED */ -#if defined(MBEDTLS_ECP_DP_CURVE448_ENABLED) - "ECP_DP_CURVE448_ENABLED", //no-check-names -#endif /* MBEDTLS_ECP_DP_CURVE448_ENABLED */ -#if defined(MBEDTLS_ECP_NIST_OPTIM) - "ECP_NIST_OPTIM", //no-check-names -#endif /* MBEDTLS_ECP_NIST_OPTIM */ -#if defined(MBEDTLS_ECP_RESTARTABLE) - "ECP_RESTARTABLE", //no-check-names -#endif /* MBEDTLS_ECP_RESTARTABLE */ -#if defined(MBEDTLS_ECP_WITH_MPI_UINT) - "ECP_WITH_MPI_UINT", //no-check-names -#endif /* MBEDTLS_ECP_WITH_MPI_UINT */ -#if defined(MBEDTLS_ECDSA_DETERMINISTIC) - "ECDSA_DETERMINISTIC", //no-check-names -#endif /* MBEDTLS_ECDSA_DETERMINISTIC */ -#if defined(MBEDTLS_KEY_EXCHANGE_PSK_ENABLED) - "KEY_EXCHANGE_PSK_ENABLED", //no-check-names -#endif /* MBEDTLS_KEY_EXCHANGE_PSK_ENABLED */ -#if defined(MBEDTLS_KEY_EXCHANGE_DHE_PSK_ENABLED) - "KEY_EXCHANGE_DHE_PSK_ENABLED", //no-check-names -#endif /* MBEDTLS_KEY_EXCHANGE_DHE_PSK_ENABLED */ -#if defined(MBEDTLS_KEY_EXCHANGE_ECDHE_PSK_ENABLED) - "KEY_EXCHANGE_ECDHE_PSK_ENABLED", //no-check-names -#endif /* MBEDTLS_KEY_EXCHANGE_ECDHE_PSK_ENABLED */ -#if defined(MBEDTLS_KEY_EXCHANGE_RSA_PSK_ENABLED) - "KEY_EXCHANGE_RSA_PSK_ENABLED", //no-check-names -#endif /* MBEDTLS_KEY_EXCHANGE_RSA_PSK_ENABLED */ -#if defined(MBEDTLS_KEY_EXCHANGE_RSA_ENABLED) - "KEY_EXCHANGE_RSA_ENABLED", //no-check-names -#endif /* MBEDTLS_KEY_EXCHANGE_RSA_ENABLED */ -#if defined(MBEDTLS_KEY_EXCHANGE_DHE_RSA_ENABLED) - "KEY_EXCHANGE_DHE_RSA_ENABLED", //no-check-names -#endif /* MBEDTLS_KEY_EXCHANGE_DHE_RSA_ENABLED */ -#if defined(MBEDTLS_KEY_EXCHANGE_ECDHE_RSA_ENABLED) - "KEY_EXCHANGE_ECDHE_RSA_ENABLED", //no-check-names -#endif /* MBEDTLS_KEY_EXCHANGE_ECDHE_RSA_ENABLED */ -#if defined(MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED) - "KEY_EXCHANGE_ECDHE_ECDSA_ENABLED", //no-check-names -#endif /* MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED */ -#if defined(MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA_ENABLED) - "KEY_EXCHANGE_ECDH_ECDSA_ENABLED", //no-check-names -#endif /* MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA_ENABLED */ -#if defined(MBEDTLS_KEY_EXCHANGE_ECDH_RSA_ENABLED) - "KEY_EXCHANGE_ECDH_RSA_ENABLED", //no-check-names -#endif /* MBEDTLS_KEY_EXCHANGE_ECDH_RSA_ENABLED */ -#if defined(MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED) - "KEY_EXCHANGE_ECJPAKE_ENABLED", //no-check-names -#endif /* MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED */ -#if defined(MBEDTLS_PK_PARSE_EC_EXTENDED) - "PK_PARSE_EC_EXTENDED", //no-check-names -#endif /* MBEDTLS_PK_PARSE_EC_EXTENDED */ -#if defined(MBEDTLS_PK_PARSE_EC_COMPRESSED) - "PK_PARSE_EC_COMPRESSED", //no-check-names -#endif /* MBEDTLS_PK_PARSE_EC_COMPRESSED */ -#if defined(MBEDTLS_ERROR_STRERROR_DUMMY) - "ERROR_STRERROR_DUMMY", //no-check-names -#endif /* MBEDTLS_ERROR_STRERROR_DUMMY */ -#if defined(MBEDTLS_GENPRIME) - "GENPRIME", //no-check-names -#endif /* MBEDTLS_GENPRIME */ -#if defined(MBEDTLS_FS_IO) - "FS_IO", //no-check-names -#endif /* MBEDTLS_FS_IO */ -#if defined(MBEDTLS_NO_DEFAULT_ENTROPY_SOURCES) - "NO_DEFAULT_ENTROPY_SOURCES", //no-check-names -#endif /* MBEDTLS_NO_DEFAULT_ENTROPY_SOURCES */ -#if defined(MBEDTLS_NO_PLATFORM_ENTROPY) - "NO_PLATFORM_ENTROPY", //no-check-names -#endif /* MBEDTLS_NO_PLATFORM_ENTROPY */ -#if defined(MBEDTLS_ENTROPY_FORCE_SHA256) - "ENTROPY_FORCE_SHA256", //no-check-names -#endif /* MBEDTLS_ENTROPY_FORCE_SHA256 */ -#if defined(MBEDTLS_ENTROPY_NV_SEED) - "ENTROPY_NV_SEED", //no-check-names -#endif /* MBEDTLS_ENTROPY_NV_SEED */ -#if defined(MBEDTLS_PSA_CRYPTO_KEY_ID_ENCODES_OWNER) - "PSA_CRYPTO_KEY_ID_ENCODES_OWNER", //no-check-names -#endif /* MBEDTLS_PSA_CRYPTO_KEY_ID_ENCODES_OWNER */ -#if defined(MBEDTLS_MEMORY_DEBUG) - "MEMORY_DEBUG", //no-check-names -#endif /* MBEDTLS_MEMORY_DEBUG */ -#if defined(MBEDTLS_MEMORY_BACKTRACE) - "MEMORY_BACKTRACE", //no-check-names -#endif /* MBEDTLS_MEMORY_BACKTRACE */ -#if defined(MBEDTLS_PK_RSA_ALT_SUPPORT) - "PK_RSA_ALT_SUPPORT", //no-check-names -#endif /* MBEDTLS_PK_RSA_ALT_SUPPORT */ -#if defined(MBEDTLS_PKCS1_V15) - "PKCS1_V15", //no-check-names -#endif /* MBEDTLS_PKCS1_V15 */ -#if defined(MBEDTLS_PKCS1_V21) - "PKCS1_V21", //no-check-names -#endif /* MBEDTLS_PKCS1_V21 */ -#if defined(MBEDTLS_PSA_CRYPTO_BUILTIN_KEYS) - "PSA_CRYPTO_BUILTIN_KEYS", //no-check-names -#endif /* MBEDTLS_PSA_CRYPTO_BUILTIN_KEYS */ -#if defined(MBEDTLS_PSA_CRYPTO_CLIENT) - "PSA_CRYPTO_CLIENT", //no-check-names -#endif /* MBEDTLS_PSA_CRYPTO_CLIENT */ -#if defined(MBEDTLS_PSA_CRYPTO_EXTERNAL_RNG) - "PSA_CRYPTO_EXTERNAL_RNG", //no-check-names -#endif /* MBEDTLS_PSA_CRYPTO_EXTERNAL_RNG */ -#if defined(MBEDTLS_PSA_CRYPTO_SPM) - "PSA_CRYPTO_SPM", //no-check-names -#endif /* MBEDTLS_PSA_CRYPTO_SPM */ -#if defined(MBEDTLS_PSA_KEY_STORE_DYNAMIC) - "PSA_KEY_STORE_DYNAMIC", //no-check-names -#endif /* MBEDTLS_PSA_KEY_STORE_DYNAMIC */ -#if defined(MBEDTLS_PSA_P256M_DRIVER_ENABLED) - "PSA_P256M_DRIVER_ENABLED", //no-check-names -#endif /* MBEDTLS_PSA_P256M_DRIVER_ENABLED */ -#if defined(MBEDTLS_PSA_INJECT_ENTROPY) - "PSA_INJECT_ENTROPY", //no-check-names -#endif /* MBEDTLS_PSA_INJECT_ENTROPY */ -#if defined(MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS) - "PSA_ASSUME_EXCLUSIVE_BUFFERS", //no-check-names -#endif /* MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS */ -#if defined(MBEDTLS_RSA_NO_CRT) - "RSA_NO_CRT", //no-check-names -#endif /* MBEDTLS_RSA_NO_CRT */ -#if defined(MBEDTLS_SELF_TEST) - "SELF_TEST", //no-check-names -#endif /* MBEDTLS_SELF_TEST */ -#if defined(MBEDTLS_SHA256_SMALLER) - "SHA256_SMALLER", //no-check-names -#endif /* MBEDTLS_SHA256_SMALLER */ -#if defined(MBEDTLS_SHA512_SMALLER) - "SHA512_SMALLER", //no-check-names -#endif /* MBEDTLS_SHA512_SMALLER */ -#if defined(MBEDTLS_SSL_ALL_ALERT_MESSAGES) - "SSL_ALL_ALERT_MESSAGES", //no-check-names -#endif /* MBEDTLS_SSL_ALL_ALERT_MESSAGES */ -#if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID) - "SSL_DTLS_CONNECTION_ID", //no-check-names -#endif /* MBEDTLS_SSL_DTLS_CONNECTION_ID */ -#if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID_COMPAT) - "SSL_DTLS_CONNECTION_ID_COMPAT", //no-check-names -#endif /* MBEDTLS_SSL_DTLS_CONNECTION_ID_COMPAT */ -#if defined(MBEDTLS_SSL_ASYNC_PRIVATE) - "SSL_ASYNC_PRIVATE", //no-check-names -#endif /* MBEDTLS_SSL_ASYNC_PRIVATE */ -#if defined(MBEDTLS_SSL_CLI_ALLOW_WEAK_CERTIFICATE_VERIFICATION_WITHOUT_HOSTNAME) - "SSL_CLI_ALLOW_WEAK_CERTIFICATE_VERIFICATION_WITHOUT_HOSTNAME", //no-check-names -#endif /* MBEDTLS_SSL_CLI_ALLOW_WEAK_CERTIFICATE_VERIFICATION_WITHOUT_HOSTNAME */ -#if defined(MBEDTLS_SSL_CONTEXT_SERIALIZATION) - "SSL_CONTEXT_SERIALIZATION", //no-check-names -#endif /* MBEDTLS_SSL_CONTEXT_SERIALIZATION */ -#if defined(MBEDTLS_SSL_DEBUG_ALL) - "SSL_DEBUG_ALL", //no-check-names -#endif /* MBEDTLS_SSL_DEBUG_ALL */ -#if defined(MBEDTLS_SSL_ENCRYPT_THEN_MAC) - "SSL_ENCRYPT_THEN_MAC", //no-check-names -#endif /* MBEDTLS_SSL_ENCRYPT_THEN_MAC */ -#if defined(MBEDTLS_SSL_EXTENDED_MASTER_SECRET) - "SSL_EXTENDED_MASTER_SECRET", //no-check-names -#endif /* MBEDTLS_SSL_EXTENDED_MASTER_SECRET */ -#if defined(MBEDTLS_SSL_KEEP_PEER_CERTIFICATE) - "SSL_KEEP_PEER_CERTIFICATE", //no-check-names -#endif /* MBEDTLS_SSL_KEEP_PEER_CERTIFICATE */ -#if defined(MBEDTLS_SSL_KEYING_MATERIAL_EXPORT) - "SSL_KEYING_MATERIAL_EXPORT", //no-check-names -#endif /* MBEDTLS_SSL_KEYING_MATERIAL_EXPORT */ -#if defined(MBEDTLS_SSL_RENEGOTIATION) - "SSL_RENEGOTIATION", //no-check-names -#endif /* MBEDTLS_SSL_RENEGOTIATION */ -#if defined(MBEDTLS_SSL_MAX_FRAGMENT_LENGTH) - "SSL_MAX_FRAGMENT_LENGTH", //no-check-names -#endif /* MBEDTLS_SSL_MAX_FRAGMENT_LENGTH */ -#if defined(MBEDTLS_SSL_RECORD_SIZE_LIMIT) - "SSL_RECORD_SIZE_LIMIT", //no-check-names -#endif /* MBEDTLS_SSL_RECORD_SIZE_LIMIT */ -#if defined(MBEDTLS_SSL_PROTO_TLS1_2) - "SSL_PROTO_TLS1_2", //no-check-names -#endif /* MBEDTLS_SSL_PROTO_TLS1_2 */ -#if defined(MBEDTLS_SSL_PROTO_TLS1_3) - "SSL_PROTO_TLS1_3", //no-check-names -#endif /* MBEDTLS_SSL_PROTO_TLS1_3 */ -#if defined(MBEDTLS_SSL_TLS1_3_COMPATIBILITY_MODE) - "SSL_TLS1_3_COMPATIBILITY_MODE", //no-check-names -#endif /* MBEDTLS_SSL_TLS1_3_COMPATIBILITY_MODE */ -#if defined(MBEDTLS_SSL_TLS1_3_KEY_EXCHANGE_MODE_PSK_ENABLED) - "SSL_TLS1_3_KEY_EXCHANGE_MODE_PSK_ENABLED", //no-check-names -#endif /* MBEDTLS_SSL_TLS1_3_KEY_EXCHANGE_MODE_PSK_ENABLED */ -#if defined(MBEDTLS_SSL_TLS1_3_KEY_EXCHANGE_MODE_EPHEMERAL_ENABLED) - "SSL_TLS1_3_KEY_EXCHANGE_MODE_EPHEMERAL_ENABLED", //no-check-names -#endif /* MBEDTLS_SSL_TLS1_3_KEY_EXCHANGE_MODE_EPHEMERAL_ENABLED */ -#if defined(MBEDTLS_SSL_TLS1_3_KEY_EXCHANGE_MODE_PSK_EPHEMERAL_ENABLED) - "SSL_TLS1_3_KEY_EXCHANGE_MODE_PSK_EPHEMERAL_ENABLED", //no-check-names -#endif /* MBEDTLS_SSL_TLS1_3_KEY_EXCHANGE_MODE_PSK_EPHEMERAL_ENABLED */ -#if defined(MBEDTLS_SSL_EARLY_DATA) - "SSL_EARLY_DATA", //no-check-names -#endif /* MBEDTLS_SSL_EARLY_DATA */ -#if defined(MBEDTLS_SSL_PROTO_DTLS) - "SSL_PROTO_DTLS", //no-check-names -#endif /* MBEDTLS_SSL_PROTO_DTLS */ -#if defined(MBEDTLS_SSL_ALPN) - "SSL_ALPN", //no-check-names -#endif /* MBEDTLS_SSL_ALPN */ -#if defined(MBEDTLS_SSL_DTLS_ANTI_REPLAY) - "SSL_DTLS_ANTI_REPLAY", //no-check-names -#endif /* MBEDTLS_SSL_DTLS_ANTI_REPLAY */ -#if defined(MBEDTLS_SSL_DTLS_HELLO_VERIFY) - "SSL_DTLS_HELLO_VERIFY", //no-check-names -#endif /* MBEDTLS_SSL_DTLS_HELLO_VERIFY */ -#if defined(MBEDTLS_SSL_DTLS_SRTP) - "SSL_DTLS_SRTP", //no-check-names -#endif /* MBEDTLS_SSL_DTLS_SRTP */ -#if defined(MBEDTLS_SSL_DTLS_CLIENT_PORT_REUSE) - "SSL_DTLS_CLIENT_PORT_REUSE", //no-check-names -#endif /* MBEDTLS_SSL_DTLS_CLIENT_PORT_REUSE */ -#if defined(MBEDTLS_SSL_SESSION_TICKETS) - "SSL_SESSION_TICKETS", //no-check-names -#endif /* MBEDTLS_SSL_SESSION_TICKETS */ -#if defined(MBEDTLS_SSL_SERVER_NAME_INDICATION) - "SSL_SERVER_NAME_INDICATION", //no-check-names -#endif /* MBEDTLS_SSL_SERVER_NAME_INDICATION */ -#if defined(MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH) - "SSL_VARIABLE_BUFFER_LENGTH", //no-check-names -#endif /* MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH */ -#if defined(MBEDTLS_TEST_CONSTANT_FLOW_MEMSAN) - "TEST_CONSTANT_FLOW_MEMSAN", //no-check-names -#endif /* MBEDTLS_TEST_CONSTANT_FLOW_MEMSAN */ -#if defined(MBEDTLS_TEST_CONSTANT_FLOW_VALGRIND) - "TEST_CONSTANT_FLOW_VALGRIND", //no-check-names -#endif /* MBEDTLS_TEST_CONSTANT_FLOW_VALGRIND */ -#if defined(MBEDTLS_TEST_HOOKS) - "TEST_HOOKS", //no-check-names -#endif /* MBEDTLS_TEST_HOOKS */ -#if defined(MBEDTLS_THREADING_ALT) - "THREADING_ALT", //no-check-names -#endif /* MBEDTLS_THREADING_ALT */ -#if defined(MBEDTLS_THREADING_PTHREAD) - "THREADING_PTHREAD", //no-check-names -#endif /* MBEDTLS_THREADING_PTHREAD */ -#if defined(MBEDTLS_USE_PSA_CRYPTO) - "USE_PSA_CRYPTO", //no-check-names -#endif /* MBEDTLS_USE_PSA_CRYPTO */ -#if defined(MBEDTLS_PSA_CRYPTO_CONFIG) - "PSA_CRYPTO_CONFIG", //no-check-names -#endif /* MBEDTLS_PSA_CRYPTO_CONFIG */ -#if defined(MBEDTLS_VERSION_FEATURES) - "VERSION_FEATURES", //no-check-names -#endif /* MBEDTLS_VERSION_FEATURES */ -#if defined(MBEDTLS_X509_TRUSTED_CERTIFICATE_CALLBACK) - "X509_TRUSTED_CERTIFICATE_CALLBACK", //no-check-names -#endif /* MBEDTLS_X509_TRUSTED_CERTIFICATE_CALLBACK */ -#if defined(MBEDTLS_X509_REMOVE_INFO) - "X509_REMOVE_INFO", //no-check-names -#endif /* MBEDTLS_X509_REMOVE_INFO */ -#if defined(MBEDTLS_X509_RSASSA_PSS_SUPPORT) - "X509_RSASSA_PSS_SUPPORT", //no-check-names -#endif /* MBEDTLS_X509_RSASSA_PSS_SUPPORT */ -#if defined(MBEDTLS_AESNI_C) - "AESNI_C", //no-check-names -#endif /* MBEDTLS_AESNI_C */ -#if defined(MBEDTLS_AESCE_C) - "AESCE_C", //no-check-names -#endif /* MBEDTLS_AESCE_C */ -#if defined(MBEDTLS_AES_C) - "AES_C", //no-check-names -#endif /* MBEDTLS_AES_C */ -#if defined(MBEDTLS_ASN1_PARSE_C) - "ASN1_PARSE_C", //no-check-names -#endif /* MBEDTLS_ASN1_PARSE_C */ -#if defined(MBEDTLS_ASN1_WRITE_C) - "ASN1_WRITE_C", //no-check-names -#endif /* MBEDTLS_ASN1_WRITE_C */ -#if defined(MBEDTLS_BASE64_C) - "BASE64_C", //no-check-names -#endif /* MBEDTLS_BASE64_C */ -#if defined(MBEDTLS_BLOCK_CIPHER_NO_DECRYPT) - "BLOCK_CIPHER_NO_DECRYPT", //no-check-names -#endif /* MBEDTLS_BLOCK_CIPHER_NO_DECRYPT */ -#if defined(MBEDTLS_BIGNUM_C) - "BIGNUM_C", //no-check-names -#endif /* MBEDTLS_BIGNUM_C */ -#if defined(MBEDTLS_CAMELLIA_C) - "CAMELLIA_C", //no-check-names -#endif /* MBEDTLS_CAMELLIA_C */ -#if defined(MBEDTLS_ARIA_C) - "ARIA_C", //no-check-names -#endif /* MBEDTLS_ARIA_C */ -#if defined(MBEDTLS_CCM_C) - "CCM_C", //no-check-names -#endif /* MBEDTLS_CCM_C */ -#if defined(MBEDTLS_CHACHA20_C) - "CHACHA20_C", //no-check-names -#endif /* MBEDTLS_CHACHA20_C */ -#if defined(MBEDTLS_CHACHAPOLY_C) - "CHACHAPOLY_C", //no-check-names -#endif /* MBEDTLS_CHACHAPOLY_C */ -#if defined(MBEDTLS_CIPHER_C) - "CIPHER_C", //no-check-names -#endif /* MBEDTLS_CIPHER_C */ -#if defined(MBEDTLS_CMAC_C) - "CMAC_C", //no-check-names -#endif /* MBEDTLS_CMAC_C */ -#if defined(MBEDTLS_CTR_DRBG_C) - "CTR_DRBG_C", //no-check-names -#endif /* MBEDTLS_CTR_DRBG_C */ -#if defined(MBEDTLS_DEBUG_C) - "DEBUG_C", //no-check-names -#endif /* MBEDTLS_DEBUG_C */ -#if defined(MBEDTLS_DES_C) - "DES_C", //no-check-names -#endif /* MBEDTLS_DES_C */ -#if defined(MBEDTLS_DHM_C) - "DHM_C", //no-check-names -#endif /* MBEDTLS_DHM_C */ -#if defined(MBEDTLS_ECDH_C) - "ECDH_C", //no-check-names -#endif /* MBEDTLS_ECDH_C */ -#if defined(MBEDTLS_ECDSA_C) - "ECDSA_C", //no-check-names -#endif /* MBEDTLS_ECDSA_C */ -#if defined(MBEDTLS_ECJPAKE_C) - "ECJPAKE_C", //no-check-names -#endif /* MBEDTLS_ECJPAKE_C */ -#if defined(MBEDTLS_ECP_C) - "ECP_C", //no-check-names -#endif /* MBEDTLS_ECP_C */ -#if defined(MBEDTLS_ENTROPY_C) - "ENTROPY_C", //no-check-names -#endif /* MBEDTLS_ENTROPY_C */ -#if defined(MBEDTLS_ERROR_C) - "ERROR_C", //no-check-names -#endif /* MBEDTLS_ERROR_C */ -#if defined(MBEDTLS_GCM_C) - "GCM_C", //no-check-names -#endif /* MBEDTLS_GCM_C */ -#if defined(MBEDTLS_GCM_LARGE_TABLE) - "GCM_LARGE_TABLE", //no-check-names -#endif /* MBEDTLS_GCM_LARGE_TABLE */ -#if defined(MBEDTLS_HKDF_C) - "HKDF_C", //no-check-names -#endif /* MBEDTLS_HKDF_C */ -#if defined(MBEDTLS_HMAC_DRBG_C) - "HMAC_DRBG_C", //no-check-names -#endif /* MBEDTLS_HMAC_DRBG_C */ -#if defined(MBEDTLS_LMS_C) - "LMS_C", //no-check-names -#endif /* MBEDTLS_LMS_C */ -#if defined(MBEDTLS_LMS_PRIVATE) - "LMS_PRIVATE", //no-check-names -#endif /* MBEDTLS_LMS_PRIVATE */ -#if defined(MBEDTLS_NIST_KW_C) - "NIST_KW_C", //no-check-names -#endif /* MBEDTLS_NIST_KW_C */ -#if defined(MBEDTLS_MD_C) - "MD_C", //no-check-names -#endif /* MBEDTLS_MD_C */ -#if defined(MBEDTLS_MD5_C) - "MD5_C", //no-check-names -#endif /* MBEDTLS_MD5_C */ -#if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C) - "MEMORY_BUFFER_ALLOC_C", //no-check-names -#endif /* MBEDTLS_MEMORY_BUFFER_ALLOC_C */ -#if defined(MBEDTLS_NET_C) - "NET_C", //no-check-names -#endif /* MBEDTLS_NET_C */ -#if defined(MBEDTLS_OID_C) - "OID_C", //no-check-names -#endif /* MBEDTLS_OID_C */ -#if defined(MBEDTLS_PADLOCK_C) - "PADLOCK_C", //no-check-names -#endif /* MBEDTLS_PADLOCK_C */ -#if defined(MBEDTLS_PEM_PARSE_C) - "PEM_PARSE_C", //no-check-names -#endif /* MBEDTLS_PEM_PARSE_C */ -#if defined(MBEDTLS_PEM_WRITE_C) - "PEM_WRITE_C", //no-check-names -#endif /* MBEDTLS_PEM_WRITE_C */ -#if defined(MBEDTLS_PK_C) - "PK_C", //no-check-names -#endif /* MBEDTLS_PK_C */ -#if defined(MBEDTLS_PK_PARSE_C) - "PK_PARSE_C", //no-check-names -#endif /* MBEDTLS_PK_PARSE_C */ -#if defined(MBEDTLS_PK_WRITE_C) - "PK_WRITE_C", //no-check-names -#endif /* MBEDTLS_PK_WRITE_C */ -#if defined(MBEDTLS_PKCS5_C) - "PKCS5_C", //no-check-names -#endif /* MBEDTLS_PKCS5_C */ -#if defined(MBEDTLS_PKCS7_C) - "PKCS7_C", //no-check-names -#endif /* MBEDTLS_PKCS7_C */ -#if defined(MBEDTLS_PKCS12_C) - "PKCS12_C", //no-check-names -#endif /* MBEDTLS_PKCS12_C */ -#if defined(MBEDTLS_PLATFORM_C) - "PLATFORM_C", //no-check-names -#endif /* MBEDTLS_PLATFORM_C */ -#if defined(MBEDTLS_POLY1305_C) - "POLY1305_C", //no-check-names -#endif /* MBEDTLS_POLY1305_C */ -#if defined(MBEDTLS_PSA_CRYPTO_C) - "PSA_CRYPTO_C", //no-check-names -#endif /* MBEDTLS_PSA_CRYPTO_C */ -#if defined(MBEDTLS_PSA_CRYPTO_SE_C) - "PSA_CRYPTO_SE_C", //no-check-names -#endif /* MBEDTLS_PSA_CRYPTO_SE_C */ -#if defined(MBEDTLS_PSA_CRYPTO_STORAGE_C) - "PSA_CRYPTO_STORAGE_C", //no-check-names -#endif /* MBEDTLS_PSA_CRYPTO_STORAGE_C */ -#if defined(MBEDTLS_PSA_ITS_FILE_C) - "PSA_ITS_FILE_C", //no-check-names -#endif /* MBEDTLS_PSA_ITS_FILE_C */ -#if defined(MBEDTLS_PSA_STATIC_KEY_SLOTS) - "PSA_STATIC_KEY_SLOTS", //no-check-names -#endif /* MBEDTLS_PSA_STATIC_KEY_SLOTS */ -#if defined(MBEDTLS_RIPEMD160_C) - "RIPEMD160_C", //no-check-names -#endif /* MBEDTLS_RIPEMD160_C */ -#if defined(MBEDTLS_RSA_C) - "RSA_C", //no-check-names -#endif /* MBEDTLS_RSA_C */ -#if defined(MBEDTLS_SHA1_C) - "SHA1_C", //no-check-names -#endif /* MBEDTLS_SHA1_C */ -#if defined(MBEDTLS_SHA224_C) - "SHA224_C", //no-check-names -#endif /* MBEDTLS_SHA224_C */ -#if defined(MBEDTLS_SHA256_C) - "SHA256_C", //no-check-names -#endif /* MBEDTLS_SHA256_C */ -#if defined(MBEDTLS_SHA256_USE_ARMV8_A_CRYPTO_IF_PRESENT) - "SHA256_USE_ARMV8_A_CRYPTO_IF_PRESENT", //no-check-names -#endif /* MBEDTLS_SHA256_USE_ARMV8_A_CRYPTO_IF_PRESENT */ -#if defined(MBEDTLS_SHA256_USE_A64_CRYPTO_IF_PRESENT) - "SHA256_USE_A64_CRYPTO_IF_PRESENT", //no-check-names -#endif /* MBEDTLS_SHA256_USE_A64_CRYPTO_IF_PRESENT */ -#if defined(MBEDTLS_SHA256_USE_ARMV8_A_CRYPTO_ONLY) - "SHA256_USE_ARMV8_A_CRYPTO_ONLY", //no-check-names -#endif /* MBEDTLS_SHA256_USE_ARMV8_A_CRYPTO_ONLY */ -#if defined(MBEDTLS_SHA256_USE_A64_CRYPTO_ONLY) - "SHA256_USE_A64_CRYPTO_ONLY", //no-check-names -#endif /* MBEDTLS_SHA256_USE_A64_CRYPTO_ONLY */ -#if defined(MBEDTLS_SHA384_C) - "SHA384_C", //no-check-names -#endif /* MBEDTLS_SHA384_C */ -#if defined(MBEDTLS_SHA512_C) - "SHA512_C", //no-check-names -#endif /* MBEDTLS_SHA512_C */ -#if defined(MBEDTLS_SHA3_C) - "SHA3_C", //no-check-names -#endif /* MBEDTLS_SHA3_C */ -#if defined(MBEDTLS_SHA512_USE_A64_CRYPTO_IF_PRESENT) - "SHA512_USE_A64_CRYPTO_IF_PRESENT", //no-check-names -#endif /* MBEDTLS_SHA512_USE_A64_CRYPTO_IF_PRESENT */ -#if defined(MBEDTLS_SHA512_USE_A64_CRYPTO_ONLY) - "SHA512_USE_A64_CRYPTO_ONLY", //no-check-names -#endif /* MBEDTLS_SHA512_USE_A64_CRYPTO_ONLY */ -#if defined(MBEDTLS_SSL_CACHE_C) - "SSL_CACHE_C", //no-check-names -#endif /* MBEDTLS_SSL_CACHE_C */ -#if defined(MBEDTLS_SSL_COOKIE_C) - "SSL_COOKIE_C", //no-check-names -#endif /* MBEDTLS_SSL_COOKIE_C */ -#if defined(MBEDTLS_SSL_TICKET_C) - "SSL_TICKET_C", //no-check-names -#endif /* MBEDTLS_SSL_TICKET_C */ -#if defined(MBEDTLS_SSL_CLI_C) - "SSL_CLI_C", //no-check-names -#endif /* MBEDTLS_SSL_CLI_C */ -#if defined(MBEDTLS_SSL_SRV_C) - "SSL_SRV_C", //no-check-names -#endif /* MBEDTLS_SSL_SRV_C */ -#if defined(MBEDTLS_SSL_TLS_C) - "SSL_TLS_C", //no-check-names -#endif /* MBEDTLS_SSL_TLS_C */ -#if defined(MBEDTLS_THREADING_C) - "THREADING_C", //no-check-names -#endif /* MBEDTLS_THREADING_C */ -#if defined(MBEDTLS_TIMING_C) - "TIMING_C", //no-check-names -#endif /* MBEDTLS_TIMING_C */ -#if defined(MBEDTLS_VERSION_C) - "VERSION_C", //no-check-names -#endif /* MBEDTLS_VERSION_C */ -#if defined(MBEDTLS_X509_USE_C) - "X509_USE_C", //no-check-names -#endif /* MBEDTLS_X509_USE_C */ -#if defined(MBEDTLS_X509_CRT_PARSE_C) - "X509_CRT_PARSE_C", //no-check-names -#endif /* MBEDTLS_X509_CRT_PARSE_C */ -#if defined(MBEDTLS_X509_CRL_PARSE_C) - "X509_CRL_PARSE_C", //no-check-names -#endif /* MBEDTLS_X509_CRL_PARSE_C */ -#if defined(MBEDTLS_X509_CSR_PARSE_C) - "X509_CSR_PARSE_C", //no-check-names -#endif /* MBEDTLS_X509_CSR_PARSE_C */ -#if defined(MBEDTLS_X509_CREATE_C) - "X509_CREATE_C", //no-check-names -#endif /* MBEDTLS_X509_CREATE_C */ -#if defined(MBEDTLS_X509_CRT_WRITE_C) - "X509_CRT_WRITE_C", //no-check-names -#endif /* MBEDTLS_X509_CRT_WRITE_C */ -#if defined(MBEDTLS_X509_CSR_WRITE_C) - "X509_CSR_WRITE_C", //no-check-names -#endif /* MBEDTLS_X509_CSR_WRITE_C */ -#endif /* MBEDTLS_VERSION_FEATURES */ - NULL -}; - -int mbedtls_version_check_feature(const char *feature) -{ - const char * const *idx = features; - - if (*idx == NULL) { - return -2; - } - - if (feature == NULL) { - return -1; - } - - if (strncmp(feature, "MBEDTLS_", 8)) { - return -1; - } - - feature += 8; - - while (*idx != NULL) { - if (!strcmp(*idx, feature)) { - return 0; - } - idx++; - } - return -1; -} - -#endif /* MBEDTLS_VERSION_C */ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/pkgconfig/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/pkgconfig/cmake_install.cmake deleted file mode 100644 index 19e01a1a..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/pkgconfig/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/pkgconfig - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/x509_crt_bundle b/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/x509_crt_bundle deleted file mode 100644 index c7187473..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/x509_crt_bundle and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/abort.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/abort.c.obj deleted file mode 100644 index 77a4b195..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/abort.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/assert.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/assert.c.obj deleted file mode 100644 index ba9954da..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/assert.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/flockfile.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/flockfile.c.obj deleted file mode 100644 index 1c9b996c..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/flockfile.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/getentropy.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/getentropy.c.obj deleted file mode 100644 index cb5c2bd8..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/getentropy.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/heap.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/heap.c.obj deleted file mode 100644 index db72a12c..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/heap.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/init.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/init.c.obj deleted file mode 100644 index e616bc28..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/init.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/locks.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/locks.c.obj deleted file mode 100644 index ca4381ab..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/locks.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/newlib_init.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/newlib_init.c.obj deleted file mode 100644 index b1da28b3..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/newlib_init.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/poll.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/poll.c.obj deleted file mode 100644 index c96c88fe..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/poll.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/port/esp_time_impl.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/port/esp_time_impl.c.obj deleted file mode 100644 index 3a006ed9..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/port/esp_time_impl.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/pthread.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/pthread.c.obj deleted file mode 100644 index 0b605163..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/pthread.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/random.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/random.c.obj deleted file mode 100644 index 89e004de..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/random.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/realpath.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/realpath.c.obj deleted file mode 100644 index f6857b24..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/realpath.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/reent_init.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/reent_init.c.obj deleted file mode 100644 index 32c72cb9..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/reent_init.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/reent_syscalls.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/reent_syscalls.c.obj deleted file mode 100644 index 063fef37..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/reent_syscalls.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/scandir.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/scandir.c.obj deleted file mode 100644 index fb44b7c2..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/scandir.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/stdatomic.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/stdatomic.c.obj deleted file mode 100644 index 31425b3b..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/stdatomic.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/syscalls.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/syscalls.c.obj deleted file mode 100644 index dcddc20c..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/syscalls.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/sysconf.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/sysconf.c.obj deleted file mode 100644 index f94f54ee..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/sysconf.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/termios.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/termios.c.obj deleted file mode 100644 index c9b2747b..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/termios.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/time.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/time.c.obj deleted file mode 100644 index 9c287d94..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir/src/time.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/newlib/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/newlib/cmake_install.cmake deleted file mode 100644 index cb96f05c..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/newlib/cmake_install.cmake +++ /dev/null @@ -1,44 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/newlib/src/port/cmake_install.cmake") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/newlib/libnewlib.a b/esp32-thread/open-thread-rcp/build/esp-idf/newlib/libnewlib.a deleted file mode 100644 index 50549712..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/newlib/libnewlib.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/newlib/src/port/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/newlib/src/port/cmake_install.cmake deleted file mode 100644 index b9b309eb..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/newlib/src/port/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/src/port - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_api.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_api.cpp.obj deleted file mode 100644 index e4ea24a7..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_api.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_bootloader.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_bootloader.c.obj deleted file mode 100644 index 948ecaf5..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_bootloader.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_bootloader_aes.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_bootloader_aes.c.obj deleted file mode 100644 index 172ca181..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_bootloader_aes.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_bootloader_xts_aes.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_bootloader_xts_aes.c.obj deleted file mode 100644 index e9adddf2..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_bootloader_xts_aes.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_cxx_api.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_cxx_api.cpp.obj deleted file mode 100644 index 137150cf..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_cxx_api.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_encrypted_partition.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_encrypted_partition.cpp.obj deleted file mode 100644 index 089877b6..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_encrypted_partition.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_locked.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_locked.cpp.obj deleted file mode 100644 index 0e56bb6f..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_locked.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_simple.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_simple.cpp.obj deleted file mode 100644 index 82518646..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_simple.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_item_hash_list.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_item_hash_list.cpp.obj deleted file mode 100644 index 1fe8e029..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_item_hash_list.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_page.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_page.cpp.obj deleted file mode 100644 index f6f65976..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_page.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_pagemanager.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_pagemanager.cpp.obj deleted file mode 100644 index 2e73df64..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_pagemanager.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition.cpp.obj deleted file mode 100644 index 366efe72..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_lookup.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_lookup.cpp.obj deleted file mode 100644 index 68f571f8..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_lookup.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_manager.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_manager.cpp.obj deleted file mode 100644 index af3034a3..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_manager.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_platform.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_platform.cpp.obj deleted file mode 100644 index bcec7f90..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_platform.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_storage.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_storage.cpp.obj deleted file mode 100644 index 78a99e95..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_storage.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_types.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_types.cpp.obj deleted file mode 100644 index a0a28965..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_types.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/nvs_flash/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/nvs_flash/cmake_install.cmake deleted file mode 100644 index ce8ee5e3..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/nvs_flash/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/nvs_flash/libnvs_flash.a b/esp32-thread/open-thread-rcp/build/esp-idf/nvs_flash/libnvs_flash.a deleted file mode 100644 index dca0d852..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/nvs_flash/libnvs_flash.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/examples/apps/ncp/ncp.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/examples/apps/ncp/ncp.c.obj deleted file mode 100644 index 7f3bf68e..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/examples/apps/ncp/ncp.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/examples/platforms/utils/debug_uart.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/examples/platforms/utils/debug_uart.c.obj deleted file mode 100644 index 001348a9..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/examples/platforms/utils/debug_uart.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/examples/platforms/utils/link_metrics.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/examples/platforms/utils/link_metrics.cpp.obj deleted file mode 100644 index 4cf2774a..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/examples/platforms/utils/link_metrics.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/examples/platforms/utils/mac_frame.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/examples/platforms/utils/mac_frame.cpp.obj deleted file mode 100644 index fd67deae..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/examples/platforms/utils/mac_frame.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/examples/platforms/utils/otns_utils.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/examples/platforms/utils/otns_utils.cpp.obj deleted file mode 100644 index f295038f..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/examples/platforms/utils/otns_utils.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/examples/platforms/utils/settings_ram.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/examples/platforms/utils/settings_ram.c.obj deleted file mode 100644 index 40ef04aa..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/examples/platforms/utils/settings_ram.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/examples/platforms/utils/uart_rtt.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/examples/platforms/utils/uart_rtt.c.obj deleted file mode 100644 index 38a82f32..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/examples/platforms/utils/uart_rtt.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/backbone_router_ftd_api.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/backbone_router_ftd_api.cpp.obj deleted file mode 100644 index 0c34daa2..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/backbone_router_ftd_api.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/ble_secure_api.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/ble_secure_api.cpp.obj deleted file mode 100644 index 23efb492..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/ble_secure_api.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/border_agent_api.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/border_agent_api.cpp.obj deleted file mode 100644 index 1631349b..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/border_agent_api.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/border_router_api.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/border_router_api.cpp.obj deleted file mode 100644 index 671d9240..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/border_router_api.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/border_routing_api.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/border_routing_api.cpp.obj deleted file mode 100644 index f12590df..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/border_routing_api.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/channel_manager_api.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/channel_manager_api.cpp.obj deleted file mode 100644 index 66c9e8b5..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/channel_manager_api.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/channel_monitor_api.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/channel_monitor_api.cpp.obj deleted file mode 100644 index 0e99c0b4..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/channel_monitor_api.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/coap_api.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/coap_api.cpp.obj deleted file mode 100644 index 93e0f8a6..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/coap_api.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/coap_secure_api.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/coap_secure_api.cpp.obj deleted file mode 100644 index 9aed4cbc..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/coap_secure_api.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/commissioner_api.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/commissioner_api.cpp.obj deleted file mode 100644 index a81a5f2c..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/commissioner_api.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/crypto_api.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/crypto_api.cpp.obj deleted file mode 100644 index 378b6153..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/crypto_api.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/dataset_ftd_api.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/dataset_ftd_api.cpp.obj deleted file mode 100644 index 756b895b..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/dataset_ftd_api.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/dataset_updater_api.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/dataset_updater_api.cpp.obj deleted file mode 100644 index fb795c88..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/dataset_updater_api.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/diags_api.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/diags_api.cpp.obj deleted file mode 100644 index 5ba7da77..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/diags_api.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/dns_server_api.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/dns_server_api.cpp.obj deleted file mode 100644 index f9bf8b2e..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/dns_server_api.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/error_api.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/error_api.cpp.obj deleted file mode 100644 index 262b78f4..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/error_api.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/history_tracker_api.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/history_tracker_api.cpp.obj deleted file mode 100644 index a7018d21..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/history_tracker_api.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/instance_api.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/instance_api.cpp.obj deleted file mode 100644 index 25b3d167..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/instance_api.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/jam_detection_api.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/jam_detection_api.cpp.obj deleted file mode 100644 index 926548fe..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/jam_detection_api.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/joiner_api.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/joiner_api.cpp.obj deleted file mode 100644 index a03a6415..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/joiner_api.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/link_raw_api.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/link_raw_api.cpp.obj deleted file mode 100644 index 907c8f73..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/link_raw_api.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/logging_api.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/logging_api.cpp.obj deleted file mode 100644 index 64acca8d..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/logging_api.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/mdns_api.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/mdns_api.cpp.obj deleted file mode 100644 index 5e6f3e26..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/mdns_api.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/mesh_diag_api.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/mesh_diag_api.cpp.obj deleted file mode 100644 index 9beecbbd..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/mesh_diag_api.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/multi_radio_api.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/multi_radio_api.cpp.obj deleted file mode 100644 index 28c0da56..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/multi_radio_api.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/netdata_publisher_api.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/netdata_publisher_api.cpp.obj deleted file mode 100644 index 4578d10c..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/netdata_publisher_api.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/ping_sender_api.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/ping_sender_api.cpp.obj deleted file mode 100644 index bc895179..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/ping_sender_api.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/radio_stats_api.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/radio_stats_api.cpp.obj deleted file mode 100644 index 74ce85fd..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/radio_stats_api.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/random_noncrypto_api.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/random_noncrypto_api.cpp.obj deleted file mode 100644 index bead74fd..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/random_noncrypto_api.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/server_api.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/server_api.cpp.obj deleted file mode 100644 index 29ec6ad8..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/server_api.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/sntp_api.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/sntp_api.cpp.obj deleted file mode 100644 index fe08f4ba..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/sntp_api.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/srp_client_api.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/srp_client_api.cpp.obj deleted file mode 100644 index a5d38cac..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/srp_client_api.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/srp_client_buffers_api.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/srp_client_buffers_api.cpp.obj deleted file mode 100644 index 0a7e1a90..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/srp_client_buffers_api.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/srp_server_api.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/srp_server_api.cpp.obj deleted file mode 100644 index a6e5d79e..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/srp_server_api.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/tasklet_api.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/tasklet_api.cpp.obj deleted file mode 100644 index b61d29e0..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/tasklet_api.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/tcp_ext_api.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/tcp_ext_api.cpp.obj deleted file mode 100644 index a378612f..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/tcp_ext_api.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/thread_api.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/thread_api.cpp.obj deleted file mode 100644 index 13795d50..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/thread_api.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/thread_ftd_api.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/thread_ftd_api.cpp.obj deleted file mode 100644 index ffdd35e4..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/thread_ftd_api.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/trel_api.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/trel_api.cpp.obj deleted file mode 100644 index fc673155..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/trel_api.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/verhoeff_checksum_api.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/verhoeff_checksum_api.cpp.obj deleted file mode 100644 index 0049e39f..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/api/verhoeff_checksum_api.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/appender.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/appender.cpp.obj deleted file mode 100644 index b859e2b8..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/appender.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/binary_search.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/binary_search.cpp.obj deleted file mode 100644 index 53a011ff..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/binary_search.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/crc.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/crc.cpp.obj deleted file mode 100644 index 9d1ba14e..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/crc.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/data.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/data.cpp.obj deleted file mode 100644 index d50b66a2..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/data.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/error.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/error.cpp.obj deleted file mode 100644 index 2b25966a..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/error.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/frame_builder.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/frame_builder.cpp.obj deleted file mode 100644 index 38c62ab6..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/frame_builder.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/frame_data.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/frame_data.cpp.obj deleted file mode 100644 index b4d62f29..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/frame_data.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/heap_data.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/heap_data.cpp.obj deleted file mode 100644 index bc03b7b8..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/heap_data.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/log.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/log.cpp.obj deleted file mode 100644 index cd4b3996..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/log.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/message.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/message.cpp.obj deleted file mode 100644 index 9f1d509c..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/message.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/offset_range.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/offset_range.cpp.obj deleted file mode 100644 index b99ffa5d..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/offset_range.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/preference.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/preference.cpp.obj deleted file mode 100644 index d6679cf5..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/preference.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/random.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/random.cpp.obj deleted file mode 100644 index 93416256..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/random.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/string.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/string.cpp.obj deleted file mode 100644 index ad85d8b6..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/string.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/tasklet.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/tasklet.cpp.obj deleted file mode 100644 index 5ff9c334..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/tasklet.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/timer.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/timer.cpp.obj deleted file mode 100644 index 4edb034a..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/timer.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/tlvs.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/tlvs.cpp.obj deleted file mode 100644 index c16ddc64..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/tlvs.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/trickle_timer.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/trickle_timer.cpp.obj deleted file mode 100644 index a8141d12..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/trickle_timer.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/uptime.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/uptime.cpp.obj deleted file mode 100644 index 54200ab7..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/common/uptime.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/crypto/aes_ccm.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/crypto/aes_ccm.cpp.obj deleted file mode 100644 index f825b57b..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/crypto/aes_ccm.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/crypto/aes_ecb.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/crypto/aes_ecb.cpp.obj deleted file mode 100644 index f0e5474f..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/crypto/aes_ecb.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/crypto/crypto_platform.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/crypto/crypto_platform.cpp.obj deleted file mode 100644 index d03e4010..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/crypto/crypto_platform.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/crypto/hkdf_sha256.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/crypto/hkdf_sha256.cpp.obj deleted file mode 100644 index eb4a5933..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/crypto/hkdf_sha256.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/crypto/hmac_sha256.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/crypto/hmac_sha256.cpp.obj deleted file mode 100644 index e56d51e0..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/crypto/hmac_sha256.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/crypto/mbedtls.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/crypto/mbedtls.cpp.obj deleted file mode 100644 index 460e9bb8..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/crypto/mbedtls.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/crypto/sha256.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/crypto/sha256.cpp.obj deleted file mode 100644 index b733e6cf..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/crypto/sha256.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/crypto/storage.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/crypto/storage.cpp.obj deleted file mode 100644 index f1f6e71c..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/crypto/storage.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/diags/factory_diags.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/diags/factory_diags.cpp.obj deleted file mode 100644 index d7ef3679..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/diags/factory_diags.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/instance/instance.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/instance/instance.cpp.obj deleted file mode 100644 index c0d199a4..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/instance/instance.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/mac/link_raw.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/mac/link_raw.cpp.obj deleted file mode 100644 index 831d7ef9..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/mac/link_raw.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/mac/mac_frame.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/mac/mac_frame.cpp.obj deleted file mode 100644 index bbecd376..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/mac/mac_frame.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/mac/mac_header_ie.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/mac/mac_header_ie.cpp.obj deleted file mode 100644 index 3463fcd4..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/mac/mac_header_ie.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/mac/mac_types.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/mac/mac_types.cpp.obj deleted file mode 100644 index 2cf8047c..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/mac/mac_types.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/mac/sub_mac.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/mac/sub_mac.cpp.obj deleted file mode 100644 index 878b1d22..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/mac/sub_mac.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/mac/sub_mac_callbacks.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/mac/sub_mac_callbacks.cpp.obj deleted file mode 100644 index 96041ba4..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/mac/sub_mac_callbacks.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/mac/sub_mac_csl_receiver.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/mac/sub_mac_csl_receiver.cpp.obj deleted file mode 100644 index 0ee9980a..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/mac/sub_mac_csl_receiver.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/mac/sub_mac_wed.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/mac/sub_mac_wed.cpp.obj deleted file mode 100644 index 7adbafd7..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/mac/sub_mac_wed.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/mac/wakeup_tx_scheduler.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/mac/wakeup_tx_scheduler.cpp.obj deleted file mode 100644 index 33d43e73..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/mac/wakeup_tx_scheduler.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/radio/ble_secure.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/radio/ble_secure.cpp.obj deleted file mode 100644 index 86d5600e..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/radio/ble_secure.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/radio/radio.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/radio/radio.cpp.obj deleted file mode 100644 index 50367441..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/radio/radio.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/radio/radio_callbacks.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/radio/radio_callbacks.cpp.obj deleted file mode 100644 index 4e70bafe..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/radio/radio_callbacks.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/radio/radio_platform.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/radio/radio_platform.cpp.obj deleted file mode 100644 index 1f653910..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/radio/radio_platform.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/radio/trel_interface.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/radio/trel_interface.cpp.obj deleted file mode 100644 index 962c45b1..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/radio/trel_interface.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/radio/trel_link.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/radio/trel_link.cpp.obj deleted file mode 100644 index 585bae84..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/radio/trel_link.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/radio/trel_packet.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/radio/trel_packet.cpp.obj deleted file mode 100644 index 48ab2acb..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/radio/trel_packet.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/radio/trel_peer.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/radio/trel_peer.cpp.obj deleted file mode 100644 index f0095494..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/radio/trel_peer.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/radio/trel_peer_discoverer.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/radio/trel_peer_discoverer.cpp.obj deleted file mode 100644 index 194b250d..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/radio/trel_peer_discoverer.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/anycast_locator.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/anycast_locator.cpp.obj deleted file mode 100644 index edf93b0c..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/anycast_locator.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/child.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/child.cpp.obj deleted file mode 100644 index cc958c92..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/child.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/child_table.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/child_table.cpp.obj deleted file mode 100644 index 14b7474e..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/child_table.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/dua_manager.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/dua_manager.cpp.obj deleted file mode 100644 index 99b58ac4..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/dua_manager.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/link_metrics_types.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/link_metrics_types.cpp.obj deleted file mode 100644 index 3b6950fc..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/link_metrics_types.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/link_quality.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/link_quality.cpp.obj deleted file mode 100644 index 0847fefe..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/link_quality.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/mle_ftd.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/mle_ftd.cpp.obj deleted file mode 100644 index 4c47542d..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/mle_ftd.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/mle_tlvs.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/mle_tlvs.cpp.obj deleted file mode 100644 index 3df1a59a..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/mle_tlvs.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/mlr_manager.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/mlr_manager.cpp.obj deleted file mode 100644 index 345bf813..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/mlr_manager.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/network_data_local.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/network_data_local.cpp.obj deleted file mode 100644 index 33f057fe..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/network_data_local.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/network_data_notifier.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/network_data_notifier.cpp.obj deleted file mode 100644 index a0d0cfa3..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/network_data_notifier.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/network_data_publisher.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/network_data_publisher.cpp.obj deleted file mode 100644 index b595d34d..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/network_data_publisher.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/network_data_tlvs.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/network_data_tlvs.cpp.obj deleted file mode 100644 index 80fe77b5..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/network_data_tlvs.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/network_diagnostic_tlvs.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/network_diagnostic_tlvs.cpp.obj deleted file mode 100644 index 855eae34..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/network_diagnostic_tlvs.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/radio_selector.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/radio_selector.cpp.obj deleted file mode 100644 index 4d65dabf..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/radio_selector.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/router.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/router.cpp.obj deleted file mode 100644 index 893fdf37..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/router.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/router_table.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/router_table.cpp.obj deleted file mode 100644 index 13adb78a..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/router_table.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/src_match_controller.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/src_match_controller.cpp.obj deleted file mode 100644 index f9b285b0..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/src_match_controller.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/thread_link_info.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/thread_link_info.cpp.obj deleted file mode 100644 index 325519cf..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/thread_link_info.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/uri_paths.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/uri_paths.cpp.obj deleted file mode 100644 index fc28f206..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/uri_paths.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/version.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/version.cpp.obj deleted file mode 100644 index d53ed550..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/thread/version.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/channel_manager.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/channel_manager.cpp.obj deleted file mode 100644 index a192a620..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/channel_manager.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/channel_monitor.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/channel_monitor.cpp.obj deleted file mode 100644 index 12d57eea..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/channel_monitor.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/flash.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/flash.cpp.obj deleted file mode 100644 index 629c9116..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/flash.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/heap.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/heap.cpp.obj deleted file mode 100644 index cfee05bc..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/heap.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/history_tracker.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/history_tracker.cpp.obj deleted file mode 100644 index 9908224d..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/history_tracker.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/jam_detector.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/jam_detector.cpp.obj deleted file mode 100644 index ebb2d0e0..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/jam_detector.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/link_metrics_manager.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/link_metrics_manager.cpp.obj deleted file mode 100644 index a88c3ca7..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/link_metrics_manager.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/mesh_diag.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/mesh_diag.cpp.obj deleted file mode 100644 index 7abd1110..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/mesh_diag.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/otns.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/otns.cpp.obj deleted file mode 100644 index 06278883..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/otns.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/parse_cmdline.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/parse_cmdline.cpp.obj deleted file mode 100644 index 03000dcc..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/parse_cmdline.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/ping_sender.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/ping_sender.cpp.obj deleted file mode 100644 index 5537e81d..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/ping_sender.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/power_calibration.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/power_calibration.cpp.obj deleted file mode 100644 index b82eb545..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/power_calibration.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/slaac_address.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/slaac_address.cpp.obj deleted file mode 100644 index 2c12b544..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/slaac_address.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/srp_client_buffers.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/srp_client_buffers.cpp.obj deleted file mode 100644 index 62796acf..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/srp_client_buffers.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/verhoeff_checksum.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/verhoeff_checksum.cpp.obj deleted file mode 100644 index c23a7e3e..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/core/utils/verhoeff_checksum.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/lib/hdlc/hdlc.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/lib/hdlc/hdlc.cpp.obj deleted file mode 100644 index a604f5b7..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/lib/hdlc/hdlc.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/lib/spinel/example_vendor_hook.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/lib/spinel/example_vendor_hook.cpp.obj deleted file mode 100644 index 487c3c27..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/lib/spinel/example_vendor_hook.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/lib/spinel/logger.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/lib/spinel/logger.cpp.obj deleted file mode 100644 index ca3c8f60..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/lib/spinel/logger.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/lib/spinel/radio_spinel.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/lib/spinel/radio_spinel.cpp.obj deleted file mode 100644 index 2d33c6ba..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/lib/spinel/radio_spinel.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/lib/spinel/spinel.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/lib/spinel/spinel.c.obj deleted file mode 100644 index 68422ab2..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/lib/spinel/spinel.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/lib/spinel/spinel_buffer.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/lib/spinel/spinel_buffer.cpp.obj deleted file mode 100644 index 9ea01112..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/lib/spinel/spinel_buffer.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/lib/spinel/spinel_decoder.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/lib/spinel/spinel_decoder.cpp.obj deleted file mode 100644 index 593234be..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/lib/spinel/spinel_decoder.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/lib/spinel/spinel_driver.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/lib/spinel/spinel_driver.cpp.obj deleted file mode 100644 index d507875e..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/lib/spinel/spinel_driver.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/lib/spinel/spinel_encoder.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/lib/spinel/spinel_encoder.cpp.obj deleted file mode 100644 index 2665f5e7..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/lib/spinel/spinel_encoder.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/lib/spinel/spinel_helper.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/lib/spinel/spinel_helper.cpp.obj deleted file mode 100644 index 0002d5a0..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/lib/spinel/spinel_helper.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/lib/spinel/spinel_prop_codec.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/lib/spinel/spinel_prop_codec.cpp.obj deleted file mode 100644 index af292ff9..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/lib/spinel/spinel_prop_codec.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/ncp/changed_props_set.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/ncp/changed_props_set.cpp.obj deleted file mode 100644 index f032ac47..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/ncp/changed_props_set.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/ncp/example_vendor_hook.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/ncp/example_vendor_hook.cpp.obj deleted file mode 100644 index 993856a8..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/ncp/example_vendor_hook.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/ncp/multipan_platform.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/ncp/multipan_platform.cpp.obj deleted file mode 100644 index ef06f900..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/ncp/multipan_platform.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/ncp/ncp_base.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/ncp/ncp_base.cpp.obj deleted file mode 100644 index 17df6698..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/ncp/ncp_base.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/ncp/ncp_base_dispatcher.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/ncp/ncp_base_dispatcher.cpp.obj deleted file mode 100644 index 7e468ca5..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/ncp/ncp_base_dispatcher.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/ncp/ncp_base_ftd.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/ncp/ncp_base_ftd.cpp.obj deleted file mode 100644 index 3447da20..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/ncp/ncp_base_ftd.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/ncp/ncp_base_mtd.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/ncp/ncp_base_mtd.cpp.obj deleted file mode 100644 index e6218c7b..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/ncp/ncp_base_mtd.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/ncp/ncp_base_radio.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/ncp/ncp_base_radio.cpp.obj deleted file mode 100644 index f0e8bfb4..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/ncp/ncp_base_radio.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/ncp/ncp_hdlc.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/ncp/ncp_hdlc.cpp.obj deleted file mode 100644 index fb8c7c7f..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/ncp/ncp_hdlc.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/ncp/ncp_spi.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/ncp/ncp_spi.cpp.obj deleted file mode 100644 index 9715d6c2..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/openthread/src/ncp/ncp_spi.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/esp_openthread.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/esp_openthread.cpp.obj deleted file mode 100644 index 2f3c221b..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/esp_openthread.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/esp_openthread_cli.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/esp_openthread_cli.c.obj deleted file mode 100644 index cc775aa4..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/esp_openthread_cli.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/esp_openthread_lock.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/esp_openthread_lock.c.obj deleted file mode 100644 index 59cba931..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/esp_openthread_lock.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/esp_openthread_lwip_netif.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/esp_openthread_lwip_netif.c.obj deleted file mode 100644 index b047d6a1..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/esp_openthread_lwip_netif.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/esp_openthread_netif_glue.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/esp_openthread_netif_glue.c.obj deleted file mode 100644 index fb31f522..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/esp_openthread_netif_glue.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/esp_openthread_platform.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/esp_openthread_platform.cpp.obj deleted file mode 100644 index 0143536b..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/esp_openthread_platform.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/esp_openthread_task_queue.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/esp_openthread_task_queue.c.obj deleted file mode 100644 index af34093c..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/esp_openthread_task_queue.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/ncp/esp_openthread_ncp.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/ncp/esp_openthread_ncp.cpp.obj deleted file mode 100644 index 78207777..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/ncp/esp_openthread_ncp.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/ncp/esp_openthread_ncp_hdlc.cpp.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/ncp/esp_openthread_ncp_hdlc.cpp.obj deleted file mode 100644 index e85f082f..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/ncp/esp_openthread_ncp_hdlc.cpp.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/port/esp_openthread_alarm.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/port/esp_openthread_alarm.c.obj deleted file mode 100644 index 79852fd0..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/port/esp_openthread_alarm.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/port/esp_openthread_logging.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/port/esp_openthread_logging.c.obj deleted file mode 100644 index 978f4b5c..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/port/esp_openthread_logging.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/port/esp_openthread_memory.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/port/esp_openthread_memory.c.obj deleted file mode 100644 index 43b9e292..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/port/esp_openthread_memory.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/port/esp_openthread_misc.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/port/esp_openthread_misc.c.obj deleted file mode 100644 index 94bd1c76..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/port/esp_openthread_misc.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/port/esp_openthread_radio.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/port/esp_openthread_radio.c.obj deleted file mode 100644 index b1ce0856..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/port/esp_openthread_radio.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/port/esp_openthread_settings.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/port/esp_openthread_settings.c.obj deleted file mode 100644 index 6948d4a8..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/port/esp_openthread_settings.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/port/esp_openthread_spi_slave.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/port/esp_openthread_spi_slave.c.obj deleted file mode 100644 index d5ca5763..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/port/esp_openthread_spi_slave.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/port/esp_openthread_uart.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/port/esp_openthread_uart.c.obj deleted file mode 100644 index 39cd7170..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/port/esp_openthread_uart.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/port/esp_openthread_udp.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/port/esp_openthread_udp.c.obj deleted file mode 100644 index 1acfb843..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/CMakeFiles/__idf_openthread.dir/src/port/esp_openthread_udp.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/cmake_install.cmake deleted file mode 100644 index 9d5a7e34..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/libopenthread.a b/esp32-thread/open-thread-rcp/build/esp-idf/openthread/libopenthread.a deleted file mode 100644 index 53998500..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/openthread/libopenthread.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/partition_table/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/partition_table/cmake_install.cmake deleted file mode 100644 index d6b1f595..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/partition_table/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/partition_table - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/partition_table/partition-table-flash_args.in b/esp32-thread/open-thread-rcp/build/esp-idf/partition_table/partition-table-flash_args.in deleted file mode 100644 index 539aa151..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/partition_table/partition-table-flash_args.in +++ /dev/null @@ -1,2 +0,0 @@ ---flash_mode dio --flash_freq 48m --flash_size 2MB -0x8000 partition_table/partition-table.bin \ No newline at end of file diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread.c.obj deleted file mode 100644 index 89d0880c..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_cond_var.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_cond_var.c.obj deleted file mode 100644 index 8a584df6..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_cond_var.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_local_storage.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_local_storage.c.obj deleted file mode 100644 index 1e5e6b0e..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_local_storage.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_rwlock.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_rwlock.c.obj deleted file mode 100644 index 68c41a7a..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_rwlock.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_semaphore.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_semaphore.c.obj deleted file mode 100644 index e45a083b..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_semaphore.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/pthread/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/pthread/cmake_install.cmake deleted file mode 100644 index 678b1fff..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/pthread/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/pthread - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/pthread/libpthread.a b/esp32-thread/open-thread-rcp/build/esp-idf/pthread/libpthread.a deleted file mode 100644 index 09029e57..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/pthread/libpthread.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/riscv/CMakeFiles/__idf_riscv.dir/instruction_decode.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/riscv/CMakeFiles/__idf_riscv.dir/instruction_decode.c.obj deleted file mode 100644 index b60c9e4f..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/riscv/CMakeFiles/__idf_riscv.dir/instruction_decode.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/riscv/CMakeFiles/__idf_riscv.dir/interrupt.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/riscv/CMakeFiles/__idf_riscv.dir/interrupt.c.obj deleted file mode 100644 index 4df91435..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/riscv/CMakeFiles/__idf_riscv.dir/interrupt.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/riscv/CMakeFiles/__idf_riscv.dir/interrupt_plic.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/riscv/CMakeFiles/__idf_riscv.dir/interrupt_plic.c.obj deleted file mode 100644 index 1ecbc3f5..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/riscv/CMakeFiles/__idf_riscv.dir/interrupt_plic.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/riscv/CMakeFiles/__idf_riscv.dir/rv_utils.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/riscv/CMakeFiles/__idf_riscv.dir/rv_utils.c.obj deleted file mode 100644 index 07cf0c12..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/riscv/CMakeFiles/__idf_riscv.dir/rv_utils.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/riscv/CMakeFiles/__idf_riscv.dir/vectors.S.obj b/esp32-thread/open-thread-rcp/build/esp-idf/riscv/CMakeFiles/__idf_riscv.dir/vectors.S.obj deleted file mode 100644 index e6293971..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/riscv/CMakeFiles/__idf_riscv.dir/vectors.S.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/riscv/CMakeFiles/__idf_riscv.dir/vectors_intc.S.obj b/esp32-thread/open-thread-rcp/build/esp-idf/riscv/CMakeFiles/__idf_riscv.dir/vectors_intc.S.obj deleted file mode 100644 index 89cfad9c..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/riscv/CMakeFiles/__idf_riscv.dir/vectors_intc.S.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/riscv/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/riscv/cmake_install.cmake deleted file mode 100644 index 7fa6ca79..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/riscv/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/riscv/libriscv.a b/esp32-thread/open-thread-rcp/build/esp-idf/riscv/libriscv.a deleted file mode 100644 index 6aa06d2d..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/riscv/libriscv.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sd_pwr_ctrl/sd_pwr_ctrl.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sd_pwr_ctrl/sd_pwr_ctrl.c.obj deleted file mode 100644 index 831022c8..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sd_pwr_ctrl/sd_pwr_ctrl.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_cmd.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_cmd.c.obj deleted file mode 100644 index c99b3cda..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_cmd.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_common.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_common.c.obj deleted file mode 100644 index 15ce8e4c..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_common.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_init.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_init.c.obj deleted file mode 100644 index 14595d56..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_init.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_io.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_io.c.obj deleted file mode 100644 index 7a8ba86e..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_io.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_mmc.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_mmc.c.obj deleted file mode 100644 index 840a3e60..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_mmc.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_sd.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_sd.c.obj deleted file mode 100644 index 7e79eb95..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_sd.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/sdmmc/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/sdmmc/cmake_install.cmake deleted file mode 100644 index 2b16e7d3..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/sdmmc/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/sdmmc/libsdmmc.a b/esp32-thread/open-thread-rcp/build/esp-idf/sdmmc/libsdmmc.a deleted file mode 100644 index 9fd63f1b..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/sdmmc/libsdmmc.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj deleted file mode 100644 index 058ca1bd..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/adc_periph.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/adc_periph.c.obj deleted file mode 100644 index 7b0bdf29..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/adc_periph.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/ana_cmpr_periph.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/ana_cmpr_periph.c.obj deleted file mode 100644 index 30376363..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/ana_cmpr_periph.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/dedic_gpio_periph.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/dedic_gpio_periph.c.obj deleted file mode 100644 index b0f402e0..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/dedic_gpio_periph.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/etm_periph.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/etm_periph.c.obj deleted file mode 100644 index 8cd0cc82..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/etm_periph.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/gdma_periph.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/gdma_periph.c.obj deleted file mode 100644 index c72de297..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/gdma_periph.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/gpio_periph.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/gpio_periph.c.obj deleted file mode 100644 index 2deae564..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/gpio_periph.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/i2c_periph.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/i2c_periph.c.obj deleted file mode 100644 index 7a0c41ae..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/i2c_periph.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/i2s_periph.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/i2s_periph.c.obj deleted file mode 100644 index bef9cfd4..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/i2s_periph.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/ieee802154_periph.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/ieee802154_periph.c.obj deleted file mode 100644 index 37bc1d5b..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/ieee802154_periph.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/interrupts.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/interrupts.c.obj deleted file mode 100644 index 3641a36b..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/interrupts.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/ledc_periph.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/ledc_periph.c.obj deleted file mode 100644 index 19cb2ef0..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/ledc_periph.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/mcpwm_periph.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/mcpwm_periph.c.obj deleted file mode 100644 index 5244a3fb..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/mcpwm_periph.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/mpi_periph.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/mpi_periph.c.obj deleted file mode 100644 index 7ef1e1a1..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/mpi_periph.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/parlio_periph.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/parlio_periph.c.obj deleted file mode 100644 index df385d1b..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/parlio_periph.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/pcnt_periph.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/pcnt_periph.c.obj deleted file mode 100644 index c4992b6a..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/pcnt_periph.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/power_supply_periph.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/power_supply_periph.c.obj deleted file mode 100644 index 2cd3abd3..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/power_supply_periph.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/rmt_periph.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/rmt_periph.c.obj deleted file mode 100644 index cb26897c..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/rmt_periph.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/rtc_io_periph.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/rtc_io_periph.c.obj deleted file mode 100644 index f03642ab..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/rtc_io_periph.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/sdm_periph.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/sdm_periph.c.obj deleted file mode 100644 index d30122c6..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/sdm_periph.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/spi_periph.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/spi_periph.c.obj deleted file mode 100644 index 64f1f419..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/spi_periph.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/system_retention_periph.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/system_retention_periph.c.obj deleted file mode 100644 index 49eccc86..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/system_retention_periph.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/temperature_sensor_periph.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/temperature_sensor_periph.c.obj deleted file mode 100644 index 14a6f0c0..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/temperature_sensor_periph.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/timer_periph.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/timer_periph.c.obj deleted file mode 100644 index 8b53860d..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/timer_periph.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/twai_periph.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/twai_periph.c.obj deleted file mode 100644 index 4265b425..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/twai_periph.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/uart_periph.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/uart_periph.c.obj deleted file mode 100644 index 8c931d48..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/uart_periph.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/wdt_periph.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/wdt_periph.c.obj deleted file mode 100644 index a539f7e0..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32h2/wdt_periph.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj deleted file mode 100644 index 7affc65d..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/soc/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/soc/cmake_install.cmake deleted file mode 100644 index 38c8c111..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/soc/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/soc/libsoc.a b/esp32-thread/open-thread-rcp/build/esp-idf/soc/libsoc.a deleted file mode 100644 index 80b96d97..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/soc/libsoc.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/cache_utils.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/cache_utils.c.obj deleted file mode 100644 index d92fa08f..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/cache_utils.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_api.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_api.c.obj deleted file mode 100644 index 97b7dc3f..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_api.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_spi_init.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_spi_init.c.obj deleted file mode 100644 index 4a570a6f..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_spi_init.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_brownout_hook.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_brownout_hook.c.obj deleted file mode 100644 index 46820642..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_brownout_hook.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_mmap.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_mmap.c.obj deleted file mode 100644 index cafe103f..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_mmap.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_ops.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_ops.c.obj deleted file mode 100644 index 6cfce547..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_ops.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/memspi_host_driver.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/memspi_host_driver.c.obj deleted file mode 100644 index 1e6320ac..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/memspi_host_driver.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_boya.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_boya.c.obj deleted file mode 100644 index 5c7870c2..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_boya.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_drivers.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_drivers.c.obj deleted file mode 100644 index a5dedcb5..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_drivers.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_gd.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_gd.c.obj deleted file mode 100644 index c31f1b18..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_gd.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_generic.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_generic.c.obj deleted file mode 100644 index f5437f22..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_generic.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_issi.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_issi.c.obj deleted file mode 100644 index aba8e470..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_issi.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic.c.obj deleted file mode 100644 index 0d6fe42b..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic_opi.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic_opi.c.obj deleted file mode 100644 index 96ff235f..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic_opi.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_th.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_th.c.obj deleted file mode 100644 index 31a18ddd..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_th.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_winbond.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_winbond.c.obj deleted file mode 100644 index 4a25b17e..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_winbond.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_app.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_app.c.obj deleted file mode 100644 index ba35b1f7..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_app.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_noos.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_noos.c.obj deleted file mode 100644 index a0cc5021..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_noos.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj deleted file mode 100644 index 15ea8f65..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/spi_flash/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/spi_flash/cmake_install.cmake deleted file mode 100644 index a38491e5..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/spi_flash/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/spi_flash/libspi_flash.a b/esp32-thread/open-thread-rcp/build/esp-idf/spi_flash/libspi_flash.a deleted file mode 100644 index c6833af3..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/spi_flash/libspi_flash.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport.c.obj deleted file mode 100644 index 8936fe9f..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_internal.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_internal.c.obj deleted file mode 100644 index 0012a483..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_internal.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_socks_proxy.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_socks_proxy.c.obj deleted file mode 100644 index 10af2982..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_socks_proxy.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ssl.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ssl.c.obj deleted file mode 100644 index 42e994c2..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ssl.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ws.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ws.c.obj deleted file mode 100644 index b644f10e..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ws.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/tcp_transport/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/tcp_transport/cmake_install.cmake deleted file mode 100644 index 7b70fca5..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/tcp_transport/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/tcp_transport - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/tcp_transport/libtcp_transport.a b/esp32-thread/open-thread-rcp/build/esp-idf/tcp_transport/libtcp_transport.a deleted file mode 100644 index 0704faa7..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/tcp_transport/libtcp_transport.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/nullfs.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/nullfs.c.obj deleted file mode 100644 index ac193e52..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/nullfs.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs.c.obj deleted file mode 100644 index 1bb69e8c..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_eventfd.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_eventfd.c.obj deleted file mode 100644 index 0299b063..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_eventfd.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_semihost.c.obj b/esp32-thread/open-thread-rcp/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_semihost.c.obj deleted file mode 100644 index d16cb6bc..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_semihost.c.obj and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/vfs/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/vfs/cmake_install.cmake deleted file mode 100644 index f1e5d54a..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/vfs/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/vfs/libvfs.a b/esp32-thread/open-thread-rcp/build/esp-idf/vfs/libvfs.a deleted file mode 100644 index d7f9421f..00000000 Binary files a/esp32-thread/open-thread-rcp/build/esp-idf/vfs/libvfs.a and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/esp-idf/wpa_supplicant/cmake_install.cmake b/esp32-thread/open-thread-rcp/build/esp-idf/wpa_supplicant/cmake_install.cmake deleted file mode 100644 index 2f21e5fb..00000000 --- a/esp32-thread/open-thread-rcp/build/esp-idf/wpa_supplicant/cmake_install.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# Install script for directory: C:/Users/Laurent/esp/v5.5.1/esp-idf/components/wpa_supplicant - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/open-thread-rcp") -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 path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-objdump.exe") -endif() - diff --git a/esp32-thread/open-thread-rcp/build/flash_app_args b/esp32-thread/open-thread-rcp/build/flash_app_args deleted file mode 100644 index 28a37912..00000000 --- a/esp32-thread/open-thread-rcp/build/flash_app_args +++ /dev/null @@ -1,2 +0,0 @@ ---flash_mode dio --flash_freq 48m --flash_size 2MB -0x10000 open-thread-rcp.bin diff --git a/esp32-thread/open-thread-rcp/build/flash_args b/esp32-thread/open-thread-rcp/build/flash_args deleted file mode 100644 index 77588bb0..00000000 --- a/esp32-thread/open-thread-rcp/build/flash_args +++ /dev/null @@ -1,4 +0,0 @@ ---flash_mode dio --flash_freq 48m --flash_size 2MB -0x0 bootloader/bootloader.bin -0x10000 open-thread-rcp.bin -0x8000 partition_table/partition-table.bin diff --git a/esp32-thread/open-thread-rcp/build/flash_args.in b/esp32-thread/open-thread-rcp/build/flash_args.in deleted file mode 100644 index 190e802a..00000000 --- a/esp32-thread/open-thread-rcp/build/flash_args.in +++ /dev/null @@ -1,4 +0,0 @@ ---flash_mode dio --flash_freq 48m --flash_size 2MB -0x0 bootloader/bootloader.bin -0x10000 $.bin -0x8000 partition_table/partition-table.bin \ No newline at end of file diff --git a/esp32-thread/open-thread-rcp/build/flash_bootloader_args b/esp32-thread/open-thread-rcp/build/flash_bootloader_args deleted file mode 100644 index 354407ec..00000000 --- a/esp32-thread/open-thread-rcp/build/flash_bootloader_args +++ /dev/null @@ -1,2 +0,0 @@ ---flash_mode dio --flash_freq 48m --flash_size 2MB -0x0 bootloader/bootloader.bin diff --git a/esp32-thread/open-thread-rcp/build/flash_project_args b/esp32-thread/open-thread-rcp/build/flash_project_args deleted file mode 100644 index 77588bb0..00000000 --- a/esp32-thread/open-thread-rcp/build/flash_project_args +++ /dev/null @@ -1,4 +0,0 @@ ---flash_mode dio --flash_freq 48m --flash_size 2MB -0x0 bootloader/bootloader.bin -0x10000 open-thread-rcp.bin -0x8000 partition_table/partition-table.bin diff --git a/esp32-thread/open-thread-rcp/build/flasher_args.json b/esp32-thread/open-thread-rcp/build/flasher_args.json deleted file mode 100644 index 1d8b2436..00000000 --- a/esp32-thread/open-thread-rcp/build/flasher_args.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "write_flash_args" : [ "--flash_mode", "dio", - "--flash_size", "2MB", - "--flash_freq", "48m" ], - "flash_settings" : { - "flash_mode": "dio", - "flash_size": "2MB", - "flash_freq": "48m" - }, - "flash_files" : { - "0x0" : "bootloader/bootloader.bin", - "0x10000" : "open-thread-rcp.bin", - "0x8000" : "partition_table/partition-table.bin" - }, - "bootloader" : { "offset" : "0x0", "file" : "bootloader/bootloader.bin", "encrypted" : "false" }, - "app" : { "offset" : "0x10000", "file" : "open-thread-rcp.bin", "encrypted" : "false" }, - "partition-table" : { "offset" : "0x8000", "file" : "partition_table/partition-table.bin", "encrypted" : "false" }, - "extra_esptool_args" : { - "after" : "hard_reset", - "before" : "default_reset", - "stub" : true, - "chip" : "esp32h2" - } -} diff --git a/esp32-thread/open-thread-rcp/build/gdbinit/connect b/esp32-thread/open-thread-rcp/build/gdbinit/connect deleted file mode 100644 index faa38573..00000000 --- a/esp32-thread/open-thread-rcp/build/gdbinit/connect +++ /dev/null @@ -1,7 +0,0 @@ -# Connect to the default openocd-esp port and stop on app_main() -set remotetimeout 10 -target remote :3333 -monitor reset halt -maintenance flush register-cache -thbreak app_main -continue diff --git a/esp32-thread/open-thread-rcp/build/gdbinit/gdbinit b/esp32-thread/open-thread-rcp/build/gdbinit/gdbinit deleted file mode 100644 index 06529601..00000000 --- a/esp32-thread/open-thread-rcp/build/gdbinit/gdbinit +++ /dev/null @@ -1,2 +0,0 @@ -source C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/gdbinit/symbols -source C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/gdbinit/connect diff --git a/esp32-thread/open-thread-rcp/build/gdbinit/prefix_map b/esp32-thread/open-thread-rcp/build/gdbinit/prefix_map deleted file mode 100644 index c7842ec1..00000000 --- a/esp32-thread/open-thread-rcp/build/gdbinit/prefix_map +++ /dev/null @@ -1 +0,0 @@ -# There is no prefix map defined for the project. diff --git a/esp32-thread/open-thread-rcp/build/gdbinit/py_extensions b/esp32-thread/open-thread-rcp/build/gdbinit/py_extensions deleted file mode 100644 index 336f9957..00000000 --- a/esp32-thread/open-thread-rcp/build/gdbinit/py_extensions +++ /dev/null @@ -1,7 +0,0 @@ -# Add Python GDB extensions -python -try: - import freertos_gdb -except ModuleNotFoundError: - print('warning: python extension "freertos_gdb" not found.') -end diff --git a/esp32-thread/open-thread-rcp/build/gdbinit/symbols b/esp32-thread/open-thread-rcp/build/gdbinit/symbols deleted file mode 100644 index d22e44cc..00000000 --- a/esp32-thread/open-thread-rcp/build/gdbinit/symbols +++ /dev/null @@ -1,20 +0,0 @@ -# Load esp32h2 ROM ELF symbols -define target hookpost-remote -set confirm off - # if $_streq((char *) 0x4001c7dc, "Nov 1 2022") - if (*(int*) 0x4001c7dc) == 0x20766f4e && (*(int*) 0x4001c7e0) == 0x32203120 && (*(int*) 0x4001c7e4) == 0x323230 - add-symbol-file C:/Users/Laurent/.espressif/tools/esp-rom-elfs/20241011/esp32h2_rev0_rom.elf - else - echo Warning: Unknown esp32h2 ROM revision.\n - end -set confirm on -end - - -# Load bootloader symbols -set confirm off - add-symbol-file C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/bootloader.elf -set confirm on - -# Load application symbols -file C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/open-thread-rcp.elf diff --git a/esp32-thread/open-thread-rcp/build/kconfigs.in b/esp32-thread/open-thread-rcp/build/kconfigs.in deleted file mode 100644 index 4c0011ce..00000000 --- a/esp32-thread/open-thread-rcp/build/kconfigs.in +++ /dev/null @@ -1,50 +0,0 @@ -source "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/Kconfig" -source "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/Kconfig" -source "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/Kconfig" -source "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/Kconfig" -source "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/Kconfig" -source "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/Kconfig" -source "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_bitscrambler/Kconfig" -source "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/Kconfig" -source "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/Kconfig" -source "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/Kconfig" -source "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/Kconfig" -source "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/Kconfig" -source "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/Kconfig" -source "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/Kconfig" -source "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/Kconfig" -source "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/Kconfig" -source "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/Kconfig" -source "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/Kconfig" -source "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/Kconfig" -source "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/Kconfig" -source "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/Kconfig" -source "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/Kconfig" -source "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/Kconfig" -source "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/Kconfig" -source "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/Kconfig" -source "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/Kconfig" -source "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/Kconfig" -source "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/Kconfig" -source "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/Kconfig" -source "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/Kconfig" -source "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/Kconfig" -source "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/Kconfig" -source "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/Kconfig" -source "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/Kconfig" -source "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/Kconfig" -source "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_wifi/Kconfig" -source "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/Kconfig" -source "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/Kconfig" -source "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/Kconfig" -source "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/Kconfig" -source "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/Kconfig" -source "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/Kconfig" -source "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/Kconfig" -source "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/Kconfig" -source "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/Kconfig" -source "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/Kconfig" -source "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/pthread/Kconfig" -source "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/Kconfig" -source "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/Kconfig" -source "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/Kconfig" \ No newline at end of file diff --git a/esp32-thread/open-thread-rcp/build/kconfigs_projbuild.in b/esp32-thread/open-thread-rcp/build/kconfigs_projbuild.in deleted file mode 100644 index 9ca117c9..00000000 --- a/esp32-thread/open-thread-rcp/build/kconfigs_projbuild.in +++ /dev/null @@ -1,6 +0,0 @@ -source "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/Kconfig.projbuild" -source "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/Kconfig.projbuild" -source "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/Kconfig.projbuild" -source "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esptool_py/Kconfig.projbuild" -source "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/partition_table/Kconfig.projbuild" -source "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/main/Kconfig.projbuild" \ No newline at end of file diff --git a/esp32-thread/open-thread-rcp/build/ldgen_libraries b/esp32-thread/open-thread-rcp/build/ldgen_libraries deleted file mode 100644 index cf4b2f6d..00000000 --- a/esp32-thread/open-thread-rcp/build/ldgen_libraries +++ /dev/null @@ -1,118 +0,0 @@ -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/riscv/libriscv.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/cxx/libcxx.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/newlib/libnewlib.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/freertos/libfreertos.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/libesp_hw_support.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/heap/libheap.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/log/liblog.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/soc/libsoc.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/hal/libhal.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_rom/libesp_rom.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_common/libesp_common.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/libesp_system.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/riscv/libriscv.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/spi_flash/libspi_flash.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/bootloader_support/libbootloader_support.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/libmbedtls.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_pm/libesp_pm.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_gpio/libesp_driver_gpio.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_timer/libesp_timer.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/lwip/liblwip.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/vfs/libvfs.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_uart/libesp_driver_uart.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_ringbuf/libesp_ringbuf.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_mm/libesp_mm.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/vfs/libvfs.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_vfs_console/libesp_vfs_console.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/openthread/libopenthread.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_netif/libesp_netif.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_event/libesp_event.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/driver/libdriver.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_spi/libesp_driver_spi.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_ana_cmpr/libesp_driver_ana_cmpr.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_i2s/libesp_driver_i2s.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/sdmmc/libsdmmc.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_rmt/libesp_driver_rmt.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_tsens/libesp_driver_tsens.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/efuse/libefuse.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_partition/libesp_partition.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/app_update/libapp_update.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_app_format/libesp_app_format.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_bootloader_format/libesp_bootloader_format.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_sdm/libesp_driver_sdm.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_i2c/libesp_driver_i2c.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_ledc/libesp_driver_ledc.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_parlio/libesp_driver_parlio.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_twai/libesp_driver_twai.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/console/libconsole.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/ieee802154/libieee802154.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_phy/libesp_phy.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/nvs_flash/libnvs_flash.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/libmbedtls.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/libmbedtls.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/libmbedx509.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_security/libesp_security.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_mm/libesp_mm.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/efuse/libefuse.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_wifi/libesp_wifi.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_security/libesp_security.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/pthread/libpthread.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_gpio/libesp_driver_gpio.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_timer/libesp_timer.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_pm/libesp_pm.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_app_format/libesp_app_format.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_bootloader_format/libesp_bootloader_format.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/app_update/libapp_update.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_partition/libesp_partition.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/bootloader_support/libbootloader_support.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/spi_flash/libspi_flash.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/libesp_system.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_common/libesp_common.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_rom/libesp_rom.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/hal/libhal.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/log/liblog.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/heap/libheap.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/soc/libsoc.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/libesp_hw_support.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/freertos/libfreertos.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/newlib/libnewlib.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/pthread/libpthread.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/cxx/libcxx.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_event/libesp_event.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/nvs_flash/libnvs_flash.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_ringbuf/libesp_ringbuf.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_uart/libesp_driver_uart.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_vfs_console/libesp_vfs_console.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/lwip/liblwip.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_netif/libesp_netif.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_spi/libesp_driver_spi.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_ana_cmpr/libesp_driver_ana_cmpr.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_i2s/libesp_driver_i2s.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/sdmmc/libsdmmc.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_rmt/libesp_driver_rmt.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_tsens/libesp_driver_tsens.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_sdm/libesp_driver_sdm.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_i2c/libesp_driver_i2c.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_ledc/libesp_driver_ledc.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_parlio/libesp_driver_parlio.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_twai/libesp_driver_twai.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/driver/libdriver.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/console/libconsole.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_wifi/libesp_wifi.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_phy/libesp_phy.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/ieee802154/libieee802154.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/openthread/libopenthread.a -C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/main/libmain.a diff --git a/esp32-thread/open-thread-rcp/build/ldgen_libraries.in b/esp32-thread/open-thread-rcp/build/ldgen_libraries.in deleted file mode 100644 index 0a313dee..00000000 --- a/esp32-thread/open-thread-rcp/build/ldgen_libraries.in +++ /dev/null @@ -1,118 +0,0 @@ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ -$ \ No newline at end of file diff --git a/esp32-thread/open-thread-rcp/build/open-thread-rcp.bin b/esp32-thread/open-thread-rcp/build/open-thread-rcp.bin deleted file mode 100644 index 715cc27d..00000000 Binary files a/esp32-thread/open-thread-rcp/build/open-thread-rcp.bin and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/open-thread-rcp.elf b/esp32-thread/open-thread-rcp/build/open-thread-rcp.elf deleted file mode 100644 index 719a1773..00000000 Binary files a/esp32-thread/open-thread-rcp/build/open-thread-rcp.elf and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/open-thread-rcp.map b/esp32-thread/open-thread-rcp/build/open-thread-rcp.map deleted file mode 100644 index baacc545..00000000 --- a/esp32-thread/open-thread-rcp/build/open-thread-rcp.map +++ /dev/null @@ -1,31856 +0,0 @@ -Archive member included to satisfy reference by file (symbol) - -esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) - (esp_timer_init_include_func) -esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) (esp_timer_impl_init_system_time) -esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) (esp_timer_impl_get_time) -esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) (timestamp_id) -esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - (esp_app_desc) -esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) - (esp_efuse_startup_include_func) -esp-idf/efuse/libefuse.a(esp_efuse_table_v0.0_v1.1.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) (ESP_EFUSE_ECDSA_FORCE_USE_HARDWARE_K) -esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) (esp_efuse_write_field_bit) -esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) (esp_efuse_utility_process) -esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) (esp_efuse_get_key_dis_read) -esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) (ESP_EFUSE_KEY5) -esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) (esp_efuse_utility_clear_program_registers) -esp-idf/esp_system/libesp_system.a(esp_system.c.obj) - esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) (esp_register_shutdown_handler) -esp-idf/esp_system/libesp_system.a(startup.c.obj) - esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) (g_startup_time) -esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) - (esp_system_include_startup_funcs) -esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - (__ubsan_include) -esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) - (call_start_cpu0) -esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) - esp-idf/esp_system/libesp_system.a(ubsan.c.obj) (esp_system_abort) -esp-idf/esp_system/libesp_system.a(clk.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (esp_rtc_init) -esp-idf/esp_system/libesp_system.a(system_internal.c.obj) - esp-idf/esp_system/libesp_system.a(esp_system.c.obj) (esp_restart_noos) -esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (esp_cache_err_int_init) -esp-idf/esp_system/libesp_system.a(panic.c.obj) - esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) (panic_abort) -esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - esp-idf/esp_system/libesp_system.a(panic.c.obj) (panic_restart) -esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) (panic_print_registers) -esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) - esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) (esp_hw_stack_guard_get_bounds) -esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) - (tlsf_set_rom_patches) -esp-idf/esp_rom/libesp_rom.a(esp_rom_multi_heap.c.obj) - (esp_rom_include_multi_heap_patch) -esp-idf/esp_rom/libesp_rom.a(esp_rom_systimer.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) (systimer_hal_init) -esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) - esp-idf/esp_system/libesp_system.a(system_internal.c.obj) (wdt_hal_init) -esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) (efuse_hal_chip_revision) -esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/hal/libhal.a(efuse_hal.c.obj) (efuse_hal_get_major_chip_version) -esp-idf/hal/libhal.a(cache_hal.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (cache_hal_init) -esp-idf/log/liblog.a(util.c.obj) - esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) (esp_log_util_set_cache_enabled_cb) -esp-idf/heap/libheap.a(heap_caps.c.obj) - esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) (heap_caps_get_free_size) -esp-idf/heap/libheap.a(heap_caps_init.c.obj) - esp-idf/heap/libheap.a(heap_caps.c.obj) (registered_heaps) -esp-idf/heap/libheap.a(multi_heap.c.obj) - esp-idf/heap/libheap.a(heap_caps_init.c.obj) (multi_heap_in_rom_init) -esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - esp-idf/heap/libheap.a(heap_caps_init.c.obj) (soc_get_available_memory_region_max_count) -esp-idf/heap/libheap.a(memory_layout.c.obj) - esp-idf/heap/libheap.a(heap_caps_init.c.obj) (soc_memory_region_count) -esp-idf/heap/libheap.a(heap_caps_base.c.obj) - esp-idf/heap/libheap.a(heap_caps.c.obj) (heap_caps_free) -esp-idf/esp_security/libesp_security.a(init.c.obj) - (esp_security_init_include_impl) -esp-idf/esp_security/libesp_security.a(esp_dpa_protection.c.obj) - esp-idf/esp_security/libesp_security.a(init.c.obj) (esp_crypto_dpa_protection_startup) -esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - esp-idf/esp_system/libesp_system.a(panic.c.obj) (esp_cpu_set_breakpoint) -esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) (esp_clk_cpu_freq) -esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) (esp_intr_enable_source) -esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) (periph_rcc_acquire_enter) -esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) (rtc_isr_noniram_disable) -esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) (esp_sleep_pd_config) -esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) (sleep_console_usj_pad_backup_and_disable) -esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (esp_deep_sleep_wakeup_io_reset) -esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) (esp_sleep_execute_event_callbacks) -esp-idf/esp_hw_support/libesp_hw_support.a(sleep_system_peripheral.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) (peripheral_domain_pd_allowed) -esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) (systimer_ticks_to_us) -esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) (modem_clock_deselect_all_module_lp_clock_source) -esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) - esp-idf/esp_system/libesp_system.a(system_internal.c.obj) (mspi_timing_change_speed_mode_cache_safe) -esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) - esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) (esp_brownout_init) -esp-idf/esp_hw_support/libesp_hw_support.a(vbat.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) (esp_vbat_get_battery_state) -esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) (rtc_clk_32k_enable) -esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) (pmu_init) -esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) (pmu_sleep_calculate_hw_wait_time) -esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) (rtc_clk_cal) -esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) (sar_periph_ctrl_power_enable) -esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) (esp_sleep_cpu_retention) -esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu_asm.S.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) (rv_core_critical_regs_frame) -esp-idf/esp_hw_support/libesp_hw_support.a(sleep_clock.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) (clock_domain_pd_allowed) -esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) (esp_cpu_intr_get_desc) -esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) (esp_ptr_executable) -esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) (regi2c_ctrl_write_reg_mask) -esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) (esp_clk_utils_mspi_speed_mode_sync_before_cpu_freq_switching) -esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) (esp_clk_tree_lp_slow_get_freq_hz) -esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_clock.c.obj) (sleep_retention_entries_create) -esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) (modem_domain_pd_allowed) -esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) (pau_regdma_set_entry_link_addr) -esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) (regdma_link_init) -esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) (pmu_hp_system_power_param_default) -esp-idf/freertos/libfreertos.a(app_startup.c.obj) - esp-idf/esp_system/libesp_system.a(startup.c.obj) (esp_startup_start_app) -esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/freertos/libfreertos.a(app_startup.c.obj) (vTaskDelete) -esp-idf/freertos/libfreertos.a(port.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) (vPortEndScheduler) -esp-idf/freertos/libfreertos.a(heap_idf.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) (pvPortMalloc) -esp-idf/freertos/libfreertos.a(port_common.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) (vApplicationGetIdleTaskMemory) -esp-idf/freertos/libfreertos.a(port_systick.c.obj) - esp-idf/freertos/libfreertos.a(port.c.obj) (vPortSetupTimer) -esp-idf/freertos/libfreertos.a(list.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) (vListInitialise) -esp-idf/newlib/libnewlib.a(init.c.obj) - (esp_libc_init_funcs) -esp-idf/newlib/libnewlib.a(abort.c.obj) - (abort) -esp-idf/newlib/libnewlib.a(assert.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) (__assert_func) -esp-idf/newlib/libnewlib.a(heap.c.obj) - esp-idf/heap/libheap.a(heap_caps_init.c.obj) (free) -esp-idf/newlib/libnewlib.a(locks.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) (_lock_init_recursive) -esp-idf/newlib/libnewlib.a(pthread.c.obj) - (esp_libc_include_pthread_impl) -esp-idf/newlib/libnewlib.a(getentropy.c.obj) - (esp_libc_include_getentropy_impl) -esp-idf/newlib/libnewlib.a(time.c.obj) - esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) (esp_libc_time_init) -esp-idf/newlib/libnewlib.a(syscalls.c.obj) - (esp_libc_include_syscalls_impl) -esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) - esp-idf/newlib/libnewlib.a(syscalls.c.obj) (_system_r) -esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - esp-idf/newlib/libnewlib.a(time.c.obj) (esp_time_impl_get_time_since_boot) -esp-idf/newlib/libnewlib.a(reent_init.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) (esp_reent_init) -esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - esp-idf/newlib/libnewlib.a(init.c.obj) (esp_libc_init) -esp-idf/newlib/libnewlib.a(random.c.obj) - esp-idf/newlib/libnewlib.a(getentropy.c.obj) (getrandom) -esp-idf/pthread/libpthread.a(pthread.c.obj) - (pthread_include_pthread_impl) -esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - (pthread_include_pthread_cond_var_impl) -esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) (pthread_key_create) -esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - (pthread_include_pthread_rwlock_impl) -esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) - (pthread_include_pthread_semaphore_impl) -esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - (__cxa_guard_dummy) -esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) - (__cxx_init_dummy) -esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - (uart_vfs_include_dev_init) -esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) (uart_set_word_length) -esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) - (usb_serial_jtag_connection_monitor_include) -esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - (usb_serial_jtag_vfs_include_dev_init) -esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) (usb_serial_jtag_read_bytes) -esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - (esp_vfs_include_console_register) -esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) (esp_vfs_register_fs) -esp-idf/vfs/libvfs.a(nullfs.c.obj) - (esp_vfs_include_nullfs_register) -esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - (include_esp_phy_override) -esp-idf/main/libmain.a(esp_ot_rcp.c.obj) - (app_main) -esp-idf/riscv/libriscv.a(instruction_decode.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) (riscv_decode_offset_from_jal_instruction) -esp-idf/riscv/libriscv.a(interrupt.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) (intr_handler_set) -esp-idf/riscv/libriscv.a(rv_utils.c.obj) - esp-idf/esp_system/libesp_system.a(ubsan.c.obj) (rv_utils_dbgr_is_attached) -esp-idf/riscv/libriscv.a(vectors.S.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) (_interrupt_handler) -esp-idf/riscv/libriscv.a(interrupt_plic.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) (esprv_int_get_type) -esp-idf/riscv/libriscv.a(vectors_intc.S.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (_vector_table) -esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) (gpio_pullup_en) -esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) (rtc_gpio_is_valid_gpio) -esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (bootloader_init_mem) -esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) (bootloader_flash_reset_chip) -esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (bootloader_flash_update_id) -esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) (esp_flash_encryption_enabled) -esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (esp_mmu_map_init) -esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) (g_mmu_mem_regions) -esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) (esp_cache_freeze_ext_mem_cache) -esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) - esp-idf/heap/libheap.a(heap_caps_base.c.obj) (esp_heap_adjust_alignment_to_hw) -esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) - esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) (esp_cache_get_alignment) -esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) - esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) (spi_flash_needs_reset_check) -esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) (spi_flash_enable_cache) -esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) (spi_flash_mmap) -esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (esp_mspi_pin_init) -esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) (esp_flash_erase_region) -esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) (esp_flash_init_default_chip) -esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) (esp_flash_init_os_functions) -esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) (esp_flash_app_disable_os_functions) -esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) (spi_flash_chip_list_check) -esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) (esp_flash_chip_generic) -esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) (esp_flash_chip_gd) -esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) (spi_flash_chip_winbond_read) -esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) (memspi_host_init_pointers) -esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - esp-idf/freertos/libfreertos.a(app_startup.c.obj) (esp_crosscore_int_init) -esp-idf/esp_system/libesp_system.a(esp_system_console.c.obj) - esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) (esp_system_console_put_char) -esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - esp-idf/freertos/libfreertos.a(port_systick.c.obj) (esp_vApplicationTickHook) -esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - esp-idf/freertos/libfreertos.a(app_startup.c.obj) (esp_int_wdt_init) -esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) (task_wdt_timeout_abort) -esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) (esp_task_wdt_impl_timer_allocate) -esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) - esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) (esp_backtrace_print) -esp-idf/esp_rom/libesp_rom.a(esp_rom_regi2c_esp32h2.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) (esp_rom_regi2c_read) -esp-idf/esp_rom/libesp_rom.a(esp_rom_usb_serial.c.obj) - esp-idf/esp_system/libesp_system.a(esp_system_console.c.obj) (esp_rom_usb_serial_putc) -esp-idf/hal/libhal.a(lp_timer_hal.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) (lp_timer_hal_set_alarm_target) -esp-idf/hal/libhal.a(mmu_hal.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) (mmu_hal_paddr_to_vaddr) -esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) (spi_flash_hal_init) -esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) (spi_flash_hal_poll_cmd_done) -esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) (spi_flash_encryption_hal_enable) -esp-idf/hal/libhal.a(clk_tree_hal.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) (clk_hal_lp_slow_get_freq_hz) -esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) (uart_hal_get_sclk) -esp-idf/hal/libhal.a(uart_hal_iram.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) (uart_hal_txfifo_rst) -esp-idf/hal/libhal.a(gpio_hal.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) (gpio_hal_intr_enable_on_core) -esp-idf/hal/libhal.a(modem_clock_hal.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) (modem_clock_hal_enable_modem_common_fe_clock) -esp-idf/hal/libhal.a(pau_hal.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) (pau_hal_set_regdma_entry_link_addr) -esp-idf/hal/libhal.a(brownout_hal.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) (brownout_hal_config) -esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) (spi_flash_hal_gpspi_poll_cmd_done) -esp-idf/hal/libhal.a(pmu_hal.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) (pmu_hal_hp_set_digital_power_up_wait_cycle) -esp-idf/hal/libhal.a(apm_hal.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) (apm_hal_enable_ctrl_filter_all) -esp-idf/soc/libsoc.a(interrupts.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) (esp_isr_names) -esp-idf/soc/libsoc.a(gpio_periph.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) (GPIO_HOLD_MASK) -esp-idf/soc/libsoc.a(uart_periph.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) (uart_periph_signal) -esp-idf/soc/libsoc.a(spi_periph.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) (spi_periph_signal) -esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) (rtc_io_num_map) -esp-idf/soc/libsoc.a(power_supply_periph.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) (power_supply_periph_signal) -esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) (esp_cpu_configure_region_protection) -esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) (periph_rtc_dig_clk8m_enable) -esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) - esp-idf/newlib/libnewlib.a(random.c.obj) (esp_fill_random) -esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) (esp_gpio_reserve) -esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) (temperature_sensor_power_acquire) -esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) (io_mux_enable_lp_io_clock) -esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) (esp_clk_tree_src_get_freq_hz) -esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) (spi_bus_lock_register_dev) -esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) (adc_apb_periph_claim) -esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) (xQueueGenericCreate) -esp-idf/freertos/libfreertos.a(portasm.S.obj) - esp-idf/riscv/libriscv.a(vectors.S.obj) (rtos_int_enter) -esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) (xQueueCreateWithCaps) -esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - esp-idf/freertos/libfreertos.a(idf_additions.c.obj) (xStreamBufferGenericCreateStatic) -esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) (__atomic_fetch_and_8) -esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) - esp-idf/main/libmain.a(esp_ot_rcp.c.obj) (esp_event_loop_create_default) -esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) (esp_event_loop_create) -esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - esp-idf/main/libmain.a(esp_ot_rcp.c.obj) (nvs_flash_init) -esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) (nvs::Page::SEC_SIZE) -esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) (nvs::Storage::isValid() const) -esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) (nvs::NVSHandleSimple::findEntryNs(nvs_opaque_iterator_t*)) -esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) (nvs::NVSPartition::NVSPartition(esp_partition_t const*)) -esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) (nvs::NVSPartitionManager::get_instance()) -esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) (nvs::Item::calculateCrc32() const) -esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) (nvs::Lock::Lock()) -esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) (nvs::HashList::HashList()) -esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) (nvs::PageManager::fillStats(nvs_stats_t&)) -esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) (nvs::partition_lookup::lookup_nvs_partition(char const*, nvs::NVSPartition**)) -esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) (nvs::NVSEncryptedPartition::NVSEncryptedPartition(esp_partition_t const*)) -esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) (xRingbufferCreate) -esp-idf/vfs/libvfs.a(vfs_eventfd.c.obj) - esp-idf/main/libmain.a(esp_ot_rcp.c.obj) (esp_vfs_eventfd_register) -esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) (spi_bus_lock_get_by_id) -esp-idf/openthread/libopenthread.a(esp_openthread.cpp.obj) - esp-idf/main/libmain.a(esp_ot_rcp.c.obj) (esp_openthread_init) -esp-idf/openthread/libopenthread.a(esp_openthread_lock.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread.cpp.obj) (esp_openthread_lock_acquire) -esp-idf/openthread/libopenthread.a(esp_openthread_platform.cpp.obj) - esp-idf/main/libmain.a(esp_ot_rcp.c.obj) (esp_openthread_get_instance) -esp-idf/openthread/libopenthread.a(esp_openthread_task_queue.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_platform.cpp.obj) (esp_openthread_task_queue_init) -esp-idf/openthread/libopenthread.a(esp_openthread_alarm.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_platform.cpp.obj) (esp_openthread_alarm_init) -esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_platform.cpp.obj) (esp_openthread_radio_init) -esp-idf/openthread/libopenthread.a(esp_openthread_settings.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_platform.cpp.obj) (esp_openthread_set_storage_name) -esp-idf/openthread/libopenthread.a(esp_openthread_spi_slave.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_platform.cpp.obj) (esp_openthread_spi_slave_deinit) -esp-idf/openthread/libopenthread.a(esp_openthread_uart.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_platform.cpp.obj) (esp_openthread_host_cli_uart_init) -esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) (otMacFrameIsAckRequested) -esp-idf/openthread/libopenthread.a(instance_api.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread.cpp.obj) (otInstanceInitSingle) -esp-idf/openthread/libopenthread.a(tasklet_api.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread.cpp.obj) (otTaskletsProcess) -esp-idf/openthread/libopenthread.a(tasklet.cpp.obj) - esp-idf/openthread/libopenthread.a(tasklet_api.cpp.obj) (ot::Tasklet::Scheduler::ProcessQueuedTasklets()) -esp-idf/openthread/libopenthread.a(timer.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_alarm.c.obj) (otPlatAlarmMilliFired) -esp-idf/openthread/libopenthread.a(instance.cpp.obj) - esp-idf/openthread/libopenthread.a(instance_api.cpp.obj) (ot::Instance::InitSingle()) -esp-idf/openthread/libopenthread.a(link_raw.cpp.obj) - esp-idf/openthread/libopenthread.a(instance.cpp.obj) (ot::Mac::LinkRaw::Init()) -esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) (ot::Mac::Frame::GetDstPanId(unsigned short&) const) -esp-idf/openthread/libopenthread.a(mac_header_ie.cpp.obj) - esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) (ot::Mac::HeaderIe::Init(unsigned short, unsigned char)) -esp-idf/openthread/libopenthread.a(mac_types.cpp.obj) - esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) (ot::Mac::ExtAddress::operator==(ot::Mac::ExtAddress const&) const) -esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - esp-idf/openthread/libopenthread.a(link_raw.cpp.obj) (ot::Mac::SubMac::Init()) -esp-idf/openthread/libopenthread.a(sub_mac_callbacks.cpp.obj) - esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) (ot::Mac::SubMac::Callbacks::Callbacks(ot::Instance&)) -esp-idf/openthread/libopenthread.a(radio.cpp.obj) - esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) (ot::Radio::SetExtendedAddress(ot::Mac::ExtAddress const&)) -esp-idf/openthread/libopenthread.a(radio_platform.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) (otPlatRadioReceiveDone) -esp-idf/openthread/libopenthread.a(ncp.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_uart.c.obj) (otPlatUartReceived) -esp-idf/openthread/libopenthread.a(esp_openthread_ncp.cpp.obj) - esp-idf/main/libmain.a(esp_ot_rcp.c.obj) (otAppNcpInit) -esp-idf/openthread/libopenthread.a(esp_openthread_ncp_hdlc.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_ncp.cpp.obj) (otNcpHdlcInit) -esp-idf/openthread/libopenthread.a(esp_openthread_logging.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_ncp.cpp.obj) (otPlatLog) -esp-idf/openthread/libopenthread.a(esp_openthread_misc.c.obj) - esp-idf/openthread/libopenthread.a(instance.cpp.obj) (otPlatReset) -esp-idf/openthread/libopenthread.a(frame_builder.cpp.obj) - esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) (ot::FrameBuilder::Init(void*, unsigned short)) -esp-idf/openthread/libopenthread.a(random.cpp.obj) - esp-idf/openthread/libopenthread.a(instance.cpp.obj) (ot::Random::Manager::~Manager()) -esp-idf/openthread/libopenthread.a(string.cpp.obj) - esp-idf/openthread/libopenthread.a(mac_types.cpp.obj) (ot::StringWriter::StringWriter(char*, unsigned short)) -esp-idf/openthread/libopenthread.a(aes_ccm.cpp.obj) - esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) (ot::Crypto::AesCcm::SetKey(ot::Mac::KeyMaterial const&)) -esp-idf/openthread/libopenthread.a(aes_ecb.cpp.obj) - esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) (ot::Crypto::AesEcb::AesEcb()) -esp-idf/openthread/libopenthread.a(crypto_platform.cpp.obj) - esp-idf/openthread/libopenthread.a(aes_ecb.cpp.obj) (otPlatCryptoAesInit) -esp-idf/openthread/libopenthread.a(storage.cpp.obj) - esp-idf/openthread/libopenthread.a(crypto_platform.cpp.obj) (ot::Crypto::LiteralKey::LiteralKey(ot::Crypto::Key const&)) -esp-idf/openthread/libopenthread.a(radio_callbacks.cpp.obj) - esp-idf/openthread/libopenthread.a(radio_platform.cpp.obj) (ot::Radio::Callbacks::HandleReceiveDone(ot::Mac::RxFrame*, otError)) -esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_ncp.cpp.obj) (ot::Spinel::Decoder::ReadBool(bool&)) -esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_ncp_hdlc.cpp.obj) (ot::Ncp::NcpBase::GetNcpInstance()) -esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) (ot::Ncp::NcpBase::FindGetPropertyHandler(unsigned long)) -esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) (otError ot::Ncp::NcpBase::HandlePropertyGet<176ul>()) -esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_ncp_hdlc.cpp.obj) (ot::Ncp::NcpHdlc::NcpHdlc(ot::Instance*, int (*)(unsigned char const*, unsigned short))) -esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) (otLinkRawSetReceiveDone) -esp-idf/openthread/libopenthread.a(logging_api.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) (otLoggingGetLevel) -esp-idf/openthread/libopenthread.a(log.cpp.obj) - esp-idf/openthread/libopenthread.a(logging_api.cpp.obj) (ot::Logger::LogVarArgs(char const*, ot::LogLevel, char const*, void*)) -esp-idf/openthread/libopenthread.a(hdlc.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) (ot::Hdlc::Encoder::Encoder(ot::Spinel::FrameWritePointer&)) -esp-idf/openthread/libopenthread.a(spinel.c.obj) - esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) (spinel_packed_uint_decode) -esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) (ot::Spinel::Buffer::Buffer(unsigned char*, unsigned short)) -esp-idf/openthread/libopenthread.a(spinel_encoder.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) (ot::Spinel::Encoder::WriteUint16(unsigned short)) -esp-idf/openthread/libopenthread.a(changed_props_set.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) (ot::Ncp::ChangedPropsSet::GetNumEntries() const) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) (esp_aes_xts_init) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) - esp-idf/openthread/libopenthread.a(crypto_platform.cpp.obj) (esp_aes_init) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - esp-idf/openthread/libopenthread.a(crypto_platform.cpp.obj) (esp_aes_crypt_ecb) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) (esp_aes_intr_alloc) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) (mbedtls_platform_zeroize) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) (esp_aes_dma_start) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) (esp_crypto_shared_gdma_start_axi_ahb) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) (mbedtls_free) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) (esp_mbedtls_mem_calloc) -esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) (esp_partition_find_first) -esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) (esp_partition_write) -esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) (esp_efuse_enable_rom_secure_download_mode) -esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) (esp_efuse_rtc_calib_get_ver) -esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) (bootloader_common_get_sha256_of_partition) -esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (bootloader_sha256_flash_contents) -esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (esp_partition_table_verify) -esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (esp_image_get_metadata) -esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (bootloader_sha256_start) -esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (bootloader_common_ota_select_crc) -esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_misc.c.obj) (esp_reset_reason) -esp-idf/hal/libhal.a(adc_hal_common.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) (adc_hal_set_calibration_param) -esp-idf/hal/libhal.a(aes_hal.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) (aes_hal_setkey) -esp-idf/log/liblog.a(log_timestamp.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (esp_log_early_timestamp) -esp-idf/soc/libsoc.a(temperature_sensor_periph.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) (temperature_sensor_attributes) -esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) (esp_crypto_sha_aes_lock_acquire) -esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) (esp_crypto_aes_enable_periph_clk) -esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) (esp_read_mac) -esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) (spicommon_periph_claim) -esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) (gdma_new_ahb_channel) -esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_spi_slave.c.obj) (spi_slave_free) -esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) (esp_ieee802154_enable) -esp-idf/ieee802154/libieee802154.a(esp_ieee802154_ack.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) (ieee802154_add_pending_addr) -esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) (ieee802154_receive_handle_done) -esp-idf/ieee802154/libieee802154.a(esp_ieee802154_event.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) (ieee802154_event_callback_list_register) -esp-idf/ieee802154/libieee802154.a(esp_ieee802154_frame.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) (ieee802154_frame_get_type) -esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) (ieee802154_pib_is_pending) -esp-idf/ieee802154/libieee802154.a(esp_ieee802154_util.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) (ieee802154_freq_to_channel) -esp-idf/ieee802154/libieee802154.a(esp_ieee802154_sec.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) (ieee802154_transmit_security_config) -esp-idf/ieee802154/libieee802154.a(esp_ieee802154_timer.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) (ieee802154_timer0_stop) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) (mbedtls_sha256_init) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) (esp_sha_write_digest_state) -esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) (esp_sha_dma_start) -esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) (esp_ota_get_running_partition) -esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) (gdma_hal_deinit) -esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) (gdma_ahb_hal_init) -esp-idf/hal/libhal.a(sha_hal.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) (sha_hal_set_mode) -esp-idf/hal/libhal.a(spi_slave_hal.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) (spi_slave_hal_init) -esp-idf/hal/libhal.a(spi_slave_hal_iram.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) (spi_slave_hal_usr_is_done) -esp-idf/soc/libsoc.a(gdma_periph.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) (gdma_periph_signals) -esp-idf/soc/libsoc.a(ieee802154_periph.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) (ieee802154_periph) -esp-idf/esp_phy/libesp_phy.a(phy_init_esp32hxx.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) (esp_phy_enable) -esp-idf/esp_phy/libesp_phy.a(btbb_init.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) (esp_btbb_enable) -esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_init_esp32hxx.c.obj) (phy_track_pll) -esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) (esp_timer_create) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_opv.o) - esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) (operator delete[](void*)) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_handler.o) - esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) (std::nothrow) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opvnt.o) - esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) (operator new[](unsigned int, std::nothrow_t const&)) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_op.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_opv.o) (operator delete(void*)) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_catch.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opvnt.o) (__cxa_begin_catch) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_catch.o) (__cxa_get_globals_fast) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_catch.o) (std::terminate()) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_unex_handler.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) (__cxxabiv1::__unexpected_handler) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opv.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opvnt.o) (operator new[](unsigned int)) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_term_handler.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) (__cxxabiv1::__terminate_handler) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_op.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opv.o) (operator new(unsigned int)) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_op.o) (vtable for __cxxabiv1::__si_class_type_info) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(tinfo.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) (std::type_info::__is_pointer_p() const) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(bad_alloc.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_op.o) (vtable for std::bad_alloc) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(class_type_info.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) (__cxxabiv1::__class_type_info::__do_upcast(__cxxabiv1::__class_type_info const*, void**) const) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_ops.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) (operator delete(void*, unsigned int)) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(bad_alloc.o) (std::exception::~exception()) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_lshrdi3.o) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) (__lshrdi3) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ashldi3.o) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) (__ashldi3) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ffssi2.o) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) (__ffssi2) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ffsdi2.o) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) (__ffsdi2) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clz.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ffssi2.o) (__clz_tab) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clzsi2.o) - esp-idf/freertos/libfreertos.a(tasks.c.obj) (__clzsi2) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ctzsi2.o) - esp-idf/hal/libhal.a(apm_hal.c.obj) (__ctzsi2) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ctzdi2.o) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) (__ctzdi2) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_popcountsi2.o) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) (__popcountsi2) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_bswapdi2.o) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) (__bswapdi2) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_divdi3.o) - esp-idf/newlib/libnewlib.a(time.c.obj) (__divdi3) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_moddi3.o) - esp-idf/newlib/libnewlib.a(time.c.obj) (__moddi3) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_udivdi3.o) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (__udivdi3) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_umoddi3.o) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) (__umoddi3) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(muldf3.o) - esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) (__muldf3) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(subdf3.o) - esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) (__subdf3) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(fixdfsi.o) - esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) (__fixdfsi) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatsidf.o) - esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) (__floatsidf) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatsisf.o) - esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) (__floatsisf) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(save-restore.o) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) (__riscv_save_12) -esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_catch.o) (__wrap__Unwind_DeleteException) -C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_track.o) - esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) (phy_param_track_tot) -C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_api.o) - esp-idf/esp_phy/libesp_phy.a(phy_init_esp32hxx.c.obj) (phy_xpd_tsens) -C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) - esp-idf/esp_phy/libesp_phy.a(phy_init_esp32hxx.c.obj) (register_chipv7_phy) -C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pbus.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) (pbus_debugmode) -C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_hw_freq.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) (write_chan_freq) -C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rfpll.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_hw_freq.o) (chan_to_freq) -C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tsens.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) (tsens_read_init) -C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_basic.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_track.o) (enter_critical_phy) -C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_analog_cal.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) (rc_cal) -C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pwdet.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) (pwdet_reg_init) -C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_gain.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) (set_rx_gain_table) -C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_debug.o) - esp-idf/esp_phy/libesp_phy.a(phy_init_esp32hxx.c.obj) (phy_version_print) -C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_gain.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pbus.o) (bt_get_tx_gain_level) -C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pbus.o) (write_gain_mem) -C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_cal.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_basic.o) (pbus_rx_dco_cal) -C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_i2c.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) (i2c_clk_sel) -C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_cal.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) (pwdet_code_cal) -C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) (bt_bb_get_rssi_comp) -esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_track.o) (phy_printf) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-div.o) - esp-idf/hal/libhal.a(spi_flash_hal.c.obj) (div) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-environ.o) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) (environ) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-itoa.o) - esp-idf/newlib/libnewlib.a(abort.c.obj) (itoa) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-utoa.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-itoa.o) (__utoa) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-iscntrl.o) - esp-idf/openthread/libopenthread.a(string.cpp.obj) (iscntrl) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-isprint.o) - esp-idf/openthread/libopenthread.a(log.cpp.obj) (isprint) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-qsort.o) - esp-idf/heap/libheap.a(memory_layout_utils.c.obj) (qsort) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf_float.o) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) (_printf_float) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf_i.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf_float.o) (_printf_common) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfscanf_float.o) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) (_scanf_float) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fclose.o) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) (_fclose_r) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fflush.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fclose.o) (__sflush_r) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-findfp.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fclose.o) (__sfp_lock_acquire) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fopen.o) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) (fopen) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fprintf.o) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) (fprintf) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fputc.o) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) (fputc) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fputs.o) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) (fputs) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fseek.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fopen.o) (_fseek_r) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fvwrite.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fputs.o) (__sfvwrite_r) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fwalk.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fflush.o) (_fwalk_sglue) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-printf.o) - esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) (printf) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-putc.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fputc.o) (_putc_r) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-puts.o) - esp-idf/heap/libheap.a(heap_caps.c.obj) (puts) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-snprintf.o) - esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) (snprintf) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sprintf.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_debug.o) (sprintf) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-stdio.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-findfp.o) (__sread) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-vsnprintf.o) - esp-idf/openthread/libopenthread.a(string.cpp.obj) (vsnprintf) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-wbuf.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-putc.o) (__swbuf_r) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-wsetup.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fvwrite.o) (__swsetup_r) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fseeko.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fseek.o) (_fseeko_r) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-memchr.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf_i.o) (memchr) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-memcmp.o) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) (memcmp) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strcat.o) - esp-idf/freertos/libfreertos.a(port.c.obj) (strcat) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strcspn.o) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (strcspn) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strlcat.o) - esp-idf/esp_system/libesp_system.a(ubsan.c.obj) (strlcat) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strlcpy.o) - esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) (strlcpy) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strncmp.o) - esp-idf/vfs/libvfs.a(vfs.c.obj) (strncmp) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strncpy.o) - esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) (strncpy) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strnlen.o) - esp-idf/openthread/libopenthread.a(esp_openthread_platform.cpp.obj) (strnlen) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strstr.o) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (strstr) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-localeconv.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf_float.o) (_localeconv_r) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-reent.o) - esp-idf/freertos/libfreertos.a(tasks.c.obj) (_reclaim_reent) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-impure.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-reent.o) (_impure_ptr) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-errno.o) - esp-idf/newlib/libnewlib.a(getentropy.c.obj) (__errno) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysclose.o) - esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) (close) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysfcntl.o) - esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) (fcntl) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysgettod.o) - esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) (gettimeofday) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysopen.o) - esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) (open) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysread.o) - esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) (read) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-syswrite.o) - esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) (write) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-memmove-stub.o) - esp-idf/openthread/libopenthread.a(frame_builder.cpp.obj) (memmove) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-memset.o) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) (memset) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-memcpy.o) - esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) (memcpy) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strlen.o) - esp-idf/esp_system/libesp_system.a(panic.c.obj) (strlen) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strcpy.o) - esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) (strcpy) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strcmp.o) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) (strcmp) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libm_a-sf_nan.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfscanf_float.o) (nanf) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-dtoa.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf_float.o) (_dtoa_r) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-mprec.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-dtoa.o) (_Balloc) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtod.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfscanf_float.o) (_strtod_r) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtol.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfscanf_float.o) (_strtol_r) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-ctype_.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-iscntrl.o) (_ctype_) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-svfprintf.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-snprintf.o) (_svfprintf_r) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fprintf.o) (_vfprintf_r) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-flags.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fopen.o) (__sflags) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-makebuf.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-wsetup.o) (__smakebuf_r) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-refill.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fseeko.o) (__srefill_r) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-locale.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-localeconv.o) (__global_locale_ptr) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libm_a-s_nan.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtod.o) (nan) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-gdtoa-gethex.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtod.o) (__gethex) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-gdtoa-hexnan.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtod.o) (__match) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-mbtowc_r.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-locale.o) (__ascii_mbtowc) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-wctomb_r.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-locale.o) (__ascii_wctomb) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(adddf3.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-dtoa.o) (__adddf3) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(divdf3.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-dtoa.o) (__divdf3) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(eqdf2.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf_float.o) (__eqdf2) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(gedf2.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-dtoa.o) (__gtdf2) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(ledf2.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf_float.o) (__ledf2) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(unorddf2.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf_float.o) (__unorddf2) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(fixunsdfsi.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtod.o) (__fixunsdfsi) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatunsidf.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-dtoa.o) (__floatunsidf) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(fixdfdi.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtod.o) (__fixdfdi) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatdidf.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtod.o) (__floatdidf) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(lesf2.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtod.o) (__lesf2) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(unordsf2.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtod.o) (__unordsf2) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(extenddftf2.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfscanf_float.o) (__extenddftf2) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(truncdfsf2.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfscanf_float.o) (__truncdfsf2) -C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(trunctfdf2.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf_float.o) (__trunctfdf2) - -Discarded input sections - - .text 0x00000000 0x0 CMakeFiles/open-thread-rcp.elf.dir/project_elf_src_esp32h2.c.obj - .data 0x00000000 0x0 CMakeFiles/open-thread-rcp.elf.dir/project_elf_src_esp32h2.c.obj - .bss 0x00000000 0x0 CMakeFiles/open-thread-rcp.elf.dir/project_elf_src_esp32h2.c.obj - .comment 0x00000000 0x30 CMakeFiles/open-thread-rcp.elf.dir/project_elf_src_esp32h2.c.obj - .note.GNU-stack - 0x00000000 0x0 CMakeFiles/open-thread-rcp.elf.dir/project_elf_src_esp32h2.c.obj - .riscv.attributes - 0x00000000 0x5c CMakeFiles/open-thread-rcp.elf.dir/project_elf_src_esp32h2.c.obj - .text 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) - .data 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) - .text.esp_timer_early_init - 0x00000000 0x22 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) - .text 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) - .data 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) - .iram1.1 0x00000000 0x6 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) - .text 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - .data 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - .iram1.0 0x00000000 0x12 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - .text.esp_timer_impl_set - 0x00000000 0x60 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - .text.esp_timer_impl_advance - 0x00000000 0x4e esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - .text.esp_timer_impl_deinit - 0x00000000 0x54 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - .text.esp_timer_impl_get_alarm_reg - 0x00000000 0x4e esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - .text 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) - .data 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) - .text.esp_timer_impl_lock - 0x00000000 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) - .text.esp_timer_impl_unlock - 0x00000000 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) - .iram1.0 0x00000000 0xa esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) - .sdata.s_time_update_lock - 0x00000000 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) - .text 0x00000000 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .data 0x00000000 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .text.esp_app_get_description - 0x00000000 0xa esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .text.esp_app_get_elf_sha256 - 0x00000000 0x54 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .text 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) - .data 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) - .bss 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) - .text 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table_v0.0_v1.1.c.obj) - .data 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table_v0.0_v1.1.c.obj) - .bss 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table_v0.0_v1.1.c.obj) - .sdata.ESP_EFUSE_WR_DIS_ECDSA_FORCE_USE_HARDWARE_K - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table_v0.0_v1.1.c.obj) - .srodata.WR_DIS_ECDSA_FORCE_USE_HARDWARE_K - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table_v0.0_v1.1.c.obj) - .text 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .data 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .bss 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .text.esp_efuse_read_field_bit - 0x00000000 0x40 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .text.esp_efuse_read_field_cnt - 0x00000000 0x52 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .text.esp_efuse_write_field_cnt - 0x00000000 0xac esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .text.esp_efuse_write_reg - 0x00000000 0x7c esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .text.esp_efuse_read_block - 0x00000000 0x4e esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .text.esp_efuse_read_reg - 0x00000000 0x3c esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .text.esp_efuse_write_block - 0x00000000 0x4e esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .text.esp_efuse_batch_write_begin - 0x00000000 0x52 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .text.esp_efuse_batch_write_cancel - 0x00000000 0x46 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .text.esp_efuse_batch_write_commit - 0x00000000 0x5a esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .text.esp_efuse_destroy_block - 0x00000000 0xca esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .text 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .data 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .bss 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.esp_efuse_utility_erase_virt_blocks - 0x00000000 0x2 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.esp_efuse_utility_update_virt_blocks - 0x00000000 0x2 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .rodata.esp_efuse_utility_debug_dump_single_block.str1.4 - 0x00000000 0x12 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.esp_efuse_utility_debug_dump_single_block - 0x00000000 0x8a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.esp_efuse_utility_debug_dump_pending - 0x00000000 0x40 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .rodata.esp_efuse_utility_debug_dump_blocks.str1.4 - 0x00000000 0xd esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.esp_efuse_utility_debug_dump_blocks - 0x00000000 0x46 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.esp_efuse_utility_write_cnt - 0x00000000 0xac esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.esp_efuse_utility_get_read_register_address - 0x00000000 0x2e esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .data 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .bss 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_get_key_dis_read.part.0 - 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_block_is_empty - 0x00000000 0x42 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_set_write_protect - 0x00000000 0x7a esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_set_read_protect - 0x00000000 0x4e esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_get_purpose_field - 0x00000000 0x20 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_get_key - 0x00000000 0x20 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_get_key_dis_read - 0x00000000 0x3a esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_set_key_dis_read - 0x00000000 0x28 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_get_key_dis_write - 0x00000000 0x3a esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_set_key_dis_write - 0x00000000 0x28 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_set_key_purpose - 0x00000000 0x46 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_get_keypurpose_dis_write - 0x00000000 0x3a esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_set_keypurpose_dis_write - 0x00000000 0x28 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_key_block_unused - 0x00000000 0x5c esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_find_unused_key_block - 0x00000000 0x28 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_count_unused_key_blocks - 0x00000000 0x2a esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_write_key - 0x00000000 0x122 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_write_keys - 0x00000000 0x9c esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_get_digest_revoke - 0x00000000 0x38 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_set_digest_revoke - 0x00000000 0x26 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_get_write_protect_of_digest_revoke - 0x00000000 0x40 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_set_write_protect_of_digest_revoke - 0x00000000 0x26 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_secure_boot_read_key_digests - 0x00000000 0x86 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .rodata.s_revoke_table - 0x00000000 0x24 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .data 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .bss 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_SYS_DATA_PART2 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_USER_DATA - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_ADC1_CH4_ATTEN0_INITCODE_DIFF - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_ADC1_CH3_ATTEN0_INITCODE_DIFF - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_ADC1_CH2_ATTEN0_INITCODE_DIFF - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_ADC1_CH1_ATTEN0_INITCODE_DIFF - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_ADC1_CH0_ATTEN0_INITCODE_DIFF - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_ADC1_HI_DOUT_ATTEN3 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_ADC1_HI_DOUT_ATTEN2 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_ADC1_HI_DOUT_ATTEN1 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_ADC1_HI_DOUT_ATTEN0 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_ADC1_AVE_INITCODE_ATTEN3 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_ADC1_AVE_INITCODE_ATTEN2 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_ADC1_AVE_INITCODE_ATTEN1 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_ADC1_AVE_INITCODE_ATTEN0 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_TEMP_CALIB - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_DISABLE_BLK_VERSION_MAJOR - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_BLK_VERSION_MAJOR - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_BLK_VERSION_MINOR - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_OPTIONAL_UNIQUE_ID - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_PKG_VERSION - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_FLASH_VENDOR - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_FLASH_TEMP - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_FLASH_CAP - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_DISABLE_WAFER_VERSION_MAJOR - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WAFER_VERSION_MAJOR - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WAFER_VERSION_MINOR - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_DBIAS_VOL_GAP - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_DSLP_DBIAS - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_ACTIVE_LP_DBIAS - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_ACTIVE_HP_DBIAS - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_RXIQ_1 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_RXIQ_0 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_RXIQ_VERSION - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_HYS_EN_PAD1 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_HYS_EN_PAD0 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_SECURE_BOOT_DISABLE_FAST_WAKE - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_SECURE_VERSION - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_FORCE_SEND_RESUME - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_UART_PRINT_CONTROL - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_ENABLE_SECURITY_DOWNLOAD - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_DIS_USB_SERIAL_JTAG_DOWNLOAD_MODE - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_DIS_USB_SERIAL_JTAG_ROM_PRINT - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_DIS_DIRECT_BOOT - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_DIS_DOWNLOAD_MODE - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_FLASH_TPUW - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_POWERGLITCH_EN1 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_SECURE_BOOT_AGGRESSIVE_REVOKE - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_SECURE_BOOT_EN - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_CRYPT_DPA_ENABLE - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_SEC_DPA_LEVEL - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_SECURE_BOOT_KEY_REVOKE2 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_SECURE_BOOT_KEY_REVOKE1 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_SECURE_BOOT_KEY_REVOKE0 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_SPI_BOOT_CRYPT_CNT - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WDT_DELAY_SEL - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_XTS_DPA_PSEUDO_LEVEL - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_ECC_FORCE_CONST_TIME - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_ECDSA_CURVE_MODE - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_VDD_SPI_AS_GPIO - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_USB_EXCHG_PINS - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_DIS_DOWNLOAD_MANUAL_ENCRYPT - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_DIS_PAD_JTAG - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_SOFT_DIS_JTAG - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_JTAG_SEL_ENABLE - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_DIS_TWAI - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_SPI_DOWNLOAD_MSPI_DIS - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_DIS_FORCE_DOWNLOAD - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_POWERGLITCH_EN - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_DIS_USB_JTAG - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_DIS_ICACHE - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_RD_DIS_BLOCK_SYS_DATA2 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_RD_DIS - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_SOFT_DIS_JTAG - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_VDD_SPI_AS_GPIO - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_USB_EXCHG_PINS - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_BLOCK_SYS_DATA2 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_CUSTOM_MAC - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_BLOCK_USR_DATA - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_ADC1_CH4_ATTEN0_INITCODE_DIFF - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_ADC1_CH3_ATTEN0_INITCODE_DIFF - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_ADC1_CH2_ATTEN0_INITCODE_DIFF - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_ADC1_CH1_ATTEN0_INITCODE_DIFF - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_ADC1_CH0_ATTEN0_INITCODE_DIFF - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_ADC1_HI_DOUT_ATTEN3 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_ADC1_HI_DOUT_ATTEN2 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_ADC1_HI_DOUT_ATTEN1 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_ADC1_HI_DOUT_ATTEN0 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_ADC1_AVE_INITCODE_ATTEN3 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_ADC1_AVE_INITCODE_ATTEN2 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_ADC1_AVE_INITCODE_ATTEN1 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_ADC1_AVE_INITCODE_ATTEN0 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_TEMP_CALIB - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_DISABLE_BLK_VERSION_MAJOR - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_BLK_VERSION_MAJOR - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_BLK_VERSION_MINOR - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_OPTIONAL_UNIQUE_ID - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_SYS_DATA_PART1 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_PKG_VERSION - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_FLASH_VENDOR - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_FLASH_TEMP - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_FLASH_CAP - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_DISABLE_WAFER_VERSION_MAJOR - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_WAFER_VERSION_MAJOR - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_WAFER_VERSION_MINOR - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_DBIAS_VOL_GAP - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_DSLP_DBIAS - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_ACTIVE_LP_DBIAS - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_ACTIVE_HP_DBIAS - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_RXIQ_1 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_RXIQ_0 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_RXIQ_VERSION - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_MAC_EXT - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_MAC - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_BLK1 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_HYS_EN_PAD1 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_HYS_EN_PAD0 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_SECURE_BOOT_DISABLE_FAST_WAKE - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_SECURE_VERSION - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_FORCE_SEND_RESUME - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_UART_PRINT_CONTROL - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_ENABLE_SECURITY_DOWNLOAD - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_DIS_USB_SERIAL_JTAG_DOWNLOAD_MODE - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_DIS_USB_SERIAL_JTAG_ROM_PRINT - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_DIS_DIRECT_BOOT - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_DIS_DOWNLOAD_MODE - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_FLASH_TPUW - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_ECC_FORCE_CONST_TIME - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_ECDSA_CURVE_MODE - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_SECURE_BOOT_AGGRESSIVE_REVOKE - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_SECURE_BOOT_EN - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_CRYPT_DPA_ENABLE - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_SEC_DPA_LEVEL - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_XTS_DPA_PSEUDO_LEVEL - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_SECURE_BOOT_KEY_REVOKE2 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_SECURE_BOOT_KEY_REVOKE1 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_SECURE_BOOT_KEY_REVOKE0 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_SPI_BOOT_CRYPT_CNT - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_WDT_DELAY_SEL - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_POWERGLITCH_EN1 - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_DIS_DOWNLOAD_MANUAL_ENCRYPT - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_DIS_PAD_JTAG - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_JTAG_SEL_ENABLE - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_DIS_TWAI - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_SPI_DOWNLOAD_MSPI_DIS - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_DIS_FORCE_DOWNLOAD - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_POWERGLITCH_EN - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_DIS_USB_JTAG - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_DIS_ICACHE - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS_RD_DIS - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_WR_DIS - 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SYS_DATA_PART2 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.USER_DATA - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.ADC1_CH4_ATTEN0_INITCODE_DIFF - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.ADC1_CH3_ATTEN0_INITCODE_DIFF - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.ADC1_CH2_ATTEN0_INITCODE_DIFF - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.ADC1_CH1_ATTEN0_INITCODE_DIFF - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.ADC1_CH0_ATTEN0_INITCODE_DIFF - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.ADC1_HI_DOUT_ATTEN3 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.ADC1_HI_DOUT_ATTEN2 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.ADC1_HI_DOUT_ATTEN1 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.ADC1_HI_DOUT_ATTEN0 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.ADC1_AVE_INITCODE_ATTEN3 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.ADC1_AVE_INITCODE_ATTEN2 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.ADC1_AVE_INITCODE_ATTEN1 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.ADC1_AVE_INITCODE_ATTEN0 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.TEMP_CALIB - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.DISABLE_BLK_VERSION_MAJOR - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.BLK_VERSION_MAJOR - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.BLK_VERSION_MINOR - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.OPTIONAL_UNIQUE_ID - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.PKG_VERSION - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.FLASH_VENDOR - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.FLASH_TEMP - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.FLASH_CAP - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.DISABLE_WAFER_VERSION_MAJOR - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WAFER_VERSION_MAJOR - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WAFER_VERSION_MINOR - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.DBIAS_VOL_GAP - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.DSLP_DBIAS - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.ACTIVE_LP_DBIAS - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.ACTIVE_HP_DBIAS - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.RXIQ_1 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.RXIQ_0 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.RXIQ_VERSION - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.HYS_EN_PAD1 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.HYS_EN_PAD0 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SECURE_BOOT_DISABLE_FAST_WAKE - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SECURE_VERSION - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.FORCE_SEND_RESUME - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.UART_PRINT_CONTROL - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.ENABLE_SECURITY_DOWNLOAD - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.DIS_USB_SERIAL_JTAG_DOWNLOAD_MODE - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.DIS_USB_SERIAL_JTAG_ROM_PRINT - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.DIS_DIRECT_BOOT - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.DIS_DOWNLOAD_MODE - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.FLASH_TPUW - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.POWERGLITCH_EN1 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SECURE_BOOT_AGGRESSIVE_REVOKE - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SECURE_BOOT_EN - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.CRYPT_DPA_ENABLE - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SEC_DPA_LEVEL - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SECURE_BOOT_KEY_REVOKE2 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SECURE_BOOT_KEY_REVOKE1 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SECURE_BOOT_KEY_REVOKE0 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SPI_BOOT_CRYPT_CNT - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WDT_DELAY_SEL - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.XTS_DPA_PSEUDO_LEVEL - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.ECC_FORCE_CONST_TIME - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.ECDSA_CURVE_MODE - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.VDD_SPI_AS_GPIO - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.USB_EXCHG_PINS - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.DIS_DOWNLOAD_MANUAL_ENCRYPT - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.DIS_PAD_JTAG - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SOFT_DIS_JTAG - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.JTAG_SEL_ENABLE - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.DIS_TWAI - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SPI_DOWNLOAD_MSPI_DIS - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.DIS_FORCE_DOWNLOAD - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.POWERGLITCH_EN - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.DIS_USB_JTAG - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.DIS_ICACHE - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.RD_DIS_BLOCK_SYS_DATA2 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.RD_DIS - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_SOFT_DIS_JTAG - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_VDD_SPI_AS_GPIO - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_USB_EXCHG_PINS - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_BLOCK_SYS_DATA2 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_CUSTOM_MAC - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_BLOCK_USR_DATA - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_ADC1_CH4_ATTEN0_INITCODE_DIFF - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_ADC1_CH3_ATTEN0_INITCODE_DIFF - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_ADC1_CH2_ATTEN0_INITCODE_DIFF - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_ADC1_CH1_ATTEN0_INITCODE_DIFF - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_ADC1_CH0_ATTEN0_INITCODE_DIFF - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_ADC1_HI_DOUT_ATTEN3 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_ADC1_HI_DOUT_ATTEN2 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_ADC1_HI_DOUT_ATTEN1 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_ADC1_HI_DOUT_ATTEN0 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_ADC1_AVE_INITCODE_ATTEN3 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_ADC1_AVE_INITCODE_ATTEN2 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_ADC1_AVE_INITCODE_ATTEN1 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_ADC1_AVE_INITCODE_ATTEN0 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_TEMP_CALIB - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_DISABLE_BLK_VERSION_MAJOR - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_BLK_VERSION_MAJOR - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_BLK_VERSION_MINOR - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_OPTIONAL_UNIQUE_ID - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_SYS_DATA_PART1 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_PKG_VERSION - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_FLASH_VENDOR - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_FLASH_TEMP - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_FLASH_CAP - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_DISABLE_WAFER_VERSION_MAJOR - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_WAFER_VERSION_MAJOR - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_WAFER_VERSION_MINOR - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_DBIAS_VOL_GAP - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_DSLP_DBIAS - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_ACTIVE_LP_DBIAS - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_ACTIVE_HP_DBIAS - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_RXIQ_1 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_RXIQ_0 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_RXIQ_VERSION - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_MAC_EXT - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_MAC - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_BLK1 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_HYS_EN_PAD1 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_HYS_EN_PAD0 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_SECURE_BOOT_DISABLE_FAST_WAKE - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_SECURE_VERSION - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_FORCE_SEND_RESUME - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_UART_PRINT_CONTROL - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_ENABLE_SECURITY_DOWNLOAD - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_DIS_USB_SERIAL_JTAG_DOWNLOAD_MODE - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_DIS_USB_SERIAL_JTAG_ROM_PRINT - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_DIS_DIRECT_BOOT - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_DIS_DOWNLOAD_MODE - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_FLASH_TPUW - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_ECC_FORCE_CONST_TIME - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_ECDSA_CURVE_MODE - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_SECURE_BOOT_AGGRESSIVE_REVOKE - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_SECURE_BOOT_EN - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_CRYPT_DPA_ENABLE - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_SEC_DPA_LEVEL - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_XTS_DPA_PSEUDO_LEVEL - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_SECURE_BOOT_KEY_REVOKE2 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_SECURE_BOOT_KEY_REVOKE1 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_SECURE_BOOT_KEY_REVOKE0 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_SPI_BOOT_CRYPT_CNT - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_WDT_DELAY_SEL - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_POWERGLITCH_EN1 - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_DIS_DOWNLOAD_MANUAL_ENCRYPT - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_DIS_PAD_JTAG - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_JTAG_SEL_ENABLE - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_DIS_TWAI - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_SPI_DOWNLOAD_MSPI_DIS - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_DIS_FORCE_DOWNLOAD - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_POWERGLITCH_EN - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_DIS_USB_JTAG - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_DIS_ICACHE - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_RD_DIS - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS - 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .text 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .data 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .bss 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) - .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) - .text.esp_unregister_shutdown_handler - 0x00000000 0x30 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) - .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(startup.c.obj) - .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(startup.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(startup.c.obj) - .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) - .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) - .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .text.__ubsan_maybe_debugbreak - 0x00000000 0x1c esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .rodata.__ubsan_default_handler.isra.0.str1.4 - 0x00000000 0x1c esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .text.__ubsan_default_handler.isra.0 - 0x00000000 0x4e esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .text.__ubsan_handle_type_mismatch - 0x00000000 0x20 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .text.__ubsan_handle_type_mismatch_v1 - 0x00000000 0x20 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .text.__ubsan_handle_add_overflow - 0x00000000 0x20 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .text.__ubsan_handle_sub_overflow - 0x00000000 0x20 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .text.__ubsan_handle_mul_overflow - 0x00000000 0x20 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .text.__ubsan_handle_negate_overflow - 0x00000000 0x20 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .text.__ubsan_handle_divrem_overflow - 0x00000000 0x20 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .text.__ubsan_handle_shift_out_of_bounds - 0x00000000 0x2a esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .text.__ubsan_handle_out_of_bounds - 0x00000000 0x20 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .text.__ubsan_handle_missing_return - 0x00000000 0x20 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .text.__ubsan_handle_vla_bound_not_positive - 0x00000000 0x20 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .text.__ubsan_handle_load_invalid_value - 0x00000000 0x20 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .text.__ubsan_handle_nonnull_arg - 0x00000000 0x20 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .text.__ubsan_handle_nonnull_return - 0x00000000 0x20 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .text.__ubsan_handle_builtin_unreachable - 0x00000000 0x20 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .text.__ubsan_handle_pointer_overflow - 0x00000000 0x20 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .text.__ubsan_handle_invalid_builtin - 0x00000000 0x20 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .rodata.__func__.0 - 0x00000000 0x1f esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .rodata.__func__.1 - 0x00000000 0x20 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .rodata.__func__.2 - 0x00000000 0x23 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .rodata.__func__.3 - 0x00000000 0x1e esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .rodata.__func__.4 - 0x00000000 0x1b esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .rodata.__func__.5 - 0x00000000 0x22 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .rodata.__func__.6 - 0x00000000 0x26 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .rodata.__func__.7 - 0x00000000 0x1e esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .rodata.__func__.8 - 0x00000000 0x1d esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .rodata.__func__.9 - 0x00000000 0x23 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .rodata.__func__.10 - 0x00000000 0x1f esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .rodata.__func__.11 - 0x00000000 0x1f esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .rodata.__func__.12 - 0x00000000 0x1c esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .rodata.__func__.13 - 0x00000000 0x1c esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .rodata.__func__.14 - 0x00000000 0x1c esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .rodata.__func__.15 - 0x00000000 0x20 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .rodata.__func__.16 - 0x00000000 0x1d esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) - .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) - .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) - .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) - .text.esp_get_free_heap_size - 0x00000000 0xa esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) - .text.esp_get_free_internal_heap_size - 0x00000000 0xe esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) - .text.esp_get_minimum_free_heap_size - 0x00000000 0xa esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) - .rodata.esp_get_idf_version.str1.4 - 0x00000000 0x7 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) - .text.esp_get_idf_version - 0x00000000 0xa esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) - .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(clk.c.obj) - .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(clk.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(clk.c.obj) - .text.rtc_clk_select_rtc_slow_clk - 0x00000000 0xa esp-idf/esp_system/libesp_system.a(clk.c.obj) - .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) - .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) - .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) - .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) - .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) - .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) - .text.esp_reset_reason_set_hint - 0x00000000 0x2 esp-idf/esp_system/libesp_system.a(panic.c.obj) - .text.esp_reset_reason_get_hint - 0x00000000 0x4 esp-idf/esp_system/libesp_system.a(panic.c.obj) - .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - .text.panic_get_address - 0x00000000 0x4 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - .text.panic_get_cause - 0x00000000 0x6 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - .text.panic_set_address - 0x00000000 0x4 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) - .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) - .text.esp_hw_stack_guard_monitor_start - 0x00000000 0xe esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) - .text.esp_hw_stack_guard_monitor_stop - 0x00000000 0xe esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) - .text.esp_hw_stack_guard_set_bounds - 0x00000000 0xa esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) - .text 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) - .data 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) - .rodata.default_walker.str1.4 - 0x00000000 0x26 esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) - .text.default_walker - 0x00000000 0x3e esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) - .text.tlsf_poison_check_pfunc_set - 0x00000000 0xa esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) - .text.tlsf_walk_pool - 0x00000000 0x64 esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) - .text 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_multi_heap.c.obj) - .data 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_multi_heap.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_multi_heap.c.obj) - .text.multi_heap_walk - 0x00000000 0x52 esp-idf/esp_rom/libesp_rom.a(esp_rom_multi_heap.c.obj) - .text.tlsf_find_containing_block - 0x00000000 0x34 esp-idf/esp_rom/libesp_rom.a(esp_rom_multi_heap.c.obj) - .text.multi_heap_find_containing_block_impl - 0x00000000 0x3a esp-idf/esp_rom/libesp_rom.a(esp_rom_multi_heap.c.obj) - .text 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_systimer.c.obj) - .data 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_systimer.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_systimer.c.obj) - .text.systimer_hal_deinit - 0x00000000 0x1e esp-idf/esp_rom/libesp_rom.a(esp_rom_systimer.c.obj) - .text 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) - .data 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) - .text.wdt_hal_deinit - 0x00000000 0x84 esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) - .text 0x00000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .data 0x00000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .bss 0x00000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .text.efuse_hal_get_mac - 0x00000000 0x14 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .iram1.2 0x00000000 0x10 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .iram1.3 0x00000000 0xe esp-idf/hal/libhal.a(efuse_hal.c.obj) - .iram1.4 0x00000000 0x10 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .text.efuse_hal_set_ecdsa_key - 0x00000000 0x2a esp-idf/hal/libhal.a(efuse_hal.c.obj) - .text 0x00000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .data 0x00000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .bss 0x00000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .text.efuse_hal_get_ecdsa_curve_mode - 0x00000000 0x32 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .text 0x00000000 0x0 esp-idf/hal/libhal.a(cache_hal.c.obj) - .data 0x00000000 0x0 esp-idf/hal/libhal.a(cache_hal.c.obj) - .bss 0x00000000 0x0 esp-idf/hal/libhal.a(cache_hal.c.obj) - .text.cache_hal_disable - 0x00000000 0x3c esp-idf/hal/libhal.a(cache_hal.c.obj) - .text.cache_hal_enable - 0x00000000 0x44 esp-idf/hal/libhal.a(cache_hal.c.obj) - .text.cache_hal_vaddr_to_cache_level_id - 0x00000000 0x30 esp-idf/hal/libhal.a(cache_hal.c.obj) - .text 0x00000000 0x0 esp-idf/log/liblog.a(util.c.obj) - .data 0x00000000 0x0 esp-idf/log/liblog.a(util.c.obj) - .bss 0x00000000 0x0 esp-idf/log/liblog.a(util.c.obj) - .text.esp_log_util_is_constrained - 0x00000000 0x3c esp-idf/log/liblog.a(util.c.obj) - .text 0x00000000 0x0 esp-idf/heap/libheap.a(heap_caps.c.obj) - .data 0x00000000 0x0 esp-idf/heap/libheap.a(heap_caps.c.obj) - .bss 0x00000000 0x0 esp-idf/heap/libheap.a(heap_caps.c.obj) - .text.heap_caps_walker - 0x00000000 0x4a esp-idf/heap/libheap.a(heap_caps.c.obj) - .text.heap_caps_register_failed_alloc_callback - 0x00000000 0x14 esp-idf/heap/libheap.a(heap_caps.c.obj) - .text.heap_caps_malloc_extmem_enable - 0x00000000 0xa esp-idf/heap/libheap.a(heap_caps.c.obj) - .iram1.4 0x00000000 0x60 esp-idf/heap/libheap.a(heap_caps.c.obj) - .iram1.5 0x00000000 0x6c esp-idf/heap/libheap.a(heap_caps.c.obj) - .iram1.6 0x00000000 0x6c esp-idf/heap/libheap.a(heap_caps.c.obj) - .text.heap_caps_get_total_size - 0x00000000 0x3a esp-idf/heap/libheap.a(heap_caps.c.obj) - .text.heap_caps_get_free_size - 0x00000000 0x3e esp-idf/heap/libheap.a(heap_caps.c.obj) - .text.heap_caps_get_minimum_free_size - 0x00000000 0x3e esp-idf/heap/libheap.a(heap_caps.c.obj) - .text.heap_caps_monitor_local_minimum_free_size_start - 0x00000000 0xc2 esp-idf/heap/libheap.a(heap_caps.c.obj) - .text.heap_caps_monitor_local_minimum_free_size_stop - 0x00000000 0x82 esp-idf/heap/libheap.a(heap_caps.c.obj) - .rodata.heap_caps_print_heap_info.str1.4 - 0x00000000 0xf4 esp-idf/heap/libheap.a(heap_caps.c.obj) - .text.heap_caps_print_heap_info - 0x00000000 0xbc esp-idf/heap/libheap.a(heap_caps.c.obj) - .text.heap_caps_check_integrity - 0x00000000 0x4c esp-idf/heap/libheap.a(heap_caps.c.obj) - .text.heap_caps_check_integrity_all - 0x00000000 0xe esp-idf/heap/libheap.a(heap_caps.c.obj) - .text.heap_caps_check_integrity_addr - 0x00000000 0x2c esp-idf/heap/libheap.a(heap_caps.c.obj) - .text.heap_caps_dump - 0x00000000 0x40 esp-idf/heap/libheap.a(heap_caps.c.obj) - .text.heap_caps_dump_all - 0x00000000 0xc esp-idf/heap/libheap.a(heap_caps.c.obj) - .text.heap_caps_get_allocated_size - 0x00000000 0x48 esp-idf/heap/libheap.a(heap_caps.c.obj) - .text.heap_caps_get_containing_block_size - 0x00000000 0x54 esp-idf/heap/libheap.a(heap_caps.c.obj) - .iram1.10 0x00000000 0xa8 esp-idf/heap/libheap.a(heap_caps.c.obj) - .iram1.12 0x00000000 0x8 esp-idf/heap/libheap.a(heap_caps.c.obj) - .text.heap_caps_walk - 0x00000000 0x68 esp-idf/heap/libheap.a(heap_caps.c.obj) - .text.heap_caps_walk_all - 0x00000000 0x10 esp-idf/heap/libheap.a(heap_caps.c.obj) - .rodata.__func__.1 - 0x00000000 0x20 esp-idf/heap/libheap.a(heap_caps.c.obj) - .rodata.__func__.4 - 0x00000000 0x18 esp-idf/heap/libheap.a(heap_caps.c.obj) - .rodata.__func__.5 - 0x00000000 0x19 esp-idf/heap/libheap.a(heap_caps.c.obj) - .rodata.__func__.6 - 0x00000000 0x18 esp-idf/heap/libheap.a(heap_caps.c.obj) - .data.min_free_bytes_monitoring - 0x00000000 0x10 esp-idf/heap/libheap.a(heap_caps.c.obj) - .text 0x00000000 0x0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) - .data 0x00000000 0x0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) - .bss 0x00000000 0x0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) - .text.heap_caps_check_add_region_allowed - 0x00000000 0x3a esp-idf/heap/libheap.a(heap_caps_init.c.obj) - .text.heap_caps_add_region_with_caps - 0x00000000 0xdc esp-idf/heap/libheap.a(heap_caps_init.c.obj) - .text.heap_caps_add_region - 0x00000000 0x64 esp-idf/heap/libheap.a(heap_caps_init.c.obj) - .text 0x00000000 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) - .data 0x00000000 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) - .bss 0x00000000 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) - .text.multi_heap_get_full_block_size - 0x00000000 0x8 esp-idf/heap/libheap.a(multi_heap.c.obj) - .text.multi_heap_reset_minimum_free_bytes - 0x00000000 0x2c esp-idf/heap/libheap.a(multi_heap.c.obj) - .text.multi_heap_restore_minimum_free_bytes - 0x00000000 0x30 esp-idf/heap/libheap.a(multi_heap.c.obj) - .text 0x00000000 0x0 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - .data 0x00000000 0x0 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - .bss 0x00000000 0x0 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - .text 0x00000000 0x0 esp-idf/heap/libheap.a(memory_layout.c.obj) - .data 0x00000000 0x0 esp-idf/heap/libheap.a(memory_layout.c.obj) - .bss 0x00000000 0x0 esp-idf/heap/libheap.a(memory_layout.c.obj) - .srodata.soc_memory_type_count - 0x00000000 0x4 esp-idf/heap/libheap.a(memory_layout.c.obj) - .text 0x00000000 0x0 esp-idf/heap/libheap.a(heap_caps_base.c.obj) - .data 0x00000000 0x0 esp-idf/heap/libheap.a(heap_caps_base.c.obj) - .bss 0x00000000 0x0 esp-idf/heap/libheap.a(heap_caps_base.c.obj) - .text 0x00000000 0x0 esp-idf/esp_security/libesp_security.a(init.c.obj) - .data 0x00000000 0x0 esp-idf/esp_security/libesp_security.a(init.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_security/libesp_security.a(init.c.obj) - .text 0x00000000 0x0 esp-idf/esp_security/libesp_security.a(esp_dpa_protection.c.obj) - .data 0x00000000 0x0 esp-idf/esp_security/libesp_security.a(esp_dpa_protection.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_security/libesp_security.a(esp_dpa_protection.c.obj) - .text.esp_crypto_dpa_protection_enable - 0x00000000 0x38 esp-idf/esp_security/libesp_security.a(esp_dpa_protection.c.obj) - .text.esp_crypto_dpa_protection_disable - 0x00000000 0xc esp-idf/esp_security/libesp_security.a(esp_dpa_protection.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - .text.esp_cpu_stall - 0x00000000 0x2 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - .text.esp_cpu_unstall - 0x00000000 0x2 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - .text.esp_cpu_reset - 0x00000000 0x2a esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - .text.esp_cpu_clear_breakpoint - 0x00000000 0x44 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - .text.esp_cpu_set_watchpoint - 0x00000000 0xb4 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - .text.esp_cpu_clear_watchpoint - 0x00000000 0x44 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - .text.esp_cpu_compare_and_set - 0x00000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - .text.esp_clk_slowclk_cal_get - 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - .text.esp_clk_rtc_time - 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - .text.esp_clk_private_lock - 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - .text.esp_clk_private_unlock - 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .text.esp_intr_mark_shared - 0x00000000 0x6a esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .text.esp_intr_reserve - 0x00000000 0x5a esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .iram1.1 0x00000000 0x7a esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .text.esp_intr_get_intno - 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .text.esp_intr_get_cpu - 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .iram1.6 0x00000000 0x22 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .iram1.7 0x00000000 0x22 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .text.esp_intr_alloc_bind - 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .rodata.esp_intr_dump.str1.4 - 0x00000000 0x11f esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .text.esp_intr_dump - 0x00000000 0x1fc esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - .text.periph_ll_get_clk_en_mask - 0x00000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - .text.periph_ll_get_rst_en_mask - 0x00000000 0xa0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - .text.periph_ll_get_clk_en_reg - 0x00000000 0x164 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - .text.periph_ll_get_rst_en_reg - 0x00000000 0x164 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - .text.periph_module_enable - 0x00000000 0xb4 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - .text.periph_module_disable - 0x00000000 0xac esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - .text.periph_module_reset - 0x00000000 0x88 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - .text.rtc_isr_register - 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - .text.rtc_isr_deregister - 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - .sdata.rtc_spinlock - 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .rtc.entry.text - 0x00000000 0xe esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .rtc.text.5 0x00000000 0x2 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .iram1.12 0x00000000 0xf4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .iram1.13 0x00000000 0xae esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .iram1.27 0x00000000 0x5e esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .iram1.28 0x00000000 0x3e esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .text.s_sleep_hook_deregister - 0x00000000 0x42 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .iram1.26 0x00000000 0xe8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .iram1.11 0x00000000 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .iram1.14 0x00000000 0x74 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .iram1.20 0x00000000 0x1e esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .iram1.6 0x00000000 0x22 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .iram1.7 0x00000000 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .iram1.25 0x00000000 0x4a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .iram1.17 0x00000000 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .iram1.16 0x00000000 0x3c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .iram1.15 0x00000000 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .text.esp_sleep_overhead_out_time_refresh - 0x00000000 0x2a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .rtc.text.2 0x00000000 0xe esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .rtc.text.3 0x00000000 0x22 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .iram1.18 0x00000000 0xa2 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .iram1.19 0x00000000 0x2e2 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .iram1.24 0x00000000 0x80 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .text.esp_get_deep_sleep_wake_stub - 0x00000000 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .iram1.21 0x00000000 0xb4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .rtc.text.4 0x00000000 0xa esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .text.esp_deep_sleep_deregister_hook - 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .text.esp_deep_sleep_register_phy_hook - 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .text.esp_deep_sleep_deregister_phy_hook - 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .iram1.22 0x00000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .iram1.23 0x00000000 0x1e esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .text.esp_light_sleep_start - 0x00000000 0x356 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .text.esp_sleep_disable_wakeup_source - 0x00000000 0xd8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .text.esp_sleep_enable_ulp_wakeup - 0x00000000 0x6 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .text.esp_sleep_enable_timer_wakeup - 0x00000000 0x8a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .text.esp_deep_sleep - 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .text.esp_deep_sleep_try - 0x00000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .text.esp_sleep_enable_vbat_under_volt_wakeup - 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .text.esp_sleep_is_valid_wakeup_gpio - 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .text.esp_sleep_enable_ext1_wakeup_io - 0x00000000 0xc4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .text.esp_sleep_disable_ext1_wakeup_io - 0x00000000 0xea esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .text.esp_sleep_enable_ext1_wakeup - 0x00000000 0x44 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .text.esp_sleep_enable_ext1_wakeup_with_level_mask - 0x00000000 0xdc esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .text.esp_sleep_enable_gpio_wakeup - 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .text.esp_sleep_enable_uart_wakeup - 0x00000000 0x34 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .text.esp_sleep_enable_wifi_wakeup - 0x00000000 0x6 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .text.esp_sleep_disable_wifi_wakeup - 0x00000000 0x6 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .text.esp_sleep_enable_wifi_beacon_wakeup - 0x00000000 0x6 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .text.esp_sleep_disable_wifi_beacon_wakeup - 0x00000000 0x6 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .text.esp_sleep_enable_bt_wakeup - 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .text.esp_sleep_disable_bt_wakeup - 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .text.esp_sleep_get_wakeup_cause - 0x00000000 0x68 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .text.esp_sleep_get_ext1_wakeup_status - 0x00000000 0x7e esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .text.esp_sleep_sub_mode_config - 0x00000000 0x6a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .text.esp_sleep_sub_mode_force_disable - 0x00000000 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .rodata.esp_sleep_sub_mode_dump_config.str1.4 - 0x00000000 0x29 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .text.esp_sleep_sub_mode_dump_config - 0x00000000 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .text.esp_sleep_clock_config - 0x00000000 0x9a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .rtc.text.29 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .text.esp_sleep_periph_use_8m - 0x00000000 0x2a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .text.esp_sleep_enable_adc_tsens_monitor - 0x00000000 0x2a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .text.rtc_sleep_enable_ultra_low - 0x00000000 0x2a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .rodata.str1.4 - 0x00000000 0x100 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .rodata.s_submode2str - 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .sbss.s_suspended_uarts_bmap - 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .sbss.s_cache_suspend_cnt - 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .rtc.force_fast.1 - 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .rtc.force_slow.0 - 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .sbss.s_light_sleep_wakeup - 0x00000000 0x1 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .sbss.s_lightsleep_cnt - 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .bss.s_dslp_phy_cb - 0x00000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) - .text.sleep_console_usj_pad_backup_and_disable - 0x00000000 0x76 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) - .text.sleep_console_usj_pad_restore - 0x00000000 0x4a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) - .sbss.s_usj_state - 0x00000000 0x2 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) - .debug_info 0x00000000 0x463e esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) - .debug_abbrev 0x00000000 0x280 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) - .debug_loc 0x00000000 0x7b esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) - .debug_aranges - 0x00000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) - .debug_ranges 0x00000000 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) - .debug_line 0x00000000 0x4ad esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) - .debug_str 0x00000000 0x2ed2 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) - .comment 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) - .debug_frame 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) - .riscv.attributes - 0x00000000 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) - .iram1.0 0x00000000 0x2 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) - .debug_info 0x00000000 0x132 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) - .debug_abbrev 0x00000000 0xa6 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) - .debug_aranges - 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) - .debug_ranges 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) - .debug_line 0x00000000 0xe9 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) - .debug_str 0x00000000 0x3e6 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) - .comment 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) - .debug_frame 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) - .riscv.attributes - 0x00000000 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_system_peripheral.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_system_peripheral.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_system_peripheral.c.obj) - .text.peripheral_domain_pd_allowed - 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_system_peripheral.c.obj) - .debug_info 0x00000000 0xae esp-idf/esp_hw_support/libesp_hw_support.a(sleep_system_peripheral.c.obj) - .debug_abbrev 0x00000000 0x65 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_system_peripheral.c.obj) - .debug_aranges - 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_system_peripheral.c.obj) - .debug_ranges 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_system_peripheral.c.obj) - .debug_line 0x00000000 0x9e esp-idf/esp_hw_support/libesp_hw_support.a(sleep_system_peripheral.c.obj) - .debug_str 0x00000000 0x251 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_system_peripheral.c.obj) - .comment 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_system_peripheral.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_system_peripheral.c.obj) - .debug_frame 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_system_peripheral.c.obj) - .riscv.attributes - 0x00000000 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_system_peripheral.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) - .text.modem_clock_select_lp_clock_source - 0x00000000 0x1e2 esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) - .text.modem_clock_deselect_lp_clock_source - 0x00000000 0xfa esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) - .text.s_register_config_driver - 0x00000000 0x2 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) - .text.mspi_timing_flash_tuning - 0x00000000 0x2 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) - .text.mspi_timing_psram_tuning - 0x00000000 0x2 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) - .text.mspi_timing_enter_low_speed_mode - 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) - .text.mspi_timing_enter_high_speed_mode - 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) - .text.spi_flash_timing_is_tuned - 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) - .text.unlikely.spi_timing_get_flash_timing_param - 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) - .text.mspi_timing_set_pin_drive_strength - 0x00000000 0x2 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) - .text.esp_brownout_disable - 0x00000000 0x46 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) - .text.esp_brownout_register_callback - 0x00000000 0x22 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(vbat.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(vbat.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(vbat.c.obj) - .text.esp_vbat_get_battery_state - 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(vbat.c.obj) - .debug_info 0x00000000 0x34b esp-idf/esp_hw_support/libesp_hw_support.a(vbat.c.obj) - .debug_abbrev 0x00000000 0xa0 esp-idf/esp_hw_support/libesp_hw_support.a(vbat.c.obj) - .debug_aranges - 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(vbat.c.obj) - .debug_ranges 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(vbat.c.obj) - .debug_line 0x00000000 0x1b0 esp-idf/esp_hw_support/libesp_hw_support.a(vbat.c.obj) - .debug_str 0x00000000 0xb74 esp-idf/esp_hw_support/libesp_hw_support.a(vbat.c.obj) - .comment 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(vbat.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(vbat.c.obj) - .debug_frame 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(vbat.c.obj) - .riscv.attributes - 0x00000000 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(vbat.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_clk_32k_enable_external - 0x00000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_clk_32k_bootstrap - 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_clk_32k_enabled - 0x00000000 0xe esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_clk_8m_enabled - 0x00000000 0xe esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_clk_lp_pll_enable - 0x00000000 0x2e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_clk_lp_pll_src_set - 0x00000000 0x42 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_clk_fast_src_get - 0x00000000 0x2a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_clk_cpu_freq_set_config_fast - 0x00000000 0x7e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_clk_cpu_freq_set_xtal_for_sleep - 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_clk_xtal_freq_update - 0x00000000 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_dig_8m_enabled - 0x00000000 0xe esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) - .text.get_slp_lp_dbias - 0x00000000 0x34 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) - .text.pmu_sleep_calculate_hw_wait_time - 0x00000000 0xa4 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) - .text.pmu_sleep_config_default - 0x00000000 0x3e2 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) - .text.pmu_sleep_init - 0x00000000 0x29c esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) - .text.pmu_sleep_finish - 0x00000000 0x3a esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) - .text.pmu_sleep_start - 0x00000000 0x114 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) - .text.pmu_sleep_get_wakup_retention_cost - 0x00000000 0x1e esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - .text.rtc_time_us_to_slowclk - 0x00000000 0x8c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - .text.rtc_time_slowclk_to_us - 0x00000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - .text.s_sar_power_acquire - 0x00000000 0x74 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - .text.s_sar_power_release - 0x00000000 0x7c esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - .text.sar_periph_ctrl_init - 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - .text.sar_periph_ctrl_power_enable - 0x00000000 0x42 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - .text.sar_periph_ctrl_power_disable - 0x00000000 0x44 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - .text.sar_periph_ctrl_pwdet_power_acquire - 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - .text.sar_periph_ctrl_pwdet_power_release - 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - .text.sar_periph_ctrl_adc_oneshot_power_acquire - 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - .text.sar_periph_ctrl_adc_oneshot_power_release - 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - .text.sar_periph_ctrl_adc_continuous_power_acquire - 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - .text.sar_periph_ctrl_adc_continuous_power_release - 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - .sbss.s_sar_power_on_cnt - 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - .debug_info 0x00000000 0x16e6 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - .debug_abbrev 0x00000000 0x32c esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - .debug_loc 0x00000000 0x64 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - .debug_aranges - 0x00000000 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - .debug_ranges 0x00000000 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - .debug_line 0x00000000 0x877 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - .debug_str 0x00000000 0x1a66 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - .comment 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - .debug_frame 0x00000000 0xf0 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - .riscv.attributes - 0x00000000 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) - .iram1.3 0x00000000 0x4e esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) - .iram1.4 0x00000000 0x4a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) - .text.cpu_domain_dev_sleep_frame_alloc_and_init - 0x00000000 0x7e esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) - .text.esp_sleep_cpu_retention_deinit_impl.isra.0 - 0x00000000 0x84 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) - .text.esp_sleep_cpu_retention_init_impl - 0x00000000 0xd6 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) - .iram1.6 0x00000000 0x462 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) - .text.esp_sleep_cpu_retention_init - 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) - .text.esp_sleep_cpu_retention_deinit - 0x00000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) - .text.cpu_domain_pd_allowed - 0x00000000 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) - .text.sleep_cpu_configure - 0x00000000 0x2e esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) - .rodata.regions.0 - 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) - .rodata.regions.1 - 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) - .srodata.regions.2 - 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) - .rodata.regions.3 - 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) - .dram1.0 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) - .debug_info 0x00000000 0x200a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) - .debug_abbrev 0x00000000 0x46a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) - .debug_loc 0x00000000 0xfc6 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) - .debug_aranges - 0x00000000 0x68 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) - .debug_ranges 0x00000000 0x108 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) - .debug_line 0x00000000 0x19d4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) - .debug_str 0x00000000 0xb9f esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) - .comment 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) - .debug_frame 0x00000000 0x148 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) - .riscv.attributes - 0x00000000 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu_asm.S.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu_asm.S.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu_asm.S.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_clock.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_clock.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_clock.c.obj) - .text.clock_domain_pd_allowed - 0x00000000 0x88 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_clock.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) - .text.esp_ptr_dma_ext_capable - 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) - .text.esp_ptr_external_ram - 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - .text.regi2c_ctrl_read_reg - 0x00000000 0x9e esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - .text.regi2c_ctrl_read_reg_mask - 0x00000000 0xa6 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - .text.regi2c_ctrl_write_reg - 0x00000000 0x9e esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - .iram1.2 0x00000000 0x3a esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - .iram1.3 0x00000000 0x3a esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - .iram1.5 0x00000000 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - .iram1.6 0x00000000 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - .dram1.4 0x00000000 0x1 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - .dram1.1 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) - .text.esp_clk_utils_mspi_speed_mode_sync_before_cpu_freq_switching - 0x00000000 0x2 esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) - .text.esp_clk_utils_mspi_speed_mode_sync_after_cpu_freq_switching - 0x00000000 0x2 esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) - .debug_info 0x00000000 0xfb esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) - .debug_abbrev 0x00000000 0x89 esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) - .debug_aranges - 0x00000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) - .debug_ranges 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) - .debug_line 0x00000000 0x1af esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) - .debug_str 0x00000000 0x2d1 esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) - .comment 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) - .debug_frame 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) - .riscv.attributes - 0x00000000 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) - .text.esp_clk_tree_osc_slow_get_freq_hz - 0x00000000 0x6a esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - .text.empty_create - 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - .text.sleep_retention_module_deinit.part.0 - 0x00000000 0xa0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - .text.sleep_retention_passive_module_allocate - 0x00000000 0xd6 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - .text.sleep_retention_entries_destroy - 0x00000000 0xd0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - .text.sleep_retention_passive_module_free - 0x00000000 0xd8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - .rodata.sleep_retention_dump_entries.str1.4 - 0x00000000 0x27 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - .text.sleep_retention_dump_entries - 0x00000000 0x8a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - .text.sleep_retention_find_link_by_id - 0x00000000 0x74 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - .text.sleep_retention_entries_get - 0x00000000 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - .iram1.1 0x00000000 0xa esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - .iram1.2 0x00000000 0xa esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - .text.sleep_retention_is_module_inited - 0x00000000 0x46 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - .text.sleep_retention_is_module_created - 0x00000000 0x46 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - .rodata.sleep_retention_dump_modules.str1.4 - 0x00000000 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - .text.sleep_retention_dump_modules - 0x00000000 0x98 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - .iram1.3 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - .iram1.4 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - .iram1.5 0x00000000 0x6 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - .iram1.6 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - .text.sleep_retention_module_deinit - 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - .text.sleep_retention_module_allocate - 0x00000000 0xd8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - .text.sleep_retention_module_free - 0x00000000 0xcc esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - .text.sleep_retention_power_lock_acquire - 0x00000000 0x76 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - .text.sleep_retention_power_lock_release - 0x00000000 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - .iram1.7 0x00000000 0x4c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - .iram1.8 0x00000000 0x54 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - .sbss.acquire_cnt - 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) - .text.modem_domain_pd_allowed - 0x00000000 0x4e esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) - .text.sleep_modem_reject_triggers - 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) - .iram1.0 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) - .text.sleep_modem_configure - 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) - .text.esp_pm_register_inform_out_light_sleep_overhead_callback - 0x00000000 0x32 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) - .text.esp_pm_unregister_inform_out_light_sleep_overhead_callback - 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) - .text.periph_inform_out_light_sleep_overhead - 0x00000000 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) - .text.esp_pm_register_light_sleep_default_params_config_callback - 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) - .text.esp_pm_unregister_light_sleep_default_params_config_callback - 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) - .sbss.s_light_sleep_default_params_config_cb - 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) - .sbss.s_periph_inform_out_light_sleep_overhead_cb - 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) - .debug_info 0x00000000 0x4ec esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) - .debug_abbrev 0x00000000 0x27b esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) - .debug_loc 0x00000000 0x177 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) - .debug_aranges - 0x00000000 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) - .debug_ranges 0x00000000 0xb8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) - .debug_line 0x00000000 0x6ad esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) - .debug_str 0x00000000 0x9a4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) - .comment 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) - .debug_frame 0x00000000 0xc0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) - .riscv.attributes - 0x00000000 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) - .iram1.1 0x00000000 0x34 esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) - .iram1.2 0x00000000 0x36 esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) - .iram1.3 0x00000000 0x36 esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) - .iram1.4 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) - .iram1.5 0x00000000 0x36 esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) - .iram1.6 0x00000000 0x36 esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - .rodata.print_info_branch_write_wait_wrapper.str1.4 - 0x00000000 0x94 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - .text.print_info_branch_write_wait_wrapper - 0x00000000 0xda esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - .rodata.print_info_write_wait_wrapper.str1.4 - 0x00000000 0x86 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - .text.print_info_write_wait_wrapper - 0x00000000 0xc2 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - .rodata.print_info_link_data.str1.4 - 0x00000000 0x13 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - .text.print_info_link_data - 0x00000000 0x6c esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - .rodata.print_info_branch_addr_map_wrapper.str1.4 - 0x00000000 0xb5 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - .text.print_info_branch_addr_map_wrapper - 0x00000000 0x102 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - .rodata.print_info_branch_continuous_wrapper.str1.4 - 0x00000000 0x9e esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - .text.print_info_branch_continuous_wrapper - 0x00000000 0xe8 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - .rodata.print_info_addr_map_wrapper.str1.4 - 0x00000000 0xa7 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - .text.print_info_addr_map_wrapper - 0x00000000 0xee esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - .rodata.print_info_continuous_wrapper.str1.4 - 0x00000000 0x90 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - .text.print_info_continuous_wrapper - 0x00000000 0xd4 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - .text.regdma_link_new_write_default - 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - .text.regdma_link_new_wait_default - 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - .text.regdma_link_new_branch_write_default - 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - .text.regdma_link_new_branch_wait_default - 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - .text.regdma_link_recursive - 0x00000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - .text.regdma_find_link_by_pos - 0x00000000 0x42 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - .text.regdma_find_link_by_id - 0x00000000 0x5e esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - .text.regdma_link_set_write_wait_content - 0x00000000 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - .rodata.regdma_link_dump.str1.4 - 0x00000000 0x23 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - .text.regdma_link_dump - 0x00000000 0x82 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - .rodata.prinf_fn.0 - 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - .rodata.str1.4 - 0x00000000 0x35 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - .srodata.s_boolean_str - 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - .rodata.s_link_mode_str - 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - .text 0x00000000 0x0 esp-idf/freertos/libfreertos.a(app_startup.c.obj) - .data 0x00000000 0x0 esp-idf/freertos/libfreertos.a(app_startup.c.obj) - .bss 0x00000000 0x0 esp-idf/freertos/libfreertos.a(app_startup.c.obj) - .text 0x00000000 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .data 0x00000000 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .bss 0x00000000 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.prvSearchForNameWithinSingleList - 0x00000000 0x60 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.eTaskGetState - 0x00000000 0x98 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.uxTaskPriorityGet - 0x00000000 0x36 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.uxTaskPriorityGetFromISR - 0x00000000 0x30 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.vTaskPrioritySet - 0x00000000 0x116 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.vTaskResume - 0x00000000 0xbc esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.xTaskResumeFromISR - 0x00000000 0xe2 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.vTaskEndScheduler - 0x00000000 0x28 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.xTaskGetTickCountFromISR - 0x00000000 0xa esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.xTaskGetStaticBuffers - 0x00000000 0x4e esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.xTaskDelayUntil - 0x00000000 0x82 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.xTaskGetHandle - 0x00000000 0xbe esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.xTaskCatchUpTicks - 0x00000000 0x5c esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.xTaskAbortDelay - 0x00000000 0xd0 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.vTaskSuspend - 0x00000000 0xfe esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.vTaskPlaceOnUnorderedEventList - 0x00000000 0x78 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.vTaskPlaceOnEventListRestricted - 0x00000000 0x6e esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.vTaskRemoveFromUnorderedEventList - 0x00000000 0xd4 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.vTaskSetTimeOutState - 0x00000000 0x46 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.vTaskSetThreadLocalStoragePointer - 0x00000000 0x34 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.uxTaskGetStackHighWaterMark - 0x00000000 0x24 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.uxTaskGetStackHighWaterMark2 - 0x00000000 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.uxTaskResetEventItemValue - 0x00000000 0x1c esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.xTaskGenericNotifyWait - 0x00000000 0xd4 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.xTaskGenericNotify - 0x00000000 0x128 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.xTaskGenericNotifyFromISR - 0x00000000 0x156 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.xTaskGenericNotifyStateClear - 0x00000000 0x58 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.ulTaskGenericNotifyValueClear - 0x00000000 0x4e esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.xTaskGetIdleTaskHandle - 0x00000000 0xa esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.pxTaskGetStackStart - 0x00000000 0xe esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.prvTaskPriorityRaise - 0x00000000 0xe0 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.prvTaskPriorityRestore - 0x00000000 0xde esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.xTaskGetNext - 0x00000000 0xbc esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.uxTaskGetSnapshotAll - 0x00000000 0x5c esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.pvTaskGetCurrentTCBForCore - 0x00000000 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.non_ready_task_lists - 0x00000000 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text 0x00000000 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) - .data 0x00000000 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) - .bss 0x00000000 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) - .text.unlikely.vPortEndScheduler - 0x00000000 0x8 esp-idf/freertos/libfreertos.a(port.c.obj) - .text.vPortAssertIfInISR - 0x00000000 0x24 esp-idf/freertos/libfreertos.a(port.c.obj) - .iram1.0 0x00000000 0xa esp-idf/freertos/libfreertos.a(port.c.obj) - .text.vPortYieldOtherCore - 0x00000000 0x8 esp-idf/freertos/libfreertos.a(port.c.obj) - .text.xPortGetTickRateHz - 0x00000000 0x6 esp-idf/freertos/libfreertos.a(port.c.obj) - .text.vPortSetStackWatchpoint - 0x00000000 0x16 esp-idf/freertos/libfreertos.a(port.c.obj) - .text 0x00000000 0x0 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) - .data 0x00000000 0x0 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) - .bss 0x00000000 0x0 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) - .text.xPortGetFreeHeapSize - 0x00000000 0xe esp-idf/freertos/libfreertos.a(heap_idf.c.obj) - .text.xPortGetMinimumEverFreeHeapSize - 0x00000000 0xe esp-idf/freertos/libfreertos.a(heap_idf.c.obj) - .text 0x00000000 0x0 esp-idf/freertos/libfreertos.a(port_common.c.obj) - .data 0x00000000 0x0 esp-idf/freertos/libfreertos.a(port_common.c.obj) - .bss 0x00000000 0x0 esp-idf/freertos/libfreertos.a(port_common.c.obj) - .text.vApplicationGetTimerTaskMemory - 0x00000000 0x56 esp-idf/freertos/libfreertos.a(port_common.c.obj) - .text 0x00000000 0x0 esp-idf/freertos/libfreertos.a(port_systick.c.obj) - .data 0x00000000 0x0 esp-idf/freertos/libfreertos.a(port_systick.c.obj) - .bss 0x00000000 0x0 esp-idf/freertos/libfreertos.a(port_systick.c.obj) - .text 0x00000000 0x0 esp-idf/freertos/libfreertos.a(list.c.obj) - .data 0x00000000 0x0 esp-idf/freertos/libfreertos.a(list.c.obj) - .bss 0x00000000 0x0 esp-idf/freertos/libfreertos.a(list.c.obj) - .text 0x00000000 0x0 esp-idf/newlib/libnewlib.a(init.c.obj) - .data 0x00000000 0x0 esp-idf/newlib/libnewlib.a(init.c.obj) - .bss 0x00000000 0x0 esp-idf/newlib/libnewlib.a(init.c.obj) - .text 0x00000000 0x0 esp-idf/newlib/libnewlib.a(abort.c.obj) - .data 0x00000000 0x0 esp-idf/newlib/libnewlib.a(abort.c.obj) - .bss 0x00000000 0x0 esp-idf/newlib/libnewlib.a(abort.c.obj) - .text 0x00000000 0x0 esp-idf/newlib/libnewlib.a(assert.c.obj) - .data 0x00000000 0x0 esp-idf/newlib/libnewlib.a(assert.c.obj) - .bss 0x00000000 0x0 esp-idf/newlib/libnewlib.a(assert.c.obj) - .text.__assert - 0x00000000 0x14 esp-idf/newlib/libnewlib.a(assert.c.obj) - .text 0x00000000 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) - .data 0x00000000 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) - .bss 0x00000000 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) - .text.realloc 0x00000000 0x8 esp-idf/newlib/libnewlib.a(heap.c.obj) - .text.memalign - 0x00000000 0x8 esp-idf/newlib/libnewlib.a(heap.c.obj) - .text.aligned_alloc - 0x00000000 0x8 esp-idf/newlib/libnewlib.a(heap.c.obj) - .text.posix_memalign - 0x00000000 0x30 esp-idf/newlib/libnewlib.a(heap.c.obj) - .text.malloc_trim - 0x00000000 0x4 esp-idf/newlib/libnewlib.a(heap.c.obj) - .text.malloc_usable_size - 0x00000000 0x4 esp-idf/newlib/libnewlib.a(heap.c.obj) - .text.malloc_stats - 0x00000000 0x2 esp-idf/newlib/libnewlib.a(heap.c.obj) - .text.mallopt 0x00000000 0x4 esp-idf/newlib/libnewlib.a(heap.c.obj) - .text.mallinfo - 0x00000000 0x22 esp-idf/newlib/libnewlib.a(heap.c.obj) - .text 0x00000000 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) - .data 0x00000000 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) - .bss 0x00000000 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) - .iram1.1 0x00000000 0xe esp-idf/newlib/libnewlib.a(locks.c.obj) - .text 0x00000000 0x0 esp-idf/newlib/libnewlib.a(pthread.c.obj) - .data 0x00000000 0x0 esp-idf/newlib/libnewlib.a(pthread.c.obj) - .bss 0x00000000 0x0 esp-idf/newlib/libnewlib.a(pthread.c.obj) - .text.pthread_setcancelstate - 0x00000000 0x4 esp-idf/newlib/libnewlib.a(pthread.c.obj) - .text.pthread_sigmask - 0x00000000 0x4 esp-idf/newlib/libnewlib.a(pthread.c.obj) - .text.sigfillset - 0x00000000 0xa esp-idf/newlib/libnewlib.a(pthread.c.obj) - .text 0x00000000 0x0 esp-idf/newlib/libnewlib.a(getentropy.c.obj) - .data 0x00000000 0x0 esp-idf/newlib/libnewlib.a(getentropy.c.obj) - .bss 0x00000000 0x0 esp-idf/newlib/libnewlib.a(getentropy.c.obj) - .text.getentropy - 0x00000000 0x4a esp-idf/newlib/libnewlib.a(getentropy.c.obj) - .text 0x00000000 0x0 esp-idf/newlib/libnewlib.a(time.c.obj) - .data 0x00000000 0x0 esp-idf/newlib/libnewlib.a(time.c.obj) - .bss 0x00000000 0x0 esp-idf/newlib/libnewlib.a(time.c.obj) - .text.adjtime 0x00000000 0x146 esp-idf/newlib/libnewlib.a(time.c.obj) - .text.usleep 0x00000000 0x7c esp-idf/newlib/libnewlib.a(time.c.obj) - .text.sleep 0x00000000 0x26 esp-idf/newlib/libnewlib.a(time.c.obj) - .text.clock_settime - 0x00000000 0x4c esp-idf/newlib/libnewlib.a(time.c.obj) - .text.clock_gettime - 0x00000000 0x98 esp-idf/newlib/libnewlib.a(time.c.obj) - .text.clock_getres - 0x00000000 0x3a esp-idf/newlib/libnewlib.a(time.c.obj) - .text 0x00000000 0x0 esp-idf/newlib/libnewlib.a(syscalls.c.obj) - .data 0x00000000 0x0 esp-idf/newlib/libnewlib.a(syscalls.c.obj) - .bss 0x00000000 0x0 esp-idf/newlib/libnewlib.a(syscalls.c.obj) - .text.unlikely._exit - 0x00000000 0x8 esp-idf/newlib/libnewlib.a(syscalls.c.obj) - .text.raise 0x00000000 0x28 esp-idf/newlib/libnewlib.a(syscalls.c.obj) - .text.system 0x00000000 0x28 esp-idf/newlib/libnewlib.a(syscalls.c.obj) - .text 0x00000000 0x0 esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) - .data 0x00000000 0x0 esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) - .bss 0x00000000 0x0 esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) - .text._write_r_console - 0x00000000 0x52 esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) - .text._read_r_console - 0x00000000 0x54 esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) - .text._fstat_r_console - 0x00000000 0x38 esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) - .text._fsync_console - 0x00000000 0x34 esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) - .text 0x00000000 0x0 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - .data 0x00000000 0x0 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - .bss 0x00000000 0x0 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - .text.esp_time_impl_get_time - 0x00000000 0x8 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - .text 0x00000000 0x0 esp-idf/newlib/libnewlib.a(reent_init.c.obj) - .data 0x00000000 0x0 esp-idf/newlib/libnewlib.a(reent_init.c.obj) - .bss 0x00000000 0x0 esp-idf/newlib/libnewlib.a(reent_init.c.obj) - .text.esp_reent_cleanup - 0x00000000 0x86 esp-idf/newlib/libnewlib.a(reent_init.c.obj) - .text 0x00000000 0x0 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - .data 0x00000000 0x0 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - .bss 0x00000000 0x0 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - .text 0x00000000 0x0 esp-idf/newlib/libnewlib.a(random.c.obj) - .data 0x00000000 0x0 esp-idf/newlib/libnewlib.a(random.c.obj) - .bss 0x00000000 0x0 esp-idf/newlib/libnewlib.a(random.c.obj) - .text.getrandom - 0x00000000 0x2e esp-idf/newlib/libnewlib.a(random.c.obj) - .debug_info 0x00000000 0x255 esp-idf/newlib/libnewlib.a(random.c.obj) - .debug_abbrev 0x00000000 0x15c esp-idf/newlib/libnewlib.a(random.c.obj) - .debug_loc 0x00000000 0xc9 esp-idf/newlib/libnewlib.a(random.c.obj) - .debug_aranges - 0x00000000 0x20 esp-idf/newlib/libnewlib.a(random.c.obj) - .debug_ranges 0x00000000 0x10 esp-idf/newlib/libnewlib.a(random.c.obj) - .debug_line 0x00000000 0x3cb esp-idf/newlib/libnewlib.a(random.c.obj) - .debug_str 0x00000000 0x358 esp-idf/newlib/libnewlib.a(random.c.obj) - .comment 0x00000000 0x30 esp-idf/newlib/libnewlib.a(random.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/newlib/libnewlib.a(random.c.obj) - .debug_frame 0x00000000 0x30 esp-idf/newlib/libnewlib.a(random.c.obj) - .riscv.attributes - 0x00000000 0x5c esp-idf/newlib/libnewlib.a(random.c.obj) - .text 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread.c.obj) - .data 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread.c.obj) - .bss 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.pthread_list_find_item - 0x00000000 0x2c esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.pthread_get_handle_by_desc - 0x00000000 0xc esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.pthread_get_desc_by_handle - 0x00000000 0xa esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.lazy_init_pthread_cfg_key - 0x00000000 0x3c esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.esp_pthread_cfg_key_destructor - 0x00000000 0x8 esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.pthread_delete - 0x00000000 0x26 esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.pthread_mutex_lock_internal - 0x00000000 0x70 esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.set_prio.part.0 - 0x00000000 0x56 esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.esp_pthread_init - 0x00000000 0x1a esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.esp_pthread_set_cfg - 0x00000000 0x8e esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.esp_pthread_get_cfg - 0x00000000 0x5e esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.esp_pthread_get_default_config - 0x00000000 0x26 esp-idf/pthread/libpthread.a(pthread.c.obj) - .rodata.pthread_create.str1.4 - 0x00000000 0x8 esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.pthread_create - 0x00000000 0x196 esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.pthread_join - 0x00000000 0x114 esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.pthread_detach - 0x00000000 0x80 esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.pthread_exit - 0x00000000 0xb8 esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.pthread_task_func - 0x00000000 0x40 esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.pthread_cancel - 0x00000000 0x6 esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.sched_yield - 0x00000000 0x1c esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.pthread_self - 0x00000000 0x5a esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.pthread_equal - 0x00000000 0x8 esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.pthread_once - 0x00000000 0x3a esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.pthread_mutex_init - 0x00000000 0x68 esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.pthread_mutex_init_if_static - 0x00000000 0x48 esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.pthread_mutex_destroy - 0x00000000 0x86 esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.pthread_mutex_lock - 0x00000000 0x2e esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.pthread_mutex_timedlock - 0x00000000 0x9c esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.pthread_mutex_trylock - 0x00000000 0x2e esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.pthread_mutex_unlock - 0x00000000 0x7e esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.pthread_mutexattr_init - 0x00000000 0x2c esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.pthread_mutexattr_destroy - 0x00000000 0xe esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.pthread_mutexattr_gettype - 0x00000000 0xe esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.pthread_mutexattr_settype - 0x00000000 0x16 esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.pthread_attr_init - 0x00000000 0x34 esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.pthread_attr_destroy - 0x00000000 0x8 esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.pthread_attr_getstacksize - 0x00000000 0xe esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.pthread_attr_setstacksize - 0x00000000 0x18 esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.pthread_attr_getdetachstate - 0x00000000 0xe esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.pthread_attr_setdetachstate - 0x00000000 0x1a esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.pthread_getschedparam - 0x00000000 0x62 esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.pthread_setschedparam - 0x00000000 0x1a esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.pthread_setschedprio - 0x00000000 0x12 esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.sched_get_priority_min - 0x00000000 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.sched_get_priority_max - 0x00000000 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) - .sbss.s_pthread_cfg_key - 0x00000000 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) - .sbss.s_threads_list - 0x00000000 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) - .sdata.pthread_lazy_init_lock - 0x00000000 0x8 esp-idf/pthread/libpthread.a(pthread.c.obj) - .sbss.s_threads_lock - 0x00000000 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) - .text 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .data 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .bss 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .text.pthread_condattr_init - 0x00000000 0x6 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .text.pthread_condattr_destroy - 0x00000000 0x6 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .text.pthread_condattr_getpshared - 0x00000000 0x6 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .text.pthread_condattr_setpshared - 0x00000000 0x6 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .text.pthread_condattr_getclock - 0x00000000 0x6 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .text.pthread_condattr_setclock - 0x00000000 0x4 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .text.pthread_cond_init - 0x00000000 0x44 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .text.s_check_and_init_if_static - 0x00000000 0x4e esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .text.pthread_cond_signal - 0x00000000 0x4a esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .text.pthread_cond_broadcast - 0x00000000 0x52 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .text.pthread_cond_timedwait - 0x00000000 0x136 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .text.pthread_cond_wait - 0x00000000 0xa esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .text.pthread_cond_destroy - 0x00000000 0x5c esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .text 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - .data 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - .bss 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - .text.pthread_key_delete - 0x00000000 0x5a esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - .text.pthread_internal_local_storage_destructor_callback - 0x00000000 0x3a esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - .text 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - .data 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - .bss 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - .text.pthread_rwlock_init - 0x00000000 0x72 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - .text.checkrw_lock - 0x00000000 0x5e esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - .text.pthread_rwlock_destroy - 0x00000000 0x76 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - .text.pthread_rwlock_rdlock - 0x00000000 0x6a esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - .text.pthread_rwlock_tryrdlock - 0x00000000 0x52 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - .text.pthread_rwlock_wrlock - 0x00000000 0x74 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - .text.pthread_rwlock_trywrlock - 0x00000000 0x5e esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - .text.pthread_rwlock_unlock - 0x00000000 0x76 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - .text 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) - .data 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) - .bss 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) - .text.sem_destroy - 0x00000000 0x2e esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) - .text.sem_init - 0x00000000 0x48 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) - .text.sem_post - 0x00000000 0x42 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) - .text.sem_timedwait - 0x00000000 0xd4 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) - .text.sem_trywait - 0x00000000 0x3e esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) - .text.sem_wait - 0x00000000 0x30 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) - .text.sem_getvalue - 0x00000000 0x34 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) - .text 0x00000000 0x0 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - .data 0x00000000 0x0 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - .bss 0x00000000 0x0 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - .text._ZL20signal_waiting_tasksv - 0x00000000 0x34 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - .text.__cxa_guard_acquire - 0x00000000 0x13a esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - .text.__cxa_guard_release - 0x00000000 0x7a esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - .text.__cxa_guard_abort - 0x00000000 0x7c esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - .sbss.__dso_handle - 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - .sbss._ZL31s_static_init_max_waiting_count - 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - .sbss._ZL27s_static_init_waiting_count - 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - .sbss._ZL22s_static_init_wait_sem - 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - .sbss._ZL19s_static_init_mutex - 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - .text 0x00000000 0x0 esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) - .data 0x00000000 0x0 esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) - .bss 0x00000000 0x0 esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) - .text.__cxx_eh_arena_size_get - 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) - .text 0x00000000 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .data 0x00000000 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .text.uart_vfs_dev_set_rx_line_endings - 0x00000000 0xe esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .text.uart_vfs_dev_set_tx_line_endings - 0x00000000 0xe esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .text.uart_vfs_dev_use_nonblocking - 0x00000000 0x70 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .text 0x00000000 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .data 0x00000000 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_get_sclk_freq - 0x00000000 0xc esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_set_line_inverse - 0x00000000 0x52 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_set_sw_flow_ctrl - 0x00000000 0x74 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_set_hw_flow_ctrl - 0x00000000 0x68 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_get_hw_flow_ctrl - 0x00000000 0x52 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .iram1.0 0x00000000 0x24 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_enable_intr_mask - 0x00000000 0x62 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_pattern_pop_pos - 0x00000000 0x62 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_pattern_get_pos - 0x00000000 0x4e esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_enable_pattern_det_baud_intr - 0x00000000 0x92 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_disable_pattern_det_intr - 0x00000000 0xc esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_enable_rx_intr - 0x00000000 0xc esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_set_rts - 0x00000000 0x7e esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_set_dtr - 0x00000000 0x52 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_set_tx_idle_num - 0x00000000 0x5c esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_tx_chars - 0x00000000 0x6c esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_write_bytes_with_break - 0x00000000 0x3e esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_get_tx_buffer_free_size - 0x00000000 0x2e esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_set_mode - 0x00000000 0xba esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_set_rx_full_threshold - 0x00000000 0x86 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_set_tx_empty_threshold - 0x00000000 0x86 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_set_rx_timeout - 0x00000000 0x64 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_get_collision_flag - 0x00000000 0x38 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_set_wakeup_threshold - 0x00000000 0x64 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_get_wakeup_threshold - 0x00000000 0x44 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_wait_tx_idle_polling - 0x00000000 0x66 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_set_loop_back - 0x00000000 0x3a esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_set_always_rx_timeout - 0x00000000 0x3c esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_detect_bitrate_start - 0x00000000 0x234 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_detect_bitrate_stop - 0x00000000 0x104 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text 0x00000000 0x0 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) - .data 0x00000000 0x0 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) - .text.usb_serial_jtag_is_connected - 0x00000000 0xa esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) - .text 0x00000000 0x0 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .data 0x00000000 0x0 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .text.usbjtag_wait_tx_done_via_driver - 0x00000000 0x1e esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .text.usbjtag_rx_char_via_driver - 0x00000000 0x38 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .text.usbjtag_tx_char_via_driver - 0x00000000 0x56 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .text.usb_serial_jtag_vfs_set_tx_line_endings - 0x00000000 0xa esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .text.usb_serial_jtag_vfs_set_rx_line_endings - 0x00000000 0xa esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .rodata.usb_serial_jtag_vfs_register.str1.4 - 0x00000000 0x10 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .text.usb_serial_jtag_vfs_register - 0x00000000 0x1c esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .text.usb_serial_jtag_vfs_use_nonblocking - 0x00000000 0x6e esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .text.usb_serial_jtag_vfs_use_driver - 0x00000000 0x6e esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .text 0x00000000 0x0 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - .data 0x00000000 0x0 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - .text.usb_serial_jtag_isr_handler_default - 0x00000000 0x170 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - .text.usb_serial_jtag_read_bytes - 0x00000000 0x58 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - .text.usb_serial_jtag_write_bytes - 0x00000000 0x8a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - .text.usb_serial_jtag_wait_tx_done - 0x00000000 0x8c esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - .text.usb_serial_jtag_driver_uninstall - 0x00000000 0x98 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - .text.usb_serial_jtag_driver_install - 0x00000000 0x126 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - .text.usb_serial_jtag_read_ready - 0x00000000 0x1c esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - .text 0x00000000 0x0 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - .data 0x00000000 0x0 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - .text 0x00000000 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) - .data 0x00000000 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) - .bss 0x00000000 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.esp_vfs_register - 0x00000000 0x34 esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.esp_vfs_register_fd_range - 0x00000000 0x112 esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.esp_vfs_register_fs_with_id - 0x00000000 0x1e esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.esp_vfs_unregister - 0x00000000 0x62 esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.esp_vfs_register_fd - 0x00000000 0xe esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.esp_vfs_unregister_fd - 0x00000000 0x8a esp-idf/vfs/libvfs.a(vfs.c.obj) - .rodata.esp_vfs_dump_fds.str1.4 - 0x00000000 0x9c esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.esp_vfs_dump_fds - 0x00000000 0xc6 esp-idf/vfs/libvfs.a(vfs.c.obj) - .rodata.esp_vfs_dump_registered_paths.str1.4 - 0x00000000 0x45 esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.esp_vfs_dump_registered_paths - 0x00000000 0x7e esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.esp_vfs_set_readonly_flag - 0x00000000 0x62 esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.esp_vfs_pread - 0x00000000 0x76 esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.esp_vfs_pwrite - 0x00000000 0x76 esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.esp_vfs_ioctl - 0x00000000 0x7c esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.esp_vfs_utime - 0x00000000 0x62 esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.esp_vfs_opendir - 0x00000000 0x66 esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.esp_vfs_readdir - 0x00000000 0x58 esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.esp_vfs_readdir_r - 0x00000000 0x6c esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.esp_vfs_telldir - 0x00000000 0x62 esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.esp_vfs_seekdir - 0x00000000 0x64 esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.esp_vfs_rewinddir - 0x00000000 0xa esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.esp_vfs_closedir - 0x00000000 0x62 esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.esp_vfs_mkdir - 0x00000000 0x70 esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.esp_vfs_rmdir - 0x00000000 0x6e esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.esp_vfs_truncate - 0x00000000 0x70 esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.esp_vfs_ftruncate - 0x00000000 0x76 esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.tcflow 0x00000000 0x6c esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.tcgetsid - 0x00000000 0x66 esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.tcsendbreak - 0x00000000 0x6c esp-idf/vfs/libvfs.a(vfs.c.obj) - .text 0x00000000 0x0 esp-idf/vfs/libvfs.a(nullfs.c.obj) - .data 0x00000000 0x0 esp-idf/vfs/libvfs.a(nullfs.c.obj) - .bss 0x00000000 0x0 esp-idf/vfs/libvfs.a(nullfs.c.obj) - .text.esp_vfs_null_get_vfs - 0x00000000 0xa esp-idf/vfs/libvfs.a(nullfs.c.obj) - .text 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - .data 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - .text.set_xpd_sar - 0x00000000 0x36 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - .text.phy_set_pwdet_power - 0x00000000 0x36 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - .text.esp_phy_efuse_get_mac - 0x00000000 0x8 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - .text.esp_phy_efuse_get_chip_ver_pkg - 0x00000000 0x8 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - .sbss.s_wifi_pwdet_xpd_flag - 0x00000000 0x1 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - .sbss.s_wifi_adc_xpd_flag - 0x00000000 0x1 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - .text 0x00000000 0x0 esp-idf/main/libmain.a(esp_ot_rcp.c.obj) - .data 0x00000000 0x0 esp-idf/main/libmain.a(esp_ot_rcp.c.obj) - .bss 0x00000000 0x0 esp-idf/main/libmain.a(esp_ot_rcp.c.obj) - .text 0x00000000 0x0 esp-idf/riscv/libriscv.a(instruction_decode.c.obj) - .data 0x00000000 0x0 esp-idf/riscv/libriscv.a(instruction_decode.c.obj) - .bss 0x00000000 0x0 esp-idf/riscv/libriscv.a(instruction_decode.c.obj) - .text 0x00000000 0x0 esp-idf/riscv/libriscv.a(interrupt.c.obj) - .data 0x00000000 0x0 esp-idf/riscv/libriscv.a(interrupt.c.obj) - .bss 0x00000000 0x0 esp-idf/riscv/libriscv.a(interrupt.c.obj) - .text.intr_handler_get_arg - 0x00000000 0x1a esp-idf/riscv/libriscv.a(interrupt.c.obj) - .rodata.str1.4 - 0x00000000 0xfd esp-idf/riscv/libriscv.a(interrupt.c.obj) - .data.riscv_excp_names - 0x00000000 0x40 esp-idf/riscv/libriscv.a(interrupt.c.obj) - .text 0x00000000 0x0 esp-idf/riscv/libriscv.a(rv_utils.c.obj) - .data 0x00000000 0x0 esp-idf/riscv/libriscv.a(rv_utils.c.obj) - .bss 0x00000000 0x0 esp-idf/riscv/libriscv.a(rv_utils.c.obj) - .text 0x00000000 0x0 esp-idf/riscv/libriscv.a(vectors.S.obj) - .data 0x00000000 0x0 esp-idf/riscv/libriscv.a(vectors.S.obj) - .bss 0x00000000 0x0 esp-idf/riscv/libriscv.a(vectors.S.obj) - .text 0x00000000 0x0 esp-idf/riscv/libriscv.a(interrupt_plic.c.obj) - .data 0x00000000 0x0 esp-idf/riscv/libriscv.a(interrupt_plic.c.obj) - .bss 0x00000000 0x0 esp-idf/riscv/libriscv.a(interrupt_plic.c.obj) - .text.intr_matrix_route - 0x00000000 0x24 esp-idf/riscv/libriscv.a(interrupt_plic.c.obj) - .text.esprv_get_interrupt_unmask - 0x00000000 0x8 esp-idf/riscv/libriscv.a(interrupt_plic.c.obj) - .text.esprv_int_get_type - 0x00000000 0x14 esp-idf/riscv/libriscv.a(interrupt_plic.c.obj) - .text.esprv_int_get_priority - 0x00000000 0x10 esp-idf/riscv/libriscv.a(interrupt_plic.c.obj) - .text.esprv_int_is_vectored - 0x00000000 0x4 esp-idf/riscv/libriscv.a(interrupt_plic.c.obj) - .debug_info 0x00000000 0x263 esp-idf/riscv/libriscv.a(interrupt_plic.c.obj) - .debug_abbrev 0x00000000 0x175 esp-idf/riscv/libriscv.a(interrupt_plic.c.obj) - .debug_loc 0x00000000 0x170 esp-idf/riscv/libriscv.a(interrupt_plic.c.obj) - .debug_aranges - 0x00000000 0x40 esp-idf/riscv/libriscv.a(interrupt_plic.c.obj) - .debug_ranges 0x00000000 0x48 esp-idf/riscv/libriscv.a(interrupt_plic.c.obj) - .debug_line 0x00000000 0x42d esp-idf/riscv/libriscv.a(interrupt_plic.c.obj) - .debug_str 0x00000000 0x335 esp-idf/riscv/libriscv.a(interrupt_plic.c.obj) - .comment 0x00000000 0x30 esp-idf/riscv/libriscv.a(interrupt_plic.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/riscv/libriscv.a(interrupt_plic.c.obj) - .debug_frame 0x00000000 0x6c esp-idf/riscv/libriscv.a(interrupt_plic.c.obj) - .riscv.attributes - 0x00000000 0x5c esp-idf/riscv/libriscv.a(interrupt_plic.c.obj) - .text 0x00000000 0x0 esp-idf/riscv/libriscv.a(vectors_intc.S.obj) - .data 0x00000000 0x0 esp-idf/riscv/libriscv.a(vectors_intc.S.obj) - .bss 0x00000000 0x0 esp-idf/riscv/libriscv.a(vectors_intc.S.obj) - .text 0x00000000 0x0 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .data 0x00000000 0x0 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .iram1.1 0x00000000 0x84 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .text.gpio_pullup_dis - 0x00000000 0x80 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .text.gpio_pulldown_en - 0x00000000 0x66 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .text.gpio_set_intr_type - 0x00000000 0xba esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .text.gpio_intr_enable - 0x00000000 0x70 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .text.gpio_output_enable - 0x00000000 0x6e esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .text.gpio_od_disable - 0x00000000 0x50 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .text.gpio_od_enable - 0x00000000 0x52 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .text.gpio_set_level - 0x00000000 0x54 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .text.gpio_get_level - 0x00000000 0x14 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .text.gpio_set_pull_mode - 0x00000000 0x92 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .text.gpio_set_direction - 0x00000000 0x88 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .text.gpio_config - 0x00000000 0x192 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .text.gpio_config_as_analog - 0x00000000 0x9a esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .text.gpio_isr_handler_add - 0x00000000 0x96 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .text.gpio_isr_handler_remove - 0x00000000 0x74 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .text.gpio_uninstall_isr_service - 0x00000000 0x5e esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .text.gpio_isr_register - 0x00000000 0x5e esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .text.gpio_install_isr_service - 0x00000000 0xa4 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .text.gpio_wakeup_enable - 0x00000000 0x8e esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .text.gpio_wakeup_disable - 0x00000000 0x76 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .text.gpio_set_drive_capability - 0x00000000 0x76 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .text.gpio_get_drive_capability - 0x00000000 0x6a esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .text.gpio_hold_en - 0x00000000 0x80 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .text.gpio_hold_dis - 0x00000000 0x84 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .iram1.2 0x00000000 0x46 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .iram1.3 0x00000000 0x46 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .text.gpio_iomux_in - 0x00000000 0x2e esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .text.gpio_iomux_out - 0x00000000 0x14 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .text.gpio_get_io_config - 0x00000000 0xe0 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .rodata.gpio_dump_io_configuration.str1.4 - 0x00000000 0x1af esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .text.gpio_dump_io_configuration - 0x00000000 0x258 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .text 0x00000000 0x0 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) - .data 0x00000000 0x0 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) - .text.rtc_io_number_get - 0x00000000 0x10 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) - .text.rtc_gpio_init - 0x00000000 0x7e esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) - .text.rtc_gpio_hold_en - 0x00000000 0x58 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) - .text.rtc_gpio_hold_dis - 0x00000000 0x5c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) - .text.rtc_gpio_force_hold_en_all - 0x00000000 0x38 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) - .text.rtc_gpio_force_hold_dis_all - 0x00000000 0x38 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) - .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .iram1.6 0x00000000 0x50 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .text.bootloader_mmap_get_free_pages - 0x00000000 0xa esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .text.bootloader_mmap - 0x00000000 0x48 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .text.bootloader_munmap - 0x00000000 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .text.bootloader_flash_read - 0x00000000 0x48 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .text.bootloader_flash_write - 0x00000000 0x32 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .text.bootloader_flash_erase_sector - 0x00000000 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .text.bootloader_flash_erase_range - 0x00000000 0xe esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .iram1.0 0x00000000 0x180 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .iram1.3 0x00000000 0x42 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .text.bootloader_enable_wp - 0x00000000 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .text.bootloader_spi_flash_reset - 0x00000000 0x34 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .iram1.7 0x00000000 0xb6 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .iram1.17 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .text.bootloader_flash_get_spi_mode - 0x00000000 0x3e esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .sbss.map 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) - .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) - .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) - .text.bootloader_flash_update_size - 0x00000000 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) - .iram1.0 0x00000000 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) - .iram1.1 0x00000000 0x2a esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) - .iram1.2 0x00000000 0x5a esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) - .text.bootloader_init_spi_flash - 0x00000000 0xd4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) - .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .text.esp_flash_write_protect_crypt_cnt - 0x00000000 0x10 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .text.esp_get_flash_encryption_mode - 0x00000000 0x7e esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .text.esp_flash_encryption_init_checks - 0x00000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .text.esp_flash_encryption_set_release_mode - 0x00000000 0xe8 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .text.esp_flash_encryption_cfg_verify_release_mode - 0x00000000 0x192 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .text 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .data 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .iram1.29 0x00000000 0x42 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .text.esp_mmu_map_get_max_consecutive_free_block_size - 0x00000000 0x62 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .text.esp_mmu_map_reserve_block_with_caps - 0x00000000 0x8e esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .rodata.esp_mmu_map_dump_mapped_blocks.str1.4 - 0x00000000 0x152 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .text.esp_mmu_map_dump_mapped_blocks - 0x00000000 0x18a esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .iram1.7 0x00000000 0x24 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .text.esp_mmu_paddr_to_vaddr - 0x00000000 0x3a esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .text 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) - .data 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) - .text 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) - .data 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) - .text 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) - .data 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) - .text 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) - .data 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) - .text.esp_cache_aligned_malloc_internal - 0x00000000 0x70 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) - .text.esp_cache_msync - 0x00000000 0xb8 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) - .text.esp_cache_aligned_malloc - 0x00000000 0x8 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) - .text.esp_cache_aligned_malloc_prefer - 0x00000000 0x5a esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) - .text.esp_cache_aligned_calloc - 0x00000000 0x56 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) - .text.esp_cache_aligned_calloc_prefer - 0x00000000 0x88 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) - .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) - .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) - .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) - .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - .iram1.2 0x00000000 0x20 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - .iram1.3 0x00000000 0x20 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - .text.s_find_non_contiguous_block_nums - 0x00000000 0x2a esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - .text.s_pages_to_bytes - 0x00000000 0x18 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - .text.s_merge_contiguous_pages - 0x00000000 0x6a esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - .text.spi_flash_mmap_pages - 0x00000000 0x138 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - .text.spi_flash_mmap_dump - 0x00000000 0x22 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - .text.spi_flash_mmap_get_free_pages - 0x00000000 0x32 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - .text.spi_flash_phys2cache - 0x00000000 0x48 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - .iram1.2 0x00000000 0xa esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - .iram1.3 0x00000000 0xa esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - .iram1.6 0x00000000 0x2 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - .sbss.s_flash_guard_ops - 0x00000000 0x4 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - .dram1.1 0x00000000 0x8 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .text.read_unique_id - 0x00000000 0x3c esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .text.find_region - 0x00000000 0x54 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .text.esp_flash_read_id - 0x00000000 0x48 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .text.esp_flash_read_unique_chip_id - 0x00000000 0x52 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .text.esp_flash_init - 0x00000000 0xca esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .text.esp_flash_get_size - 0x00000000 0x46 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .text.esp_flash_erase_chip - 0x00000000 0x32 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .text.esp_flash_get_chip_write_protect - 0x00000000 0x5e esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .text.esp_flash_set_chip_write_protect - 0x00000000 0x58 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .text.esp_flash_get_protectable_regions - 0x00000000 0x52 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .text.esp_flash_get_protected_region - 0x00000000 0x9e esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .text.esp_flash_set_protected_region - 0x00000000 0xb2 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .text.esp_flash_read_encrypted - 0x00000000 0x8a esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .text.esp_flash_get_io_mode - 0x00000000 0x66 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .text.esp_flash_set_io_mode - 0x00000000 0x5a esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .text.esp_flash_suspend_cmd_init - 0x00000000 0x42 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .text.esp_flash_app_disable_protect - 0x00000000 0x2e esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .text.use_bus_lock - 0x00000000 0x6 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .text.bus_using_iomux - 0x00000000 0x72 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .text.cs_using_iomux - 0x00000000 0x3e esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .text.acquire_spi_device - 0x00000000 0x78 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .iram1.0 0x00000000 0x11a esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .text.spi_bus_remove_flash_device - 0x00000000 0x4c esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .text.spi_bus_add_flash_device - 0x00000000 0x142 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .text.use_bus_lock - 0x00000000 0x6 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .iram1.3 0x00000000 0xa esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .text.spi23_end - 0x00000000 0x28 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .iram1.2 0x00000000 0x2e esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .text.spi23_start - 0x00000000 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .text.esp_flash_init_os_functions - 0x00000000 0x7a esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .text.esp_flash_deinit_os_functions - 0x00000000 0x2e esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .text.esp_flash_init_main_bus_lock - 0x00000000 0x6 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .text.esp_flash_set_dangerous_write_protection - 0x00000000 0x1a esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .rodata.esp_flash_spi23_default_os_functions - 0x00000000 0x28 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) - .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) - .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) - .text.get_temp_buffer_not_supported - 0x00000000 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) - .text.esp_flash_app_disable_os_functions - 0x00000000 0xe esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) - .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) - .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) - .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) - .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - .text.spi_flash_chip_generic_read_unique_id_none - 0x00000000 0x6 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - .text.spi_flash_common_read_status_8b_rdsr - 0x00000000 0xe esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - .text.spi_flash_common_write_status_8b_wrsr - 0x00000000 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - .text.spi_flash_chip_winbond_probe - 0x00000000 0x12 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - .text.spi_flash_chip_winbond_get_caps - 0x00000000 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - .text.spi_flash_chip_winbond_suspend_cmd_conf - 0x00000000 0x2e esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - .rodata.esp_flash_chip_winbond - 0x00000000 0x7c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - .srodata.chip_name - 0x00000000 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - .text.memspi_host_read - 0x00000000 0x4a esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - .iram1.4 0x00000000 0xa esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - .iram1.5 0x00000000 0xa esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - .iram1.6 0x00000000 0xa esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - .iram1.7 0x00000000 0xa esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_system_console.c.obj) - .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_system_console.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_system_console.c.obj) - .text.esp_system_console_put_char - 0x00000000 0x24 esp-idf/esp_system/libesp_system.a(esp_system_console.c.obj) - .debug_info 0x00000000 0xff esp-idf/esp_system/libesp_system.a(esp_system_console.c.obj) - .debug_abbrev 0x00000000 0xbb esp-idf/esp_system/libesp_system.a(esp_system_console.c.obj) - .debug_loc 0x00000000 0x1e esp-idf/esp_system/libesp_system.a(esp_system_console.c.obj) - .debug_aranges - 0x00000000 0x20 esp-idf/esp_system/libesp_system.a(esp_system_console.c.obj) - .debug_ranges 0x00000000 0x10 esp-idf/esp_system/libesp_system.a(esp_system_console.c.obj) - .debug_line 0x00000000 0x21d esp-idf/esp_system/libesp_system.a(esp_system_console.c.obj) - .debug_str 0x00000000 0x286 esp-idf/esp_system/libesp_system.a(esp_system_console.c.obj) - .comment 0x00000000 0x30 esp-idf/esp_system/libesp_system.a(esp_system_console.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_system_console.c.obj) - .debug_frame 0x00000000 0x2c esp-idf/esp_system/libesp_system.a(esp_system_console.c.obj) - .riscv.attributes - 0x00000000 0x5c esp-idf/esp_system/libesp_system.a(esp_system_console.c.obj) - .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - .text.esp_deregister_freertos_idle_hook_for_cpu.part.0 - 0x00000000 0x3e esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - .text.esp_deregister_freertos_tick_hook_for_cpu.part.0 - 0x00000000 0x3e esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - .text.esp_register_freertos_idle_hook - 0x00000000 0x8 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - .text.esp_deregister_freertos_idle_hook_for_cpu - 0x00000000 0xc esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - .text.esp_deregister_freertos_idle_hook - 0x00000000 0x30 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - .text.esp_deregister_freertos_tick_hook_for_cpu - 0x00000000 0xc esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - .text.esp_deregister_freertos_tick_hook - 0x00000000 0x30 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .text.delete_entry - 0x00000000 0xc0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .text.esp_task_wdt_stop - 0x00000000 0x44 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .text.esp_task_wdt_restart - 0x00000000 0x44 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .text.esp_task_wdt_add_user - 0x00000000 0x48 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .text.esp_task_wdt_reset_user - 0x00000000 0x68 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .text.esp_task_wdt_delete - 0x00000000 0x38 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .text.unsubscribe_idle - 0x00000000 0x5e esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .text.esp_task_wdt_reconfigure - 0x00000000 0xa4 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .text.esp_task_wdt_deinit - 0x00000000 0x66 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .text.esp_task_wdt_delete_user - 0x00000000 0x24 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .text.esp_task_wdt_status - 0x00000000 0x5e esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - .text.esp_task_wdt_impl_timer_reconfigure - 0x00000000 0x5e esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - .text.esp_task_wdt_impl_timer_free - 0x00000000 0x64 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - .text.esp_task_wdt_impl_timer_stop - 0x00000000 0x38 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) - .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) - .text 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_regi2c_esp32h2.c.obj) - .data 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_regi2c_esp32h2.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_regi2c_esp32h2.c.obj) - .iram1.1 0x00000000 0x4c esp-idf/esp_rom/libesp_rom.a(esp_rom_regi2c_esp32h2.c.obj) - .iram1.2 0x00000000 0x7e esp-idf/esp_rom/libesp_rom.a(esp_rom_regi2c_esp32h2.c.obj) - .iram1.3 0x00000000 0x50 esp-idf/esp_rom/libesp_rom.a(esp_rom_regi2c_esp32h2.c.obj) - .text 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_usb_serial.c.obj) - .data 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_usb_serial.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_usb_serial.c.obj) - .text.esp_rom_usb_serial_putc - 0x00000000 0x34 esp-idf/esp_rom/libesp_rom.a(esp_rom_usb_serial.c.obj) - .debug_info 0x00000000 0x165 esp-idf/esp_rom/libesp_rom.a(esp_rom_usb_serial.c.obj) - .debug_abbrev 0x00000000 0xfb esp-idf/esp_rom/libesp_rom.a(esp_rom_usb_serial.c.obj) - .debug_loc 0x00000000 0x38 esp-idf/esp_rom/libesp_rom.a(esp_rom_usb_serial.c.obj) - .debug_aranges - 0x00000000 0x20 esp-idf/esp_rom/libesp_rom.a(esp_rom_usb_serial.c.obj) - .debug_ranges 0x00000000 0x10 esp-idf/esp_rom/libesp_rom.a(esp_rom_usb_serial.c.obj) - .debug_line 0x00000000 0x250 esp-idf/esp_rom/libesp_rom.a(esp_rom_usb_serial.c.obj) - .debug_str 0x00000000 0x30c esp-idf/esp_rom/libesp_rom.a(esp_rom_usb_serial.c.obj) - .comment 0x00000000 0x30 esp-idf/esp_rom/libesp_rom.a(esp_rom_usb_serial.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_usb_serial.c.obj) - .debug_frame 0x00000000 0x2c esp-idf/esp_rom/libesp_rom.a(esp_rom_usb_serial.c.obj) - .riscv.attributes - 0x00000000 0x5c esp-idf/esp_rom/libesp_rom.a(esp_rom_usb_serial.c.obj) - .text 0x00000000 0x0 esp-idf/hal/libhal.a(lp_timer_hal.c.obj) - .data 0x00000000 0x0 esp-idf/hal/libhal.a(lp_timer_hal.c.obj) - .bss 0x00000000 0x0 esp-idf/hal/libhal.a(lp_timer_hal.c.obj) - .iram1.1 0x00000000 0x46 esp-idf/hal/libhal.a(lp_timer_hal.c.obj) - .iram1.3 0x00000000 0x14 esp-idf/hal/libhal.a(lp_timer_hal.c.obj) - .iram1.4 0x00000000 0x14 esp-idf/hal/libhal.a(lp_timer_hal.c.obj) - .text 0x00000000 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .data 0x00000000 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .bss 0x00000000 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .text.mmu_hal_unmap_all - 0x00000000 0x24 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .text.mmu_hal_init - 0x00000000 0x32 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .text.mmu_hal_bytes_to_pages - 0x00000000 0x30 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .text 0x00000000 0x0 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - .data 0x00000000 0x0 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - .bss 0x00000000 0x0 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - .text 0x00000000 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - .data 0x00000000 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - .bss 0x00000000 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - .text.spi_flash_hal_setup_auto_resume_mode - 0x00000000 0x16 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - .text.spi_flash_hal_disable_auto_resume_mode - 0x00000000 0x14 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - .text 0x00000000 0x0 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - .data 0x00000000 0x0 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - .bss 0x00000000 0x0 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - .text 0x00000000 0x0 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) - .data 0x00000000 0x0 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) - .bss 0x00000000 0x0 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) - .text.clk_hal_apb_get_freq_hz - 0x00000000 0x74 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) - .text.clk_hal_clock_output_setup - 0x00000000 0x38 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) - .text.clk_hal_clock_output_teardown - 0x00000000 0x30 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) - .text 0x00000000 0x0 esp-idf/hal/libhal.a(uart_hal.c.obj) - .data 0x00000000 0x0 esp-idf/hal/libhal.a(uart_hal.c.obj) - .bss 0x00000000 0x0 esp-idf/hal/libhal.a(uart_hal.c.obj) - .text.uart_hal_get_hw_flow_ctrl - 0x00000000 0x1c esp-idf/hal/libhal.a(uart_hal.c.obj) - .text.uart_hal_set_sw_flow_ctrl - 0x00000000 0xbc esp-idf/hal/libhal.a(uart_hal.c.obj) - .text.uart_hal_set_at_cmd_char - 0x00000000 0x90 esp-idf/hal/libhal.a(uart_hal.c.obj) - .text.uart_hal_set_dtr - 0x00000000 0x16 esp-idf/hal/libhal.a(uart_hal.c.obj) - .text.uart_hal_set_wakeup_edge_thrd - 0x00000000 0x14 esp-idf/hal/libhal.a(uart_hal.c.obj) - .text.uart_hal_get_wakeup_edge_thrd - 0x00000000 0xe esp-idf/hal/libhal.a(uart_hal.c.obj) - .text.uart_hal_set_mode - 0x00000000 0x180 esp-idf/hal/libhal.a(uart_hal.c.obj) - .text.uart_hal_is_hw_rts_en - 0x00000000 0xa esp-idf/hal/libhal.a(uart_hal.c.obj) - .text.uart_hal_inverse_signal - 0x00000000 0xd0 esp-idf/hal/libhal.a(uart_hal.c.obj) - .text.uart_hal_set_loop_back - 0x00000000 0x28 esp-idf/hal/libhal.a(uart_hal.c.obj) - .text.uart_hal_get_max_rx_timeout_thrd - 0x00000000 0x24 esp-idf/hal/libhal.a(uart_hal.c.obj) - .text 0x00000000 0x0 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) - .data 0x00000000 0x0 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) - .bss 0x00000000 0x0 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) - .text 0x00000000 0x0 esp-idf/hal/libhal.a(gpio_hal.c.obj) - .data 0x00000000 0x0 esp-idf/hal/libhal.a(gpio_hal.c.obj) - .bss 0x00000000 0x0 esp-idf/hal/libhal.a(gpio_hal.c.obj) - .text.gpio_hal_intr_enable_on_core - 0x00000000 0x3a esp-idf/hal/libhal.a(gpio_hal.c.obj) - .text.gpio_hal_hysteresis_soft_enable - 0x00000000 0x28 esp-idf/hal/libhal.a(gpio_hal.c.obj) - .text.gpio_hal_isolate_in_sleep - 0x00000000 0x2c esp-idf/hal/libhal.a(gpio_hal.c.obj) - .text 0x00000000 0x0 esp-idf/hal/libhal.a(modem_clock_hal.c.obj) - .data 0x00000000 0x0 esp-idf/hal/libhal.a(modem_clock_hal.c.obj) - .bss 0x00000000 0x0 esp-idf/hal/libhal.a(modem_clock_hal.c.obj) - .text.modem_clock_hal_set_ble_rtc_timer_divisor_value - 0x00000000 0x1c esp-idf/hal/libhal.a(modem_clock_hal.c.obj) - .text.modem_clock_hal_enable_ble_rtc_timer_clock - 0x00000000 0x2 esp-idf/hal/libhal.a(modem_clock_hal.c.obj) - .text.modem_clock_hal_select_ble_rtc_timer_lpclk_source - 0x00000000 0xa4 esp-idf/hal/libhal.a(modem_clock_hal.c.obj) - .text.modem_clock_hal_select_coex_lpclk_source - 0x00000000 0xba esp-idf/hal/libhal.a(modem_clock_hal.c.obj) - .text 0x00000000 0x0 esp-idf/hal/libhal.a(pau_hal.c.obj) - .data 0x00000000 0x0 esp-idf/hal/libhal.a(pau_hal.c.obj) - .bss 0x00000000 0x0 esp-idf/hal/libhal.a(pau_hal.c.obj) - .iram1.0 0x00000000 0x2e esp-idf/hal/libhal.a(pau_hal.c.obj) - .iram1.1 0x00000000 0x1a esp-idf/hal/libhal.a(pau_hal.c.obj) - .iram1.2 0x00000000 0x38 esp-idf/hal/libhal.a(pau_hal.c.obj) - .iram1.3 0x00000000 0x2e esp-idf/hal/libhal.a(pau_hal.c.obj) - .iram1.4 0x00000000 0x1a esp-idf/hal/libhal.a(pau_hal.c.obj) - .text 0x00000000 0x0 esp-idf/hal/libhal.a(brownout_hal.c.obj) - .data 0x00000000 0x0 esp-idf/hal/libhal.a(brownout_hal.c.obj) - .bss 0x00000000 0x0 esp-idf/hal/libhal.a(brownout_hal.c.obj) - .text 0x00000000 0x0 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - .data 0x00000000 0x0 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - .bss 0x00000000 0x0 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - .text 0x00000000 0x0 esp-idf/hal/libhal.a(pmu_hal.c.obj) - .data 0x00000000 0x0 esp-idf/hal/libhal.a(pmu_hal.c.obj) - .bss 0x00000000 0x0 esp-idf/hal/libhal.a(pmu_hal.c.obj) - .text.pmu_hal_hp_set_digital_power_up_wait_cycle - 0x00000000 0x28 esp-idf/hal/libhal.a(pmu_hal.c.obj) - .text.pmu_hal_hp_get_digital_power_up_wait_cycle - 0x00000000 0x16 esp-idf/hal/libhal.a(pmu_hal.c.obj) - .text.pmu_hal_lp_set_digital_power_up_wait_cycle - 0x00000000 0x28 esp-idf/hal/libhal.a(pmu_hal.c.obj) - .text.pmu_hal_lp_get_digital_power_up_wait_cycle - 0x00000000 0x16 esp-idf/hal/libhal.a(pmu_hal.c.obj) - .text 0x00000000 0x0 esp-idf/hal/libhal.a(apm_hal.c.obj) - .data 0x00000000 0x0 esp-idf/hal/libhal.a(apm_hal.c.obj) - .bss 0x00000000 0x0 esp-idf/hal/libhal.a(apm_hal.c.obj) - .text.apm_hal_set_master_sec_mode - 0x00000000 0x42 esp-idf/hal/libhal.a(apm_hal.c.obj) - .text.apm_hal_set_master_sec_mode_all - 0x00000000 0x12 esp-idf/hal/libhal.a(apm_hal.c.obj) - .text.apm_hal_tee_enable_clk_gating - 0x00000000 0x1a esp-idf/hal/libhal.a(apm_hal.c.obj) - .text.apm_hal_enable_ctrl_filter - 0x00000000 0x40 esp-idf/hal/libhal.a(apm_hal.c.obj) - .text.apm_hal_enable_region_filter - 0x00000000 0x44 esp-idf/hal/libhal.a(apm_hal.c.obj) - .text.apm_hal_set_region_start_addr - 0x00000000 0x2c esp-idf/hal/libhal.a(apm_hal.c.obj) - .text.apm_hal_set_region_end_addr - 0x00000000 0x2c esp-idf/hal/libhal.a(apm_hal.c.obj) - .text.apm_hal_set_sec_mode_region_attr - 0x00000000 0x60 esp-idf/hal/libhal.a(apm_hal.c.obj) - .text.apm_hal_set_region_filter_cfg - 0x00000000 0xa2 esp-idf/hal/libhal.a(apm_hal.c.obj) - .text.apm_hal_set_ctrl_sec_mode_cfg - 0x00000000 0x60 esp-idf/hal/libhal.a(apm_hal.c.obj) - .text.apm_hal_get_exception_type - 0x00000000 0x36 esp-idf/hal/libhal.a(apm_hal.c.obj) - .text.apm_hal_clear_exception_status - 0x00000000 0x38 esp-idf/hal/libhal.a(apm_hal.c.obj) - .text.apm_hal_get_exception_info - 0x00000000 0x7c esp-idf/hal/libhal.a(apm_hal.c.obj) - .text.apm_hal_enable_intr - 0x00000000 0x4e esp-idf/hal/libhal.a(apm_hal.c.obj) - .text.apm_hal_get_intr_src_num - 0x00000000 0x20 esp-idf/hal/libhal.a(apm_hal.c.obj) - .text.apm_hal_enable_reset_event_bypass - 0x00000000 0x16 esp-idf/hal/libhal.a(apm_hal.c.obj) - .text.apm_hal_enable_ctrl_clk_gating - 0x00000000 0x2c esp-idf/hal/libhal.a(apm_hal.c.obj) - .text 0x00000000 0x0 esp-idf/soc/libsoc.a(interrupts.c.obj) - .data 0x00000000 0x0 esp-idf/soc/libsoc.a(interrupts.c.obj) - .bss 0x00000000 0x0 esp-idf/soc/libsoc.a(interrupts.c.obj) - .rodata.str1.4 - 0x00000000 0x2ba esp-idf/soc/libsoc.a(interrupts.c.obj) - .rodata.esp_isr_names - 0x00000000 0x104 esp-idf/soc/libsoc.a(interrupts.c.obj) - .debug_info 0x00000000 0x25d esp-idf/soc/libsoc.a(interrupts.c.obj) - .debug_abbrev 0x00000000 0x86 esp-idf/soc/libsoc.a(interrupts.c.obj) - .debug_aranges - 0x00000000 0x18 esp-idf/soc/libsoc.a(interrupts.c.obj) - .debug_line 0x00000000 0xc0 esp-idf/soc/libsoc.a(interrupts.c.obj) - .debug_str 0x00000000 0x92b esp-idf/soc/libsoc.a(interrupts.c.obj) - .comment 0x00000000 0x30 esp-idf/soc/libsoc.a(interrupts.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/soc/libsoc.a(interrupts.c.obj) - .riscv.attributes - 0x00000000 0x5c esp-idf/soc/libsoc.a(interrupts.c.obj) - .text 0x00000000 0x0 esp-idf/soc/libsoc.a(gpio_periph.c.obj) - .data 0x00000000 0x0 esp-idf/soc/libsoc.a(gpio_periph.c.obj) - .bss 0x00000000 0x0 esp-idf/soc/libsoc.a(gpio_periph.c.obj) - .rodata.GPIO_HOLD_MASK - 0x00000000 0x70 esp-idf/soc/libsoc.a(gpio_periph.c.obj) - .rodata.GPIO_PIN_MUX_REG - 0x00000000 0x70 esp-idf/soc/libsoc.a(gpio_periph.c.obj) - .debug_info 0x00000000 0xd8 esp-idf/soc/libsoc.a(gpio_periph.c.obj) - .debug_abbrev 0x00000000 0x70 esp-idf/soc/libsoc.a(gpio_periph.c.obj) - .debug_aranges - 0x00000000 0x18 esp-idf/soc/libsoc.a(gpio_periph.c.obj) - .debug_line 0x00000000 0x1c3 esp-idf/soc/libsoc.a(gpio_periph.c.obj) - .debug_str 0x00000000 0x253 esp-idf/soc/libsoc.a(gpio_periph.c.obj) - .comment 0x00000000 0x30 esp-idf/soc/libsoc.a(gpio_periph.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/soc/libsoc.a(gpio_periph.c.obj) - .riscv.attributes - 0x00000000 0x5c esp-idf/soc/libsoc.a(gpio_periph.c.obj) - .text 0x00000000 0x0 esp-idf/soc/libsoc.a(uart_periph.c.obj) - .data 0x00000000 0x0 esp-idf/soc/libsoc.a(uart_periph.c.obj) - .bss 0x00000000 0x0 esp-idf/soc/libsoc.a(uart_periph.c.obj) - .rodata.uart_reg_retention_info - 0x00000000 0x18 esp-idf/soc/libsoc.a(uart_periph.c.obj) - .rodata.uart1_regdma_entries - 0x00000000 0x84 esp-idf/soc/libsoc.a(uart_periph.c.obj) - .rodata.uart0_regdma_entries - 0x00000000 0x84 esp-idf/soc/libsoc.a(uart_periph.c.obj) - .text 0x00000000 0x0 esp-idf/soc/libsoc.a(spi_periph.c.obj) - .data 0x00000000 0x0 esp-idf/soc/libsoc.a(spi_periph.c.obj) - .bss 0x00000000 0x0 esp-idf/soc/libsoc.a(spi_periph.c.obj) - .rodata.spi_reg_retention_info - 0x00000000 0xc esp-idf/soc/libsoc.a(spi_periph.c.obj) - .rodata.spi2_regs_retention - 0x00000000 0x58 esp-idf/soc/libsoc.a(spi_periph.c.obj) - .rodata.spi_periph_signal - 0x00000000 0x48 esp-idf/soc/libsoc.a(spi_periph.c.obj) - .debug_info 0x00000000 0x20bc esp-idf/soc/libsoc.a(spi_periph.c.obj) - .debug_abbrev 0x00000000 0x243 esp-idf/soc/libsoc.a(spi_periph.c.obj) - .debug_aranges - 0x00000000 0x18 esp-idf/soc/libsoc.a(spi_periph.c.obj) - .debug_line 0x00000000 0x297 esp-idf/soc/libsoc.a(spi_periph.c.obj) - .debug_str 0x00000000 0x2336 esp-idf/soc/libsoc.a(spi_periph.c.obj) - .comment 0x00000000 0x30 esp-idf/soc/libsoc.a(spi_periph.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/soc/libsoc.a(spi_periph.c.obj) - .riscv.attributes - 0x00000000 0x5c esp-idf/soc/libsoc.a(spi_periph.c.obj) - .text 0x00000000 0x0 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) - .data 0x00000000 0x0 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) - .bss 0x00000000 0x0 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) - .text 0x00000000 0x0 esp-idf/soc/libsoc.a(power_supply_periph.c.obj) - .data 0x00000000 0x0 esp-idf/soc/libsoc.a(power_supply_periph.c.obj) - .bss 0x00000000 0x0 esp-idf/soc/libsoc.a(power_supply_periph.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - .text.periph_rtc_dig_clk8m_get_freq - 0x00000000 0xa esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) - .text.esp_gpio_is_reserved - 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - .text.temp_sensor_sync_tsens_idx - 0x00000000 0xa esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) - .text.io_mux_set_clock_source - 0x00000000 0x84 esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) - .text.io_mux_enable_lp_io_clock - 0x00000000 0xb6 esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) - .sbss.s_io_mux_clk_src - 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .iram1.9 0x00000000 0x6 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .iram1.3 0x00000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .iram1.11 0x00000000 0x8e esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .text.spi_bus_init_lock - 0x00000000 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .text.spi_bus_deinit_lock - 0x00000000 0x42 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .text.spi_bus_lock_register_dev - 0x00000000 0xf2 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .text.spi_bus_lock_unregister_dev - 0x00000000 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .text.spi_bus_lock_set_bg_control - 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .iram1.21 0x00000000 0x22 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .iram1.22 0x00000000 0xe esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .iram1.25 0x00000000 0x98 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .iram1.28 0x00000000 0x96 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .iram1.29 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .iram1.30 0x00000000 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .iram1.31 0x00000000 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .text.spi_bus_lock_bg_request - 0x00000000 0x42 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .iram1.32 0x00000000 0x7c esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .iram1.33 0x00000000 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .iram1.34 0x00000000 0x2e esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .iram1.35 0x00000000 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .iram1.36 0x00000000 0x1e esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .sdata.s_spinlock - 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .text.adc_calc_hw_calibration_code - 0x00000000 0x88 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .iram1.0 0x00000000 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .text.adc_load_hw_calibration_chan_compens - 0x00000000 0x44 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .iram1.1 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .text.adc_lock_acquire - 0x00000000 0x34 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .text.adc_lock_release - 0x00000000 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .text.adc_lock_try_acquire - 0x00000000 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .text.adc2_wifi_acquire - 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .text.adc2_wifi_release - 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .sbss.adc2_lock - 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .sbss.adc1_lock - 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .bss.s_adc_cali_chan_compens - 0x00000000 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .bss.s_adc_cali_param - 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .text 0x00000000 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) - .data 0x00000000 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) - .bss 0x00000000 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) - .text.xQueueGetMutexHolderFromISR - 0x00000000 0x24 esp-idf/freertos/libfreertos.a(queue.c.obj) - .text.xQueueCreateCountingSemaphore - 0x00000000 0x38 esp-idf/freertos/libfreertos.a(queue.c.obj) - .text.xQueuePeek - 0x00000000 0x162 esp-idf/freertos/libfreertos.a(queue.c.obj) - .text.xQueuePeekFromISR - 0x00000000 0x62 esp-idf/freertos/libfreertos.a(queue.c.obj) - .text.uxQueueMessagesWaiting - 0x00000000 0x3c esp-idf/freertos/libfreertos.a(queue.c.obj) - .text.uxQueueSpacesAvailable - 0x00000000 0x40 esp-idf/freertos/libfreertos.a(queue.c.obj) - .text.uxQueueMessagesWaitingFromISR - 0x00000000 0x1c esp-idf/freertos/libfreertos.a(queue.c.obj) - .text.xQueueIsQueueEmptyFromISR - 0x00000000 0x20 esp-idf/freertos/libfreertos.a(queue.c.obj) - .text.xQueueIsQueueFullFromISR - 0x00000000 0x24 esp-idf/freertos/libfreertos.a(queue.c.obj) - .text.vQueueWaitForMessageRestricted - 0x00000000 0x66 esp-idf/freertos/libfreertos.a(queue.c.obj) - .text.xQueueCreateSet - 0x00000000 0xc esp-idf/freertos/libfreertos.a(queue.c.obj) - .text.xQueueAddToSet - 0x00000000 0x3c esp-idf/freertos/libfreertos.a(queue.c.obj) - .text.xQueueRemoveFromSet - 0x00000000 0x38 esp-idf/freertos/libfreertos.a(queue.c.obj) - .text.xQueueSelectFromSet - 0x00000000 0x24 esp-idf/freertos/libfreertos.a(queue.c.obj) - .text.xQueueSelectFromSetFromISR - 0x00000000 0x24 esp-idf/freertos/libfreertos.a(queue.c.obj) - .data 0x00000000 0x0 esp-idf/freertos/libfreertos.a(portasm.S.obj) - .bss 0x00000000 0x0 esp-idf/freertos/libfreertos.a(portasm.S.obj) - .text 0x00000000 0x0 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - .data 0x00000000 0x0 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - .bss 0x00000000 0x0 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - .text.prvTaskDeleteWithCaps - 0x00000000 0x88 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - .text.prvTaskDeleteWithCapsTask - 0x00000000 0x22 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - .text.xTaskCreatePinnedToCoreWithCaps - 0x00000000 0x82 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - .rodata.vTaskDeleteWithCaps.str1.4 - 0x00000000 0x1a esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - .text.vTaskDeleteWithCaps - 0x00000000 0x8a esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - .text.xStreamBufferGenericCreateWithCaps - 0x00000000 0x80 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - .text.vStreamBufferGenericDeleteWithCaps - 0x00000000 0x78 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - .text 0x00000000 0x0 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .data 0x00000000 0x0 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .bss 0x00000000 0x0 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .text.prvBytesInBuffer - 0x00000000 0x14 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .text.prvWriteBytesToBuffer - 0x00000000 0x78 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .text.prvWriteMessageToBuffer - 0x00000000 0x5a esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .text.prvReadBytesFromBuffer - 0x00000000 0x6e esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .text.prvReadMessageFromBuffer - 0x00000000 0x5c esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .text.prvInitialiseNewStreamBuffer.part.0 - 0x00000000 0x18 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .text.xStreamBufferGenericCreate - 0x00000000 0x9c esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .text.xStreamBufferGenericCreateStatic - 0x00000000 0x8c esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .text.xStreamBufferGetStaticBuffers - 0x00000000 0x34 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .text.vStreamBufferDelete - 0x00000000 0x40 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .text.xStreamBufferReset - 0x00000000 0x8a esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .text.xStreamBufferSetTriggerLevel - 0x00000000 0x2c esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .text.xStreamBufferSpacesAvailable - 0x00000000 0x28 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .text.xStreamBufferBytesAvailable - 0x00000000 0x28 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .text.xStreamBufferSend - 0x00000000 0x12a esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .text.xStreamBufferSendFromISR - 0x00000000 0x9c esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .text.xStreamBufferReceive - 0x00000000 0xe8 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .text.xStreamBufferNextMessageLengthBytes - 0x00000000 0x54 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .text.xStreamBufferReceiveFromISR - 0x00000000 0x8e esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .text.xStreamBufferIsEmpty - 0x00000000 0x24 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .text.xStreamBufferIsFull - 0x00000000 0x38 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .text.xStreamBufferSendCompletedFromISR - 0x00000000 0x5e esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .text.xStreamBufferReceiveCompletedFromISR - 0x00000000 0x5e esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .debug_info 0x00000000 0x1b25 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .debug_abbrev 0x00000000 0x3a4 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .debug_loc 0x00000000 0x1a8a esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .debug_aranges - 0x00000000 0xd0 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .debug_ranges 0x00000000 0x158 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .debug_line 0x00000000 0x1d12 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .debug_str 0x00000000 0xaf7 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .comment 0x00000000 0x30 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .debug_frame 0x00000000 0x368 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .riscv.attributes - 0x00000000 0x5c esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - .text 0x00000000 0x0 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .data 0x00000000 0x0 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .bss 0x00000000 0x0 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_always_lock_free - 0x00000000 0x6 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_is_lock_free - 0x00000000 0x6 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_exchange_8 - 0x00000000 0x3a esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_compare_exchange_8 - 0x00000000 0x52 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_fetch_add_8 - 0x00000000 0x4a esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_add_fetch_8 - 0x00000000 0x4c esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_fetch_sub_8 - 0x00000000 0x4a esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_sub_fetch_8 - 0x00000000 0x4c esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_and_fetch_8 - 0x00000000 0x42 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_or_fetch_8 - 0x00000000 0x42 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_fetch_xor_8 - 0x00000000 0x3e esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_xor_fetch_8 - 0x00000000 0x42 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_fetch_nand_8 - 0x00000000 0x4a esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_nand_fetch_8 - 0x00000000 0x48 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_load_8 - 0x00000000 0x2a esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_store_8 - 0x00000000 0x34 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_fetch_and_add_8 - 0x00000000 0x4a esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_add_and_fetch_8 - 0x00000000 0x4c esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_fetch_and_sub_8 - 0x00000000 0x4a esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_sub_and_fetch_8 - 0x00000000 0x4c esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_fetch_and_and_8 - 0x00000000 0x3e esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_and_and_fetch_8 - 0x00000000 0x42 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_fetch_and_or_8 - 0x00000000 0x3e esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_or_and_fetch_8 - 0x00000000 0x42 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_fetch_and_xor_8 - 0x00000000 0x3e esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_xor_and_fetch_8 - 0x00000000 0x42 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_fetch_and_nand_8 - 0x00000000 0xa esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_nand_and_fetch_8 - 0x00000000 0x2a esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_bool_compare_and_swap_8 - 0x00000000 0x46 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_val_compare_and_swap_8 - 0x00000000 0x46 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_lock_test_and_set_8 - 0x00000000 0x3a esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_lock_release_8 - 0x00000000 0x2c esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_load - 0x00000000 0x3c esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_store - 0x00000000 0x3c esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_compare_exchange - 0x00000000 0x5e esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text 0x00000000 0x0 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) - .data 0x00000000 0x0 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) - .text.esp_event_handler_register - 0x00000000 0x22 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) - .text.esp_event_handler_instance_register - 0x00000000 0x24 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) - .text.esp_event_handler_unregister - 0x00000000 0x20 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) - .text.esp_event_handler_instance_unregister - 0x00000000 0x20 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) - .text.esp_event_post - 0x00000000 0x24 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) - .text.esp_event_isr_post - 0x00000000 0x24 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) - .text.esp_event_loop_delete_default - 0x00000000 0x2e esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) - .text 0x00000000 0x0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .data 0x00000000 0x0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .text.handler_instances_remove_all - 0x00000000 0x4a esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .text.handler_instances_add - 0x00000000 0xa0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .text.base_node_add_handler - 0x00000000 0xbc esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .text.loop_node_add_handler - 0x00000000 0xfc esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .text.esp_event_loop_delete - 0x00000000 0x15c esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .text.esp_event_handler_register_with_internal - 0x00000000 0x10a esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .text.esp_event_handler_register_with - 0x00000000 0xc esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .text.esp_event_handler_instance_register_with - 0x00000000 0xa esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .text.esp_event_post_to - 0x00000000 0x106 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .text.esp_event_handler_unregister_with_internal - 0x00000000 0x190 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .text.esp_event_handler_unregister_with - 0x00000000 0x24 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .text.esp_event_handler_instance_unregister_with - 0x00000000 0x12 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .text.esp_event_isr_post_to - 0x00000000 0x92 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .text.esp_event_dump - 0x00000000 0x4 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .data 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .bss 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text._ZL18nvs_find_ns_handlemPPN3nvs15NVSHandleSimpleE - 0x00000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text._ZL19nvs_get_str_or_blobmN3nvs8ItemTypeEPKcPvPj - 0x00000000 0x8e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_dump - 0x00000000 0x48 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_flash_init_partition_ptr - 0x00000000 0x8e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_flash_secure_init_partition - 0x00000000 0x6c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_flash_secure_init - 0x00000000 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_open_from_partition - 0x00000000 0xb6 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_open - 0x00000000 0x16 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_find_key - 0x00000000 0x5c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_erase_key - 0x00000000 0x50 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_erase_all - 0x00000000 0x4c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_set_i8 - 0x00000000 0x5e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_set_u8 - 0x00000000 0x5e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_set_i16 - 0x00000000 0x5e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_set_u16 - 0x00000000 0x5e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_set_i32 - 0x00000000 0x5a esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_set_u32 - 0x00000000 0x5a esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_set_i64 - 0x00000000 0x60 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_set_u64 - 0x00000000 0x60 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_commit - 0x00000000 0x4c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_set_str - 0x00000000 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_set_blob - 0x00000000 0x58 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_get_i8 - 0x00000000 0x58 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_get_u8 - 0x00000000 0x58 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_get_i16 - 0x00000000 0x58 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_get_u16 - 0x00000000 0x58 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_get_i32 - 0x00000000 0x58 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_get_u32 - 0x00000000 0x58 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_get_i64 - 0x00000000 0x58 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_get_u64 - 0x00000000 0x58 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_get_str - 0x00000000 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_get_blob - 0x00000000 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_get_stats - 0x00000000 0x8e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_get_used_entry_count - 0x00000000 0x60 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_flash_generate_keys - 0x00000000 0xfa esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_flash_read_security_cfg - 0x00000000 0x14a esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_flash_register_security_scheme - 0x00000000 0x2e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_flash_get_default_security_scheme - 0x00000000 0xa esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_flash_generate_keys_v2 - 0x00000000 0x1a esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_flash_read_security_cfg_v2 - 0x00000000 0x1a esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_entry_find - 0x00000000 0xac esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_entry_find_in_handle - 0x00000000 0xb4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_entry_next - 0x00000000 0x56 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_entry_info - 0x00000000 0x38 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_release_iterator - 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text._ZN14intrusive_listI14NVSHandleEntryE5eraseENS1_8iteratorE - 0x00000000 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text._ZL24close_handles_and_deinitPKc - 0x00000000 0x80 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_flash_erase_partition - 0x00000000 0x80 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_flash_erase - 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_flash_erase_partition_ptr - 0x00000000 0x76 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_flash_deinit_partition - 0x00000000 0x44 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_flash_deinit - 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_close - 0x00000000 0x64 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .bss._ZL13s_nvs_handles - 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .sbss._ZN14NVSHandleEntry17s_nvs_next_handleE - 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .bss._ZL26nvs_sec_default_scheme_cfg - 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .group 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - .text 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - .data 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - .bss 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - .text._ZN3nvs4Page14alterPageStateENS0_9PageStateE - 0x00000000 0x34 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - .text._ZN3nvs4Page10setVersionEh - 0x00000000 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - .text._ZN3nvs4Page11markFreeingEv - 0x00000000 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - .text._ZN3nvs4Page8markFullEv - 0x00000000 0x1a esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - .text._ZNK3nvs4Page18getVarDataTailroomEv - 0x00000000 0x2e esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - .rodata._ZN3nvs4Page15pageStateToNameENS0_9PageStateE.str1.4 - 0x00000000 0x36 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - .text._ZN3nvs4Page15pageStateToNameENS0_9PageStateE - 0x00000000 0x78 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - .text._ZN3nvs4Page11calcEntriesER11nvs_stats_t - 0x00000000 0x6c esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - .rodata._ZNK3nvs4Page9debugDumpEv.str1.4 - 0x00000000 0xc2 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - .text._ZNK3nvs4Page9debugDumpEv - 0x00000000 0x126 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - .text._ZN3nvs4Page14writeEntryDataEPKhj - 0x00000000 0x8a esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - .text._ZN3nvs4Page9writeItemEhNS_8ItemTypeEPKcPKvjh - 0x00000000 0x1bc esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - .text._ZN3nvs4Page7cmpItemEhNS_8ItemTypeEPKcPKvjhNS_9VerOffsetE - 0x00000000 0xec esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - .text._ZN3nvs4Page8findItemEhNS_8ItemTypeEPKchNS_9VerOffsetE - 0x00000000 0x26 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - .text._ZN3nvs4Page8readItemEhNS_8ItemTypeEPKcPvjhNS_9VerOffsetE - 0x00000000 0xec esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .text 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .data 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .bss 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .text._ZNK3nvs7Storage7isValidEv - 0x00000000 0xa esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .text._ZN3nvs7Storage8findItemEhNS_8ItemTypeEPKcRPNS_4PageERNS_4ItemEhNS_9VerOffsetE - 0x00000000 0x52 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .text._ZN3nvs7Storage18writeMultiPageBlobEhPKcPKvjNS_9VerOffsetE - 0x00000000 0x20a esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .text._ZN3nvs7Storage16cmpMultiPageBlobEhPKcPKvj - 0x00000000 0xd6 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .text._ZN3nvs7Storage18eraseMultiPageBlobEhPKcNS_9VerOffsetE - 0x00000000 0x128 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .text._ZN3nvs7Storage17readMultiPageBlobEhPKcPvj - 0x00000000 0xee esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .text._ZN3nvs7Storage8readItemEhNS_8ItemTypeEPKcPvj - 0x00000000 0x94 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .text._ZN3nvs7Storage9writeItemEhNS_8ItemTypeEPKcPKvj - 0x00000000 0x286 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .text._ZN3nvs7Storage9eraseItemEhNS_8ItemTypeEPKc - 0x00000000 0x98 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .text._ZN3nvs7Storage14eraseNamespaceEh - 0x00000000 0x50 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .text._ZN3nvs7Storage7findKeyEhPKcPNS_8ItemTypeE - 0x00000000 0x50 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .text._ZN3nvs7Storage15getItemDataSizeEhNS_8ItemTypeEPKcRj - 0x00000000 0x7e esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .text._ZN3nvs7Storage9debugDumpEv - 0x00000000 0x22 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .text._ZN3nvs7Storage9fillStatsER11nvs_stats_t - 0x00000000 0xe esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .text._ZN3nvs7Storage22calcEntriesInNamespaceEhRj - 0x00000000 0x76 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .text._ZN3nvs7Storage13fillEntryInfoERNS_4ItemER16nvs_entry_info_t - 0x00000000 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .text._ZN3nvs7Storage9nextEntryEP21nvs_opaque_iterator_t - 0x00000000 0xa2 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .text._ZN3nvs7Storage11findEntryNsEP21nvs_opaque_iterator_th - 0x00000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .text._ZN3nvs7Storage15clearNamespacesEv - 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .text._ZN3nvs7Storage21createOrOpenNamespaceEPKcbRh - 0x00000000 0x112 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .text._ZN3nvs7Storage9findEntryEP21nvs_opaque_iterator_tPKc - 0x00000000 0x46 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - .text 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - .data 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - .bss 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - .text._ZN3nvs15NVSHandleSimple6commitEv - 0x00000000 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - .text._ZN3nvs15NVSHandleSimpleD2Ev - 0x00000000 0x32 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - .text._ZN3nvs15NVSHandleSimpleD0Ev - 0x00000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - .text._ZN3nvs15NVSHandleSimple14set_typed_itemENS_8ItemTypeEPKcPKvj - 0x00000000 0x36 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - .text._ZN3nvs15NVSHandleSimple8set_blobEPKcPKvj - 0x00000000 0x38 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - .text._ZN3nvs15NVSHandleSimple14get_typed_itemENS_8ItemTypeEPKcPvj - 0x00000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - .text._ZN3nvs15NVSHandleSimple10get_stringEPKcPcj - 0x00000000 0x26 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - .text._ZN3nvs15NVSHandleSimple8get_blobEPKcPvj - 0x00000000 0x26 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - .text._ZN3nvs15NVSHandleSimple10set_stringEPKcS2_ - 0x00000000 0x5a esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - .text._ZN3nvs15NVSHandleSimple13get_item_sizeENS_8ItemTypeEPKcRj - 0x00000000 0x22 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - .text._ZN3nvs15NVSHandleSimple8find_keyEPKcR10nvs_type_t - 0x00000000 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - .text._ZN3nvs15NVSHandleSimple9erase_allEv - 0x00000000 0x2c esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - .text._ZN3nvs15NVSHandleSimple10erase_itemEPKc - 0x00000000 0x32 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - .text._ZN3nvs15NVSHandleSimple20get_used_entry_countERj - 0x00000000 0x3e esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - .text._ZN3nvs15NVSHandleSimple9debugDumpEv - 0x00000000 0xa esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - .text._ZN3nvs15NVSHandleSimple9fillStatsER11nvs_stats_t - 0x00000000 0xa esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - .text._ZN3nvs15NVSHandleSimple22calcEntriesInNamespaceERj - 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - .text._ZN3nvs15NVSHandleSimple9findEntryEP21nvs_opaque_iterator_tPKc - 0x00000000 0xa esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - .text._ZN3nvs15NVSHandleSimple11findEntryNsEP21nvs_opaque_iterator_t - 0x00000000 0xe esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - .text._ZN3nvs15NVSHandleSimple9nextEntryEP21nvs_opaque_iterator_t - 0x00000000 0xa esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - .text._ZNK3nvs15NVSHandleSimple18get_partition_nameEv - 0x00000000 0xa esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - .text._ZNK3nvs15NVSHandleSimple11get_storageEv - 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - .rodata._ZTVN3nvs15NVSHandleSimpleE - 0x00000000 0x40 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - .debug_info 0x00000000 0x950e esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - .debug_abbrev 0x00000000 0xcc7 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - .debug_loc 0x00000000 0x122f esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - .debug_aranges - 0x00000000 0xc8 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - .debug_ranges 0x00000000 0xe8 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - .debug_line 0x00000000 0x118f esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - .debug_str 0x00000000 0x92cf esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - .comment 0x00000000 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - .debug_frame 0x00000000 0x1c8 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - .riscv.attributes - 0x00000000 0x5c esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - .group 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - .text 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - .data 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - .bss 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - .group 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - .text 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - .data 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - .bss 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - .text._ZN3nvs19NVSPartitionManager17open_handles_sizeEv - 0x00000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - .text._ZN3nvs19NVSPartitionManager11open_handleEPKcS2_15nvs_open_mode_tPPNS_15NVSHandleSimpleE - 0x00000000 0xc8 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - .text._ZN3nvs19NVSPartitionManager21secure_init_partitionEPKcP13nvs_sec_cfg_t - 0x00000000 0xb4 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - .text._ZN14intrusive_listIN3nvs15NVSHandleSimpleEE5eraseENS2_8iteratorE - 0x00000000 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - .text._ZN3nvs19NVSPartitionManager12close_handleEPNS_15NVSHandleSimpleE - 0x00000000 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - .text._ZN3nvs19NVSPartitionManager16deinit_partitionEPKc - 0x00000000 0xb4 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - .text 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) - .data 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) - .bss 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) - .text._ZN3nvs4Item14calculateCrc32EPKhj - 0x00000000 0xe esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) - .text 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) - .data 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) - .bss 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) - .text._ZN3nvs4Lock6uninitEv - 0x00000000 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) - .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - .text 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - .data 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - .bss 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - .text 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - .data 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - .bss 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - .text._ZN3nvs11PageManager9fillStatsER11nvs_stats_t - 0x00000000 0x64 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - .text._ZN3nvs11PageManager14requestNewPageEv - 0x00000000 0xd0 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - .text 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) - .data 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) - .bss 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) - .text._ZN3nvs16partition_lookup30lookup_nvs_encrypted_partitionEPKcP13nvs_sec_cfg_tPPNS_12NVSPartitionE - 0x00000000 0x74 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) - .group 0x00000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) - .group 0x00000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) - .text 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) - .data 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) - .bss 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) - .text._ZN3nvs21NVSEncryptedPartitionD2Ev - 0x00000000 0x2 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) - .text._ZN3nvs21NVSEncryptedPartitionD0Ev - 0x00000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) - .text._ZN3nvs21NVSEncryptedPartition4readEjPvj - 0x00000000 0x5c esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) - .text._ZN3nvs21NVSEncryptedPartition5writeEjPKvj - 0x00000000 0xc0 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) - .text._ZN3nvs21NVSEncryptedPartitionC2EPK15esp_partition_t - 0x00000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) - .text._ZN3nvs21NVSEncryptedPartition4initEP13nvs_sec_cfg_t - 0x00000000 0x5c esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) - .rodata._ZTVN3nvs21NVSEncryptedPartitionE - 0x00000000 0x34 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) - .debug_info 0x00000000 0x5586 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) - .debug_abbrev 0x00000000 0xa1f esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) - .debug_loc 0x00000000 0x50a esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) - .debug_aranges - 0x00000000 0x48 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) - .debug_ranges 0x00000000 0x88 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) - .debug_line 0x00000000 0xecb esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) - .debug_str 0x00000000 0x46e2 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) - .comment 0x00000000 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) - .debug_frame 0x00000000 0xdc esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) - .riscv.attributes - 0x00000000 0x5c esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) - .text 0x00000000 0x0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .data 0x00000000 0x0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .text.xRingbufferCreate - 0x00000000 0x86 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .text.xRingbufferCreateNoSplit - 0x00000000 0x16 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .text.xRingbufferSendAcquire - 0x00000000 0x4a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .text.xRingbufferSendComplete - 0x00000000 0x90 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .text.xRingbufferReceiveSplit - 0x00000000 0x3c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .text.xRingbufferReceiveSplitFromISR - 0x00000000 0x3a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .text.xRingbufferReceiveUpToFromISR - 0x00000000 0x4e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .text.xRingbufferAddToQueueSetRead - 0x00000000 0x54 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .text.xRingbufferRemoveFromQueueSetRead - 0x00000000 0x58 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .rodata.xRingbufferPrintInfo.str1.4 - 0x00000000 0x43 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .text.xRingbufferPrintInfo - 0x00000000 0x64 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .text 0x00000000 0x0 esp-idf/vfs/libvfs.a(vfs_eventfd.c.obj) - .data 0x00000000 0x0 esp-idf/vfs/libvfs.a(vfs_eventfd.c.obj) - .bss 0x00000000 0x0 esp-idf/vfs/libvfs.a(vfs_eventfd.c.obj) - .text 0x00000000 0x0 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .data 0x00000000 0x0 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .text.spicommon_irqsource_for_host - 0x00000000 0x18 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .text.spicommon_irqdma_source_for_host - 0x00000000 0x18 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .text.spicommon_dma_chan_alloc - 0x00000000 0x110 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .text.spicommon_dma_desc_alloc - 0x00000000 0x96 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .iram1.0 0x00000000 0x7e esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .text.spicommon_bus_initialize_io - 0x00000000 0x500 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .text.spicommon_cs_initialize - 0x00000000 0xe4 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .text.spicommon_cs_free_io - 0x00000000 0x46 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .text.spicommon_bus_using_iomux - 0x00000000 0x72 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .text.spi_bus_lock_get_by_id - 0x00000000 0x12 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .rodata.spi_bus_initialize.str1.4 - 0x00000000 0xb esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .text.spi_bus_initialize - 0x00000000 0x17c esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .text.spi_bus_dma_memory_alloc - 0x00000000 0x20 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .text.spi_bus_get_attr - 0x00000000 0x14 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .text.spi_bus_get_dma_ctx - 0x00000000 0x14 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .text.spi_bus_free - 0x00000000 0x98 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .text.spi_bus_register_destroy_func - 0x00000000 0x16 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .sdata.bus_ctx - 0x00000000 0x8 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .data.s_mainbus - 0x00000000 0x60 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .text 0x00000000 0x0 esp-idf/openthread/libopenthread.a(esp_openthread.cpp.obj) - .data 0x00000000 0x0 esp-idf/openthread/libopenthread.a(esp_openthread.cpp.obj) - .bss 0x00000000 0x0 esp-idf/openthread/libopenthread.a(esp_openthread.cpp.obj) - .text._ZL18mainloop_safe_exitPv - 0x00000000 0xa esp-idf/openthread/libopenthread.a(esp_openthread.cpp.obj) - .text._ZL16hex_digit_to_intc - 0x00000000 0x3a esp-idf/openthread/libopenthread.a(esp_openthread.cpp.obj) - .text._ZL20hex_string_to_binaryPKcPhj - 0x00000000 0x72 esp-idf/openthread/libopenthread.a(esp_openthread.cpp.obj) - .rodata.esp_openthread_auto_start.str1.4 - 0x00000000 0x7d esp-idf/openthread/libopenthread.a(esp_openthread.cpp.obj) - .text.esp_openthread_auto_start - 0x00000000 0x14c esp-idf/openthread/libopenthread.a(esp_openthread.cpp.obj) - .text.esp_openthread_mainloop_exit - 0x00000000 0x12 esp-idf/openthread/libopenthread.a(esp_openthread.cpp.obj) - .text.esp_openthread_deinit - 0x00000000 0x28 esp-idf/openthread/libopenthread.a(esp_openthread.cpp.obj) - .text 0x00000000 0x0 esp-idf/openthread/libopenthread.a(esp_openthread_lock.c.obj) - .data 0x00000000 0x0 esp-idf/openthread/libopenthread.a(esp_openthread_lock.c.obj) - .bss 0x00000000 0x0 esp-idf/openthread/libopenthread.a(esp_openthread_lock.c.obj) - .text.esp_openthread_task_switching_lock_acquire - 0x00000000 0x2e esp-idf/openthread/libopenthread.a(esp_openthread_lock.c.obj) - .text.esp_openthread_task_switching_lock_release - 0x00000000 0x4c esp-idf/openthread/libopenthread.a(esp_openthread_lock.c.obj) - .text 0x00000000 0x0 esp-idf/openthread/libopenthread.a(esp_openthread_platform.cpp.obj) - .data 0x00000000 0x0 esp-idf/openthread/libopenthread.a(esp_openthread_platform.cpp.obj) - .bss 0x00000000 0x0 esp-idf/openthread/libopenthread.a(esp_openthread_platform.cpp.obj) - .text.esp_openthread_get_alloc_caps - 0x00000000 0x6 esp-idf/openthread/libopenthread.a(esp_openthread_platform.cpp.obj) - .text 0x00000000 0x0 esp-idf/openthread/libopenthread.a(esp_openthread_task_queue.c.obj) - .data 0x00000000 0x0 esp-idf/openthread/libopenthread.a(esp_openthread_task_queue.c.obj) - .bss 0x00000000 0x0 esp-idf/openthread/libopenthread.a(esp_openthread_task_queue.c.obj) - .iram1.0 0x00000000 0x94 esp-idf/openthread/libopenthread.a(esp_openthread_task_queue.c.obj) - .text 0x00000000 0x0 esp-idf/openthread/libopenthread.a(esp_openthread_alarm.c.obj) - .data 0x00000000 0x0 esp-idf/openthread/libopenthread.a(esp_openthread_alarm.c.obj) - .bss 0x00000000 0x0 esp-idf/openthread/libopenthread.a(esp_openthread_alarm.c.obj) - .text 0x00000000 0x0 esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - .data 0x00000000 0x0 esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - .bss 0x00000000 0x0 esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - .text.otPlatTimeGetXtalAccuracy - 0x00000000 0x4 esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - .text 0x00000000 0x0 esp-idf/openthread/libopenthread.a(esp_openthread_settings.c.obj) - .data 0x00000000 0x0 esp-idf/openthread/libopenthread.a(esp_openthread_settings.c.obj) - .bss 0x00000000 0x0 esp-idf/openthread/libopenthread.a(esp_openthread_settings.c.obj) - .rodata.find_target_key_using_index.part.0.constprop.0.str1.4 - 0x00000000 0x13 esp-idf/openthread/libopenthread.a(esp_openthread_settings.c.obj) - .text.find_target_key_using_index.part.0.constprop.0 - 0x00000000 0xbc esp-idf/openthread/libopenthread.a(esp_openthread_settings.c.obj) - .text.otPlatSettingsInit - 0x00000000 0x3c esp-idf/openthread/libopenthread.a(esp_openthread_settings.c.obj) - .text.otPlatSettingsDeinit - 0x00000000 0x14 esp-idf/openthread/libopenthread.a(esp_openthread_settings.c.obj) - .text.otPlatSettingsGet - 0x00000000 0x60 esp-idf/openthread/libopenthread.a(esp_openthread_settings.c.obj) - .rodata.otPlatSettingsSet.str1.4 - 0x00000000 0xb esp-idf/openthread/libopenthread.a(esp_openthread_settings.c.obj) - .text.otPlatSettingsSet - 0x00000000 0x6e esp-idf/openthread/libopenthread.a(esp_openthread_settings.c.obj) - .text.otPlatSettingsAdd - 0x00000000 0x112 esp-idf/openthread/libopenthread.a(esp_openthread_settings.c.obj) - .text.otPlatSettingsDelete - 0x00000000 0xee esp-idf/openthread/libopenthread.a(esp_openthread_settings.c.obj) - .text.otPlatSettingsWipe - 0x00000000 0x10 esp-idf/openthread/libopenthread.a(esp_openthread_settings.c.obj) - .sbss.s_unused_pos.0 - 0x00000000 0x1 esp-idf/openthread/libopenthread.a(esp_openthread_settings.c.obj) - .sbss.s_ot_nvs_handle - 0x00000000 0x4 esp-idf/openthread/libopenthread.a(esp_openthread_settings.c.obj) - .text 0x00000000 0x0 esp-idf/openthread/libopenthread.a(esp_openthread_spi_slave.c.obj) - .data 0x00000000 0x0 esp-idf/openthread/libopenthread.a(esp_openthread_spi_slave.c.obj) - .bss 0x00000000 0x0 esp-idf/openthread/libopenthread.a(esp_openthread_spi_slave.c.obj) - .iram1.3 0x00000000 0x20 esp-idf/openthread/libopenthread.a(esp_openthread_spi_slave.c.obj) - .iram1.4 0x00000000 0x6a esp-idf/openthread/libopenthread.a(esp_openthread_spi_slave.c.obj) - .text.esp_openthread_host_rcp_spi_init - 0x00000000 0x12a esp-idf/openthread/libopenthread.a(esp_openthread_spi_slave.c.obj) - .text.otPlatSpiSlaveEnable - 0x00000000 0x1c esp-idf/openthread/libopenthread.a(esp_openthread_spi_slave.c.obj) - .iram1.5 0x00000000 0xf2 esp-idf/openthread/libopenthread.a(esp_openthread_spi_slave.c.obj) - .sbss.s_complete_callback - 0x00000000 0x4 esp-idf/openthread/libopenthread.a(esp_openthread_spi_slave.c.obj) - .sbss.s_process_callback - 0x00000000 0x4 esp-idf/openthread/libopenthread.a(esp_openthread_spi_slave.c.obj) - .sbss.s_request_transaction - 0x00000000 0x1 esp-idf/openthread/libopenthread.a(esp_openthread_spi_slave.c.obj) - .sbss.s_input_len - 0x00000000 0x2 esp-idf/openthread/libopenthread.a(esp_openthread_spi_slave.c.obj) - .sbss.s_input_buf - 0x00000000 0x4 esp-idf/openthread/libopenthread.a(esp_openthread_spi_slave.c.obj) - .sbss.s_output_len - 0x00000000 0x2 esp-idf/openthread/libopenthread.a(esp_openthread_spi_slave.c.obj) - .sbss.s_output_buf - 0x00000000 0x4 esp-idf/openthread/libopenthread.a(esp_openthread_spi_slave.c.obj) - .sbss.s_context - 0x00000000 0x4 esp-idf/openthread/libopenthread.a(esp_openthread_spi_slave.c.obj) - .text 0x00000000 0x0 esp-idf/openthread/libopenthread.a(esp_openthread_uart.c.obj) - .data 0x00000000 0x0 esp-idf/openthread/libopenthread.a(esp_openthread_uart.c.obj) - .bss 0x00000000 0x0 esp-idf/openthread/libopenthread.a(esp_openthread_uart.c.obj) - .text.otPlatUartDisable - 0x00000000 0x4 esp-idf/openthread/libopenthread.a(esp_openthread_uart.c.obj) - .text.otPlatUartFlush - 0x00000000 0x4 esp-idf/openthread/libopenthread.a(esp_openthread_uart.c.obj) - .text 0x00000000 0x0 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - .data 0x00000000 0x0 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - .bss 0x00000000 0x0 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - .text.otMacFrameDoesAddrMatchAny - 0x00000000 0x9c esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - .text.otMacFrameDoesAddrMatch - 0x00000000 0xe esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - .text.otMacFrameIsAck - 0x00000000 0x10 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - .text.otMacFrameIsData - 0x00000000 0x10 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - .text.otMacFrameIsCommand - 0x00000000 0x10 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - .text.otMacFrameIsDataRequest - 0x00000000 0x8 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - .text.otMacFrameGetSrcAddr - 0x00000000 0x54 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - .text.otMacFrameGetDstAddr - 0x00000000 0x54 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - .text.otMacFrameGetSequence - 0x00000000 0x38 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - .text.otMacFrameProcessTransmitAesCcm - 0x00000000 0x8 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - .text.otMacFrameGenerateImmAck - 0x00000000 0x34 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - .text.otMacFrameIsKeyIdMode2 - 0x00000000 0x30 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - .text.otMacFrameGetFrameCounter - 0x00000000 0x24 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - .text.otMacFrameProcessTransmitSecurity - 0x00000000 0xe2 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - .text.otMacFrameProcessTxSfd - 0x00000000 0xe esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - .text 0x00000000 0x0 esp-idf/openthread/libopenthread.a(instance_api.cpp.obj) - .data 0x00000000 0x0 esp-idf/openthread/libopenthread.a(instance_api.cpp.obj) - .bss 0x00000000 0x0 esp-idf/openthread/libopenthread.a(instance_api.cpp.obj) - .text.otInstanceGetId - 0x00000000 0x6 esp-idf/openthread/libopenthread.a(instance_api.cpp.obj) - .text.otInstanceFinalize - 0x00000000 0x8 esp-idf/openthread/libopenthread.a(instance_api.cpp.obj) - .text.otGetRadioVersionString - 0x00000000 0x10 esp-idf/openthread/libopenthread.a(instance_api.cpp.obj) - .text 0x00000000 0x0 esp-idf/openthread/libopenthread.a(tasklet_api.cpp.obj) - .data 0x00000000 0x0 esp-idf/openthread/libopenthread.a(tasklet_api.cpp.obj) - .bss 0x00000000 0x0 esp-idf/openthread/libopenthread.a(tasklet_api.cpp.obj) - .text.otTaskletsSignalPending - 0x00000000 0x2 esp-idf/openthread/libopenthread.a(tasklet_api.cpp.obj) - .text 0x00000000 0x0 esp-idf/openthread/libopenthread.a(tasklet.cpp.obj) - .data 0x00000000 0x0 esp-idf/openthread/libopenthread.a(tasklet.cpp.obj) - .bss 0x00000000 0x0 esp-idf/openthread/libopenthread.a(tasklet.cpp.obj) - .text._ZN2ot7Tasklet9Scheduler13RemoveTaskletERS0_ - 0x00000000 0x22 esp-idf/openthread/libopenthread.a(tasklet.cpp.obj) - .text._ZN2ot7Tasklet6UnpostEv - 0x00000000 0x18 esp-idf/openthread/libopenthread.a(tasklet.cpp.obj) - .text 0x00000000 0x0 esp-idf/openthread/libopenthread.a(timer.cpp.obj) - .data 0x00000000 0x0 esp-idf/openthread/libopenthread.a(timer.cpp.obj) - .bss 0x00000000 0x0 esp-idf/openthread/libopenthread.a(timer.cpp.obj) - .text._ZN2ot12NextFireTimeC2Ev - 0x00000000 0x26 esp-idf/openthread/libopenthread.a(timer.cpp.obj) - .text._ZN2ot12NextFireTimeC2ENS_4TimeE - 0x00000000 0xe esp-idf/openthread/libopenthread.a(timer.cpp.obj) - .text._ZN2ot12NextFireTime15UpdateIfEarlierENS_4TimeE - 0x00000000 0x1c esp-idf/openthread/libopenthread.a(timer.cpp.obj) - .text._ZN2ot12NextFireTime26UpdateIfEarlierAndInFutureENS_4TimeE - 0x00000000 0x18 esp-idf/openthread/libopenthread.a(timer.cpp.obj) - .text._ZN2ot10TimerMilli4StopEv - 0x00000000 0x1a esp-idf/openthread/libopenthread.a(timer.cpp.obj) - .text._ZN2ot10TimerMilli6FireAtENS_4TimeE - 0x00000000 0x1c esp-idf/openthread/libopenthread.a(timer.cpp.obj) - .text._ZN2ot10TimerMilli7StartAtENS_4TimeEm - 0x00000000 0x34 esp-idf/openthread/libopenthread.a(timer.cpp.obj) - .text._ZN2ot10TimerMilli5StartEm - 0x00000000 0x2e esp-idf/openthread/libopenthread.a(timer.cpp.obj) - .text._ZN2ot10TimerMilli6FireAtERKNS_12NextFireTimeE - 0x00000000 0x34 esp-idf/openthread/libopenthread.a(timer.cpp.obj) - .text._ZN2ot10TimerMilli15FireAtIfEarlierENS_4TimeE - 0x00000000 0x1a esp-idf/openthread/libopenthread.a(timer.cpp.obj) - .text._ZN2ot10TimerMilli15FireAtIfEarlierERKNS_12NextFireTimeE - 0x00000000 0x1c esp-idf/openthread/libopenthread.a(timer.cpp.obj) - .text._ZN2ot5Timer9Scheduler9RemoveAllERKNS1_8AlarmApiE - 0x00000000 0x14 esp-idf/openthread/libopenthread.a(timer.cpp.obj) - .text._ZN2ot10TimerMilli9RemoveAllERNS_8InstanceE - 0x00000000 0x12 esp-idf/openthread/libopenthread.a(timer.cpp.obj) - .text._ZN2ot10TimerMicro9RemoveAllERNS_8InstanceE - 0x00000000 0x12 esp-idf/openthread/libopenthread.a(timer.cpp.obj) - .text 0x00000000 0x0 esp-idf/openthread/libopenthread.a(instance.cpp.obj) - .data 0x00000000 0x0 esp-idf/openthread/libopenthread.a(instance.cpp.obj) - .bss 0x00000000 0x0 esp-idf/openthread/libopenthread.a(instance.cpp.obj) - .text._ZN2ot8Instance9AfterInitEv - 0x00000000 0x8 esp-idf/openthread/libopenthread.a(instance.cpp.obj) - .text._ZN2ot8Instance8FinalizeEv - 0x00000000 0x36 esp-idf/openthread/libopenthread.a(instance.cpp.obj) - .text 0x00000000 0x0 esp-idf/openthread/libopenthread.a(link_raw.cpp.obj) - .data 0x00000000 0x0 esp-idf/openthread/libopenthread.a(link_raw.cpp.obj) - .bss 0x00000000 0x0 esp-idf/openthread/libopenthread.a(link_raw.cpp.obj) - .text 0x00000000 0x0 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - .data 0x00000000 0x0 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - .bss 0x00000000 0x0 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - .text._ZN2ot3Mac5Frame13SetAckRequestEb - 0x00000000 0x36 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - .text._ZNK2ot3Mac5Frame23GetSecurityControlFieldERh - 0x00000000 0x36 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - .text._ZNK2ot3Mac5Frame12GetKeySourceEv - 0x00000000 0x3e esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - .text._ZN2ot3Mac5Frame12SetKeySourceEPKh - 0x00000000 0x62 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - .text._ZNK2ot3Mac5Frame12ValidatePsduEv - 0x00000000 0x3c esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - .text._ZNK2ot3Mac5Frame12GetCommandIdERh - 0x00000000 0x52 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - .text._ZNK2ot3Mac5Frame20IsDataRequestCommandEv - 0x00000000 0x42 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - .text._ZNK2ot3Mac5Frame19GetMaxPayloadLengthEv - 0x00000000 0x32 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - .text._ZN2ot3Mac5Frame16SetPayloadLengthEt - 0x00000000 0x30 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - .text._ZNK2ot3Mac5Frame11GetHeaderIeEh - 0x00000000 0x66 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - .text._ZNK2ot3Mac5Frame8GetCslIeEv - 0x00000000 0x1e esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - .text._ZN2ot3Mac7TxFrame8CopyFromERKS1_ - 0x00000000 0x40 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - .text._ZN2ot3Mac7TxFrame14GenerateImmAckERKNS0_7RxFrameEb - 0x00000000 0x70 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - .text._ZN2ot3Mac7RxFrame20ProcessReceiveAesCcmERKNS0_10ExtAddressERKNS0_11KeyMaterialE - 0x00000000 0x4 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - .text 0x00000000 0x0 esp-idf/openthread/libopenthread.a(mac_header_ie.cpp.obj) - .data 0x00000000 0x0 esp-idf/openthread/libopenthread.a(mac_header_ie.cpp.obj) - .bss 0x00000000 0x0 esp-idf/openthread/libopenthread.a(mac_header_ie.cpp.obj) - .text 0x00000000 0x0 esp-idf/openthread/libopenthread.a(mac_types.cpp.obj) - .data 0x00000000 0x0 esp-idf/openthread/libopenthread.a(mac_types.cpp.obj) - .bss 0x00000000 0x0 esp-idf/openthread/libopenthread.a(mac_types.cpp.obj) - .text._ZN2ot3Mac19GenerateRandomPanIdEv - 0x00000000 0x24 esp-idf/openthread/libopenthread.a(mac_types.cpp.obj) - .text._ZNK2ot3Mac10ExtAddresseqERKS1_ - 0x00000000 0x1e esp-idf/openthread/libopenthread.a(mac_types.cpp.obj) - .text._ZNK2ot3Mac10ExtAddress8ToStringEv - 0x00000000 0x32 esp-idf/openthread/libopenthread.a(mac_types.cpp.obj) - .rodata._ZNK2ot3Mac7AddresseqERKS1_.str1.4 - 0x00000000 0x41 esp-idf/openthread/libopenthread.a(mac_types.cpp.obj) - .text._ZNK2ot3Mac7AddresseqERKS1_ - 0x00000000 0x60 esp-idf/openthread/libopenthread.a(mac_types.cpp.obj) - .rodata._ZNK2ot3Mac7Address8ToStringEv.str1.4 - 0x00000000 0xf esp-idf/openthread/libopenthread.a(mac_types.cpp.obj) - .text._ZNK2ot3Mac7Address8ToStringEv - 0x00000000 0x6a esp-idf/openthread/libopenthread.a(mac_types.cpp.obj) - .text._ZN2ot3Mac6PanIds9SetSourceEt - 0x00000000 0xc esp-idf/openthread/libopenthread.a(mac_types.cpp.obj) - .text._ZN2ot3Mac6PanIds24SetBothSourceDestinationEt - 0x00000000 0x12 esp-idf/openthread/libopenthread.a(mac_types.cpp.obj) - .text._ZNK2ot3Mac17LinkFrameCounters10GetMaximumEv - 0x00000000 0x4 esp-idf/openthread/libopenthread.a(mac_types.cpp.obj) - .text._ZN2ot3Mac17LinkFrameCounters6SetAllEm - 0x00000000 0x4 esp-idf/openthread/libopenthread.a(mac_types.cpp.obj) - .text._ZNK2ot3Mac11KeyMaterial10ExtractKeyERNS0_3KeyE - 0x00000000 0x10 esp-idf/openthread/libopenthread.a(mac_types.cpp.obj) - .text._ZNK2ot3Mac11KeyMaterialeqERKS1_ - 0x00000000 0x1e esp-idf/openthread/libopenthread.a(mac_types.cpp.obj) - .group 0x00000000 0xc esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - .text 0x00000000 0x0 esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - .data 0x00000000 0x0 esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - .bss 0x00000000 0x0 esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - .text._ZNK2ot3Mac6SubMac7GetRssiEv - 0x00000000 0x10 esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - .text._ZNK2ot3Mac6SubMac13GetNoiseFloorEv - 0x00000000 0x10 esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - .text._ZNK2ot3Mac6SubMac22ShouldHandleAckTimeoutEv - 0x00000000 0x4 esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - .text._ZNK2ot3Mac6SubMac22ShouldHandleEnergyScanEv - 0x00000000 0x4 esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - .text._ZNK2ot3Mac6SubMac29ShouldHandleTransitionToSleepEv - 0x00000000 0x18 esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - .text._ZN2ot3Mac6SubMac10RadioSleepEv - 0x00000000 0x42 esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - .text._ZN2ot3Mac6SubMac5SleepEv - 0x00000000 0x8 esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - .text._ZN2ot3Mac6SubMac8SetStateENS1_5StateE - 0x00000000 0xe esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - .text._ZN2ot3Mac6SubMac10StartTimerEm - 0x00000000 0xc esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - .text._ZN2ot3Mac6SubMac12StartTimerAtENS_4TimeEm - 0x00000000 0xc esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - .text._ZN2ot3Mac6SubMac13StateToStringENS1_5StateE - 0x00000000 0x10 esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - .rodata.str1.4 - 0x00000000 0x5c esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - .rodata._ZZN2ot3Mac6SubMac13StateToStringENS1_5StateEE13kStateStrings - 0x00000000 0x20 esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - .text 0x00000000 0x0 esp-idf/openthread/libopenthread.a(sub_mac_callbacks.cpp.obj) - .data 0x00000000 0x0 esp-idf/openthread/libopenthread.a(sub_mac_callbacks.cpp.obj) - .bss 0x00000000 0x0 esp-idf/openthread/libopenthread.a(sub_mac_callbacks.cpp.obj) - .text 0x00000000 0x0 esp-idf/openthread/libopenthread.a(radio.cpp.obj) - .data 0x00000000 0x0 esp-idf/openthread/libopenthread.a(radio.cpp.obj) - .bss 0x00000000 0x0 esp-idf/openthread/libopenthread.a(radio.cpp.obj) - .srodata._ZN2ot5Radio22kSupportedChannelPagesE - 0x00000000 0x1 esp-idf/openthread/libopenthread.a(radio.cpp.obj) - .text 0x00000000 0x0 esp-idf/openthread/libopenthread.a(radio_platform.cpp.obj) - .data 0x00000000 0x0 esp-idf/openthread/libopenthread.a(radio_platform.cpp.obj) - .bss 0x00000000 0x0 esp-idf/openthread/libopenthread.a(radio_platform.cpp.obj) - .text.otPlatRadioBusLatencyChanged - 0x00000000 0x22 esp-idf/openthread/libopenthread.a(radio_platform.cpp.obj) - .text.otPlatRadioGetSupportedChannelMask - 0x00000000 0xa esp-idf/openthread/libopenthread.a(radio_platform.cpp.obj) - .text.otPlatRadioGetPreferredChannelMask - 0x00000000 0x8 esp-idf/openthread/libopenthread.a(radio_platform.cpp.obj) - .text.otPlatRadioGetVersionString - 0x00000000 0x8 esp-idf/openthread/libopenthread.a(radio_platform.cpp.obj) - .text.otPlatRadioGetState - 0x00000000 0x6 esp-idf/openthread/libopenthread.a(radio_platform.cpp.obj) - .text.otPlatRadioSetMacKey - 0x00000000 0x2 esp-idf/openthread/libopenthread.a(radio_platform.cpp.obj) - .text.otPlatRadioSetMacFrameCounter - 0x00000000 0x2 esp-idf/openthread/libopenthread.a(radio_platform.cpp.obj) - .text.otPlatRadioSetMacFrameCounterIfLarger - 0x00000000 0x8 esp-idf/openthread/libopenthread.a(radio_platform.cpp.obj) - .text.otPlatTimeGet - 0x00000000 0x6 esp-idf/openthread/libopenthread.a(radio_platform.cpp.obj) - .text.otPlatRadioGetNow - 0x00000000 0x8 esp-idf/openthread/libopenthread.a(radio_platform.cpp.obj) - .text.otPlatRadioGetBusSpeed - 0x00000000 0x4 esp-idf/openthread/libopenthread.a(radio_platform.cpp.obj) - .text.otPlatRadioGetBusLatency - 0x00000000 0x4 esp-idf/openthread/libopenthread.a(radio_platform.cpp.obj) - .text.otPlatRadioGetCslAccuracy - 0x00000000 0x6 esp-idf/openthread/libopenthread.a(radio_platform.cpp.obj) - .text.otPlatRadioGetCslUncertainty - 0x00000000 0x6 esp-idf/openthread/libopenthread.a(radio_platform.cpp.obj) - .text.otPlatRadioSetChannelMaxTransmitPower - 0x00000000 0x4 esp-idf/openthread/libopenthread.a(radio_platform.cpp.obj) - .text.otPlatRadioReceiveAt - 0x00000000 0x4 esp-idf/openthread/libopenthread.a(radio_platform.cpp.obj) - .text.otPlatRadioSetRxOnWhenIdle - 0x00000000 0x2 esp-idf/openthread/libopenthread.a(radio_platform.cpp.obj) - .text.otPlatRadioSetChannelTargetPower - 0x00000000 0x4 esp-idf/openthread/libopenthread.a(radio_platform.cpp.obj) - .text 0x00000000 0x0 esp-idf/openthread/libopenthread.a(ncp.c.obj) - .data 0x00000000 0x0 esp-idf/openthread/libopenthread.a(ncp.c.obj) - .bss 0x00000000 0x0 esp-idf/openthread/libopenthread.a(ncp.c.obj) - .text 0x00000000 0x0 esp-idf/openthread/libopenthread.a(esp_openthread_ncp.cpp.obj) - .data 0x00000000 0x0 esp-idf/openthread/libopenthread.a(esp_openthread_ncp.cpp.obj) - .bss 0x00000000 0x0 esp-idf/openthread/libopenthread.a(esp_openthread_ncp.cpp.obj) - .text 0x00000000 0x0 esp-idf/openthread/libopenthread.a(esp_openthread_ncp_hdlc.cpp.obj) - .data 0x00000000 0x0 esp-idf/openthread/libopenthread.a(esp_openthread_ncp_hdlc.cpp.obj) - .bss 0x00000000 0x0 esp-idf/openthread/libopenthread.a(esp_openthread_ncp_hdlc.cpp.obj) - .text 0x00000000 0x0 esp-idf/openthread/libopenthread.a(esp_openthread_logging.c.obj) - .data 0x00000000 0x0 esp-idf/openthread/libopenthread.a(esp_openthread_logging.c.obj) - .bss 0x00000000 0x0 esp-idf/openthread/libopenthread.a(esp_openthread_logging.c.obj) - .text 0x00000000 0x0 esp-idf/openthread/libopenthread.a(esp_openthread_misc.c.obj) - .data 0x00000000 0x0 esp-idf/openthread/libopenthread.a(esp_openthread_misc.c.obj) - .bss 0x00000000 0x0 esp-idf/openthread/libopenthread.a(esp_openthread_misc.c.obj) - .text.otPlatSetMcuPowerState - 0x00000000 0x12 esp-idf/openthread/libopenthread.a(esp_openthread_misc.c.obj) - .text.otPlatGetMcuPowerState - 0x00000000 0xa esp-idf/openthread/libopenthread.a(esp_openthread_misc.c.obj) - .sbss.s_mcu_power_state - 0x00000000 0x4 esp-idf/openthread/libopenthread.a(esp_openthread_misc.c.obj) - .text 0x00000000 0x0 esp-idf/openthread/libopenthread.a(frame_builder.cpp.obj) - .data 0x00000000 0x0 esp-idf/openthread/libopenthread.a(frame_builder.cpp.obj) - .bss 0x00000000 0x0 esp-idf/openthread/libopenthread.a(frame_builder.cpp.obj) - .text._ZN2ot12FrameBuilder21AppendBigEndianUint16Et - 0x00000000 0x2e esp-idf/openthread/libopenthread.a(frame_builder.cpp.obj) - .text._ZN2ot12FrameBuilder21AppendBigEndianUint32Em - 0x00000000 0x44 esp-idf/openthread/libopenthread.a(frame_builder.cpp.obj) - .text._ZN2ot12FrameBuilder24AppendLittleEndianUint32Em - 0x00000000 0x22 esp-idf/openthread/libopenthread.a(frame_builder.cpp.obj) - .text._ZN2ot12FrameBuilder10WriteBytesEtPKvt - 0x00000000 0x12 esp-idf/openthread/libopenthread.a(frame_builder.cpp.obj) - .rodata._ZN2ot12FrameBuilder11InsertBytesEtPKvt.str1.4 - 0x00000000 0x48 esp-idf/openthread/libopenthread.a(frame_builder.cpp.obj) - .text._ZN2ot12FrameBuilder11InsertBytesEtPKvt - 0x00000000 0x74 esp-idf/openthread/libopenthread.a(frame_builder.cpp.obj) - .text._ZN2ot12FrameBuilder11RemoveBytesEtt - 0x00000000 0x38 esp-idf/openthread/libopenthread.a(frame_builder.cpp.obj) - .text 0x00000000 0x0 esp-idf/openthread/libopenthread.a(random.cpp.obj) - .data 0x00000000 0x0 esp-idf/openthread/libopenthread.a(random.cpp.obj) - .bss 0x00000000 0x0 esp-idf/openthread/libopenthread.a(random.cpp.obj) - .text._ZN2ot6Random7ManagerD2Ev - 0x00000000 0x30 esp-idf/openthread/libopenthread.a(random.cpp.obj) - .text._ZN2ot6Random9NonCrypto15GetUint8InRangeEhh - 0x00000000 0x46 esp-idf/openthread/libopenthread.a(random.cpp.obj) - .text._ZN2ot6Random9NonCrypto16GetUint16InRangeEtt - 0x00000000 0x46 esp-idf/openthread/libopenthread.a(random.cpp.obj) - .text._ZN2ot6Random9NonCrypto10FillBufferEPht - 0x00000000 0x34 esp-idf/openthread/libopenthread.a(random.cpp.obj) - .text._ZN2ot6Random9NonCrypto9AddJitterEmt - 0x00000000 0x36 esp-idf/openthread/libopenthread.a(random.cpp.obj) - .text 0x00000000 0x0 esp-idf/openthread/libopenthread.a(string.cpp.obj) - .data 0x00000000 0x0 esp-idf/openthread/libopenthread.a(string.cpp.obj) - .bss 0x00000000 0x0 esp-idf/openthread/libopenthread.a(string.cpp.obj) - .text._ZN2ot12StringLengthEPKct - 0x00000000 0x22 esp-idf/openthread/libopenthread.a(string.cpp.obj) - .text._ZN2ot10StringFindEPKcc - 0x00000000 0x12 esp-idf/openthread/libopenthread.a(string.cpp.obj) - .text._ZN2ot14StringEndsWithEPKcc - 0x00000000 0x2e esp-idf/openthread/libopenthread.a(string.cpp.obj) - .text._ZN2ot16StringParseUint8ERPKcRhh - 0x00000000 0x3e esp-idf/openthread/libopenthread.a(string.cpp.obj) - .text._ZN2ot16StringParseUint8ERPKcRh - 0x00000000 0xc esp-idf/openthread/libopenthread.a(string.cpp.obj) - .text._ZN2ot11ToLowercaseEc - 0x00000000 0x18 esp-idf/openthread/libopenthread.a(string.cpp.obj) - .text._ZN2ot12_GLOBAL__N_15MatchEPKcS2_NS_15StringMatchModeE - 0x00000000 0x6a esp-idf/openthread/libopenthread.a(string.cpp.obj) - .text._ZN2ot10StringFindEPKcS1_NS_15StringMatchModeE - 0x00000000 0x50 esp-idf/openthread/libopenthread.a(string.cpp.obj) - .text._ZN2ot16StringStartsWithEPKcS1_NS_15StringMatchModeE - 0x00000000 0x1c esp-idf/openthread/libopenthread.a(string.cpp.obj) - .text._ZN2ot14StringEndsWithEPKcS1_NS_15StringMatchModeE - 0x00000000 0x50 esp-idf/openthread/libopenthread.a(string.cpp.obj) - .text._ZN2ot11StringMatchEPKcS1_ - 0x00000000 0x20 esp-idf/openthread/libopenthread.a(string.cpp.obj) - .text._ZN2ot11StringMatchEPKcS1_NS_15StringMatchModeE - 0x00000000 0x1e esp-idf/openthread/libopenthread.a(string.cpp.obj) - .text._ZN2ot24StringConvertToLowercaseEPc - 0x00000000 0x28 esp-idf/openthread/libopenthread.a(string.cpp.obj) - .text._ZN2ot11ToUppercaseEc - 0x00000000 0x16 esp-idf/openthread/libopenthread.a(string.cpp.obj) - .text._ZN2ot24StringConvertToUppercaseEPc - 0x00000000 0x28 esp-idf/openthread/libopenthread.a(string.cpp.obj) - .text._ZN2ot7IsDigitEc - 0x00000000 0xa esp-idf/openthread/libopenthread.a(string.cpp.obj) - .text._ZN2ot11IsUppercaseEc - 0x00000000 0xa esp-idf/openthread/libopenthread.a(string.cpp.obj) - .text._ZN2ot11IsLowercaseEc - 0x00000000 0xa esp-idf/openthread/libopenthread.a(string.cpp.obj) - .text._ZN2ot10ParseDigitEcRh - 0x00000000 0x1a esp-idf/openthread/libopenthread.a(string.cpp.obj) - .text._ZN2ot13ParseHexDigitEcRh - 0x00000000 0x44 esp-idf/openthread/libopenthread.a(string.cpp.obj) - .text._ZN2ot7ToYesNoEb - 0x00000000 0x10 esp-idf/openthread/libopenthread.a(string.cpp.obj) - .text._ZN2ot12StringWriterC2EPct - 0x00000000 0x10 esp-idf/openthread/libopenthread.a(string.cpp.obj) - .text._ZN2ot12StringWriter5ClearEv - 0x00000000 0xc esp-idf/openthread/libopenthread.a(string.cpp.obj) - .rodata._ZN2ot12StringWriter13AppendVarArgsEPKcPv.str1.4 - 0x00000000 0x41 esp-idf/openthread/libopenthread.a(string.cpp.obj) - .text._ZN2ot12StringWriter13AppendVarArgsEPKcPv - 0x00000000 0x70 esp-idf/openthread/libopenthread.a(string.cpp.obj) - .text._ZN2ot12StringWriter6AppendEPKcz - 0x00000000 0x2a esp-idf/openthread/libopenthread.a(string.cpp.obj) - .rodata._ZN2ot12StringWriter14AppendHexBytesEPKht.str1.4 - 0x00000000 0x5 esp-idf/openthread/libopenthread.a(string.cpp.obj) - .text._ZN2ot12StringWriter14AppendHexBytesEPKht - 0x00000000 0x42 esp-idf/openthread/libopenthread.a(string.cpp.obj) - .rodata._ZN2ot12StringWriter23AppendCharMultipleTimesEct.str1.4 - 0x00000000 0x3 esp-idf/openthread/libopenthread.a(string.cpp.obj) - .text._ZN2ot12StringWriter23AppendCharMultipleTimesEct - 0x00000000 0x36 esp-idf/openthread/libopenthread.a(string.cpp.obj) - .text._ZN2ot17IsValidUtf8StringEPKcj - 0x00000000 0x8c esp-idf/openthread/libopenthread.a(string.cpp.obj) - .text._ZN2ot17IsValidUtf8StringEPKc - 0x00000000 0x26 esp-idf/openthread/libopenthread.a(string.cpp.obj) - .text._ZN2ot10StringCopyEPctPKcNS_19StringEncodingCheckE - 0x00000000 0x5a esp-idf/openthread/libopenthread.a(string.cpp.obj) - .rodata.str1.4 - 0x00000000 0x8 esp-idf/openthread/libopenthread.a(string.cpp.obj) - .srodata._ZZN2ot7ToYesNoEbE13kYesNoStrings - 0x00000000 0x8 esp-idf/openthread/libopenthread.a(string.cpp.obj) - .debug_info 0x00000000 0x1ee3 esp-idf/openthread/libopenthread.a(string.cpp.obj) - .debug_abbrev 0x00000000 0x5a7 esp-idf/openthread/libopenthread.a(string.cpp.obj) - .debug_loc 0x00000000 0xbd7 esp-idf/openthread/libopenthread.a(string.cpp.obj) - .debug_aranges - 0x00000000 0x108 esp-idf/openthread/libopenthread.a(string.cpp.obj) - .debug_ranges 0x00000000 0x130 esp-idf/openthread/libopenthread.a(string.cpp.obj) - .debug_line 0x00000000 0x14ff esp-idf/openthread/libopenthread.a(string.cpp.obj) - .debug_str 0x00000000 0x12f3 esp-idf/openthread/libopenthread.a(string.cpp.obj) - .comment 0x00000000 0x30 esp-idf/openthread/libopenthread.a(string.cpp.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/openthread/libopenthread.a(string.cpp.obj) - .debug_frame 0x00000000 0x320 esp-idf/openthread/libopenthread.a(string.cpp.obj) - .riscv.attributes - 0x00000000 0x5c esp-idf/openthread/libopenthread.a(string.cpp.obj) - .text 0x00000000 0x0 esp-idf/openthread/libopenthread.a(aes_ccm.cpp.obj) - .data 0x00000000 0x0 esp-idf/openthread/libopenthread.a(aes_ccm.cpp.obj) - .bss 0x00000000 0x0 esp-idf/openthread/libopenthread.a(aes_ccm.cpp.obj) - .text._ZN2ot6Crypto6AesCcm6SetKeyEPKht - 0x00000000 0x24 esp-idf/openthread/libopenthread.a(aes_ccm.cpp.obj) - .text 0x00000000 0x0 esp-idf/openthread/libopenthread.a(aes_ecb.cpp.obj) - .data 0x00000000 0x0 esp-idf/openthread/libopenthread.a(aes_ecb.cpp.obj) - .bss 0x00000000 0x0 esp-idf/openthread/libopenthread.a(aes_ecb.cpp.obj) - .text 0x00000000 0x0 esp-idf/openthread/libopenthread.a(crypto_platform.cpp.obj) - .data 0x00000000 0x0 esp-idf/openthread/libopenthread.a(crypto_platform.cpp.obj) - .bss 0x00000000 0x0 esp-idf/openthread/libopenthread.a(crypto_platform.cpp.obj) - .text.otPlatCryptoInit - 0x00000000 0x2 esp-idf/openthread/libopenthread.a(crypto_platform.cpp.obj) - .text 0x00000000 0x0 esp-idf/openthread/libopenthread.a(storage.cpp.obj) - .data 0x00000000 0x0 esp-idf/openthread/libopenthread.a(storage.cpp.obj) - .bss 0x00000000 0x0 esp-idf/openthread/libopenthread.a(storage.cpp.obj) - .text 0x00000000 0x0 esp-idf/openthread/libopenthread.a(radio_callbacks.cpp.obj) - .data 0x00000000 0x0 esp-idf/openthread/libopenthread.a(radio_callbacks.cpp.obj) - .bss 0x00000000 0x0 esp-idf/openthread/libopenthread.a(radio_callbacks.cpp.obj) - .text._ZN2ot5Radio9Callbacks23HandleBusLatencyChangedEv - 0x00000000 0x2 esp-idf/openthread/libopenthread.a(radio_callbacks.cpp.obj) - .text 0x00000000 0x0 esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) - .data 0x00000000 0x0 esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) - .bss 0x00000000 0x0 esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) - .text._ZN2ot6Spinel7Decoder9ReadInt16ERs - 0x00000000 0x2c esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) - .text._ZN2ot6Spinel7Decoder9ReadInt64ERx - 0x00000000 0x2a esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) - .text._ZN2ot6Spinel7Decoder14ReadIp6AddressER17spinel_ipv6addr_t - 0x00000000 0x22 esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) - .text._ZN2ot6Spinel7Decoder14ReadIp6AddressER12otIp6Address - 0x00000000 0x22 esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) - .text._ZN2ot6Spinel7Decoder9ReadEui64ER14spinel_eui64_t - 0x00000000 0x22 esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) - .text._ZN2ot6Spinel7Decoder9ReadEui64ER12otExtAddress - 0x00000000 0x22 esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) - .text._ZN2ot6Spinel7Decoder9ReadEui48ER14spinel_eui48_t - 0x00000000 0x22 esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) - .text._ZN2ot6Spinel7Decoder8ReadUtf8ERPKc - 0x00000000 0x62 esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) - .text._ZN2ot6Spinel7Decoder10OpenStructEv - 0x00000000 0x62 esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) - .text._ZN2ot6Spinel7Decoder11CloseStructEv - 0x00000000 0x46 esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) - .group 0x00000000 0xc esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - .text 0x00000000 0x0 esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - .data 0x00000000 0x0 esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - .bss 0x00000000 0x0 esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - .text._ZNK2ot3Ncp7NcpBase16GetCurCommandIidEv - 0x00000000 0xa esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - .text._ZN2ot3Ncp7NcpBase13ResetCountersEv - 0x00000000 0x16 esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - .text._ZN2ot3Ncp7NcpBase23GetLastOutboundFrameTagEv - 0x00000000 0xa esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - .text._ZN2ot3Ncp7NcpBase16ConvertLogRegionE11otLogRegion - 0x00000000 0xa2 esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - .text._ZN2ot3Ncp7NcpBase3LogEi11otLogRegionPKc - 0x00000000 0xf0 esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - .text._ZN2ot3Ncp7NcpBase28GetWrappedResponseQueueIndexEh - 0x00000000 0x10 esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - .text._ZN2ot3Ncp7NcpBase17HandlePropertyGetILm4104EEE7otErrorv - 0x00000000 0x64 esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - .text._ZN2ot3Ncp7NcpBase17HandlePropertySetILm4104EEE7otErrorv - 0x00000000 0x70 esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - .text._ZN2ot3Ncp7NcpBase17HandlePropertyGetILm4105EEE7otErrorv - 0x00000000 0x54 esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - .text 0x00000000 0x0 esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) - .data 0x00000000 0x0 esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) - .bss 0x00000000 0x0 esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) - .rodata._ZN2ot3Ncp7NcpBase19FindPropertyHandlerEPKNS1_12HandlerEntryEjm.str1.4 - 0x00000000 0x46 esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) - .text._ZN2ot3Ncp7NcpBase19FindPropertyHandlerEPKNS1_12HandlerEntryEjm - 0x00000000 0x34 esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) - .text 0x00000000 0x0 esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - .data 0x00000000 0x0 esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - .bss 0x00000000 0x0 esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - .text 0x00000000 0x0 esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) - .data 0x00000000 0x0 esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) - .bss 0x00000000 0x0 esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) - .text._ZN2ot3Ncp7NcpHdlc21HandleHdlcReceiveDoneEPKht - 0x00000000 0x10 esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) - .text 0x00000000 0x0 esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - .data 0x00000000 0x0 esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - .bss 0x00000000 0x0 esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - .text.otLinkRawGetRssi - 0x00000000 0x10 esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - .text.otThreadGetDeviceRole - 0x00000000 0x4 esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - .text 0x00000000 0x0 esp-idf/openthread/libopenthread.a(logging_api.cpp.obj) - .data 0x00000000 0x0 esp-idf/openthread/libopenthread.a(logging_api.cpp.obj) - .bss 0x00000000 0x0 esp-idf/openthread/libopenthread.a(logging_api.cpp.obj) - .text.otLogCritPlat - 0x00000000 0x14 esp-idf/openthread/libopenthread.a(logging_api.cpp.obj) - .text.otLogWarnPlat - 0x00000000 0x14 esp-idf/openthread/libopenthread.a(logging_api.cpp.obj) - .text.otLogNotePlat - 0x00000000 0x14 esp-idf/openthread/libopenthread.a(logging_api.cpp.obj) - .text.otLogInfoPlat - 0x00000000 0x14 esp-idf/openthread/libopenthread.a(logging_api.cpp.obj) - .text.otLogDebgPlat - 0x00000000 0x14 esp-idf/openthread/libopenthread.a(logging_api.cpp.obj) - .text.otDumpCritPlat - 0x00000000 0x2 esp-idf/openthread/libopenthread.a(logging_api.cpp.obj) - .text.otDumpWarnPlat - 0x00000000 0x2 esp-idf/openthread/libopenthread.a(logging_api.cpp.obj) - .text.otDumpNotePlat - 0x00000000 0x2 esp-idf/openthread/libopenthread.a(logging_api.cpp.obj) - .text.otDumpInfoPlat - 0x00000000 0x2 esp-idf/openthread/libopenthread.a(logging_api.cpp.obj) - .text.otDumpDebgPlat - 0x00000000 0x2 esp-idf/openthread/libopenthread.a(logging_api.cpp.obj) - .rodata.otLogPlatArgs.str1.4 - 0x00000000 0x49 esp-idf/openthread/libopenthread.a(logging_api.cpp.obj) - .text.otLogPlatArgs - 0x00000000 0x6c esp-idf/openthread/libopenthread.a(logging_api.cpp.obj) - .text.otLogPlat - 0x00000000 0x20 esp-idf/openthread/libopenthread.a(logging_api.cpp.obj) - .text.otLogCli - 0x00000000 0x4c esp-idf/openthread/libopenthread.a(logging_api.cpp.obj) - .text.otLogGenerateNextHexDumpLine - 0x00000000 0x8 esp-idf/openthread/libopenthread.a(logging_api.cpp.obj) - .srodata._ZZ8otLogCliE14kCliModuleName - 0x00000000 0x4 esp-idf/openthread/libopenthread.a(logging_api.cpp.obj) - .group 0x00000000 0xc esp-idf/openthread/libopenthread.a(log.cpp.obj) - .group 0x00000000 0xc esp-idf/openthread/libopenthread.a(log.cpp.obj) - .group 0x00000000 0xc esp-idf/openthread/libopenthread.a(log.cpp.obj) - .group 0x00000000 0xc esp-idf/openthread/libopenthread.a(log.cpp.obj) - .group 0x00000000 0xc esp-idf/openthread/libopenthread.a(log.cpp.obj) - .group 0x00000000 0xc esp-idf/openthread/libopenthread.a(log.cpp.obj) - .group 0x00000000 0xc esp-idf/openthread/libopenthread.a(log.cpp.obj) - .group 0x00000000 0xc esp-idf/openthread/libopenthread.a(log.cpp.obj) - .group 0x00000000 0xc esp-idf/openthread/libopenthread.a(log.cpp.obj) - .group 0x00000000 0xc esp-idf/openthread/libopenthread.a(log.cpp.obj) - .group 0x00000000 0xc esp-idf/openthread/libopenthread.a(log.cpp.obj) - .group 0x00000000 0xc esp-idf/openthread/libopenthread.a(log.cpp.obj) - .text 0x00000000 0x0 esp-idf/openthread/libopenthread.a(log.cpp.obj) - .data 0x00000000 0x0 esp-idf/openthread/libopenthread.a(log.cpp.obj) - .bss 0x00000000 0x0 esp-idf/openthread/libopenthread.a(log.cpp.obj) - .rodata._ZN2ot6Logger10LogVarArgsEPKcNS_8LogLevelES2_Pv.str1.4 - 0x00000000 0x1b esp-idf/openthread/libopenthread.a(log.cpp.obj) - .text._ZN2ot6Logger10LogVarArgsEPKcNS_8LogLevelES2_Pv - 0x00000000 0xb4 esp-idf/openthread/libopenthread.a(log.cpp.obj) - .text._ZN2ot6Logger10LogAtLevelILNS_8LogLevelE0EEEvPKcS4_z - 0x00000000 0x26 esp-idf/openthread/libopenthread.a(log.cpp.obj) - .text._ZN2ot6Logger10LogAtLevelILNS_8LogLevelE1EEEvPKcS4_z - 0x00000000 0x26 esp-idf/openthread/libopenthread.a(log.cpp.obj) - .text._ZN2ot6Logger10LogAtLevelILNS_8LogLevelE2EEEvPKcS4_z - 0x00000000 0x26 esp-idf/openthread/libopenthread.a(log.cpp.obj) - .text._ZN2ot6Logger10LogAtLevelILNS_8LogLevelE3EEEvPKcS4_z - 0x00000000 0x26 esp-idf/openthread/libopenthread.a(log.cpp.obj) - .text._ZN2ot6Logger10LogAtLevelILNS_8LogLevelE4EEEvPKcS4_z - 0x00000000 0x26 esp-idf/openthread/libopenthread.a(log.cpp.obj) - .text._ZN2ot6Logger10LogAtLevelILNS_8LogLevelE5EEEvPKcS4_z - 0x00000000 0x26 esp-idf/openthread/libopenthread.a(log.cpp.obj) - .text._ZN2ot6Logger11LogInModuleEPKcNS_8LogLevelES2_z - 0x00000000 0x20 esp-idf/openthread/libopenthread.a(log.cpp.obj) - .rodata._ZN2ot23GenerateNextHexDumpLineER16otLogHexDumpInfo.str1.4 - 0x00000000 0x2b esp-idf/openthread/libopenthread.a(log.cpp.obj) - .text._ZN2ot23GenerateNextHexDumpLineER16otLogHexDumpInfo - 0x00000000 0x1e8 esp-idf/openthread/libopenthread.a(log.cpp.obj) - .text._ZN2ot6Logger12DumpInModuleEPKcNS_8LogLevelES2_PKvt - 0x00000000 0x5a esp-idf/openthread/libopenthread.a(log.cpp.obj) - .text._ZN2ot6Logger11DumpAtLevelILNS_8LogLevelE0EEEvPKcS4_PKvt - 0x00000000 0x10 esp-idf/openthread/libopenthread.a(log.cpp.obj) - .text._ZN2ot6Logger11DumpAtLevelILNS_8LogLevelE1EEEvPKcS4_PKvt - 0x00000000 0x10 esp-idf/openthread/libopenthread.a(log.cpp.obj) - .text._ZN2ot6Logger11DumpAtLevelILNS_8LogLevelE2EEEvPKcS4_PKvt - 0x00000000 0x10 esp-idf/openthread/libopenthread.a(log.cpp.obj) - .text._ZN2ot6Logger11DumpAtLevelILNS_8LogLevelE3EEEvPKcS4_PKvt - 0x00000000 0x10 esp-idf/openthread/libopenthread.a(log.cpp.obj) - .text._ZN2ot6Logger11DumpAtLevelILNS_8LogLevelE4EEEvPKcS4_PKvt - 0x00000000 0x10 esp-idf/openthread/libopenthread.a(log.cpp.obj) - .text._ZN2ot6Logger11DumpAtLevelILNS_8LogLevelE5EEEvPKcS4_PKvt - 0x00000000 0x10 esp-idf/openthread/libopenthread.a(log.cpp.obj) - .srodata._ZZN2ot6Logger10LogVarArgsEPKcNS_8LogLevelES2_PvE11kLevelChars - 0x00000000 0x6 esp-idf/openthread/libopenthread.a(log.cpp.obj) - .rodata._ZZN2ot6Logger10LogVarArgsEPKcNS_8LogLevelES2_PvE18kModuleNamePadding - 0x00000000 0xf esp-idf/openthread/libopenthread.a(log.cpp.obj) - .debug_info 0x00000000 0x254c esp-idf/openthread/libopenthread.a(log.cpp.obj) - .debug_abbrev 0x00000000 0x513 esp-idf/openthread/libopenthread.a(log.cpp.obj) - .debug_loc 0x00000000 0x9ea esp-idf/openthread/libopenthread.a(log.cpp.obj) - .debug_aranges - 0x00000000 0x98 esp-idf/openthread/libopenthread.a(log.cpp.obj) - .debug_ranges 0x00000000 0x140 esp-idf/openthread/libopenthread.a(log.cpp.obj) - .debug_line 0x00000000 0x10fb esp-idf/openthread/libopenthread.a(log.cpp.obj) - .debug_str 0x00000000 0x1a76 esp-idf/openthread/libopenthread.a(log.cpp.obj) - .comment 0x00000000 0x30 esp-idf/openthread/libopenthread.a(log.cpp.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/openthread/libopenthread.a(log.cpp.obj) - .debug_frame 0x00000000 0x1d8 esp-idf/openthread/libopenthread.a(log.cpp.obj) - .riscv.attributes - 0x00000000 0x5c esp-idf/openthread/libopenthread.a(log.cpp.obj) - .group 0x00000000 0xc esp-idf/openthread/libopenthread.a(hdlc.cpp.obj) - .text 0x00000000 0x0 esp-idf/openthread/libopenthread.a(hdlc.cpp.obj) - .data 0x00000000 0x0 esp-idf/openthread/libopenthread.a(hdlc.cpp.obj) - .bss 0x00000000 0x0 esp-idf/openthread/libopenthread.a(hdlc.cpp.obj) - .text._ZN2ot4Hdlc7Encoder6EncodeEPKht - 0x00000000 0x64 esp-idf/openthread/libopenthread.a(hdlc.cpp.obj) - .text._ZN2ot4Hdlc7Decoder5ResetEv - 0x00000000 0xa esp-idf/openthread/libopenthread.a(hdlc.cpp.obj) - .text 0x00000000 0x0 esp-idf/openthread/libopenthread.a(spinel.c.obj) - .data 0x00000000 0x0 esp-idf/openthread/libopenthread.a(spinel.c.obj) - .bss 0x00000000 0x0 esp-idf/openthread/libopenthread.a(spinel.c.obj) - .rodata.spinel_to_cstr.str1.4 - 0x00000000 0x8 esp-idf/openthread/libopenthread.a(spinel.c.obj) - .text.spinel_to_cstr - 0x00000000 0x1a esp-idf/openthread/libopenthread.a(spinel.c.obj) - .text.spinel_next_packed_datatype - 0x00000000 0x38 esp-idf/openthread/libopenthread.a(spinel.c.obj) - .text.spinel_datatype_unpack - 0x00000000 0x2a esp-idf/openthread/libopenthread.a(spinel.c.obj) - .rodata.spinel_datatype_vunpack_.str1.4 - 0x00000000 0x2 esp-idf/openthread/libopenthread.a(spinel.c.obj) - .text.spinel_datatype_vunpack_ - 0x00000000 0x530 esp-idf/openthread/libopenthread.a(spinel.c.obj) - .text.spinel_datatype_unpack_in_place - 0x00000000 0x2a esp-idf/openthread/libopenthread.a(spinel.c.obj) - .text.spinel_datatype_vunpack_in_place - 0x00000000 0x28 esp-idf/openthread/libopenthread.a(spinel.c.obj) - .text.spinel_datatype_vunpack - 0x00000000 0x28 esp-idf/openthread/libopenthread.a(spinel.c.obj) - .text.spinel_datatype_pack - 0x00000000 0x22 esp-idf/openthread/libopenthread.a(spinel.c.obj) - .rodata.spinel_datatype_vpack_.str1.4 - 0x00000000 0x1 esp-idf/openthread/libopenthread.a(spinel.c.obj) - .text.spinel_datatype_vpack_ - 0x00000000 0x3ea esp-idf/openthread/libopenthread.a(spinel.c.obj) - .text.spinel_datatype_vpack - 0x00000000 0x20 esp-idf/openthread/libopenthread.a(spinel.c.obj) - .text.spinel_command_to_cstr - 0x00000000 0x12 esp-idf/openthread/libopenthread.a(spinel.c.obj) - .text.spinel_prop_key_to_cstr - 0x00000000 0x12 esp-idf/openthread/libopenthread.a(spinel.c.obj) - .text.spinel_net_role_to_cstr - 0x00000000 0x12 esp-idf/openthread/libopenthread.a(spinel.c.obj) - .text.spinel_mcu_power_state_to_cstr - 0x00000000 0x12 esp-idf/openthread/libopenthread.a(spinel.c.obj) - .text.spinel_status_to_cstr - 0x00000000 0x12 esp-idf/openthread/libopenthread.a(spinel.c.obj) - .text.spinel_capability_to_cstr - 0x00000000 0x12 esp-idf/openthread/libopenthread.a(spinel.c.obj) - .rodata.str1.4 - 0x00000000 0x23e8 esp-idf/openthread/libopenthread.a(spinel.c.obj) - .rodata.spinel_cap_cstr.0 - 0x00000000 0x200 esp-idf/openthread/libopenthread.a(spinel.c.obj) - .rodata.spinel_status_cstr.1 - 0x00000000 0x148 esp-idf/openthread/libopenthread.a(spinel.c.obj) - .rodata.spinel_mcu_power_state_cstr.2 - 0x00000000 0x20 esp-idf/openthread/libopenthread.a(spinel.c.obj) - .rodata.spinel_net_cstr.3 - 0x00000000 0x30 esp-idf/openthread/libopenthread.a(spinel.c.obj) - .rodata.spinel_prop_cstr.4 - 0x00000000 0x9a8 esp-idf/openthread/libopenthread.a(spinel.c.obj) - .rodata.spinel_commands_cstr.5 - 0x00000000 0xc8 esp-idf/openthread/libopenthread.a(spinel.c.obj) - .text 0x00000000 0x0 esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - .data 0x00000000 0x0 esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - .bss 0x00000000 0x0 esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - .text._ZNK2ot6Spinel6Buffer16InFrameIsWritingENS1_8PriorityE - 0x00000000 0xa esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - .text._ZNK2ot6Spinel6Buffer8HasFrameENS1_8PriorityE - 0x00000000 0x12 esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - .text._ZN2ot6Spinel6Buffer12OutFrameReadEtPh - 0x00000000 0x48 esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - .text._ZN2ot6Spinel6Buffer17OutFrameGetLengthEv - 0x00000000 0xb8 esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - .text._ZN2ot6Spinel6Buffer14OutFrameGetTagEv - 0x00000000 0x34 esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - .text 0x00000000 0x0 esp-idf/openthread/libopenthread.a(spinel_encoder.cpp.obj) - .data 0x00000000 0x0 esp-idf/openthread/libopenthread.a(spinel_encoder.cpp.obj) - .bss 0x00000000 0x0 esp-idf/openthread/libopenthread.a(spinel_encoder.cpp.obj) - .text._ZN2ot6Spinel7Encoder10BeginFrameENS0_6Buffer8PriorityE - 0x00000000 0x20 esp-idf/openthread/libopenthread.a(spinel_encoder.cpp.obj) - .text._ZN2ot6Spinel7Encoder11WritePackedEPKcz - 0x00000000 0x52 esp-idf/openthread/libopenthread.a(spinel_encoder.cpp.obj) - .text._ZN2ot6Spinel7Encoder12WriteVPackedEPKcPv - 0x00000000 0x4a esp-idf/openthread/libopenthread.a(spinel_encoder.cpp.obj) - .text 0x00000000 0x0 esp-idf/openthread/libopenthread.a(changed_props_set.cpp.obj) - .data 0x00000000 0x0 esp-idf/openthread/libopenthread.a(changed_props_set.cpp.obj) - .bss 0x00000000 0x0 esp-idf/openthread/libopenthread.a(changed_props_set.cpp.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - .text.esp_gf128mul_x_ble - 0x00000000 0x11e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - .text.esp_aes_xts_init - 0x00000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - .text.esp_aes_xts_free - 0x00000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - .text.esp_aes_xts_setkey_enc - 0x00000000 0x4c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - .text.esp_aes_xts_setkey_dec - 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - .text.esp_aes_crypt_xts - 0x00000000 0x182 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - .debug_info 0x00000000 0x70c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - .debug_abbrev 0x00000000 0x261 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - .debug_loc 0x00000000 0x7d1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - .debug_aranges - 0x00000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - .debug_ranges 0x00000000 0x98 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - .debug_line 0x00000000 0x9fd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - .debug_str 0x00000000 0x418 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - .debug_frame 0x00000000 0xd4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - .riscv.attributes - 0x00000000 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - .text.esp_internal_aes_encrypt - 0x00000000 0x7a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - .text.esp_aes_encrypt - 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - .text.esp_internal_aes_decrypt - 0x00000000 0x7a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - .text.esp_aes_decrypt - 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - .text.esp_aes_crypt_cbc - 0x00000000 0xa4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - .text.esp_aes_crypt_cfb8 - 0x00000000 0x13c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - .text.esp_aes_crypt_cfb128 - 0x00000000 0x10e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - .text.esp_aes_crypt_ofb - 0x00000000 0xd6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - .text.esp_aes_crypt_ctr - 0x00000000 0xe8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) - .text.mbedtls_zeroize_and_free - 0x00000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - .text.esp_crypto_shared_gdma_start - 0x00000000 0xd2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - .text.esp_crypto_shared_gdma_free - 0x00000000 0x64 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) - .text.mbedtls_calloc - 0x00000000 0xa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) - .text.mbedtls_free - 0x00000000 0xa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) - .text.mbedtls_platform_set_calloc_free - 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) - .text.mbedtls_platform_setup - 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) - .text.mbedtls_platform_teardown - 0x00000000 0x2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) - .sdata.mbedtls_free_func - 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) - .sdata.mbedtls_calloc_func - 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) - .debug_info 0x00000000 0x252 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) - .debug_abbrev 0x00000000 0x1cf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) - .debug_loc 0x00000000 0xbe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) - .debug_aranges - 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) - .debug_ranges 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) - .debug_line 0x00000000 0x285 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) - .debug_str 0x00000000 0x32f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) - .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) - .debug_frame 0x00000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) - .riscv.attributes - 0x00000000 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) - .text.esp_mbedtls_mem_calloc - 0x00000000 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) - .text.esp_mbedtls_mem_free - 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) - .debug_info 0x00000000 0x177 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) - .debug_abbrev 0x00000000 0xe7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) - .debug_loc 0x00000000 0x75 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) - .debug_aranges - 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) - .debug_ranges 0x00000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) - .debug_line 0x00000000 0x28e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) - .debug_str 0x00000000 0x28e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) - .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) - .debug_frame 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) - .riscv.attributes - 0x00000000 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) - .text 0x00000000 0x0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - .data 0x00000000 0x0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - .text.esp_partition_unload_all - 0x00000000 0x66 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - .text.esp_partition_verify - 0x00000000 0x76 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - .text.esp_partition_register_external - 0x00000000 0x14c esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - .text.esp_partition_deregister_external - 0x00000000 0x74 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - .text.esp_partition_copy - 0x00000000 0x116 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - .text 0x00000000 0x0 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - .data 0x00000000 0x0 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - .text.esp_partition_munmap - 0x00000000 0x8 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - .text.esp_partition_get_sha256 - 0x00000000 0x10 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - .text.esp_partition_check_identity - 0x00000000 0x5e esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - .text 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .data 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .bss 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .text.esp_efuse_get_pkg_ver - 0x00000000 0x34 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .text.esp_efuse_set_rom_log_scheme - 0x00000000 0x44 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .text.esp_efuse_disable_rom_download_mode - 0x00000000 0x10 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .text.esp_efuse_enable_rom_secure_download_mode - 0x00000000 0x38 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .debug_info 0x00000000 0x3ba esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .debug_abbrev 0x00000000 0x18f esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .debug_loc 0x00000000 0x1f esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .debug_aranges - 0x00000000 0x38 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .debug_ranges 0x00000000 0x28 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .debug_line 0x00000000 0x458 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .debug_str 0x00000000 0x602 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .comment 0x00000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .debug_frame 0x00000000 0x80 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .riscv.attributes - 0x00000000 0x5c esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .text 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - .data 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - .bss 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - .text.esp_efuse_rtc_calib_get_ver - 0x00000000 0x20 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - .text.esp_efuse_rtc_calib_get_init_code - 0x00000000 0x8e esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - .text.esp_efuse_rtc_calib_get_chan_compens - 0x00000000 0xb2 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - .text.esp_efuse_rtc_calib_get_cal_voltage - 0x00000000 0xc0 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - .text.esp_efuse_rtc_calib_get_tsens_val - 0x00000000 0x72 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - .rodata 0x00000000 0x20 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - .debug_info 0x00000000 0x83f esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - .debug_abbrev 0x00000000 0x230 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - .debug_loc 0x00000000 0x4d3 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - .debug_aranges - 0x00000000 0x40 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - .debug_ranges 0x00000000 0x60 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - .debug_line 0x00000000 0x944 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - .debug_str 0x00000000 0x8eb esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - .comment 0x00000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - .debug_frame 0x00000000 0xd8 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - .riscv.attributes - 0x00000000 0x5c esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - .text.bootloader_common_check_long_hold_gpio_level - 0x00000000 0xa0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - .text.bootloader_common_check_long_hold_gpio - 0x00000000 0xa esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - .rodata.bootloader_common_label_search.str1.4 - 0x00000000 0x3 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - .text.bootloader_common_label_search - 0x00000000 0x9a esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - .text.bootloader_common_erase_part_type_data - 0x00000000 0xba esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - .text.bootloader_common_get_sha256_of_partition - 0x00000000 0xa0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - .text.bootloader_common_vddsdio_configure - 0x00000000 0x2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - .debug_info 0x00000000 0x167d esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - .debug_abbrev 0x00000000 0x45e esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - .debug_loc 0x00000000 0x48e esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - .debug_aranges - 0x00000000 0x48 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - .debug_ranges 0x00000000 0xf8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - .debug_line 0x00000000 0xc21 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - .debug_str 0x00000000 0xe25 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - .comment 0x00000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - .debug_frame 0x00000000 0x120 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - .riscv.attributes - 0x00000000 0x5c esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .text.index_to_partition - 0x00000000 0x46 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .text.bootloader_common_read_otadata - 0x00000000 0x66 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .text.bootloader_common_get_partition_description - 0x00000000 0x6a esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .text.bootloader_utility_load_partition_table - 0x00000000 0xce esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .text.bootloader_utility_get_selected_boot_partition - 0x00000000 0xac esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .text.bootloader_utility_load_boot_image - 0x00000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .text.unlikely.bootloader_reset - 0x00000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .text.unlikely.bootloader_atexit - 0x00000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .text.bootloader_sha256_hex_to_str - 0x00000000 0x50 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .text.bootloader_debug_buffer - 0x00000000 0x2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .text.bootloader_sha256_flash_contents - 0x00000000 0xc0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .debug_info 0x00000000 0x160e esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .debug_abbrev 0x00000000 0x4dc esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .debug_loc 0x00000000 0x8d7 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .debug_aranges - 0x00000000 0x70 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .debug_ranges 0x00000000 0x110 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .debug_line 0x00000000 0x1337 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .debug_str 0x00000000 0x108a esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .comment 0x00000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .debug_frame 0x00000000 0x158 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .riscv.attributes - 0x00000000 0x5c esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - .text.esp_partition_table_verify - 0x00000000 0xbc esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - .debug_info 0x00000000 0x5cb esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - .debug_abbrev 0x00000000 0x229 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - .debug_loc 0x00000000 0x130 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - .debug_aranges - 0x00000000 0x20 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - .debug_ranges 0x00000000 0x50 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - .debug_line 0x00000000 0x622 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - .debug_str 0x00000000 0x537 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - .comment 0x00000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - .debug_frame 0x00000000 0x4c esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - .riscv.attributes - 0x00000000 0x5c esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .text.process_segments.constprop.0.isra.0 - 0x00000000 0x214 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .rodata.image_load.isra.0.str1.4 - 0x00000000 0x1e esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .text.image_load.isra.0 - 0x00000000 0x282 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .text.esp_image_bootloader_offset_get - 0x00000000 0xa esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .text.esp_image_bootloader_offset_set - 0x00000000 0xa esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .text.bootloader_load_image - 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .text.bootloader_load_image_no_verify - 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .text.esp_image_verify - 0x00000000 0xc esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .text.esp_image_get_metadata - 0x00000000 0xb4 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .text.esp_image_verify_bootloader_data - 0x00000000 0x2e esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .text.esp_image_verify_bootloader - 0x00000000 0x2a esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .text.esp_image_get_flash_size - 0x00000000 0x52 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .sbss.s_bootloader_partition_offset - 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .debug_info 0x00000000 0x1d16 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .debug_abbrev 0x00000000 0x488 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .debug_loc 0x00000000 0x13fc esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .debug_aranges - 0x00000000 0x70 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .debug_ranges 0x00000000 0x280 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .debug_line 0x00000000 0x1a7c esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .debug_str 0x00000000 0xfab esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .comment 0x00000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .debug_frame 0x00000000 0x160 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .riscv.attributes - 0x00000000 0x5c esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - .text.bootloader_sha256_start - 0x00000000 0x3c esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - .text.bootloader_sha256_data - 0x00000000 0x2c esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - .text.bootloader_sha256_finish - 0x00000000 0x44 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - .debug_info 0x00000000 0x472 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - .debug_abbrev 0x00000000 0x193 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - .debug_loc 0x00000000 0x1c4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - .debug_aranges - 0x00000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - .debug_ranges 0x00000000 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - .debug_line 0x00000000 0x59d esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - .debug_str 0x00000000 0x425 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - .comment 0x00000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - .debug_frame 0x00000000 0x68 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - .riscv.attributes - 0x00000000 0x5c esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .text.bootloader_common_check_chip_revision_validity - 0x00000000 0x64 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .text.bootloader_common_ota_select_crc - 0x00000000 0xe esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .text.bootloader_common_ota_select_invalid - 0x00000000 0x16 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .text.bootloader_common_ota_select_valid - 0x00000000 0x34 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .text.bootloader_common_check_efuse_blk_validity - 0x00000000 0x46 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .text.bootloader_common_check_chip_validity - 0x00000000 0x42 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .text.bootloader_common_select_otadata - 0x00000000 0x3e esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .text.bootloader_common_get_active_otadata - 0x00000000 0x46 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .debug_info 0x00000000 0x84c esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .debug_abbrev 0x00000000 0x2c5 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .debug_loc 0x00000000 0x400 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .debug_aranges - 0x00000000 0x58 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .debug_ranges 0x00000000 0x48 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .debug_line 0x00000000 0x7ee esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .debug_str 0x00000000 0x88b esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .comment 0x00000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .debug_frame 0x00000000 0xec esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .riscv.attributes - 0x00000000 0x5c esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - .text 0x00000000 0x0 esp-idf/hal/libhal.a(adc_hal_common.c.obj) - .data 0x00000000 0x0 esp-idf/hal/libhal.a(adc_hal_common.c.obj) - .bss 0x00000000 0x0 esp-idf/hal/libhal.a(adc_hal_common.c.obj) - .text.read_cal_channel - 0x00000000 0x6a esp-idf/hal/libhal.a(adc_hal_common.c.obj) - .text.adc_hal_set_controller - 0x00000000 0x12 esp-idf/hal/libhal.a(adc_hal_common.c.obj) - .text.adc_hal_calibration_init - 0x00000000 0x16 esp-idf/hal/libhal.a(adc_hal_common.c.obj) - .text.adc_hal_set_calibration_param - 0x00000000 0x62 esp-idf/hal/libhal.a(adc_hal_common.c.obj) - .text.adc_hal_self_calibration - 0x00000000 0x1cc esp-idf/hal/libhal.a(adc_hal_common.c.obj) - .debug_info 0x00000000 0x1c64 esp-idf/hal/libhal.a(adc_hal_common.c.obj) - .debug_abbrev 0x00000000 0x3f0 esp-idf/hal/libhal.a(adc_hal_common.c.obj) - .debug_loc 0x00000000 0x873 esp-idf/hal/libhal.a(adc_hal_common.c.obj) - .debug_aranges - 0x00000000 0x40 esp-idf/hal/libhal.a(adc_hal_common.c.obj) - .debug_ranges 0x00000000 0x1a0 esp-idf/hal/libhal.a(adc_hal_common.c.obj) - .debug_line 0x00000000 0xabc esp-idf/hal/libhal.a(adc_hal_common.c.obj) - .debug_str 0x00000000 0x1800 esp-idf/hal/libhal.a(adc_hal_common.c.obj) - .comment 0x00000000 0x30 esp-idf/hal/libhal.a(adc_hal_common.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/hal/libhal.a(adc_hal_common.c.obj) - .debug_frame 0x00000000 0xb0 esp-idf/hal/libhal.a(adc_hal_common.c.obj) - .riscv.attributes - 0x00000000 0x5c esp-idf/hal/libhal.a(adc_hal_common.c.obj) - .text 0x00000000 0x0 esp-idf/hal/libhal.a(aes_hal.c.obj) - .data 0x00000000 0x0 esp-idf/hal/libhal.a(aes_hal.c.obj) - .bss 0x00000000 0x0 esp-idf/hal/libhal.a(aes_hal.c.obj) - .text.aes_hal_transform_block - 0x00000000 0x80 esp-idf/hal/libhal.a(aes_hal.c.obj) - .text.aes_hal_enable_pseudo_rounds - 0x00000000 0x86 esp-idf/hal/libhal.a(aes_hal.c.obj) - .text.aes_hal_set_iv - 0x00000000 0x42 esp-idf/hal/libhal.a(aes_hal.c.obj) - .text.aes_hal_read_iv - 0x00000000 0x42 esp-idf/hal/libhal.a(aes_hal.c.obj) - .text 0x00000000 0x0 esp-idf/log/liblog.a(log_timestamp.c.obj) - .data 0x00000000 0x0 esp-idf/log/liblog.a(log_timestamp.c.obj) - .bss 0x00000000 0x0 esp-idf/log/liblog.a(log_timestamp.c.obj) - .text.esp_log_early_timestamp - 0x00000000 0x28 esp-idf/log/liblog.a(log_timestamp.c.obj) - .text.esp_log_timestamp - 0x00000000 0x66 esp-idf/log/liblog.a(log_timestamp.c.obj) - .sbss.base.0 0x00000000 0x4 esp-idf/log/liblog.a(log_timestamp.c.obj) - .debug_info 0x00000000 0x233 esp-idf/log/liblog.a(log_timestamp.c.obj) - .debug_abbrev 0x00000000 0x13a esp-idf/log/liblog.a(log_timestamp.c.obj) - .debug_loc 0x00000000 0x13 esp-idf/log/liblog.a(log_timestamp.c.obj) - .debug_aranges - 0x00000000 0x28 esp-idf/log/liblog.a(log_timestamp.c.obj) - .debug_ranges 0x00000000 0x18 esp-idf/log/liblog.a(log_timestamp.c.obj) - .debug_line 0x00000000 0x485 esp-idf/log/liblog.a(log_timestamp.c.obj) - .debug_str 0x00000000 0x380 esp-idf/log/liblog.a(log_timestamp.c.obj) - .comment 0x00000000 0x30 esp-idf/log/liblog.a(log_timestamp.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/log/liblog.a(log_timestamp.c.obj) - .debug_frame 0x00000000 0x4c esp-idf/log/liblog.a(log_timestamp.c.obj) - .riscv.attributes - 0x00000000 0x60 esp-idf/log/liblog.a(log_timestamp.c.obj) - .text 0x00000000 0x0 esp-idf/soc/libsoc.a(temperature_sensor_periph.c.obj) - .data 0x00000000 0x0 esp-idf/soc/libsoc.a(temperature_sensor_periph.c.obj) - .bss 0x00000000 0x0 esp-idf/soc/libsoc.a(temperature_sensor_periph.c.obj) - .rodata.temperature_sensor_regs_retention - 0x00000000 0xc esp-idf/soc/libsoc.a(temperature_sensor_periph.c.obj) - .rodata.temperature_sensor_regs_entries - 0x00000000 0x2c esp-idf/soc/libsoc.a(temperature_sensor_periph.c.obj) - .text 0x00000000 0x0 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) - .data 0x00000000 0x0 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) - .text.esp_crypto_hmac_lock_acquire - 0x00000000 0x28 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) - .text.esp_crypto_hmac_lock_release - 0x00000000 0x28 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) - .text.esp_crypto_mpi_lock_acquire - 0x00000000 0x10 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) - .text.esp_crypto_ds_lock_acquire - 0x00000000 0x30 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) - .text.esp_crypto_mpi_lock_release - 0x00000000 0x10 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) - .text.esp_crypto_ds_lock_release - 0x00000000 0x30 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) - .text.esp_crypto_ecc_lock_acquire - 0x00000000 0x10 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) - .text.esp_crypto_ecc_lock_release - 0x00000000 0x10 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) - .text.esp_crypto_ecdsa_lock_acquire - 0x00000000 0x30 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) - .text.esp_crypto_ecdsa_lock_release - 0x00000000 0x30 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) - .sbss.s_crypto_ecdsa_lock - 0x00000000 0x4 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) - .sbss.s_crypto_ecc_lock - 0x00000000 0x4 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) - .sbss.s_crypto_mpi_lock - 0x00000000 0x4 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) - .sbss.s_crypto_hmac_lock - 0x00000000 0x4 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) - .sbss.s_crypto_ds_lock - 0x00000000 0x4 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) - .text 0x00000000 0x0 esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) - .data 0x00000000 0x0 esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) - .text.esp_crypto_sha_enable_periph_clk - 0x00000000 0x40 esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) - .text.esp_crypto_mpi_enable_periph_clk - 0x00000000 0x5e esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) - .text.esp_crypto_ecc_enable_periph_clk - 0x00000000 0x58 esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) - .text.esp_crypto_hmac_enable_periph_clk - 0x00000000 0x2e esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) - .text.esp_crypto_ds_enable_periph_clk - 0x00000000 0x2e esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) - .text.esp_crypto_ecdsa_enable_periph_clk - 0x00000000 0x2e esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - .text.insert_mac_ext_into_mac - 0x00000000 0x52 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - .text.esp_mac_addr_len_get - 0x00000000 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - .text.esp_iface_mac_addr_set - 0x00000000 0x82 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - .text.esp_base_mac_addr_set - 0x00000000 0xa esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - .text.esp_efuse_mac_get_custom - 0x00000000 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - .text.esp_efuse_mac_get_default - 0x00000000 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - .text.esp_base_mac_addr_get - 0x00000000 0xa esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) - .text.spicommon_periph_claim - 0x00000000 0xba esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) - .text.spicommon_periph_in_use - 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) - .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .text.gdma_default_rx_isr - 0x00000000 0xe4 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .text.gdma_default_tx_isr - 0x00000000 0x94 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .text.gdma_get_free_m2m_trig_id_mask - 0x00000000 0x52 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .text.gdma_get_alignment_constraints - 0x00000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .text.gdma_apply_strategy - 0x00000000 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .text.gdma_set_priority - 0x00000000 0x3c esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .text.gdma_register_tx_event_callbacks - 0x00000000 0x192 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .text.gdma_register_rx_event_callbacks - 0x00000000 0x1bc esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .text.gdma_stop - 0x00000000 0x62 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .text.gdma_append - 0x00000000 0x56 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .text.gdma_reset - 0x00000000 0x56 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .text 0x00000000 0x0 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) - .data 0x00000000 0x0 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) - .iram1.10 0x00000000 0x1fe esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) - .rodata.spi_slave_initialize.str1.4 - 0x00000000 0xa esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) - .text.spi_slave_initialize - 0x00000000 0x2b2 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) - .text.spi_slave_enable - 0x00000000 0x4a esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) - .text.spi_slave_disable - 0x00000000 0x4e esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) - .text.spi_slave_queue_trans - 0x00000000 0xb2 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) - .text.spi_slave_queue_reset - 0x00000000 0x7c esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) - .iram1.5 0x00000000 0xb0 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) - .iram1.6 0x00000000 0x80 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) - .text.spi_slave_get_trans_result - 0x00000000 0x5a esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) - .text.spi_slave_transmit - 0x00000000 0x4e esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) - .text 0x00000000 0x0 esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - .data 0x00000000 0x0 esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - .bss 0x00000000 0x0 esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - .text.esp_ieee802154_event_callback_list_register - 0x00000000 0x2c esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - .text.esp_ieee802154_event_callback_list_unregister - 0x00000000 0x8 esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - .text.esp_ieee802154_get_channel - 0x00000000 0x8 esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - .text.esp_ieee802154_set_power_table - 0x00000000 0x2c esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - .text.esp_ieee802154_get_power_table - 0x00000000 0x8 esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - .text.esp_ieee802154_set_power_with_channel - 0x00000000 0x8 esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - .text.esp_ieee802154_get_power_with_channel - 0x00000000 0x8 esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - .text.esp_ieee802154_get_cca_mode - 0x00000000 0x8 esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - .text.esp_ieee802154_set_cca_mode - 0x00000000 0x1a esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - .text.esp_ieee802154_get_auto_ack_tx - 0x00000000 0x8 esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - .text.esp_ieee802154_set_auto_ack_tx - 0x00000000 0x1a esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - .text.esp_ieee802154_get_auto_ack_rx - 0x00000000 0x8 esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - .text.esp_ieee802154_set_auto_ack_rx - 0x00000000 0x1a esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - .text.esp_ieee802154_get_coordinator - 0x00000000 0x8 esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - .text.esp_ieee802154_set_ack_timeout - 0x00000000 0x1e esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - .text.esp_ieee802154_get_ack_timeout - 0x00000000 0x12 esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - .text.esp_ieee802154_get_panid - 0x00000000 0x10 esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - .text.esp_ieee802154_get_short_address - 0x00000000 0x10 esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - .text.esp_ieee802154_get_pending_mode - 0x00000000 0x8 esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - .text.esp_ieee802154_get_rx_when_idle - 0x00000000 0x8 esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - .text.esp_ieee802154_cca - 0x00000000 0x8 esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - .text.esp_ieee802154_get_recent_lqi - 0x00000000 0x8 esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - .text.esp_ieee802154_receive_done - 0x00000000 0x2 esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - .text.esp_ieee802154_receive_sfd_done - 0x00000000 0x2 esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - .text.esp_ieee802154_receive_failed - 0x00000000 0x2 esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - .text.esp_ieee802154_transmit_done - 0x00000000 0x2 esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - .text.esp_ieee802154_transmit_failed - 0x00000000 0x2 esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - .text.esp_ieee802154_transmit_sfd_done - 0x00000000 0x2 esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - .text.esp_ieee802154_cca_done - 0x00000000 0x2 esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - .text.esp_ieee802154_energy_detect_done - 0x00000000 0x2 esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - .text.esp_ieee802154_receive_at_done - 0x00000000 0x2 esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - .text.esp_ieee802154_enh_ack_generator - 0x00000000 0x4 esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - .text 0x00000000 0x0 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_ack.c.obj) - .data 0x00000000 0x0 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_ack.c.obj) - .bss 0x00000000 0x0 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_ack.c.obj) - .text 0x00000000 0x0 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - .data 0x00000000 0x0 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - .bss 0x00000000 0x0 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - .text.ieee802154_get_recent_lqi - 0x00000000 0x1a esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - .iram1.11 0x00000000 0x8 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - .iram1.12 0x00000000 0x8 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - .text.ieee802154_mac_is_inited - 0x00000000 0xe esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - .text.ieee802154_cca - 0x00000000 0x7a esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - .text 0x00000000 0x0 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_event.c.obj) - .data 0x00000000 0x0 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_event.c.obj) - .bss 0x00000000 0x0 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_event.c.obj) - .text.ieee802154_event_callback_list_register - 0x00000000 0x3a esp-idf/ieee802154/libieee802154.a(esp_ieee802154_event.c.obj) - .text.ieee802154_event_callback_list_unregister - 0x00000000 0x34 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_event.c.obj) - .text 0x00000000 0x0 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_frame.c.obj) - .data 0x00000000 0x0 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_frame.c.obj) - .bss 0x00000000 0x0 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_frame.c.obj) - .text.ieee802154_frame_get_dst_addr - 0x00000000 0x6e esp-idf/ieee802154/libieee802154.a(esp_ieee802154_frame.c.obj) - .text.ieee802154_frame_get_dest_panid - 0x00000000 0x42 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_frame.c.obj) - .text.ieee802154_frame_get_src_panid - 0x00000000 0x76 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_frame.c.obj) - .text 0x00000000 0x0 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - .data 0x00000000 0x0 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - .bss 0x00000000 0x0 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - .text.ieee802154_pib_get_channel - 0x00000000 0xa esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - .text.ieee802154_pib_get_power_table - 0x00000000 0x2c esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - .text.ieee802154_pib_set_power_with_channel - 0x00000000 0x38 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - .text.ieee802154_pib_set_power - 0x00000000 0x12 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - .text.ieee802154_pib_get_cca_mode - 0x00000000 0xc esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - .text.ieee802154_pib_set_cca_mode - 0x00000000 0x1c esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - .text.ieee802154_pib_get_auto_ack_tx - 0x00000000 0xa esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - .text.ieee802154_pib_get_auto_ack_rx - 0x00000000 0xa esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - .text.ieee802154_pib_get_enhance_ack_tx - 0x00000000 0xa esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - .text.ieee802154_pib_get_coordinator - 0x00000000 0xa esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - .text 0x00000000 0x0 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_util.c.obj) - .data 0x00000000 0x0 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_util.c.obj) - .bss 0x00000000 0x0 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_util.c.obj) - .text 0x00000000 0x0 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_sec.c.obj) - .data 0x00000000 0x0 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_sec.c.obj) - .bss 0x00000000 0x0 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_sec.c.obj) - .text 0x00000000 0x0 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_timer.c.obj) - .data 0x00000000 0x0 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_timer.c.obj) - .bss 0x00000000 0x0 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_timer.c.obj) - .text.ieee802154_timer0_start - 0x00000000 0x16 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_timer.c.obj) - .text.ieee802154_timer0_get_value - 0x00000000 0xe esp-idf/ieee802154/libieee802154.a(esp_ieee802154_timer.c.obj) - .text.ieee802154_timer1_start - 0x00000000 0x16 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_timer.c.obj) - .text.ieee802154_timer1_get_value - 0x00000000 0xe esp-idf/ieee802154/libieee802154.a(esp_ieee802154_timer.c.obj) - .text.ieee802154_timer0_set_callback - 0x00000000 0x12 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_timer.c.obj) - .text.ieee802154_timer1_set_callback - 0x00000000 0x12 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_timer.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - .text.esp_internal_sha_update_state - 0x00000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - .text.mbedtls_sha256_init - 0x00000000 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - .text.mbedtls_sha256_free - 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - .text.mbedtls_sha256_clone - 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - .text.mbedtls_sha256_starts - 0x00000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - .text.mbedtls_internal_sha256_process - 0x00000000 0x5e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - .text.mbedtls_sha256_update - 0x00000000 0x138 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - .text.mbedtls_sha256_finish - 0x00000000 0xc8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - .rodata.sha256_padding - 0x00000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - .debug_info 0x00000000 0x8f8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - .debug_abbrev 0x00000000 0x2a5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - .debug_loc 0x00000000 0x548 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - .debug_aranges - 0x00000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - .debug_ranges 0x00000000 0xb8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - .debug_line 0x00000000 0xaa4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - .debug_str 0x00000000 0x578 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - .debug_frame 0x00000000 0xf8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - .riscv.attributes - 0x00000000 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - .text.esp_sha_write_digest_state - 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - .text.esp_sha_read_digest_state - 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - .text.esp_sha_acquire_hardware - 0x00000000 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - .text.esp_sha_release_hardware - 0x00000000 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - .text.esp_sha_set_mode - 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - .text.esp_sha_block - 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - .text.esp_sha_dma - 0x00000000 0x1d8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - .dram1.1 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - .dram1.0 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - .debug_info 0x00000000 0xb93 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - .debug_abbrev 0x00000000 0x378 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - .debug_loc 0x00000000 0x7a1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - .debug_aranges - 0x00000000 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - .debug_ranges 0x00000000 0x160 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - .debug_line 0x00000000 0xbde esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - .debug_str 0x00000000 0x70c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - .debug_frame 0x00000000 0xe0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - .riscv.attributes - 0x00000000 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) - .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) - .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) - .text.esp_sha_dma_start - 0x00000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) - .debug_info 0x00000000 0x25f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) - .debug_abbrev 0x00000000 0x13f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) - .debug_loc 0x00000000 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) - .debug_aranges - 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) - .debug_ranges 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) - .debug_line 0x00000000 0x2c7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) - .debug_str 0x00000000 0x452 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) - .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) - .debug_frame 0x00000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) - .riscv.attributes - 0x00000000 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) - .text 0x00000000 0x0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .data 0x00000000 0x0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .bss 0x00000000 0x0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .text.is_ota_partition - 0x00000000 0x18 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .text.get_ota_ops_entry - 0x00000000 0x18 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .text.esp_ota_init_entry - 0x00000000 0x56 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .text.image_validate - 0x00000000 0x34 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .text.ota_verify_partition - 0x00000000 0x8e esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .text.read_otadata - 0x00000000 0x74 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .text.find_default_boot_partition - 0x00000000 0x54 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .text.rewrite_ota_seq.part.0 - 0x00000000 0x52 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .text.esp_ota_begin - 0x00000000 0xd8 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .text.esp_ota_resume - 0x00000000 0xbc esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .text.esp_ota_set_final_partition - 0x00000000 0x88 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .text.esp_ota_write - 0x00000000 0x16a esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .text.esp_ota_write_with_offset - 0x00000000 0x76 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .text.esp_ota_abort - 0x00000000 0x36 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .text.esp_ota_end - 0x00000000 0xa2 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .text.esp_ota_get_app_partition_count - 0x00000000 0x44 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .text.erase_last_boot_app_partition - 0x00000000 0xc4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .text.esp_ota_set_boot_partition - 0x00000000 0xe8 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .text.esp_ota_get_boot_partition - 0x00000000 0x80 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .text.esp_ota_get_next_update_partition - 0x00000000 0x6a esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .text.esp_ota_get_bootloader_description - 0x00000000 0x86 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .text.esp_ota_get_partition_description - 0x00000000 0x54 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .text.esp_ota_check_rollback_is_possible - 0x00000000 0xd0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .text.esp_ota_current_ota_is_workable - 0x00000000 0xa6 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .text.esp_ota_mark_app_valid_cancel_rollback - 0x00000000 0xa esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .text.esp_ota_mark_app_invalid_rollback - 0x00000000 0xa esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .text.esp_ota_mark_app_invalid_rollback_and_reboot - 0x00000000 0x22 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .text.esp_ota_get_last_invalid_partition - 0x00000000 0xc8 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .text.esp_ota_get_state_partition - 0x00000000 0xaa esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .text.esp_ota_erase_last_boot_app_partition - 0x00000000 0xa esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .text.esp_ota_invalidate_inactive_ota_data_slot - 0x00000000 0xa esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .sbss.s_ota_ops_last_handle - 0x00000000 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .sbss.s_ota_ops_entries_head - 0x00000000 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .text 0x00000000 0x0 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - .data 0x00000000 0x0 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - .bss 0x00000000 0x0 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - .text.gdma_hal_stop - 0x00000000 0x4 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - .text.gdma_hal_append - 0x00000000 0x4 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - .text.gdma_hal_reset - 0x00000000 0x4 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - .text.gdma_hal_set_strategy - 0x00000000 0x6 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - .text.gdma_hal_read_intr_status - 0x00000000 0x4 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - .text.gdma_hal_get_intr_status_reg - 0x00000000 0x4 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - .text.gdma_hal_get_eof_desc_addr - 0x00000000 0x4 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - .text.gdma_hal_enable_etm_task - 0x00000000 0x4 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - .text 0x00000000 0x0 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) - .data 0x00000000 0x0 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) - .bss 0x00000000 0x0 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) - .text 0x00000000 0x0 esp-idf/hal/libhal.a(sha_hal.c.obj) - .data 0x00000000 0x0 esp-idf/hal/libhal.a(sha_hal.c.obj) - .bss 0x00000000 0x0 esp-idf/hal/libhal.a(sha_hal.c.obj) - .text.sha_hal_set_mode - 0x00000000 0x8 esp-idf/hal/libhal.a(sha_hal.c.obj) - .text.sha_hal_hash_block - 0x00000000 0x34 esp-idf/hal/libhal.a(sha_hal.c.obj) - .text.sha_hal_hash_dma - 0x00000000 0x16 esp-idf/hal/libhal.a(sha_hal.c.obj) - .text.sha_hal_wait_idle - 0x00000000 0xc esp-idf/hal/libhal.a(sha_hal.c.obj) - .text.sha_hal_read_digest - 0x00000000 0x66 esp-idf/hal/libhal.a(sha_hal.c.obj) - .text.sha_hal_write_digest - 0x00000000 0x32 esp-idf/hal/libhal.a(sha_hal.c.obj) - .debug_info 0x00000000 0x603 esp-idf/hal/libhal.a(sha_hal.c.obj) - .debug_abbrev 0x00000000 0x24b esp-idf/hal/libhal.a(sha_hal.c.obj) - .debug_loc 0x00000000 0x2ec esp-idf/hal/libhal.a(sha_hal.c.obj) - .debug_aranges - 0x00000000 0x48 esp-idf/hal/libhal.a(sha_hal.c.obj) - .debug_ranges 0x00000000 0x108 esp-idf/hal/libhal.a(sha_hal.c.obj) - .debug_line 0x00000000 0x747 esp-idf/hal/libhal.a(sha_hal.c.obj) - .debug_str 0x00000000 0x45f esp-idf/hal/libhal.a(sha_hal.c.obj) - .comment 0x00000000 0x30 esp-idf/hal/libhal.a(sha_hal.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/hal/libhal.a(sha_hal.c.obj) - .debug_frame 0x00000000 0x80 esp-idf/hal/libhal.a(sha_hal.c.obj) - .riscv.attributes - 0x00000000 0x5c esp-idf/hal/libhal.a(sha_hal.c.obj) - .text 0x00000000 0x0 esp-idf/hal/libhal.a(spi_slave_hal.c.obj) - .data 0x00000000 0x0 esp-idf/hal/libhal.a(spi_slave_hal.c.obj) - .bss 0x00000000 0x0 esp-idf/hal/libhal.a(spi_slave_hal.c.obj) - .text.spi_slave_hal_init - 0x00000000 0xaa esp-idf/hal/libhal.a(spi_slave_hal.c.obj) - .text.spi_slave_hal_setup_device - 0x00000000 0xd0 esp-idf/hal/libhal.a(spi_slave_hal.c.obj) - .text.spi_slave_hal_deinit - 0x00000000 0x2 esp-idf/hal/libhal.a(spi_slave_hal.c.obj) - .debug_info 0x00000000 0x1d42 esp-idf/hal/libhal.a(spi_slave_hal.c.obj) - .debug_abbrev 0x00000000 0x2b4 esp-idf/hal/libhal.a(spi_slave_hal.c.obj) - .debug_loc 0x00000000 0x13f esp-idf/hal/libhal.a(spi_slave_hal.c.obj) - .debug_aranges - 0x00000000 0x30 esp-idf/hal/libhal.a(spi_slave_hal.c.obj) - .debug_ranges 0x00000000 0x88 esp-idf/hal/libhal.a(spi_slave_hal.c.obj) - .debug_line 0x00000000 0x65d esp-idf/hal/libhal.a(spi_slave_hal.c.obj) - .debug_str 0x00000000 0x16b9 esp-idf/hal/libhal.a(spi_slave_hal.c.obj) - .comment 0x00000000 0x30 esp-idf/hal/libhal.a(spi_slave_hal.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/hal/libhal.a(spi_slave_hal.c.obj) - .debug_frame 0x00000000 0x40 esp-idf/hal/libhal.a(spi_slave_hal.c.obj) - .riscv.attributes - 0x00000000 0x5c esp-idf/hal/libhal.a(spi_slave_hal.c.obj) - .text 0x00000000 0x0 esp-idf/hal/libhal.a(spi_slave_hal_iram.c.obj) - .data 0x00000000 0x0 esp-idf/hal/libhal.a(spi_slave_hal_iram.c.obj) - .bss 0x00000000 0x0 esp-idf/hal/libhal.a(spi_slave_hal_iram.c.obj) - .text.spi_slave_hal_usr_is_done - 0x00000000 0xa esp-idf/hal/libhal.a(spi_slave_hal_iram.c.obj) - .text.spi_slave_hal_user_start - 0x00000000 0x16 esp-idf/hal/libhal.a(spi_slave_hal_iram.c.obj) - .text.spi_slave_hal_hw_prepare_rx - 0x00000000 0x2a esp-idf/hal/libhal.a(spi_slave_hal_iram.c.obj) - .text.spi_slave_hal_hw_prepare_tx - 0x00000000 0x26 esp-idf/hal/libhal.a(spi_slave_hal_iram.c.obj) - .text.spi_slave_hal_hw_reset - 0x00000000 0x1e esp-idf/hal/libhal.a(spi_slave_hal_iram.c.obj) - .text.spi_slave_hal_hw_fifo_reset - 0x00000000 0x36 esp-idf/hal/libhal.a(spi_slave_hal_iram.c.obj) - .text.spi_slave_hal_push_tx_buffer - 0x00000000 0x4e esp-idf/hal/libhal.a(spi_slave_hal_iram.c.obj) - .text.spi_slave_hal_set_trans_bitlen - 0x00000000 0x2 esp-idf/hal/libhal.a(spi_slave_hal_iram.c.obj) - .text.spi_slave_hal_enable_data_line - 0x00000000 0x30 esp-idf/hal/libhal.a(spi_slave_hal_iram.c.obj) - .text.spi_slave_hal_store_result - 0x00000000 0x8a esp-idf/hal/libhal.a(spi_slave_hal_iram.c.obj) - .text.spi_slave_hal_get_rcv_bitlen - 0x00000000 0x4 esp-idf/hal/libhal.a(spi_slave_hal_iram.c.obj) - .text.spi_slave_hal_dma_need_reset - 0x00000000 0x4 esp-idf/hal/libhal.a(spi_slave_hal_iram.c.obj) - .debug_info 0x00000000 0x22bb esp-idf/hal/libhal.a(spi_slave_hal_iram.c.obj) - .debug_abbrev 0x00000000 0x365 esp-idf/hal/libhal.a(spi_slave_hal_iram.c.obj) - .debug_loc 0x00000000 0x3d5 esp-idf/hal/libhal.a(spi_slave_hal_iram.c.obj) - .debug_aranges - 0x00000000 0x78 esp-idf/hal/libhal.a(spi_slave_hal_iram.c.obj) - .debug_ranges 0x00000000 0x138 esp-idf/hal/libhal.a(spi_slave_hal_iram.c.obj) - .debug_line 0x00000000 0x989 esp-idf/hal/libhal.a(spi_slave_hal_iram.c.obj) - .debug_str 0x00000000 0x191d esp-idf/hal/libhal.a(spi_slave_hal_iram.c.obj) - .comment 0x00000000 0x30 esp-idf/hal/libhal.a(spi_slave_hal_iram.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/hal/libhal.a(spi_slave_hal_iram.c.obj) - .debug_frame 0x00000000 0x114 esp-idf/hal/libhal.a(spi_slave_hal_iram.c.obj) - .riscv.attributes - 0x00000000 0x5c esp-idf/hal/libhal.a(spi_slave_hal_iram.c.obj) - .text 0x00000000 0x0 esp-idf/soc/libsoc.a(gdma_periph.c.obj) - .data 0x00000000 0x0 esp-idf/soc/libsoc.a(gdma_periph.c.obj) - .bss 0x00000000 0x0 esp-idf/soc/libsoc.a(gdma_periph.c.obj) - .rodata.gdma_chx_regs_retention - 0x00000000 0x24 esp-idf/soc/libsoc.a(gdma_periph.c.obj) - .rodata.gdma_g0p2_regs_retention - 0x00000000 0x58 esp-idf/soc/libsoc.a(gdma_periph.c.obj) - .rodata.gdma_g0p1_regs_retention - 0x00000000 0x2c esp-idf/soc/libsoc.a(gdma_periph.c.obj) - .rodata.gdma_g0p0_regs_retention - 0x00000000 0x2c esp-idf/soc/libsoc.a(gdma_periph.c.obj) - .rodata.gdma_periph_signals - 0x00000000 0x1c esp-idf/soc/libsoc.a(gdma_periph.c.obj) - .debug_info 0x00000000 0x8b8 esp-idf/soc/libsoc.a(gdma_periph.c.obj) - .debug_abbrev 0x00000000 0x172 esp-idf/soc/libsoc.a(gdma_periph.c.obj) - .debug_aranges - 0x00000000 0x18 esp-idf/soc/libsoc.a(gdma_periph.c.obj) - .debug_line 0x00000000 0x252 esp-idf/soc/libsoc.a(gdma_periph.c.obj) - .debug_str 0x00000000 0x1376 esp-idf/soc/libsoc.a(gdma_periph.c.obj) - .comment 0x00000000 0x30 esp-idf/soc/libsoc.a(gdma_periph.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/soc/libsoc.a(gdma_periph.c.obj) - .riscv.attributes - 0x00000000 0x5c esp-idf/soc/libsoc.a(gdma_periph.c.obj) - .text 0x00000000 0x0 esp-idf/soc/libsoc.a(ieee802154_periph.c.obj) - .data 0x00000000 0x0 esp-idf/soc/libsoc.a(ieee802154_periph.c.obj) - .bss 0x00000000 0x0 esp-idf/soc/libsoc.a(ieee802154_periph.c.obj) - .text 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_init_esp32hxx.c.obj) - .data 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_init_esp32hxx.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_init_esp32hxx.c.obj) - .iram1.1 0x00000000 0x22 esp-idf/esp_phy/libesp_phy.a(phy_init_esp32hxx.c.obj) - .iram1.2 0x00000000 0x20 esp-idf/esp_phy/libesp_phy.a(phy_init_esp32hxx.c.obj) - .text 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(btbb_init.c.obj) - .data 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(btbb_init.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(btbb_init.c.obj) - .text 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - .data 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - .text.phy_enabled_modem_contains - 0x00000000 0x10 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - .iram1.1 0x00000000 0xa esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - .text.phy_ant_clr_update_flag - 0x00000000 0xa esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - .text.esp_phy_set_ant_gpio - 0x00000000 0xc0 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - .text.esp_phy_get_ant_gpio - 0x00000000 0x2c esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - .text.phy_ant_update - 0x00000000 0x80 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - .text.esp_phy_set_ant - 0x00000000 0x72 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - .text.esp_phy_get_ant - 0x00000000 0x2c esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - .dram1.0 0x00000000 0x1 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - .bss.s_phy_ant_config - 0x00000000 0x10 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - .sbss.s_phy_ant_gpio_config - 0x00000000 0x4 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - .text 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .data 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .iram1.0 0x00000000 0xd4 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .iram1.1 0x00000000 0x88 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .text.esp_timer_deinit - 0x00000000 0x42 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .rodata.esp_timer_dump.str1.4 - 0x00000000 0x5d esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .text.esp_timer_dump - 0x00000000 0x100 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .iram1.11 0x00000000 0x5c esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .iram1.12 0x00000000 0x64 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .iram1.13 0x00000000 0x40 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .iram1.14 0x00000000 0x4c esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .iram1.15 0x00000000 0x14 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .text 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_opv.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_opv.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_opv.o) - .eh_frame 0x00000000 0x28 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_opv.o) - .text 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_handler.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_handler.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_handler.o) - .text._ZSt15set_new_handlerPFvvE - 0x00000000 0xe C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_handler.o) - .eh_frame 0x00000000 0x3c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_handler.o) - .group 0x00000000 0xc C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opvnt.o) - .text 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opvnt.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opvnt.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opvnt.o) - .eh_frame 0x00000000 0x3c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opvnt.o) - .text 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_op.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_op.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_op.o) - .eh_frame 0x00000000 0x28 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_op.o) - .text 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_catch.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_catch.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_catch.o) - .text.__cxa_get_exception_ptr - 0x00000000 0x6 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_catch.o) - .text._ZSt18uncaught_exceptionv - 0x00000000 0x18 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_catch.o) - .text._ZSt19uncaught_exceptionsv - 0x00000000 0x14 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_catch.o) - .eh_frame 0x00000000 0xac C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_catch.o) - .group 0x00000000 0xc C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) - .text 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) - .text.exit._GLOBAL__sub_D__ZN17__eh_globals_init7_S_initE - 0x00000000 0x2a C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) - .gcc_except_table._GLOBAL__sub_D__ZN17__eh_globals_init7_S_initE - 0x00000000 0x4 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) - .fini_array 0x00000000 0x4 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) - .sdata.DW.ref.__gxx_personality_v0 - 0x00000000 0x4 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) - .eh_frame 0x00000000 0xe8 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) - .group 0x00000000 0xc C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) - .text 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) - .text._ZSt13set_terminatePFvvE - 0x00000000 0x18 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) - .text._ZN10__cxxabiv112__unexpectedEPFvvE - 0x00000000 0xe C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) - .text._ZSt14set_unexpectedPFvvE - 0x00000000 0x18 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) - .text._ZSt14get_unexpectedv - 0x00000000 0x10 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) - .text.unlikely._ZSt10unexpectedv - 0x00000000 0x14 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) - .sdata.DW.ref.__gxx_personality_v0 - 0x00000000 0x4 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) - .eh_frame 0x00000000 0xe4 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) - .text 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_unex_handler.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_unex_handler.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_unex_handler.o) - .sdata._ZN10__cxxabiv120__unexpected_handlerE - 0x00000000 0x4 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_unex_handler.o) - .debug_info 0x00000000 0x3c3 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_unex_handler.o) - .debug_abbrev 0x00000000 0x277 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_unex_handler.o) - .debug_aranges - 0x00000000 0x18 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_unex_handler.o) - .debug_line 0x00000000 0x7c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_unex_handler.o) - .debug_str 0x00000000 0x66f C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_unex_handler.o) - .debug_line_str - 0x00000000 0x4a6 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_unex_handler.o) - .comment 0x00000000 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_unex_handler.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_unex_handler.o) - .riscv.attributes - 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_unex_handler.o) - .text 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opv.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opv.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opv.o) - .eh_frame 0x00000000 0x28 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opv.o) - .text 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_term_handler.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_term_handler.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_term_handler.o) - .group 0x00000000 0x8 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_op.o) - .group 0x00000000 0xc C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_op.o) - .group 0x00000000 0x8 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_op.o) - .group 0x00000000 0xc C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_op.o) - .text 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_op.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_op.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_op.o) - .eh_frame 0x00000000 0x38 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_op.o) - .group 0x00000000 0xc C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) - .text 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) - .eh_frame 0x00000000 0x130 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) - .group 0x00000000 0xc C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(tinfo.o) - .text 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(tinfo.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(tinfo.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(tinfo.o) - .text._ZNKSt9type_info11__do_upcastEPKN10__cxxabiv117__class_type_infoEPPv - 0x00000000 0x4 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(tinfo.o) - .text._ZNSt9type_infoD0Ev - 0x00000000 0xa C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(tinfo.o) - .text._ZNKSt9type_info10__do_catchEPKS_PPvj - 0x00000000 0x42 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(tinfo.o) - .rodata._ZTVSt9type_info - 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(tinfo.o) - .eh_frame 0x00000000 0x80 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(tinfo.o) - .group 0x00000000 0xc C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(bad_alloc.o) - .text 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(bad_alloc.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(bad_alloc.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(bad_alloc.o) - .eh_frame 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(bad_alloc.o) - .group 0x00000000 0xc C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(class_type_info.o) - .text 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(class_type_info.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(class_type_info.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(class_type_info.o) - .eh_frame 0x00000000 0x12c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(class_type_info.o) - .text 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_ops.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_ops.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_ops.o) - .eh_frame 0x00000000 0x28 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_ops.o) - .group 0x00000000 0xc C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) - .group 0x00000000 0xc C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) - .group 0x00000000 0xc C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) - .group 0x00000000 0xc C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) - .text 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) - .text._ZNSt13bad_exceptionD2Ev - 0x00000000 0x2 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) - .rodata._ZNKSt9exception4whatEv.str1.4 - 0x00000000 0xf C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) - .text._ZNKSt9exception4whatEv - 0x00000000 0xa C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) - .rodata._ZNKSt13bad_exception4whatEv.str1.4 - 0x00000000 0x13 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) - .text._ZNKSt13bad_exception4whatEv - 0x00000000 0xa C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) - .text._ZNSt9exceptionD0Ev - 0x00000000 0xa C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) - .text._ZNSt13bad_exceptionD0Ev - 0x00000000 0xa C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) - .text._ZN10__cxxabiv115__forced_unwindD2Ev - 0x00000000 0x2 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) - .text._ZN10__cxxabiv115__forced_unwindD0Ev - 0x00000000 0xa C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) - .text._ZN10__cxxabiv119__foreign_exceptionD2Ev - 0x00000000 0x2 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) - .text._ZN10__cxxabiv119__foreign_exceptionD0Ev - 0x00000000 0xa C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) - .text._ZGTtNKSt9exceptionD1Ev - 0x00000000 0x2 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) - .text._ZGTtNKSt13bad_exceptionD1Ev - 0x00000000 0x2 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) - .rodata._ZTVSt9exception - 0x00000000 0x14 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) - .rodata._ZTVSt13bad_exception - 0x00000000 0x14 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) - .rodata._ZTVN10__cxxabiv115__forced_unwindE - 0x00000000 0x14 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) - .rodata._ZTVN10__cxxabiv119__foreign_exceptionE - 0x00000000 0x14 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) - .eh_frame 0x00000000 0x104 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) - .text 0x00000000 0x28 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_lshrdi3.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_lshrdi3.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_lshrdi3.o) - .debug_info 0x00000000 0x1b6 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_lshrdi3.o) - .debug_abbrev 0x00000000 0x10c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_lshrdi3.o) - .debug_loclists - 0x00000000 0x6b C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_lshrdi3.o) - .debug_aranges - 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_lshrdi3.o) - .debug_line 0x00000000 0x107 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_lshrdi3.o) - .debug_str 0x00000000 0x1e4 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_lshrdi3.o) - .debug_line_str - 0x00000000 0x1b2 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_lshrdi3.o) - .comment 0x00000000 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_lshrdi3.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_lshrdi3.o) - .debug_frame 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_lshrdi3.o) - .riscv.attributes - 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_lshrdi3.o) - .text 0x00000000 0x28 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ashldi3.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ashldi3.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ashldi3.o) - .debug_info 0x00000000 0x1b6 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ashldi3.o) - .debug_abbrev 0x00000000 0x10c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ashldi3.o) - .debug_loclists - 0x00000000 0x6b C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ashldi3.o) - .debug_aranges - 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ashldi3.o) - .debug_line 0x00000000 0x107 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ashldi3.o) - .debug_str 0x00000000 0x1e4 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ashldi3.o) - .debug_line_str - 0x00000000 0x1b2 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ashldi3.o) - .comment 0x00000000 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ashldi3.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ashldi3.o) - .debug_frame 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ashldi3.o) - .riscv.attributes - 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ashldi3.o) - .text 0x00000000 0x40 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ffssi2.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ffssi2.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ffssi2.o) - .debug_info 0x00000000 0x164 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ffssi2.o) - .debug_abbrev 0x00000000 0xd0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ffssi2.o) - .debug_loclists - 0x00000000 0x81 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ffssi2.o) - .debug_aranges - 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ffssi2.o) - .debug_rnglists - 0x00000000 0x16 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ffssi2.o) - .debug_line 0x00000000 0x11b C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ffssi2.o) - .debug_str 0x00000000 0x1d3 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ffssi2.o) - .debug_line_str - 0x00000000 0x1b2 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ffssi2.o) - .comment 0x00000000 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ffssi2.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ffssi2.o) - .debug_frame 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ffssi2.o) - .riscv.attributes - 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ffssi2.o) - .text 0x00000000 0x4c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ffsdi2.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ffsdi2.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ffsdi2.o) - .debug_info 0x00000000 0x20a C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ffsdi2.o) - .debug_abbrev 0x00000000 0x13d C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ffsdi2.o) - .debug_loclists - 0x00000000 0x89 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ffsdi2.o) - .debug_aranges - 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ffsdi2.o) - .debug_rnglists - 0x00000000 0x16 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ffsdi2.o) - .debug_line 0x00000000 0x157 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ffsdi2.o) - .debug_str 0x00000000 0x1fc C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ffsdi2.o) - .debug_line_str - 0x00000000 0x1b2 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ffsdi2.o) - .comment 0x00000000 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ffsdi2.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ffsdi2.o) - .debug_frame 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ffsdi2.o) - .riscv.attributes - 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ffsdi2.o) - .text 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clz.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clz.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clz.o) - .rodata 0x00000000 0x100 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clz.o) - .debug_info 0x00000000 0xed C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clz.o) - .debug_abbrev 0x00000000 0x70 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clz.o) - .debug_aranges - 0x00000000 0x18 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clz.o) - .debug_line 0x00000000 0x3f C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clz.o) - .debug_str 0x00000000 0x1a7 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clz.o) - .debug_line_str - 0x00000000 0x1b2 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clz.o) - .comment 0x00000000 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clz.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clz.o) - .riscv.attributes - 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clz.o) - .text 0x00000000 0x3c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clzsi2.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clzsi2.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clzsi2.o) - .debug_info 0x00000000 0x157 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clzsi2.o) - .debug_abbrev 0x00000000 0xca C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clzsi2.o) - .debug_loclists - 0x00000000 0x44 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clzsi2.o) - .debug_aranges - 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clzsi2.o) - .debug_rnglists - 0x00000000 0x16 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clzsi2.o) - .debug_line 0x00000000 0xdb C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clzsi2.o) - .debug_str 0x00000000 0x1c4 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clzsi2.o) - .debug_line_str - 0x00000000 0x1b2 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clzsi2.o) - .comment 0x00000000 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clzsi2.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clzsi2.o) - .debug_frame 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clzsi2.o) - .riscv.attributes - 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clzsi2.o) - .text 0x00000000 0x3c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ctzsi2.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ctzsi2.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ctzsi2.o) - .debug_info 0x00000000 0x173 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ctzsi2.o) - .debug_abbrev 0x00000000 0xdd C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ctzsi2.o) - .debug_loclists - 0x00000000 0x75 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ctzsi2.o) - .debug_aranges - 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ctzsi2.o) - .debug_rnglists - 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ctzsi2.o) - .debug_line 0x00000000 0xf9 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ctzsi2.o) - .debug_str 0x00000000 0x1d4 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ctzsi2.o) - .debug_line_str - 0x00000000 0x1b2 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ctzsi2.o) - .comment 0x00000000 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ctzsi2.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ctzsi2.o) - .debug_frame 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ctzsi2.o) - .riscv.attributes - 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ctzsi2.o) - .text 0x00000000 0x4a C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ctzdi2.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ctzdi2.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ctzdi2.o) - .debug_info 0x00000000 0x215 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ctzdi2.o) - .debug_abbrev 0x00000000 0x13d C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ctzdi2.o) - .debug_loclists - 0x00000000 0x86 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ctzdi2.o) - .debug_aranges - 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ctzdi2.o) - .debug_rnglists - 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ctzdi2.o) - .debug_line 0x00000000 0x143 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ctzdi2.o) - .debug_str 0x00000000 0x1fe C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ctzdi2.o) - .debug_line_str - 0x00000000 0x1b2 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ctzdi2.o) - .comment 0x00000000 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ctzdi2.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ctzdi2.o) - .debug_frame 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ctzdi2.o) - .riscv.attributes - 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ctzdi2.o) - .text 0x00000000 0x42 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_popcountsi2.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_popcountsi2.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_popcountsi2.o) - .debug_info 0x00000000 0xe6 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_popcountsi2.o) - .debug_abbrev 0x00000000 0x65 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_popcountsi2.o) - .debug_loclists - 0x00000000 0xd6 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_popcountsi2.o) - .debug_aranges - 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_popcountsi2.o) - .debug_line 0x00000000 0xe9 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_popcountsi2.o) - .debug_str 0x00000000 0x1ab C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_popcountsi2.o) - .debug_line_str - 0x00000000 0x1b2 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_popcountsi2.o) - .comment 0x00000000 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_popcountsi2.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_popcountsi2.o) - .debug_frame 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_popcountsi2.o) - .riscv.attributes - 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_popcountsi2.o) - .text 0x00000000 0x52 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_bswapdi2.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_bswapdi2.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_bswapdi2.o) - .debug_info 0x00000000 0xe6 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_bswapdi2.o) - .debug_abbrev 0x00000000 0x65 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_bswapdi2.o) - .debug_loclists - 0x00000000 0x21 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_bswapdi2.o) - .debug_aranges - 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_bswapdi2.o) - .debug_line 0x00000000 0xcf C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_bswapdi2.o) - .debug_str 0x00000000 0x1a7 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_bswapdi2.o) - .debug_line_str - 0x00000000 0x1b2 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_bswapdi2.o) - .comment 0x00000000 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_bswapdi2.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_bswapdi2.o) - .debug_frame 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_bswapdi2.o) - .riscv.attributes - 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_bswapdi2.o) - .text 0x00000000 0x394 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_divdi3.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_divdi3.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_divdi3.o) - .debug_info 0x00000000 0x7a8 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_divdi3.o) - .debug_abbrev 0x00000000 0x1bf C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_divdi3.o) - .debug_loclists - 0x00000000 0x556 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_divdi3.o) - .debug_aranges - 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_divdi3.o) - .debug_rnglists - 0x00000000 0x8e C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_divdi3.o) - .debug_line 0x00000000 0xa2e C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_divdi3.o) - .debug_str 0x00000000 0x259 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_divdi3.o) - .debug_line_str - 0x00000000 0x1b2 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_divdi3.o) - .comment 0x00000000 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_divdi3.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_divdi3.o) - .eh_frame 0x00000000 0x28 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_divdi3.o) - .riscv.attributes - 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_divdi3.o) - .text 0x00000000 0x362 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_moddi3.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_moddi3.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_moddi3.o) - .debug_info 0x00000000 0x7f1 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_moddi3.o) - .debug_abbrev 0x00000000 0x1ca C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_moddi3.o) - .debug_loclists - 0x00000000 0x479 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_moddi3.o) - .debug_aranges - 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_moddi3.o) - .debug_rnglists - 0x00000000 0x70 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_moddi3.o) - .debug_line 0x00000000 0xa36 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_moddi3.o) - .debug_str 0x00000000 0x259 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_moddi3.o) - .debug_line_str - 0x00000000 0x1b2 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_moddi3.o) - .comment 0x00000000 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_moddi3.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_moddi3.o) - .eh_frame 0x00000000 0x28 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_moddi3.o) - .riscv.attributes - 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_moddi3.o) - .text 0x00000000 0x35a C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_udivdi3.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_udivdi3.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_udivdi3.o) - .debug_info 0x00000000 0x776 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_udivdi3.o) - .debug_abbrev 0x00000000 0x1a6 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_udivdi3.o) - .debug_loclists - 0x00000000 0x6ad C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_udivdi3.o) - .debug_aranges - 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_udivdi3.o) - .debug_rnglists - 0x00000000 0x8f C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_udivdi3.o) - .debug_line 0x00000000 0x97b C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_udivdi3.o) - .debug_str 0x00000000 0x25a C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_udivdi3.o) - .debug_line_str - 0x00000000 0x1b2 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_udivdi3.o) - .comment 0x00000000 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_udivdi3.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_udivdi3.o) - .eh_frame 0x00000000 0x28 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_udivdi3.o) - .riscv.attributes - 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_udivdi3.o) - .text 0x00000000 0x322 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_umoddi3.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_umoddi3.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_umoddi3.o) - .debug_info 0x00000000 0x7c3 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_umoddi3.o) - .debug_abbrev 0x00000000 0x1aa C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_umoddi3.o) - .debug_loclists - 0x00000000 0x520 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_umoddi3.o) - .debug_aranges - 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_umoddi3.o) - .debug_rnglists - 0x00000000 0x56 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_umoddi3.o) - .debug_line 0x00000000 0x98d C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_umoddi3.o) - .debug_str 0x00000000 0x25a C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_umoddi3.o) - .debug_line_str - 0x00000000 0x1b2 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_umoddi3.o) - .comment 0x00000000 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_umoddi3.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_umoddi3.o) - .eh_frame 0x00000000 0x28 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_umoddi3.o) - .riscv.attributes - 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_umoddi3.o) - .text 0x00000000 0x458 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(muldf3.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(muldf3.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(muldf3.o) - .debug_info 0x00000000 0x6ac C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(muldf3.o) - .debug_abbrev 0x00000000 0x185 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(muldf3.o) - .debug_loclists - 0x00000000 0x7b4 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(muldf3.o) - .debug_aranges - 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(muldf3.o) - .debug_rnglists - 0x00000000 0x148 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(muldf3.o) - .debug_line 0x00000000 0xf02 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(muldf3.o) - .debug_str 0x00000000 0x3ae C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(muldf3.o) - .debug_line_str - 0x00000000 0x1c8 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(muldf3.o) - .comment 0x00000000 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(muldf3.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(muldf3.o) - .debug_frame 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(muldf3.o) - .riscv.attributes - 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(muldf3.o) - .text 0x00000000 0x5f6 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(subdf3.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(subdf3.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(subdf3.o) - .debug_info 0x00000000 0x4f2 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(subdf3.o) - .debug_abbrev 0x00000000 0x186 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(subdf3.o) - .debug_loclists - 0x00000000 0xafa C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(subdf3.o) - .debug_aranges - 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(subdf3.o) - .debug_rnglists - 0x00000000 0xf0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(subdf3.o) - .debug_line 0x00000000 0x1384 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(subdf3.o) - .debug_str 0x00000000 0x294 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(subdf3.o) - .debug_line_str - 0x00000000 0x1be C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(subdf3.o) - .comment 0x00000000 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(subdf3.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(subdf3.o) - .debug_frame 0x00000000 0x4c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(subdf3.o) - .riscv.attributes - 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(subdf3.o) - .text 0x00000000 0x64 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(fixdfsi.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(fixdfsi.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(fixdfsi.o) - .debug_info 0x00000000 0x1c2 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(fixdfsi.o) - .debug_abbrev 0x00000000 0x15f C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(fixdfsi.o) - .debug_loclists - 0x00000000 0xaa C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(fixdfsi.o) - .debug_aranges - 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(fixdfsi.o) - .debug_rnglists - 0x00000000 0x13 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(fixdfsi.o) - .debug_line 0x00000000 0x1df C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(fixdfsi.o) - .debug_str 0x00000000 0x1a1 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(fixdfsi.o) - .debug_line_str - 0x00000000 0x1cb C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(fixdfsi.o) - .comment 0x00000000 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(fixdfsi.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(fixdfsi.o) - .debug_frame 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(fixdfsi.o) - .riscv.attributes - 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(fixdfsi.o) - .text 0x00000000 0x74 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatsidf.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatsidf.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatsidf.o) - .debug_info 0x00000000 0x268 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatsidf.o) - .debug_abbrev 0x00000000 0x164 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatsidf.o) - .debug_loclists - 0x00000000 0x95 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatsidf.o) - .debug_aranges - 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatsidf.o) - .debug_rnglists - 0x00000000 0x2b C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatsidf.o) - .debug_line 0x00000000 0x225 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatsidf.o) - .debug_str 0x00000000 0x23e C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatsidf.o) - .debug_line_str - 0x00000000 0x1d1 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatsidf.o) - .comment 0x00000000 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatsidf.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatsidf.o) - .debug_frame 0x00000000 0x40 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatsidf.o) - .riscv.attributes - 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatsidf.o) - .text 0x00000000 0xc0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatsisf.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatsisf.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatsisf.o) - .debug_info 0x00000000 0x213 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatsisf.o) - .debug_abbrev 0x00000000 0x16d C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatsisf.o) - .debug_loclists - 0x00000000 0x187 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatsisf.o) - .debug_aranges - 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatsisf.o) - .debug_rnglists - 0x00000000 0x45 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatsisf.o) - .debug_line 0x00000000 0x37a C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatsisf.o) - .debug_str 0x00000000 0x21f C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatsisf.o) - .debug_line_str - 0x00000000 0x1d1 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatsisf.o) - .comment 0x00000000 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatsisf.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatsisf.o) - .debug_frame 0x00000000 0x38 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatsisf.o) - .riscv.attributes - 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatsisf.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(save-restore.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(save-restore.o) - .eh_frame 0x00000000 0xf8 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(save-restore.o) - .text 0x00000000 0x0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - .data 0x00000000 0x0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - .bss 0x00000000 0x0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - .text.unlikely.abort_expect_void - 0x00000000 0x8 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - .text.unlikely.abort_expect_void_and_return - 0x00000000 0x8 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - .text.unlikely.forward_abort_uw_ctx - 0x00000000 0x8 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - .text.unlikely.__wrap___register_frame_info_bases - 0x00000000 0x8 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - .text.unlikely.__wrap___register_frame_info - 0x00000000 0x8 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - .text.unlikely.__wrap___register_frame_info_table_bases - 0x00000000 0x8 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - .text.unlikely.__wrap___register_frame_info_table - 0x00000000 0x8 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - .text.unlikely.__wrap__Unwind_Find_FDE - 0x00000000 0x8 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - .text.unlikely.__wrap__Unwind_GetGR - 0x00000000 0x8 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - .text.unlikely.__wrap__Unwind_GetCFA - 0x00000000 0x8 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - .text.unlikely.__wrap__Unwind_SetIP - 0x00000000 0x8 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - .text.unlikely.__wrap__Unwind_SetGR - 0x00000000 0x8 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - .text.unlikely.__wrap__Unwind_GetIPInfo - 0x00000000 0x8 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - .text.unlikely._Z17__frame_state_forPvP11frame_state - 0x00000000 0x8 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - .text.unlikely.__wrap__Unwind_Resume - 0x00000000 0x8 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - .text.unlikely.__wrap__Unwind_RaiseException - 0x00000000 0x8 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - .text.unlikely.__wrap__Unwind_ForcedUnwind - 0x00000000 0x8 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - .text.unlikely.__wrap__Unwind_Backtrace - 0x00000000 0x8 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - .text 0x00000000 0x0 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_track.o) - .data 0x00000000 0x0 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_track.o) - .bss 0x00000000 0x0 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_track.o) - .text.bt_track_pbus_update - 0x00000000 0x32 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_track.o) - .text.txpwr_correct - 0x00000000 0x68 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_track.o) - .text.tx_pwctrl_background - 0x00000000 0x52 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_track.o) - .text.bt_track_pll_cap - 0x00000000 0x66 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_track.o) - .text.phy_param_track - 0x00000000 0x64 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_track.o) - .text.wifi_track_tx_power - 0x00000000 0x2 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_track.o) - .text 0x00000000 0x0 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_api.o) - .data 0x00000000 0x0 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_api.o) - .bss 0x00000000 0x0 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_api.o) - .text.RFChannelSel - 0x00000000 0x8 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_api.o) - .text.phy_change_channel - 0x00000000 0x16 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_api.o) - .text.phy_bt_power_track - 0x00000000 0xa C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_api.o) - .text.phy_freq_mem_backup - 0x00000000 0x2 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_api.o) - .text.ant_dft_cfg - 0x00000000 0x6c C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_api.o) - .text.ant_wifitx_cfg - 0x00000000 0x2 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_api.o) - .text.ant_wifirx_cfg_rom - 0x00000000 0xb8 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_api.o) - .text.ant_bttx_cfg_rom - 0x00000000 0x2a C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_api.o) - .text.ant_btrx_cfg - 0x00000000 0x54 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_api.o) - .text.ant_tx_cfg - 0x00000000 0x8 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_api.o) - .text.ant_rx_cfg - 0x00000000 0x30 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_api.o) - .text.phy_chan_dump_cfg - 0x00000000 0x146 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_api.o) - .text.phy_enable_low_rate - 0x00000000 0x116 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_api.o) - .text.phy_disable_low_rate - 0x00000000 0x116 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_api.o) - .text.phy_dig_reg_backup - 0x00000000 0x5b2 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_api.o) - .text.phy_chan_filt_set - 0x00000000 0x2 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_api.o) - .text.phy_rx11blr_cfg - 0x00000000 0x132 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_api.o) - .text.bb_wdt_rst_enable - 0x00000000 0x66 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_api.o) - .text.bb_wdt_int_enable - 0x00000000 0x6a C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_api.o) - .text.bb_wdt_timeout_clear - 0x00000000 0x62 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_api.o) - .text.bb_wdt_get_status - 0x00000000 0x26 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_api.o) - .text.set_cca 0x00000000 0x122 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_api.o) - .text.set_rx_sense - 0x00000000 0x712 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_api.o) - .text.noise_check_loop - 0x00000000 0x2 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_api.o) - .text 0x00000000 0x0 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) - .data 0x00000000 0x0 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) - .bss 0x00000000 0x0 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) - .text.phy_get_romfunc_addr - 0x00000000 0x2 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) - .text.register_chipv7_phy_init_param - 0x00000000 0x2a C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) - .text.rf_cal_data_recovery - 0x00000000 0x42 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) - .text.phy_rfcal_data_sub - 0x00000000 0x64 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) - .text.rf_cal_data_backup - 0x00000000 0x16 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) - .text.phy_rfcal_data_check - 0x00000000 0xb0 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) - .bss.g_phyFuns - 0x00000000 0x4 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) - .text 0x00000000 0x0 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pbus.o) - .data 0x00000000 0x0 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pbus.o) - .bss 0x00000000 0x0 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pbus.o) - .text.set_loopback_gain - 0x00000000 0x68 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pbus.o) - .text.set_pbus_mem_update_lo_eco2 - 0x00000000 0x1d6 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pbus.o) - .text.set_pbus_mem_update_lo - 0x00000000 0x112 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pbus.o) - .text.set_pbus_mem_update - 0x00000000 0x4c C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pbus.o) - .text.set_pbus_logain - 0x00000000 0x9e C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pbus.o) - .text 0x00000000 0x0 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_hw_freq.o) - .data 0x00000000 0x0 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_hw_freq.o) - .bss 0x00000000 0x0 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_hw_freq.o) - .text.freq_module_resetn - 0x00000000 0x24 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_hw_freq.o) - .text.bt_txpwr_freq - 0x00000000 0x9c C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_hw_freq.o) - .text.pll_dac_mem_update - 0x00000000 0xb2 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_hw_freq.o) - .text.pll_mem_update - 0x00000000 0xca C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_hw_freq.o) - .rodata.pll_mem_update.str1.4 - 0x00000000 0x7 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_hw_freq.o) - .text 0x00000000 0x0 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rfpll.o) - .data 0x00000000 0x0 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rfpll.o) - .bss 0x00000000 0x0 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rfpll.o) - .text.mhz2ieee - 0x00000000 0x3c C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rfpll.o) - .text.phy_set_freq - 0x00000000 0x14 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rfpll.o) - .text.rfpll_cap_init_cal - 0x00000000 0xd4 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rfpll.o) - .text.chip_v7_set_chan_misc - 0x00000000 0x2 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rfpll.o) - .text.chip_v7_set_chan_offset - 0x00000000 0x78 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rfpll.o) - .text.set_chanfreq - 0x00000000 0x24 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rfpll.o) - .text.get_pll_ref_code - 0x00000000 0x2 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rfpll.o) - .text 0x00000000 0x0 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tsens.o) - .data 0x00000000 0x0 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tsens.o) - .bss 0x00000000 0x0 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tsens.o) - .text.phy_set_tsens_power - 0x00000000 0x1c C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tsens.o) - .text.code_to_temp - 0x00000000 0x4a C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tsens.o) - .text.tsens_dac_to_index - 0x00000000 0x30 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tsens.o) - .text.tsens_dac_cal_new - 0x00000000 0x72 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tsens.o) - .text.phy_set_tsens_range - 0x00000000 0x14 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tsens.o) - .text.tsens_code_read - 0x00000000 0xc C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tsens.o) - .text.tsens_temp_read_new - 0x00000000 0x6a C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tsens.o) - .text.phy_get_tsens_value - 0x00000000 0x8 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tsens.o) - .rodata.phy_tsens_attribute - 0x00000000 0x1e C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tsens.o) - .text 0x00000000 0x0 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_basic.o) - .data 0x00000000 0x0 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_basic.o) - .bss 0x00000000 0x0 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_basic.o) - .text.set_chan_cal_interp - 0x00000000 0x46 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_basic.o) - .text.loopback_mode_en - 0x00000000 0x20 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_basic.o) - .text.phy_byte_to_word - 0x00000000 0x1e C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_basic.o) - .text.phy_get_rx_freq - 0x00000000 0x36 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_basic.o) - .text.bb_bss_cbw40 - 0x00000000 0x134 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_basic.o) - .text.set_adc_rand - 0x00000000 0x9a C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_basic.o) - .text.phy_time_now - 0x00000000 0x1e C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_basic.o) - .rodata 0x00000000 0x8 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_basic.o) - .text 0x00000000 0x0 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_analog_cal.o) - .data 0x00000000 0x0 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_analog_cal.o) - .bss 0x00000000 0x0 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_analog_cal.o) - .text 0x00000000 0x0 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pwdet.o) - .data 0x00000000 0x0 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pwdet.o) - .bss 0x00000000 0x0 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pwdet.o) - .text.pwdet_wait_idle - 0x00000000 0x14 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pwdet.o) - .text.pkdet_vol_start - 0x00000000 0x58 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pwdet.o) - .text.meas_tone_pwr_db - 0x00000000 0x5c C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pwdet.o) - .text.txtone_linear_pwr - 0x00000000 0x62 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pwdet.o) - .text.read_sar2_code - 0x00000000 0x20 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pwdet.o) - .text.get_sar2_vol - 0x00000000 0xb0 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pwdet.o) - .text.get_pll_vol - 0x00000000 0x52 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pwdet.o) - .text.phy_pwdet_always_en - 0x00000000 0x3c C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pwdet.o) - .text.phy_pwdet_onetime_en - 0x00000000 0x32 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pwdet.o) - .text 0x00000000 0x0 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_gain.o) - .data 0x00000000 0x0 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_gain.o) - .bss 0x00000000 0x0 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_gain.o) - .text 0x00000000 0x0 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_debug.o) - .data 0x00000000 0x0 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_debug.o) - .bss 0x00000000 0x0 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_debug.o) - .text.get_phy_version_str - 0x00000000 0x54 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_debug.o) - .text.phy_reg_check - 0x00000000 0x282 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_debug.o) - .text.phy_i2c_check - 0x00000000 0x1c6 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_debug.o) - .text.get_iq_value - 0x00000000 0x36 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_debug.o) - .text.get_dc_value - 0x00000000 0xe C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_debug.o) - .text.get_bias_ref_code - 0x00000000 0x74 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_debug.o) - .text.phy_get_vdd33 - 0x00000000 0x86 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_debug.o) - .text.rfpll_cap_check - 0x00000000 0x100 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_debug.o) - .text.chip_version_print - 0x00000000 0x28 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_debug.o) - .text.pbus_print - 0x00000000 0xb4 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_debug.o) - .text.debug_print_line - 0x00000000 0x2 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_debug.o) - .text.bt_rx_force - 0x00000000 0x64 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_debug.o) - .text.force_rx_gain - 0x00000000 0xae C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_debug.o) - .text.phy_mem_print - 0x00000000 0xce C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_debug.o) - .text.phy_mem_read - 0x00000000 0x38 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_debug.o) - .text.phy_mem_write - 0x00000000 0x38 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_debug.o) - .text.phy_tx_gain_print - 0x00000000 0x2a C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_debug.o) - .text.phy_cal_print - 0x00000000 0x172 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_debug.o) - .bss.phy_version_str - 0x00000000 0x32 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_debug.o) - .rodata.chip_version_print.str1.4 - 0x00000000 0x2f C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_debug.o) - .rodata.pbus_print.str1.4 - 0x00000000 0x37 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_debug.o) - .rodata.phy_cal_print.str1.4 - 0x00000000 0xe9 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_debug.o) - .rodata.phy_i2c_check.str1.4 - 0x00000000 0xd0 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_debug.o) - .rodata.phy_mem_print.str1.4 - 0x00000000 0x1b C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_debug.o) - .rodata.phy_reg_check.str1.4 - 0x00000000 0x120 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_debug.o) - .rodata.phy_tx_gain_print.str1.4 - 0x00000000 0x16 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_debug.o) - .rodata.rfpll_cap_check.str1.4 - 0x00000000 0x20 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_debug.o) - .text 0x00000000 0x0 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_gain.o) - .data 0x00000000 0x0 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_gain.o) - .bss 0x00000000 0x0 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_gain.o) - .text.bt_get_tx_gain_level - 0x00000000 0x38 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_gain.o) - .text 0x00000000 0x0 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - .data 0x00000000 0x0 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - .bss 0x00000000 0x0 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - .text.disable_agc - 0x00000000 0x2 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - .text.enable_agc - 0x00000000 0x2 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - .text.disable_wifi_agc - 0x00000000 0x2 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - .text.enable_wifi_agc - 0x00000000 0x2 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - .text.phy_disable_cca - 0x00000000 0xbc C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - .text.phy_enable_cca - 0x00000000 0x64 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - .text.bb_bss_cbw40_dig - 0x00000000 0x2 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - .text.cbw2040_cfg - 0x00000000 0x9e C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - .text.mac_tx_chan_offset - 0x00000000 0x2 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - .text.tx_paon_set - 0x00000000 0x108 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - .text.bt_gain_offset - 0x00000000 0x5a C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - .text.mac_enable_bb - 0x00000000 0x2 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - .text.bb_wdg_cfg - 0x00000000 0xc4 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - .text.fe_txrx_reset - 0x00000000 0x24 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - .text.set_rx_comp - 0x00000000 0x2 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - .text.bb_reg_init - 0x00000000 0x8c C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - .text.txiq_set_reg - 0x00000000 0x24 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - .text.rxiq_set_reg - 0x00000000 0x58 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - .text.rx_gain_force - 0x00000000 0x15e C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - .text.start_tx_tone_step - 0x00000000 0x50 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - .text.bb_wdg_test_en - 0x00000000 0x7e C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - .text.noise_floor_auto_set - 0x00000000 0x16a C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - .text.read_hw_noisefloor - 0x00000000 0x36 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - .text.bt_tx_dig_gain - 0x00000000 0x2 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - .text.wifi_tx_dig_reg - 0x00000000 0x2 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - .text.wifi_agc_sat_gain - 0x00000000 0x60 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - .text.phy_set_bbfreq_init - 0x00000000 0xbe C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - .text.phy_rx_sense_set - 0x00000000 0x1b2 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - .text.tx_state_set - 0x00000000 0x4c C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - .text.phy_close_pa - 0x00000000 0x5e C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - .text.phy_freq_correct - 0x00000000 0x310 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - .text.wifi_rifs_mode_en - 0x00000000 0x5e C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - .text.rfagc_disable - 0x00000000 0x26 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - .text.set_noise_floor - 0x00000000 0xf0 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - .text.phy_force_pwr_index - 0x00000000 0x3a C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - .text.nrx_freq_set - 0x00000000 0x84 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - .text.freq_reg_init1 - 0x00000000 0x52 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - .text 0x00000000 0x0 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_cal.o) - .data 0x00000000 0x0 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_cal.o) - .bss 0x00000000 0x0 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_cal.o) - .text.set_cal_rxdc - 0x00000000 0x50 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_cal.o) - .text.rxiq_get_mis - 0x00000000 0x152 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_cal.o) - .text.rxiq_cover_mg_mp - 0x00000000 0xc4 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_cal.o) - .text.rfcal_rxiq - 0x00000000 0x7c C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_cal.o) - .text.get_rfcal_rxiq_data - 0x00000000 0x11c C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_cal.o) - .text.pbus_rx_dco_cal - 0x00000000 0x21e C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_cal.o) - .text.set_lb_txiq - 0x00000000 0x48 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_cal.o) - .text.set_rx_gain_cal_iq - 0x00000000 0x206 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_cal.o) - .rodata 0x00000000 0x10 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_cal.o) - .rodata.get_rfcal_rxiq_data.str1.4 - 0x00000000 0xa C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_cal.o) - .rodata.pbus_rx_dco_cal.str1.4 - 0x00000000 0x3f C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_cal.o) - .rodata.rxiq_get_mis.str1.4 - 0x00000000 0xc C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_cal.o) - .rodata.set_rx_gain_cal_iq.str1.4 - 0x00000000 0x38 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_cal.o) - .text 0x00000000 0x0 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_i2c.o) - .data 0x00000000 0x0 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_i2c.o) - .bss 0x00000000 0x0 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_i2c.o) - .text.phy_i2c_enter_critical - 0x00000000 0x2 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_i2c.o) - .text.phy_i2c_exit_critical - 0x00000000 0x2 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_i2c.o) - .text.get_i2c_mst0_mask - 0x00000000 0x14 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_i2c.o) - .text.i2c_paral_set_mst0 - 0x00000000 0x44 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_i2c.o) - .text.i2c_paral_set_read - 0x00000000 0x34 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_i2c.o) - .text.i2c_paral_read - 0x00000000 0x56 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_i2c.o) - .text.i2c_paral_write_mask - 0x00000000 0xd4 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_i2c.o) - .text.rom_i2c_readReg - 0x00000000 0x8 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_i2c.o) - .text.rom_i2c_writeReg - 0x00000000 0x8 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_i2c.o) - .text.rom_i2c_readReg_Mask - 0x00000000 0x8 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_i2c.o) - .text.rom_i2c_writeReg_Mask - 0x00000000 0x8 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_i2c.o) - .text.set_txcap_reg - 0x00000000 0x2 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_i2c.o) - .text 0x00000000 0x0 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_cal.o) - .data 0x00000000 0x0 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_cal.o) - .bss 0x00000000 0x0 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_cal.o) - .text.txiq_cal_init - 0x00000000 0x6e C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_cal.o) - .text.txdc_cal - 0x00000000 0x1b6 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_cal.o) - .text.txdc_cal_init - 0x00000000 0x36 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_cal.o) - .text.txiq_get_mis_pwr - 0x00000000 0x9c C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_cal.o) - .text.txiq_cover - 0x00000000 0x194 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_cal.o) - .text.pkdet_code_range - 0x00000000 0xbc C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_cal.o) - .text.rfcal_txiq - 0x00000000 0x9a C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_cal.o) - .text.get_power_atten - 0x00000000 0x126 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_cal.o) - .text.rfcal_txcap - 0x00000000 0x108 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_cal.o) - .text.tx_cap_init - 0x00000000 0x94 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_cal.o) - .text.rfcal_pwrctrl - 0x00000000 0x136 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_cal.o) - .text.tx_pwctrl_init - 0x00000000 0x6e C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_cal.o) - .text.get_target_power_offset - 0x00000000 0x52 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_cal.o) - .rodata.CSWTCH.75 - 0x00000000 0x3 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_cal.o) - .rodata.get_power_atten.str1.4 - 0x00000000 0x1e C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_cal.o) - .rodata.rfcal_pwrctrl.str1.4 - 0x00000000 0x39 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_cal.o) - .rodata.rfcal_txcap.str1.4 - 0x00000000 0x21 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_cal.o) - .text 0x00000000 0x0 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) - .data 0x00000000 0x0 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) - .bss 0x00000000 0x0 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) - .text.bt_bb_set_rx_sense - 0x00000000 0xbc C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) - .text.ieee802154_set_rx_sense - 0x00000000 0xc C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) - .text.bt_bb_set_max_gain - 0x00000000 0x1e C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) - .text.bt_bb_tx_cca_set - 0x00000000 0x140 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) - .text.bt_bb_tx_cca_fifo_reset - 0x00000000 0x14 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) - .text.bt_bb_tx_cca_fifo_empty - 0x00000000 0xe C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) - .text.bt_bb_tx_cca_fifo_full - 0x00000000 0xe C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) - .text.bt_bb_tx_cca_fifo_count - 0x00000000 0xe C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) - .text.bt_bb_tx_cca_fifo_read - 0x00000000 0xa C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) - .text.bt_bb_tx_cca_free_timer_set - 0x00000000 0x38 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) - .text.bt_bb_tx_cca_free_timer_sw_start - 0x00000000 0x12 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) - .text.bt_bb_tx_cca_free_timer_sw_start_value - 0x00000000 0x18 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) - .text.bt_bb_tx_cca_free_timer_cnt - 0x00000000 0xc C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) - .text.bt_bb_tx_cca_free_timer_is_sw_start - 0x00000000 0xe C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) - .text.bt_bb_tx_cca_free_timer_last_chan - 0x00000000 0x10 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) - .text.bt_bb_wdt_init - 0x00000000 0x44 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) - .text.bt_bb_get_le_tx_on_delay - 0x00000000 0x10 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) - .text.bt_bb_get_zb_tx_on_delay - 0x00000000 0xc C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) - .text.coex_pti_v2 - 0x00000000 0x2 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) - .text.force_coex_timer0_wifi_v2 - 0x00000000 0x2 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) - .text.force_coex_timer0_wifi_pti_v2 - 0x00000000 0x2 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) - .text.force_coex_timer1_BT_V3_2 - 0x00000000 0x2 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) - .text.force_coex_timer1_bt_pti_v2 - 0x00000000 0x2 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) - .text.force_coex_timer11_BT_V3_2 - 0x00000000 0x2 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) - .text.force_coex_timer11_bt_pti_v2 - 0x00000000 0x2 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) - .text.bt_get_channel_pwr_set - 0x00000000 0x64 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) - .text.bt_get_channel_pwr - 0x00000000 0xe C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) - .text.bt_get_channel_pwr_unset - 0x00000000 0x22 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) - .text.bt_set_chn - 0x00000000 0x22 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) - .text.bt_bb_set_corr_thresh_le - 0x00000000 0x74 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) - .text.bt_bb_ble_diag - 0x00000000 0x62 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) - .text.ble_tx_config_check - 0x00000000 0x186 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) - .text.bt_bb_tx_cca_en - 0x00000000 0x1a C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) - .rodata.ble_tx_config_check.str1.4 - 0x00000000 0x12a C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) - .text 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) - .data 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) - .bss 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) - .text.rtc_printf - 0x00000000 0x24 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) - .text 0x00000000 0x10 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-div.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-div.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-div.o) - .debug_info 0x00000000 0xec C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-div.o) - .debug_abbrev 0x00000000 0xb6 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-div.o) - .debug_loclists - 0x00000000 0x2b C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-div.o) - .debug_aranges - 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-div.o) - .debug_line 0x00000000 0x8b C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-div.o) - .debug_str 0x00000000 0x116 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-div.o) - .debug_line_str - 0x00000000 0x209 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-div.o) - .comment 0x00000000 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-div.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-div.o) - .debug_frame 0x00000000 0x28 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-div.o) - .riscv.attributes - 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-div.o) - .text 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-environ.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-environ.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-environ.o) - .text 0x00000000 0x54 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-itoa.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-itoa.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-itoa.o) - .debug_info 0x00000000 0x183 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-itoa.o) - .debug_abbrev 0x00000000 0xee C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-itoa.o) - .debug_loclists - 0x00000000 0xea C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-itoa.o) - .debug_aranges - 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-itoa.o) - .debug_line 0x00000000 0x14c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-itoa.o) - .debug_str 0x00000000 0x12a C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-itoa.o) - .debug_line_str - 0x00000000 0x20c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-itoa.o) - .comment 0x00000000 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-itoa.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-itoa.o) - .debug_frame 0x00000000 0x44 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-itoa.o) - .riscv.attributes - 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-itoa.o) - .text 0x00000000 0xa0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-utoa.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-utoa.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-utoa.o) - .rodata.str1.4 - 0x00000000 0x25 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-utoa.o) - .debug_info 0x00000000 0x1c1 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-utoa.o) - .debug_abbrev 0x00000000 0xf3 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-utoa.o) - .debug_loclists - 0x00000000 0x12b C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-utoa.o) - .debug_aranges - 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-utoa.o) - .debug_line 0x00000000 0x1e1 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-utoa.o) - .debug_str 0x00000000 0x145 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-utoa.o) - .debug_line_str - 0x00000000 0x217 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-utoa.o) - .comment 0x00000000 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-utoa.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-utoa.o) - .debug_frame 0x00000000 0x4c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-utoa.o) - .riscv.attributes - 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-utoa.o) - .text 0x00000000 0x14 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-iscntrl.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-iscntrl.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-iscntrl.o) - .debug_info 0x00000000 0xc1 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-iscntrl.o) - .debug_abbrev 0x00000000 0x7e C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-iscntrl.o) - .debug_loclists - 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-iscntrl.o) - .debug_aranges - 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-iscntrl.o) - .debug_line 0x00000000 0x76 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-iscntrl.o) - .debug_str 0x00000000 0x115 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-iscntrl.o) - .debug_line_str - 0x00000000 0x212 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-iscntrl.o) - .comment 0x00000000 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-iscntrl.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-iscntrl.o) - .debug_frame 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-iscntrl.o) - .riscv.attributes - 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-iscntrl.o) - .text 0x00000000 0x26 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-isprint.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-isprint.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-isprint.o) - .debug_info 0x00000000 0xe6 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-isprint.o) - .debug_abbrev 0x00000000 0x9d C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-isprint.o) - .debug_loclists - 0x00000000 0x34 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-isprint.o) - .debug_aranges - 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-isprint.o) - .debug_line 0x00000000 0x9e C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-isprint.o) - .debug_str 0x00000000 0x11d C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-isprint.o) - .debug_line_str - 0x00000000 0x212 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-isprint.o) - .comment 0x00000000 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-isprint.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-isprint.o) - .debug_frame 0x00000000 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-isprint.o) - .riscv.attributes - 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-isprint.o) - .text 0x00000000 0x396 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-qsort.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-qsort.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-qsort.o) - .debug_info 0x00000000 0x759 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-qsort.o) - .debug_abbrev 0x00000000 0x251 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-qsort.o) - .debug_loclists - 0x00000000 0x513 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-qsort.o) - .debug_aranges - 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-qsort.o) - .debug_rnglists - 0x00000000 0x1a C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-qsort.o) - .debug_line 0x00000000 0x8ad C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-qsort.o) - .debug_str 0x00000000 0x16e C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-qsort.o) - .debug_line_str - 0x00000000 0x27a C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-qsort.o) - .comment 0x00000000 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-qsort.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-qsort.o) - .debug_frame 0x00000000 0xa0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-qsort.o) - .riscv.attributes - 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-qsort.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf_float.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf_float.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf_i.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf_i.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfscanf_float.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfscanf_float.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fclose.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fclose.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fflush.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fflush.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fopen.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fopen.o) - .text 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fprintf.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fprintf.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fprintf.o) - .debug_info 0x00000000 0x97e C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fprintf.o) - .debug_abbrev 0x00000000 0x213 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fprintf.o) - .debug_loclists - 0x00000000 0x7a C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fprintf.o) - .debug_aranges - 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fprintf.o) - .debug_line 0x00000000 0x14d C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fprintf.o) - .debug_str 0x00000000 0x522 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fprintf.o) - .debug_line_str - 0x00000000 0x2ee C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fprintf.o) - .comment 0x00000000 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fprintf.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fprintf.o) - .debug_frame 0x00000000 0x50 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fprintf.o) - .riscv.attributes - 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fprintf.o) - .text 0x00000000 0x94 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fputc.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fputc.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fputc.o) - .debug_info 0x00000000 0x98a C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fputc.o) - .debug_abbrev 0x00000000 0x246 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fputc.o) - .debug_loclists - 0x00000000 0xb7 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fputc.o) - .debug_aranges - 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fputc.o) - .debug_rnglists - 0x00000000 0x13 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fputc.o) - .debug_line 0x00000000 0x19a C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fputc.o) - .debug_str 0x00000000 0x559 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fputc.o) - .debug_line_str - 0x00000000 0x2e7 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fputc.o) - .comment 0x00000000 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fputc.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fputc.o) - .debug_frame 0x00000000 0x58 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fputc.o) - .riscv.attributes - 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fputc.o) - .text 0x00000000 0xac C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fputs.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fputs.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fputs.o) - .debug_info 0x00000000 0xa5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fputs.o) - .debug_abbrev 0x00000000 0x253 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fputs.o) - .debug_loclists - 0x00000000 0xb6 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fputs.o) - .debug_aranges - 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fputs.o) - .debug_line 0x00000000 0x212 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fputs.o) - .debug_str 0x00000000 0x5a3 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fputs.o) - .debug_line_str - 0x00000000 0x2fa C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fputs.o) - .comment 0x00000000 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fputs.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fputs.o) - .debug_frame 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fputs.o) - .riscv.attributes - 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fputs.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fseek.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fseek.o) - .text 0x00000000 0x31e C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fvwrite.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fvwrite.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fvwrite.o) - .debug_info 0x00000000 0xc08 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fvwrite.o) - .debug_abbrev 0x00000000 0x23a C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fvwrite.o) - .debug_loclists - 0x00000000 0x2e6 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fvwrite.o) - .debug_aranges - 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fvwrite.o) - .debug_rnglists - 0x00000000 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fvwrite.o) - .debug_line 0x00000000 0x8b1 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fvwrite.o) - .debug_str 0x00000000 0x586 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fvwrite.o) - .debug_line_str - 0x00000000 0x301 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fvwrite.o) - .comment 0x00000000 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fvwrite.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fvwrite.o) - .debug_frame 0x00000000 0x60 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fvwrite.o) - .riscv.attributes - 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fvwrite.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fwalk.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fwalk.o) - .text 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-printf.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-printf.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-printf.o) - .debug_info 0x00000000 0x965 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-printf.o) - .debug_abbrev 0x00000000 0x224 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-printf.o) - .debug_loclists - 0x00000000 0x58 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-printf.o) - .debug_aranges - 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-printf.o) - .debug_line 0x00000000 0x171 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-printf.o) - .debug_str 0x00000000 0x520 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-printf.o) - .debug_line_str - 0x00000000 0x2eb C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-printf.o) - .comment 0x00000000 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-printf.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-printf.o) - .debug_frame 0x00000000 0x4c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-printf.o) - .riscv.attributes - 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-printf.o) - .text 0x00000000 0xc0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-putc.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-putc.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-putc.o) - .debug_info 0x00000000 0x9e6 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-putc.o) - .debug_abbrev 0x00000000 0x27a C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-putc.o) - .debug_loclists - 0x00000000 0x129 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-putc.o) - .debug_aranges - 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-putc.o) - .debug_rnglists - 0x00000000 0x1c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-putc.o) - .debug_line 0x00000000 0x1f0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-putc.o) - .debug_str 0x00000000 0x563 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-putc.o) - .debug_line_str - 0x00000000 0x2e4 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-putc.o) - .comment 0x00000000 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-putc.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-putc.o) - .debug_frame 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-putc.o) - .riscv.attributes - 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-putc.o) - .text 0x00000000 0xba C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-puts.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-puts.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-puts.o) - .rodata.str1.4 - 0x00000000 0x2 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-puts.o) - .debug_info 0x00000000 0xa49 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-puts.o) - .debug_abbrev 0x00000000 0x265 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-puts.o) - .debug_loclists - 0x00000000 0x95 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-puts.o) - .debug_aranges - 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-puts.o) - .debug_rnglists - 0x00000000 0x13 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-puts.o) - .debug_line 0x00000000 0x282 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-puts.o) - .debug_str 0x00000000 0x5a1 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-puts.o) - .debug_line_str - 0x00000000 0x2f7 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-puts.o) - .comment 0x00000000 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-puts.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-puts.o) - .debug_frame 0x00000000 0x54 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-puts.o) - .riscv.attributes - 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-puts.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-snprintf.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-snprintf.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sprintf.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sprintf.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-stdio.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-stdio.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-vsnprintf.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-vsnprintf.o) - .text 0x00000000 0xd2 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-wbuf.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-wbuf.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-wbuf.o) - .debug_info 0x00000000 0x992 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-wbuf.o) - .debug_abbrev 0x00000000 0x25a C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-wbuf.o) - .debug_loclists - 0x00000000 0xe8 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-wbuf.o) - .debug_aranges - 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-wbuf.o) - .debug_rnglists - 0x00000000 0x13 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-wbuf.o) - .debug_line 0x00000000 0x256 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-wbuf.o) - .debug_str 0x00000000 0x51a C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-wbuf.o) - .debug_line_str - 0x00000000 0x2ee C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-wbuf.o) - .comment 0x00000000 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-wbuf.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-wbuf.o) - .debug_frame 0x00000000 0x60 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-wbuf.o) - .riscv.attributes - 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-wbuf.o) - .text 0x00000000 0xd0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-wsetup.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-wsetup.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-wsetup.o) - .debug_info 0x00000000 0x8ef C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-wsetup.o) - .debug_abbrev 0x00000000 0x209 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-wsetup.o) - .debug_loclists - 0x00000000 0x58 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-wsetup.o) - .debug_aranges - 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-wsetup.o) - .debug_rnglists - 0x00000000 0x13 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-wsetup.o) - .debug_line 0x00000000 0x2aa C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-wsetup.o) - .debug_str 0x00000000 0x513 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-wsetup.o) - .debug_line_str - 0x00000000 0x2f3 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-wsetup.o) - .comment 0x00000000 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-wsetup.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-wsetup.o) - .debug_frame 0x00000000 0x38 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-wsetup.o) - .riscv.attributes - 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-wsetup.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fseeko.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fseeko.o) - .text 0x00000000 0x1a C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-memchr.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-memchr.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-memchr.o) - .debug_info 0x00000000 0xfc C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-memchr.o) - .debug_abbrev 0x00000000 0xb8 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-memchr.o) - .debug_loclists - 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-memchr.o) - .debug_aranges - 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-memchr.o) - .debug_line 0x00000000 0xba C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-memchr.o) - .debug_str 0x00000000 0x123 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-memchr.o) - .debug_line_str - 0x00000000 0x27d C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-memchr.o) - .comment 0x00000000 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-memchr.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-memchr.o) - .debug_frame 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-memchr.o) - .riscv.attributes - 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-memchr.o) - .text 0x00000000 0x48 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-memcmp.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-memcmp.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-memcmp.o) - .debug_info 0x00000000 0x10f C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-memcmp.o) - .debug_abbrev 0x00000000 0x8a C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-memcmp.o) - .debug_loclists - 0x00000000 0x130 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-memcmp.o) - .debug_aranges - 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-memcmp.o) - .debug_line 0x00000000 0x157 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-memcmp.o) - .debug_str 0x00000000 0x113 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-memcmp.o) - .debug_line_str - 0x00000000 0x27d C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-memcmp.o) - .comment 0x00000000 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-memcmp.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-memcmp.o) - .debug_frame 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-memcmp.o) - .riscv.attributes - 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-memcmp.o) - .text 0x00000000 0x1c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strcat.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strcat.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strcat.o) - .debug_info 0x00000000 0xd3 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strcat.o) - .debug_abbrev 0x00000000 0x80 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strcat.o) - .debug_loclists - 0x00000000 0x27 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strcat.o) - .debug_aranges - 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strcat.o) - .debug_line 0x00000000 0xe0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strcat.o) - .debug_str 0x00000000 0x10c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strcat.o) - .debug_line_str - 0x00000000 0x212 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strcat.o) - .comment 0x00000000 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strcat.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strcat.o) - .debug_frame 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strcat.o) - .riscv.attributes - 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strcat.o) - .text 0x00000000 0x22 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strcspn.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strcspn.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strcspn.o) - .debug_info 0x00000000 0xdd C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strcspn.o) - .debug_abbrev 0x00000000 0x99 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strcspn.o) - .debug_loclists - 0x00000000 0x42 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strcspn.o) - .debug_aranges - 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strcspn.o) - .debug_line 0x00000000 0xdf C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strcspn.o) - .debug_str 0x00000000 0x114 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strcspn.o) - .debug_line_str - 0x00000000 0x280 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strcspn.o) - .comment 0x00000000 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strcspn.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strcspn.o) - .debug_frame 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strcspn.o) - .riscv.attributes - 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strcspn.o) - .text 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strlcat.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strlcat.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strlcat.o) - .debug_info 0x00000000 0x143 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strlcat.o) - .debug_abbrev 0x00000000 0xdb C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strlcat.o) - .debug_loclists - 0x00000000 0x136 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strlcat.o) - .debug_aranges - 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strlcat.o) - .debug_line 0x00000000 0x1c7 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strlcat.o) - .debug_str 0x00000000 0x130 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strlcat.o) - .debug_line_str - 0x00000000 0x280 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strlcat.o) - .comment 0x00000000 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strlcat.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strlcat.o) - .debug_frame 0x00000000 0x34 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strlcat.o) - .riscv.attributes - 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strlcat.o) - .text 0x00000000 0x2e C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strlcpy.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strlcpy.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strlcpy.o) - .debug_info 0x00000000 0xf9 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strlcpy.o) - .debug_abbrev 0x00000000 0xaa C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strlcpy.o) - .debug_loclists - 0x00000000 0x4b C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strlcpy.o) - .debug_aranges - 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strlcpy.o) - .debug_line 0x00000000 0x117 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strlcpy.o) - .debug_str 0x00000000 0x125 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strlcpy.o) - .debug_line_str - 0x00000000 0x280 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strlcpy.o) - .comment 0x00000000 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strlcpy.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strlcpy.o) - .debug_frame 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strlcpy.o) - .riscv.attributes - 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strlcpy.o) - .text 0x00000000 0x2c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strncmp.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strncmp.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strncmp.o) - .debug_info 0x00000000 0xd2 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strncmp.o) - .debug_abbrev 0x00000000 0x76 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strncmp.o) - .debug_loclists - 0x00000000 0xa2 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strncmp.o) - .debug_aranges - 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strncmp.o) - .debug_line 0x00000000 0xf5 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strncmp.o) - .debug_str 0x00000000 0x114 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strncmp.o) - .debug_line_str - 0x00000000 0x280 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strncmp.o) - .comment 0x00000000 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strncmp.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strncmp.o) - .debug_frame 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strncmp.o) - .riscv.attributes - 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strncmp.o) - .text 0x00000000 0x24 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strncpy.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strncpy.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strncpy.o) - .debug_info 0x00000000 0x101 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strncpy.o) - .debug_abbrev 0x00000000 0xa1 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strncpy.o) - .debug_loclists - 0x00000000 0x5b C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strncpy.o) - .debug_aranges - 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strncpy.o) - .debug_line 0x00000000 0x106 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strncpy.o) - .debug_str 0x00000000 0x130 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strncpy.o) - .debug_line_str - 0x00000000 0x280 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strncpy.o) - .comment 0x00000000 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strncpy.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strncpy.o) - .debug_frame 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strncpy.o) - .riscv.attributes - 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strncpy.o) - .text 0x00000000 0x18 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strnlen.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strnlen.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strnlen.o) - .debug_info 0x00000000 0xd5 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strnlen.o) - .debug_abbrev 0x00000000 0x87 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strnlen.o) - .debug_loclists - 0x00000000 0xa5 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strnlen.o) - .debug_aranges - 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strnlen.o) - .debug_line 0x00000000 0xb5 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strnlen.o) - .debug_str 0x00000000 0x11a C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strnlen.o) - .debug_line_str - 0x00000000 0x280 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strnlen.o) - .comment 0x00000000 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strnlen.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strnlen.o) - .debug_frame 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strnlen.o) - .riscv.attributes - 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strnlen.o) - .text 0x00000000 0x36 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strstr.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strstr.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strstr.o) - .debug_info 0x00000000 0xe8 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strstr.o) - .debug_abbrev 0x00000000 0xa9 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strstr.o) - .debug_loclists - 0x00000000 0x24 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strstr.o) - .debug_aranges - 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strstr.o) - .debug_line 0x00000000 0x12c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strstr.o) - .debug_str 0x00000000 0x113 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strstr.o) - .debug_line_str - 0x00000000 0x27d C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strstr.o) - .comment 0x00000000 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strstr.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strstr.o) - .debug_frame 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strstr.o) - .riscv.attributes - 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strstr.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-localeconv.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-localeconv.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-reent.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-reent.o) - .sbss 0x00000000 0x4 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-reent.o) - .text 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-impure.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-impure.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-errno.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-errno.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysclose.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysclose.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysfcntl.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysfcntl.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysgettod.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysgettod.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysopen.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysopen.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysread.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysread.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-syswrite.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-syswrite.o) - .text 0x00000000 0x4a C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-memmove-stub.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-memmove-stub.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-memmove-stub.o) - .debug_info 0x00000000 0xff C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-memmove-stub.o) - .debug_abbrev 0x00000000 0xa6 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-memmove-stub.o) - .debug_loclists - 0x00000000 0x119 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-memmove-stub.o) - .debug_aranges - 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-memmove-stub.o) - .debug_line 0x00000000 0x104 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-memmove-stub.o) - .debug_str 0x00000000 0x12d C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-memmove-stub.o) - .debug_line_str - 0x00000000 0x2fa C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-memmove-stub.o) - .comment 0x00000000 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-memmove-stub.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-memmove-stub.o) - .debug_frame 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-memmove-stub.o) - .riscv.attributes - 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-memmove-stub.o) - .text 0x00000000 0xa8 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-memset.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-memset.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-memset.o) - .debug_line 0x00000000 0x18e C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-memset.o) - .debug_line_str - 0x00000000 0xe1 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-memset.o) - .debug_info 0x00000000 0x33 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-memset.o) - .debug_abbrev 0x00000000 0x28 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-memset.o) - .debug_aranges - 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-memset.o) - .debug_str 0x00000000 0xf6 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-memset.o) - .riscv.attributes - 0x00000000 0x5a C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-memset.o) - .text 0x00000000 0xe8 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-memcpy.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-memcpy.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-memcpy.o) - .debug_info 0x00000000 0x256 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-memcpy.o) - .debug_abbrev 0x00000000 0x107 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-memcpy.o) - .debug_loclists - 0x00000000 0x1d6 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-memcpy.o) - .debug_aranges - 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-memcpy.o) - .debug_line 0x00000000 0x31c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-memcpy.o) - .debug_str 0x00000000 0x134 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-memcpy.o) - .debug_line_str - 0x00000000 0x34a C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-memcpy.o) - .comment 0x00000000 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-memcpy.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-memcpy.o) - .debug_frame 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-memcpy.o) - .riscv.attributes - 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-memcpy.o) - .text 0x00000000 0x64 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strlen.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strlen.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strlen.o) - .debug_info 0x00000000 0x1a8 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strlen.o) - .debug_abbrev 0x00000000 0x121 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strlen.o) - .debug_loclists - 0x00000000 0x75 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strlen.o) - .debug_aranges - 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strlen.o) - .debug_rnglists - 0x00000000 0x13 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strlen.o) - .debug_line 0x00000000 0x242 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strlen.o) - .debug_str 0x00000000 0x147 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strlen.o) - .debug_line_str - 0x00000000 0x3e7 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strlen.o) - .comment 0x00000000 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strlen.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strlen.o) - .debug_frame 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strlen.o) - .riscv.attributes - 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strlen.o) - .text 0x00000000 0x60 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strcpy.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strcpy.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strcpy.o) - .debug_info 0x00000000 0x1e3 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strcpy.o) - .debug_abbrev 0x00000000 0x131 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strcpy.o) - .debug_loclists - 0x00000000 0x10c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strcpy.o) - .debug_aranges - 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strcpy.o) - .debug_rnglists - 0x00000000 0x13 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strcpy.o) - .debug_line 0x00000000 0x26d C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strcpy.o) - .debug_str 0x00000000 0x154 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strcpy.o) - .debug_line_str - 0x00000000 0x37c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strcpy.o) - .comment 0x00000000 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strcpy.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strcpy.o) - .debug_frame 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strcpy.o) - .riscv.attributes - 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strcpy.o) - .text 0x00000000 0x11e C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strcmp.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strcmp.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strcmp.o) - .debug_line 0x00000000 0x13a C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strcmp.o) - .debug_line_str - 0x00000000 0xe1 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strcmp.o) - .debug_info 0x00000000 0x33 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strcmp.o) - .debug_abbrev 0x00000000 0x28 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strcmp.o) - .debug_aranges - 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strcmp.o) - .debug_str 0x00000000 0xf6 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strcmp.o) - .riscv.attributes - 0x00000000 0x5a C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strcmp.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libm_a-sf_nan.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libm_a-sf_nan.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-dtoa.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-dtoa.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-mprec.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-mprec.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtod.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtod.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtol.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtol.o) - .text 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-ctype_.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-ctype_.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-ctype_.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-svfprintf.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-svfprintf.o) - .text 0x00000000 0x39e C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf.o) - .rodata.str1.4 - 0x00000000 0x13 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf.o) - .debug_info 0x00000000 0x1173 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf.o) - .debug_abbrev 0x00000000 0x2ff C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf.o) - .debug_loclists - 0x00000000 0x406 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf.o) - .debug_aranges - 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf.o) - .debug_rnglists - 0x00000000 0x17 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf.o) - .debug_line 0x00000000 0x9ad C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf.o) - .debug_str 0x00000000 0x88f C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf.o) - .debug_line_str - 0x00000000 0x3af C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf.o) - .comment 0x00000000 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf.o) - .debug_frame 0x00000000 0xe0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf.o) - .riscv.attributes - 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-flags.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-flags.o) - .text 0x00000000 0x12a C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-makebuf.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-makebuf.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-makebuf.o) - .debug_info 0x00000000 0xbc1 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-makebuf.o) - .debug_abbrev 0x00000000 0x257 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-makebuf.o) - .debug_loclists - 0x00000000 0x106 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-makebuf.o) - .debug_aranges - 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-makebuf.o) - .debug_line 0x00000000 0x391 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-makebuf.o) - .debug_str 0x00000000 0x675 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-makebuf.o) - .debug_line_str - 0x00000000 0x381 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-makebuf.o) - .comment 0x00000000 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-makebuf.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-makebuf.o) - .debug_frame 0x00000000 0x6c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-makebuf.o) - .riscv.attributes - 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-makebuf.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-refill.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-refill.o) - .text 0x00000000 0x8c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-locale.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-locale.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-locale.o) - .sbss 0x00000000 0x4 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-locale.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libm_a-s_nan.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libm_a-s_nan.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-gdtoa-gethex.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-gdtoa-gethex.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-gdtoa-hexnan.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-gdtoa-hexnan.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-mbtowc_r.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-mbtowc_r.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-wctomb_r.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-wctomb_r.o) - .text 0x00000000 0x5e0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(adddf3.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(adddf3.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(adddf3.o) - .debug_info 0x00000000 0x4f6 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(adddf3.o) - .debug_abbrev 0x00000000 0x186 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(adddf3.o) - .debug_loclists - 0x00000000 0xa83 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(adddf3.o) - .debug_aranges - 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(adddf3.o) - .debug_rnglists - 0x00000000 0xf2 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(adddf3.o) - .debug_line 0x00000000 0x1377 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(adddf3.o) - .debug_str 0x00000000 0x294 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(adddf3.o) - .debug_line_str - 0x00000000 0x1be C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(adddf3.o) - .comment 0x00000000 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(adddf3.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(adddf3.o) - .debug_frame 0x00000000 0x4c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(adddf3.o) - .riscv.attributes - 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(adddf3.o) - .text 0x00000000 0x536 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(divdf3.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(divdf3.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(divdf3.o) - .rodata 0x00000000 0x3c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(divdf3.o) - .debug_info 0x00000000 0x683 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(divdf3.o) - .debug_abbrev 0x00000000 0x17c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(divdf3.o) - .debug_loclists - 0x00000000 0xa11 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(divdf3.o) - .debug_aranges - 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(divdf3.o) - .debug_rnglists - 0x00000000 0xcd C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(divdf3.o) - .debug_line 0x00000000 0x110e C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(divdf3.o) - .debug_str 0x00000000 0x356 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(divdf3.o) - .debug_line_str - 0x00000000 0x1c8 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(divdf3.o) - .comment 0x00000000 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(divdf3.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(divdf3.o) - .debug_frame 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(divdf3.o) - .riscv.attributes - 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(divdf3.o) - .text 0x00000000 0x6a C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(eqdf2.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(eqdf2.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(eqdf2.o) - .debug_info 0x00000000 0x221 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(eqdf2.o) - .debug_abbrev 0x00000000 0x153 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(eqdf2.o) - .debug_loclists - 0x00000000 0x6a C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(eqdf2.o) - .debug_aranges - 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(eqdf2.o) - .debug_rnglists - 0x00000000 0x23 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(eqdf2.o) - .debug_line 0x00000000 0x277 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(eqdf2.o) - .debug_str 0x00000000 0x1a6 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(eqdf2.o) - .debug_line_str - 0x00000000 0x1cb C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(eqdf2.o) - .comment 0x00000000 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(eqdf2.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(eqdf2.o) - .debug_frame 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(eqdf2.o) - .riscv.attributes - 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(eqdf2.o) - .text 0x00000000 0xa0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(gedf2.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(gedf2.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(gedf2.o) - .debug_info 0x00000000 0x220 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(gedf2.o) - .debug_abbrev 0x00000000 0x168 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(gedf2.o) - .debug_loclists - 0x00000000 0x10f C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(gedf2.o) - .debug_aranges - 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(gedf2.o) - .debug_rnglists - 0x00000000 0x33 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(gedf2.o) - .debug_line 0x00000000 0x347 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(gedf2.o) - .debug_str 0x00000000 0x1ca C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(gedf2.o) - .debug_line_str - 0x00000000 0x1cb C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(gedf2.o) - .comment 0x00000000 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(gedf2.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(gedf2.o) - .debug_frame 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(gedf2.o) - .riscv.attributes - 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(gedf2.o) - .text 0x00000000 0xa0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(ledf2.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(ledf2.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(ledf2.o) - .debug_info 0x00000000 0x220 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(ledf2.o) - .debug_abbrev 0x00000000 0x168 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(ledf2.o) - .debug_loclists - 0x00000000 0x10f C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(ledf2.o) - .debug_aranges - 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(ledf2.o) - .debug_rnglists - 0x00000000 0x33 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(ledf2.o) - .debug_line 0x00000000 0x347 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(ledf2.o) - .debug_str 0x00000000 0x1ca C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(ledf2.o) - .debug_line_str - 0x00000000 0x1cb C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(ledf2.o) - .comment 0x00000000 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(ledf2.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(ledf2.o) - .debug_frame 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(ledf2.o) - .riscv.attributes - 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(ledf2.o) - .text 0x00000000 0x34 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(unorddf2.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(unorddf2.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(unorddf2.o) - .debug_info 0x00000000 0x220 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(unorddf2.o) - .debug_abbrev 0x00000000 0x14f C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(unorddf2.o) - .debug_loclists - 0x00000000 0x2d C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(unorddf2.o) - .debug_aranges - 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(unorddf2.o) - .debug_rnglists - 0x00000000 0x1d C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(unorddf2.o) - .debug_line 0x00000000 0x185 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(unorddf2.o) - .debug_str 0x00000000 0x1a9 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(unorddf2.o) - .debug_line_str - 0x00000000 0x1d4 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(unorddf2.o) - .comment 0x00000000 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(unorddf2.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(unorddf2.o) - .debug_frame 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(unorddf2.o) - .riscv.attributes - 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(unorddf2.o) - .text 0x00000000 0x62 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(fixunsdfsi.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(fixunsdfsi.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(fixunsdfsi.o) - .debug_info 0x00000000 0x1a9 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(fixunsdfsi.o) - .debug_abbrev 0x00000000 0x162 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(fixunsdfsi.o) - .debug_loclists - 0x00000000 0x72 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(fixunsdfsi.o) - .debug_aranges - 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(fixunsdfsi.o) - .debug_rnglists - 0x00000000 0x16 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(fixunsdfsi.o) - .debug_line 0x00000000 0x1bb C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(fixunsdfsi.o) - .debug_str 0x00000000 0x19d C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(fixunsdfsi.o) - .debug_line_str - 0x00000000 0x1d4 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(fixunsdfsi.o) - .comment 0x00000000 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(fixunsdfsi.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(fixunsdfsi.o) - .debug_frame 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(fixunsdfsi.o) - .riscv.attributes - 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(fixunsdfsi.o) - .text 0x00000000 0x5a C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatunsidf.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatunsidf.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatunsidf.o) - .debug_info 0x00000000 0x25d C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatunsidf.o) - .debug_abbrev 0x00000000 0x163 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatunsidf.o) - .debug_loclists - 0x00000000 0xb3 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatunsidf.o) - .debug_aranges - 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatunsidf.o) - .debug_rnglists - 0x00000000 0x2b C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatunsidf.o) - .debug_line 0x00000000 0x223 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatunsidf.o) - .debug_str 0x00000000 0x239 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatunsidf.o) - .debug_line_str - 0x00000000 0x1d7 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatunsidf.o) - .comment 0x00000000 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatunsidf.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatunsidf.o) - .debug_frame 0x00000000 0x3c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatunsidf.o) - .riscv.attributes - 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatunsidf.o) - .text 0x00000000 0x9e C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(fixdfdi.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(fixdfdi.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(fixdfdi.o) - .debug_info 0x00000000 0x1d8 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(fixdfdi.o) - .debug_abbrev 0x00000000 0x162 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(fixdfdi.o) - .debug_loclists - 0x00000000 0x15a C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(fixdfdi.o) - .debug_aranges - 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(fixdfdi.o) - .debug_rnglists - 0x00000000 0x13 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(fixdfdi.o) - .debug_line 0x00000000 0x28f C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(fixdfdi.o) - .debug_str 0x00000000 0x1ab C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(fixdfdi.o) - .debug_line_str - 0x00000000 0x1cb C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(fixdfdi.o) - .comment 0x00000000 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(fixdfdi.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(fixdfdi.o) - .debug_frame 0x00000000 0x38 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(fixdfdi.o) - .riscv.attributes - 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(fixdfdi.o) - .text 0x00000000 0x176 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatdidf.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatdidf.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatdidf.o) - .debug_info 0x00000000 0x2cd C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatdidf.o) - .debug_abbrev 0x00000000 0x181 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatdidf.o) - .debug_loclists - 0x00000000 0x185 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatdidf.o) - .debug_aranges - 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatdidf.o) - .debug_rnglists - 0x00000000 0x4f C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatdidf.o) - .debug_line 0x00000000 0x502 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatdidf.o) - .debug_str 0x00000000 0x25c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatdidf.o) - .debug_line_str - 0x00000000 0x1d1 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatdidf.o) - .comment 0x00000000 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatdidf.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatdidf.o) - .debug_frame 0x00000000 0x50 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatdidf.o) - .riscv.attributes - 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatdidf.o) - .text 0x00000000 0x78 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(lesf2.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(lesf2.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(lesf2.o) - .debug_info 0x00000000 0x1fe C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(lesf2.o) - .debug_abbrev 0x00000000 0x162 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(lesf2.o) - .debug_loclists - 0x00000000 0x97 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(lesf2.o) - .debug_aranges - 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(lesf2.o) - .debug_rnglists - 0x00000000 0x1a C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(lesf2.o) - .debug_line 0x00000000 0x2cb C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(lesf2.o) - .debug_str 0x00000000 0x1ae C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(lesf2.o) - .debug_line_str - 0x00000000 0x1cb C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(lesf2.o) - .comment 0x00000000 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(lesf2.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(lesf2.o) - .debug_frame 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(lesf2.o) - .riscv.attributes - 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(lesf2.o) - .text 0x00000000 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(unordsf2.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(unordsf2.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(unordsf2.o) - .debug_info 0x00000000 0x1f1 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(unordsf2.o) - .debug_abbrev 0x00000000 0x138 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(unordsf2.o) - .debug_loclists - 0x00000000 0x2c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(unordsf2.o) - .debug_aranges - 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(unordsf2.o) - .debug_rnglists - 0x00000000 0x16 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(unordsf2.o) - .debug_line 0x00000000 0x177 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(unordsf2.o) - .debug_str 0x00000000 0x18d C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(unordsf2.o) - .debug_line_str - 0x00000000 0x1d4 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(unordsf2.o) - .comment 0x00000000 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(unordsf2.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(unordsf2.o) - .debug_frame 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(unordsf2.o) - .riscv.attributes - 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(unordsf2.o) - .text 0x00000000 0x16e C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(extenddftf2.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(extenddftf2.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(extenddftf2.o) - .debug_info 0x00000000 0x398 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(extenddftf2.o) - .debug_abbrev 0x00000000 0x197 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(extenddftf2.o) - .debug_loclists - 0x00000000 0x251 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(extenddftf2.o) - .debug_aranges - 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(extenddftf2.o) - .debug_rnglists - 0x00000000 0x36 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(extenddftf2.o) - .debug_line 0x00000000 0x585 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(extenddftf2.o) - .debug_str 0x00000000 0x222 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(extenddftf2.o) - .debug_line_str - 0x00000000 0x1d4 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(extenddftf2.o) - .comment 0x00000000 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(extenddftf2.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(extenddftf2.o) - .debug_frame 0x00000000 0x3c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(extenddftf2.o) - .riscv.attributes - 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(extenddftf2.o) - .text 0x00000000 0xf2 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(truncdfsf2.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(truncdfsf2.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(truncdfsf2.o) - .debug_info 0x00000000 0x287 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(truncdfsf2.o) - .debug_abbrev 0x00000000 0x13c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(truncdfsf2.o) - .debug_loclists - 0x00000000 0x23c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(truncdfsf2.o) - .debug_aranges - 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(truncdfsf2.o) - .debug_rnglists - 0x00000000 0x26 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(truncdfsf2.o) - .debug_line 0x00000000 0x4c3 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(truncdfsf2.o) - .debug_str 0x00000000 0x220 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(truncdfsf2.o) - .debug_line_str - 0x00000000 0x1d3 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(truncdfsf2.o) - .comment 0x00000000 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(truncdfsf2.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(truncdfsf2.o) - .debug_frame 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(truncdfsf2.o) - .riscv.attributes - 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(truncdfsf2.o) - .text 0x00000000 0x274 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(trunctfdf2.o) - .data 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(trunctfdf2.o) - .bss 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(trunctfdf2.o) - .debug_info 0x00000000 0x499 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(trunctfdf2.o) - .debug_abbrev 0x00000000 0x182 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(trunctfdf2.o) - .debug_loclists - 0x00000000 0x486 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(trunctfdf2.o) - .debug_aranges - 0x00000000 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(trunctfdf2.o) - .debug_rnglists - 0x00000000 0xb8 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(trunctfdf2.o) - .debug_line 0x00000000 0x963 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(trunctfdf2.o) - .debug_str 0x00000000 0x351 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(trunctfdf2.o) - .debug_line_str - 0x00000000 0x1d1 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(trunctfdf2.o) - .comment 0x00000000 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(trunctfdf2.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(trunctfdf2.o) - .debug_frame 0x00000000 0x34 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(trunctfdf2.o) - .riscv.attributes - 0x00000000 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(trunctfdf2.o) - -Memory Configuration - -Name Origin Length Attributes -irom_seg 0x42000020 0x007fffe0 xr -sram_seg 0x40800000 0x0003efd0 xrw -drom_seg 0x42000020 0x007fffe0 r -lp_ram_seg 0x50000000 0x00000fe8 rw -lp_reserved_seg 0x50000fe8 0x00000018 rw -*default* 0x00000000 0xffffffff - -Linker script and memory map - - 0x00000000 IDF_TARGET_ESP32H2 = 0x0 -LOAD CMakeFiles/open-thread-rcp.elf.dir/project_elf_src_esp32h2.c.obj -LOAD esp-idf/riscv/libriscv.a -LOAD esp-idf/esp_driver_gpio/libesp_driver_gpio.a -LOAD esp-idf/esp_timer/libesp_timer.a -LOAD esp-idf/esp_pm/libesp_pm.a -LOAD esp-idf/mbedtls/libmbedtls.a -LOAD esp-idf/esp_app_format/libesp_app_format.a -LOAD esp-idf/esp_bootloader_format/libesp_bootloader_format.a -LOAD esp-idf/app_update/libapp_update.a -LOAD esp-idf/esp_partition/libesp_partition.a -LOAD esp-idf/efuse/libefuse.a -LOAD esp-idf/bootloader_support/libbootloader_support.a -LOAD esp-idf/esp_mm/libesp_mm.a -LOAD esp-idf/spi_flash/libspi_flash.a -LOAD esp-idf/esp_system/libesp_system.a -LOAD esp-idf/esp_common/libesp_common.a -LOAD esp-idf/esp_rom/libesp_rom.a -LOAD esp-idf/hal/libhal.a -LOAD esp-idf/log/liblog.a -LOAD esp-idf/heap/libheap.a -LOAD esp-idf/soc/libsoc.a -LOAD esp-idf/esp_security/libesp_security.a -LOAD esp-idf/esp_hw_support/libesp_hw_support.a -LOAD esp-idf/freertos/libfreertos.a -LOAD esp-idf/newlib/libnewlib.a -LOAD esp-idf/pthread/libpthread.a -LOAD esp-idf/cxx/libcxx.a -LOAD esp-idf/esp_event/libesp_event.a -LOAD esp-idf/nvs_flash/libnvs_flash.a -LOAD esp-idf/esp_ringbuf/libesp_ringbuf.a -LOAD esp-idf/esp_driver_uart/libesp_driver_uart.a -LOAD esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a -LOAD esp-idf/esp_vfs_console/libesp_vfs_console.a -LOAD esp-idf/vfs/libvfs.a -LOAD esp-idf/lwip/liblwip.a -LOAD esp-idf/esp_netif/libesp_netif.a -LOAD esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a -LOAD esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a -LOAD esp-idf/esp_driver_spi/libesp_driver_spi.a -LOAD esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a -LOAD esp-idf/esp_driver_ana_cmpr/libesp_driver_ana_cmpr.a -LOAD esp-idf/esp_driver_i2s/libesp_driver_i2s.a -LOAD esp-idf/sdmmc/libsdmmc.a -LOAD esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a -LOAD esp-idf/esp_driver_rmt/libesp_driver_rmt.a -LOAD esp-idf/esp_driver_tsens/libesp_driver_tsens.a -LOAD esp-idf/esp_driver_sdm/libesp_driver_sdm.a -LOAD esp-idf/esp_driver_i2c/libesp_driver_i2c.a -LOAD esp-idf/esp_driver_ledc/libesp_driver_ledc.a -LOAD esp-idf/esp_driver_parlio/libesp_driver_parlio.a -LOAD esp-idf/esp_driver_twai/libesp_driver_twai.a -LOAD esp-idf/driver/libdriver.a -LOAD esp-idf/console/libconsole.a -LOAD esp-idf/esp_wifi/libesp_wifi.a -LOAD esp-idf/esp_phy/libesp_phy.a -LOAD esp-idf/ieee802154/libieee802154.a -LOAD esp-idf/openthread/libopenthread.a -LOAD esp-idf/main/libmain.a -LOAD esp-idf/riscv/libriscv.a -LOAD esp-idf/esp_driver_gpio/libesp_driver_gpio.a -LOAD esp-idf/esp_timer/libesp_timer.a -LOAD esp-idf/esp_pm/libesp_pm.a -LOAD esp-idf/mbedtls/libmbedtls.a -LOAD esp-idf/esp_app_format/libesp_app_format.a -LOAD esp-idf/esp_bootloader_format/libesp_bootloader_format.a -LOAD esp-idf/app_update/libapp_update.a -LOAD esp-idf/esp_partition/libesp_partition.a -LOAD esp-idf/efuse/libefuse.a -LOAD esp-idf/bootloader_support/libbootloader_support.a -LOAD esp-idf/esp_mm/libesp_mm.a -LOAD esp-idf/spi_flash/libspi_flash.a -LOAD esp-idf/esp_system/libesp_system.a -LOAD esp-idf/esp_common/libesp_common.a -LOAD esp-idf/esp_rom/libesp_rom.a -LOAD esp-idf/hal/libhal.a -LOAD esp-idf/log/liblog.a -LOAD esp-idf/heap/libheap.a -LOAD esp-idf/soc/libsoc.a -LOAD esp-idf/esp_security/libesp_security.a -LOAD esp-idf/esp_hw_support/libesp_hw_support.a -LOAD esp-idf/freertos/libfreertos.a -LOAD esp-idf/newlib/libnewlib.a -LOAD esp-idf/pthread/libpthread.a -LOAD esp-idf/cxx/libcxx.a -LOAD esp-idf/esp_event/libesp_event.a -LOAD esp-idf/nvs_flash/libnvs_flash.a -LOAD esp-idf/esp_ringbuf/libesp_ringbuf.a -LOAD esp-idf/esp_driver_uart/libesp_driver_uart.a -LOAD esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a -LOAD esp-idf/esp_vfs_console/libesp_vfs_console.a -LOAD esp-idf/vfs/libvfs.a -LOAD esp-idf/lwip/liblwip.a -LOAD esp-idf/esp_netif/libesp_netif.a -LOAD esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a -LOAD esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a -LOAD esp-idf/esp_driver_spi/libesp_driver_spi.a -LOAD esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a -LOAD esp-idf/esp_driver_ana_cmpr/libesp_driver_ana_cmpr.a -LOAD esp-idf/esp_driver_i2s/libesp_driver_i2s.a -LOAD esp-idf/sdmmc/libsdmmc.a -LOAD esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a -LOAD esp-idf/esp_driver_rmt/libesp_driver_rmt.a -LOAD esp-idf/esp_driver_tsens/libesp_driver_tsens.a -LOAD esp-idf/esp_driver_sdm/libesp_driver_sdm.a -LOAD esp-idf/esp_driver_i2c/libesp_driver_i2c.a -LOAD esp-idf/esp_driver_ledc/libesp_driver_ledc.a -LOAD esp-idf/esp_driver_parlio/libesp_driver_parlio.a -LOAD esp-idf/esp_driver_twai/libesp_driver_twai.a -LOAD esp-idf/driver/libdriver.a -LOAD esp-idf/console/libconsole.a -LOAD esp-idf/esp_wifi/libesp_wifi.a -LOAD esp-idf/esp_phy/libesp_phy.a -LOAD esp-idf/ieee802154/libieee802154.a -LOAD esp-idf/openthread/libopenthread.a -LOAD esp-idf/mbedtls/mbedtls/library/libmbedtls.a -LOAD esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a -LOAD esp-idf/mbedtls/mbedtls/library/libmbedx509.a -LOAD esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a -LOAD esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a -LOAD esp-idf/riscv/libriscv.a -LOAD esp-idf/esp_driver_gpio/libesp_driver_gpio.a -LOAD esp-idf/esp_timer/libesp_timer.a -LOAD esp-idf/esp_pm/libesp_pm.a -LOAD esp-idf/mbedtls/libmbedtls.a -LOAD esp-idf/esp_app_format/libesp_app_format.a -LOAD esp-idf/esp_bootloader_format/libesp_bootloader_format.a -LOAD esp-idf/app_update/libapp_update.a -LOAD esp-idf/esp_partition/libesp_partition.a -LOAD esp-idf/efuse/libefuse.a -LOAD esp-idf/bootloader_support/libbootloader_support.a -LOAD esp-idf/esp_mm/libesp_mm.a -LOAD esp-idf/spi_flash/libspi_flash.a -LOAD esp-idf/esp_system/libesp_system.a -LOAD esp-idf/esp_common/libesp_common.a -LOAD esp-idf/esp_rom/libesp_rom.a -LOAD esp-idf/hal/libhal.a -LOAD esp-idf/log/liblog.a -LOAD esp-idf/heap/libheap.a -LOAD esp-idf/soc/libsoc.a -LOAD esp-idf/esp_security/libesp_security.a -LOAD esp-idf/esp_hw_support/libesp_hw_support.a -LOAD esp-idf/freertos/libfreertos.a -LOAD esp-idf/newlib/libnewlib.a -LOAD esp-idf/pthread/libpthread.a -LOAD esp-idf/cxx/libcxx.a -LOAD esp-idf/esp_event/libesp_event.a -LOAD esp-idf/nvs_flash/libnvs_flash.a -LOAD esp-idf/esp_ringbuf/libesp_ringbuf.a -LOAD esp-idf/esp_driver_uart/libesp_driver_uart.a -LOAD esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a -LOAD esp-idf/esp_vfs_console/libesp_vfs_console.a -LOAD esp-idf/vfs/libvfs.a -LOAD esp-idf/lwip/liblwip.a -LOAD esp-idf/esp_netif/libesp_netif.a -LOAD esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a -LOAD esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a -LOAD esp-idf/esp_driver_spi/libesp_driver_spi.a -LOAD esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a -LOAD esp-idf/esp_driver_ana_cmpr/libesp_driver_ana_cmpr.a -LOAD esp-idf/esp_driver_i2s/libesp_driver_i2s.a -LOAD esp-idf/sdmmc/libsdmmc.a -LOAD esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a -LOAD esp-idf/esp_driver_rmt/libesp_driver_rmt.a -LOAD esp-idf/esp_driver_tsens/libesp_driver_tsens.a -LOAD esp-idf/esp_driver_sdm/libesp_driver_sdm.a -LOAD esp-idf/esp_driver_i2c/libesp_driver_i2c.a -LOAD esp-idf/esp_driver_ledc/libesp_driver_ledc.a -LOAD esp-idf/esp_driver_parlio/libesp_driver_parlio.a -LOAD esp-idf/esp_driver_twai/libesp_driver_twai.a -LOAD esp-idf/driver/libdriver.a -LOAD esp-idf/console/libconsole.a -LOAD esp-idf/esp_wifi/libesp_wifi.a -LOAD esp-idf/esp_phy/libesp_phy.a -LOAD esp-idf/ieee802154/libieee802154.a -LOAD esp-idf/openthread/libopenthread.a -LOAD esp-idf/mbedtls/mbedtls/library/libmbedtls.a -LOAD esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a -LOAD esp-idf/mbedtls/mbedtls/library/libmbedx509.a -LOAD esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a -LOAD esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a -LOAD esp-idf/riscv/libriscv.a -LOAD esp-idf/esp_driver_gpio/libesp_driver_gpio.a -LOAD esp-idf/esp_timer/libesp_timer.a -LOAD esp-idf/esp_pm/libesp_pm.a -LOAD esp-idf/mbedtls/libmbedtls.a -LOAD esp-idf/esp_app_format/libesp_app_format.a -LOAD esp-idf/esp_bootloader_format/libesp_bootloader_format.a -LOAD esp-idf/app_update/libapp_update.a -LOAD esp-idf/esp_partition/libesp_partition.a -LOAD esp-idf/efuse/libefuse.a -LOAD esp-idf/bootloader_support/libbootloader_support.a -LOAD esp-idf/esp_mm/libesp_mm.a -LOAD esp-idf/spi_flash/libspi_flash.a -LOAD esp-idf/esp_system/libesp_system.a -LOAD esp-idf/esp_common/libesp_common.a -LOAD esp-idf/esp_rom/libesp_rom.a -LOAD esp-idf/hal/libhal.a -LOAD esp-idf/log/liblog.a -LOAD esp-idf/heap/libheap.a -LOAD esp-idf/soc/libsoc.a -LOAD esp-idf/esp_security/libesp_security.a -LOAD esp-idf/esp_hw_support/libesp_hw_support.a -LOAD esp-idf/freertos/libfreertos.a -LOAD esp-idf/newlib/libnewlib.a -LOAD esp-idf/pthread/libpthread.a -LOAD esp-idf/cxx/libcxx.a -LOAD esp-idf/esp_event/libesp_event.a -LOAD esp-idf/nvs_flash/libnvs_flash.a -LOAD esp-idf/esp_ringbuf/libesp_ringbuf.a -LOAD esp-idf/esp_driver_uart/libesp_driver_uart.a -LOAD esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a -LOAD esp-idf/esp_vfs_console/libesp_vfs_console.a -LOAD esp-idf/vfs/libvfs.a -LOAD esp-idf/lwip/liblwip.a -LOAD esp-idf/esp_netif/libesp_netif.a -LOAD esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a -LOAD esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a -LOAD esp-idf/esp_driver_spi/libesp_driver_spi.a -LOAD esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a -LOAD esp-idf/esp_driver_ana_cmpr/libesp_driver_ana_cmpr.a -LOAD esp-idf/esp_driver_i2s/libesp_driver_i2s.a -LOAD esp-idf/sdmmc/libsdmmc.a -LOAD esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a -LOAD esp-idf/esp_driver_rmt/libesp_driver_rmt.a -LOAD esp-idf/esp_driver_tsens/libesp_driver_tsens.a -LOAD esp-idf/esp_driver_sdm/libesp_driver_sdm.a -LOAD esp-idf/esp_driver_i2c/libesp_driver_i2c.a -LOAD esp-idf/esp_driver_ledc/libesp_driver_ledc.a -LOAD esp-idf/esp_driver_parlio/libesp_driver_parlio.a -LOAD esp-idf/esp_driver_twai/libesp_driver_twai.a -LOAD esp-idf/driver/libdriver.a -LOAD esp-idf/console/libconsole.a -LOAD esp-idf/esp_wifi/libesp_wifi.a -LOAD esp-idf/esp_phy/libesp_phy.a -LOAD esp-idf/ieee802154/libieee802154.a -LOAD esp-idf/openthread/libopenthread.a -LOAD esp-idf/mbedtls/mbedtls/library/libmbedtls.a -LOAD esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a -LOAD esp-idf/mbedtls/mbedtls/library/libmbedx509.a -LOAD esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a -LOAD esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a -LOAD esp-idf/riscv/libriscv.a -LOAD esp-idf/esp_driver_gpio/libesp_driver_gpio.a -LOAD esp-idf/esp_timer/libesp_timer.a -LOAD esp-idf/esp_pm/libesp_pm.a -LOAD esp-idf/mbedtls/libmbedtls.a -LOAD esp-idf/esp_app_format/libesp_app_format.a -LOAD esp-idf/esp_bootloader_format/libesp_bootloader_format.a -LOAD esp-idf/app_update/libapp_update.a -LOAD esp-idf/esp_partition/libesp_partition.a -LOAD esp-idf/efuse/libefuse.a -LOAD esp-idf/bootloader_support/libbootloader_support.a -LOAD esp-idf/esp_mm/libesp_mm.a -LOAD esp-idf/spi_flash/libspi_flash.a -LOAD esp-idf/esp_system/libesp_system.a -LOAD esp-idf/esp_common/libesp_common.a -LOAD esp-idf/esp_rom/libesp_rom.a -LOAD esp-idf/hal/libhal.a -LOAD esp-idf/log/liblog.a -LOAD esp-idf/heap/libheap.a -LOAD esp-idf/soc/libsoc.a -LOAD esp-idf/esp_security/libesp_security.a -LOAD esp-idf/esp_hw_support/libesp_hw_support.a -LOAD esp-idf/freertos/libfreertos.a -LOAD esp-idf/newlib/libnewlib.a -LOAD esp-idf/pthread/libpthread.a -LOAD esp-idf/cxx/libcxx.a -LOAD esp-idf/esp_event/libesp_event.a -LOAD esp-idf/nvs_flash/libnvs_flash.a -LOAD esp-idf/esp_ringbuf/libesp_ringbuf.a -LOAD esp-idf/esp_driver_uart/libesp_driver_uart.a -LOAD esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a -LOAD esp-idf/esp_vfs_console/libesp_vfs_console.a -LOAD esp-idf/vfs/libvfs.a -LOAD esp-idf/lwip/liblwip.a -LOAD esp-idf/esp_netif/libesp_netif.a -LOAD esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a -LOAD esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a -LOAD esp-idf/esp_driver_spi/libesp_driver_spi.a -LOAD esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a -LOAD esp-idf/esp_driver_ana_cmpr/libesp_driver_ana_cmpr.a -LOAD esp-idf/esp_driver_i2s/libesp_driver_i2s.a -LOAD esp-idf/sdmmc/libsdmmc.a -LOAD esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a -LOAD esp-idf/esp_driver_rmt/libesp_driver_rmt.a -LOAD esp-idf/esp_driver_tsens/libesp_driver_tsens.a -LOAD esp-idf/esp_driver_sdm/libesp_driver_sdm.a -LOAD esp-idf/esp_driver_i2c/libesp_driver_i2c.a -LOAD esp-idf/esp_driver_ledc/libesp_driver_ledc.a -LOAD esp-idf/esp_driver_parlio/libesp_driver_parlio.a -LOAD esp-idf/esp_driver_twai/libesp_driver_twai.a -LOAD esp-idf/driver/libdriver.a -LOAD esp-idf/console/libconsole.a -LOAD esp-idf/esp_wifi/libesp_wifi.a -LOAD esp-idf/esp_phy/libesp_phy.a -LOAD esp-idf/ieee802154/libieee802154.a -LOAD esp-idf/openthread/libopenthread.a -LOAD esp-idf/mbedtls/mbedtls/library/libmbedtls.a -LOAD esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a -LOAD esp-idf/mbedtls/mbedtls/library/libmbedx509.a -LOAD esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a -LOAD esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a -LOAD C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a -LOAD esp-idf/pthread/libpthread.a -LOAD esp-idf/newlib/libnewlib.a -LOAD C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a -LOAD esp-idf/cxx/libcxx.a -LOAD C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a -LOAD C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a -LOAD esp-idf/esp_phy/libesp_phy.a -LOAD C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a -LOAD C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a -LOAD esp-idf/esp_phy/libesp_phy.a -LOAD C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a -LOAD C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a -LOAD C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a -LOAD C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libm_nano.a -LOAD C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a -LOAD C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a -LOAD C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a -LOAD C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a -START GROUP -LOAD C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a -LOAD C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a -END GROUP - 0x400006e4 PROVIDE (esprv_int_set_priority = esprv_intc_int_set_priority) - 0x400006e8 PROVIDE (esprv_int_set_threshold = esprv_intc_int_set_threshold) - 0x400006ec PROVIDE (esprv_int_enable = esprv_intc_int_enable) - 0x400006f0 PROVIDE (esprv_int_disable = esprv_intc_int_disable) - 0x400006f4 PROVIDE (esprv_int_set_type = esprv_intc_int_set_type) - 0x60000000 PROVIDE (UART0 = 0x60000000) - 0x60001000 PROVIDE (UART1 = 0x60001000) - 0x60002000 PROVIDE (SPIMEM0 = 0x60002000) - 0x60003000 PROVIDE (SPIMEM1 = 0x60003000) - 0x60004000 PROVIDE (I2C0 = 0x60004000) - 0x60005000 PROVIDE (I2C1 = 0x60005000) - [!provide] PROVIDE (UHCI0 = 0x60006000) - [!provide] PROVIDE (RMT = 0x60007000) - [!provide] PROVIDE (RMTMEM = 0x60007400) - [!provide] PROVIDE (LEDC = 0x60008000) - 0x60009000 PROVIDE (TIMERG0 = 0x60009000) - 0x6000a000 PROVIDE (TIMERG1 = 0x6000a000) - 0x6000b000 PROVIDE (SYSTIMER = 0x6000b000) - [!provide] PROVIDE (TWAI0 = 0x6000c000) - [!provide] PROVIDE (I2S0 = 0x6000d000) - 0x6000e000 PROVIDE (APB_SARADC = 0x6000e000) - 0x6000f000 PROVIDE (USB_SERIAL_JTAG = 0x6000f000) - [!provide] PROVIDE (INTMTX = 0x60010000) - [!provide] PROVIDE (ATOMIC_LOCKER = 0x60011000) - [!provide] PROVIDE (PCNT = 0x60012000) - [!provide] PROVIDE (SOC_ETM = 0x60013000) - [!provide] PROVIDE (MCPWM0 = 0x60014000) - [!provide] PROVIDE (PARL_IO = 0x60015000) - [!provide] PROVIDE (PVT_MONITOR = 0x60019000) - 0x60080000 PROVIDE (GDMA = 0x60080000) - 0x60081000 PROVIDE (GPSPI2 = 0x60081000) - [!provide] PROVIDE (AES = 0x60088000) - [!provide] PROVIDE (SHA = 0x60089000) - [!provide] PROVIDE (RSA = 0x6008a000) - [!provide] PROVIDE (ECC = 0x6008b000) - [!provide] PROVIDE (DS = 0x6008c000) - [!provide] PROVIDE (HMAC = 0x6008d000) - [!provide] PROVIDE (ECDSA = 0x6008e000) - [!provide] PROVIDE (IO_MUX = 0x60090000) - 0x60091000 PROVIDE (GPIO = 0x60091000) - [!provide] PROVIDE (GPIO_EXT = 0x60091f00) - [!provide] PROVIDE (SDM = 0x60091f00) - [!provide] PROVIDE (GLITCH_FILTER = 0x60091f30) - [!provide] PROVIDE (GPIO_ETM = 0x60091f60) - [!provide] PROVIDE (MEM_ACS_MONITOR = 0x60092000) - 0x60093000 PROVIDE (PAU = 0x60093000) - [!provide] PROVIDE (HP_SYSTEM = 0x60095000) - 0x60096000 PROVIDE (PCR = 0x60096000) - [!provide] PROVIDE (TEE = 0x60098000) - [!provide] PROVIDE (HP_APM = 0x60099000) - 0x600a3000 PROVIDE (IEEE802154 = 0x600a3000) - 0x600a5400 PROVIDE (MODEM_SYSCON = 0x600a5400) - 0x600ad000 PROVIDE (MODEM_LPCON = 0x600ad000) - 0x600b0000 PROVIDE (PMU = 0x600b0000) - 0x600b0400 PROVIDE (LP_CLKRST = 0x600b0400) - 0x600b0800 PROVIDE (EFUSE = 0x600b0800) - 0x600b0c00 PROVIDE (LP_TIMER = 0x600b0c00) - 0x600b1000 PROVIDE (LP_AON = 0x600b1000) - 0x600b1c00 PROVIDE (LP_WDT = 0x600b1c00) - [!provide] PROVIDE (I2C_ANA_MST = 0x600b2400) - 0x600b2800 PROVIDE (LPPERI = 0x600b2800) - 0x600b2c00 PROVIDE (LP_ANA_PERI = 0x600b2c00) - [!provide] PROVIDE (LP_APM = 0x600b3800) - [!provide] PROVIDE (OTP_DEBUG = 0x600b3c00) - 0x40000018 rtc_get_reset_reason = 0x40000018 - 0x4000001c analog_super_wdt_reset_happened = 0x4000001c - 0x40000020 rtc_get_wakeup_cause = 0x40000020 - 0x40000024 rtc_unhold_all_pads = 0x40000024 - 0x40000028 ets_printf = 0x40000028 - 0x4000002c ets_install_putc1 = 0x4000002c - 0x40000030 ets_install_putc2 = 0x40000030 - 0x40000034 ets_install_uart_printf = 0x40000034 - 0x40000038 ets_install_usb_printf = 0x40000038 - 0x4000003c ets_get_printf_channel = 0x4000003c - 0x40000040 ets_delay_us = 0x40000040 - 0x40000044 ets_get_cpu_frequency = 0x40000044 - 0x40000048 ets_update_cpu_frequency = 0x40000048 - 0x4000004c ets_install_lock = 0x4000004c - 0x40000050 UartRxString = 0x40000050 - 0x40000054 UartGetCmdLn = 0x40000054 - 0x40000058 uart_tx_one_char = 0x40000058 - 0x4000005c uart_tx_one_char2 = 0x4000005c - 0x40000060 uart_rx_one_char = 0x40000060 - 0x40000064 uart_rx_one_char_block = 0x40000064 - 0x40000068 uart_rx_intr_handler = 0x40000068 - 0x4000006c uart_rx_readbuff = 0x4000006c - 0x40000070 uartAttach = 0x40000070 - 0x40000074 uart_tx_flush = 0x40000074 - 0x40000078 uart_tx_wait_idle = 0x40000078 - 0x4000007c uart_div_modify = 0x4000007c - 0x40000080 ets_write_char_uart = 0x40000080 - 0x40000084 uart_tx_switch = 0x40000084 - 0x40000088 roundup2 = 0x40000088 - 0x4000008c multofup = 0x4000008c - 0x40000090 software_reset = 0x40000090 - 0x40000094 software_reset_cpu = 0x40000094 - 0x40000098 ets_clk_assist_debug_clock_enable = 0x40000098 - 0x4000009c clear_super_wdt_reset_flag = 0x4000009c - 0x400000a0 disable_default_watchdog = 0x400000a0 - 0x400000a4 esp_rom_set_rtc_wake_addr = 0x400000a4 - 0x400000a8 esp_rom_get_rtc_wake_addr = 0x400000a8 - 0x400000ac send_packet = 0x400000ac - 0x400000b0 recv_packet = 0x400000b0 - 0x400000b4 GetUartDevice = 0x400000b4 - 0x400000b8 UartDwnLdProc = 0x400000b8 - 0x400000bc GetSecurityInfoProc = 0x400000bc - 0x400000c0 Uart_Init = 0x400000c0 - 0x400000c4 ets_set_user_start = 0x400000c4 - 0x4001fffc ets_rom_layout_p = 0x4001fffc - 0x4084fff8 ets_ops_table_ptr = 0x4084fff8 - 0x4084fffc g_saved_pc = 0x4084fffc - 0x400000c8 mz_adler32 = 0x400000c8 - 0x400000cc mz_free = 0x400000cc - 0x400000d0 tdefl_compress = 0x400000d0 - 0x400000d4 tdefl_compress_buffer = 0x400000d4 - 0x400000d8 tdefl_compress_mem_to_heap = 0x400000d8 - 0x400000dc tdefl_compress_mem_to_mem = 0x400000dc - 0x400000e0 tdefl_compress_mem_to_output = 0x400000e0 - 0x400000e4 tdefl_get_adler32 = 0x400000e4 - 0x400000e8 tdefl_get_prev_return_status = 0x400000e8 - 0x400000ec tdefl_init = 0x400000ec - 0x400000f0 tdefl_write_image_to_png_file_in_memory = 0x400000f0 - 0x400000f4 tdefl_write_image_to_png_file_in_memory_ex = 0x400000f4 - 0x400000f8 tinfl_decompress = 0x400000f8 - 0x400000fc tinfl_decompress_mem_to_callback = 0x400000fc - 0x40000100 tinfl_decompress_mem_to_heap = 0x40000100 - 0x40000104 tinfl_decompress_mem_to_mem = 0x40000104 - 0x40000108 esp_rom_spiflash_wait_idle = 0x40000108 - 0x4000010c esp_rom_spiflash_write_encrypted = 0x4000010c - 0x40000110 esp_rom_spiflash_write_encrypted_dest = 0x40000110 - 0x40000114 esp_rom_spiflash_write_encrypted_enable = 0x40000114 - 0x40000118 esp_rom_spiflash_write_encrypted_disable = 0x40000118 - 0x4000011c esp_rom_spiflash_erase_chip = 0x4000011c - 0x40000120 _esp_rom_spiflash_erase_sector = 0x40000120 - 0x40000124 _esp_rom_spiflash_erase_block = 0x40000124 - 0x40000128 _esp_rom_spiflash_write = 0x40000128 - 0x4000012c _esp_rom_spiflash_read = 0x4000012c - 0x40000130 _esp_rom_spiflash_unlock = 0x40000130 - 0x40000134 _SPIEraseArea = 0x40000134 - 0x40000138 _SPI_write_enable = 0x40000138 - 0x4000013c esp_rom_spiflash_erase_sector = 0x4000013c - 0x40000140 esp_rom_spiflash_erase_block = 0x40000140 - 0x40000144 esp_rom_spiflash_write = 0x40000144 - 0x40000148 esp_rom_spiflash_read = 0x40000148 - 0x4000014c esp_rom_spiflash_unlock = 0x4000014c - 0x40000150 SPIEraseArea = 0x40000150 - 0x40000154 SPI_write_enable = 0x40000154 - 0x40000158 esp_rom_spiflash_config_param = 0x40000158 - 0x4000015c esp_rom_spiflash_read_user_cmd = 0x4000015c - 0x40000160 esp_rom_spiflash_select_qio_pins = 0x40000160 - 0x40000164 esp_rom_spi_flash_auto_sus_res = 0x40000164 - 0x40000168 esp_rom_spi_flash_send_resume = 0x40000168 - 0x4000016c esp_rom_spi_flash_update_id = 0x4000016c - 0x40000170 esp_rom_spiflash_config_clk = 0x40000170 - 0x40000174 esp_rom_spiflash_config_readmode = 0x40000174 - 0x40000178 esp_rom_spiflash_read_status = 0x40000178 - 0x4000017c esp_rom_spiflash_read_statushigh = 0x4000017c - 0x40000180 esp_rom_spiflash_write_status = 0x40000180 - 0x40000184 spi_cache_mode_switch = 0x40000184 - 0x40000188 spi_common_set_dummy_output = 0x40000188 - 0x4000018c spi_common_set_flash_cs_timing = 0x4000018c - 0x40000190 esp_rom_spi_set_address_bit_len = 0x40000190 - 0x40000194 SPILock = 0x40000194 - 0x40000198 SPIMasterReadModeCnfig = 0x40000198 - 0x4000019c SPI_Common_Command = 0x4000019c - 0x400001a0 SPI_WakeUp = 0x400001a0 - 0x400001a4 SPI_block_erase = 0x400001a4 - 0x400001a8 SPI_chip_erase = 0x400001a8 - 0x400001ac SPI_init = 0x400001ac - 0x400001b0 SPI_page_program = 0x400001b0 - 0x400001b4 SPI_read_data = 0x400001b4 - 0x400001b8 SPI_sector_erase = 0x400001b8 - 0x400001bc SelectSpiFunction = 0x400001bc - 0x400001c0 SetSpiDrvs = 0x400001c0 - 0x400001c4 Wait_SPI_Idle = 0x400001c4 - 0x400001c8 spi_dummy_len_fix = 0x400001c8 - 0x400001cc Disable_QMode = 0x400001cc - 0x400001d0 Enable_QMode = 0x400001d0 - 0x400001d4 spi_flash_attach = 0x400001d4 - 0x400001d8 spi_flash_get_chip_size = 0x400001d8 - 0x400001dc spi_flash_guard_set = 0x400001dc - 0x400001e0 spi_flash_guard_get = 0x400001e0 - 0x400001e4 spi_flash_read_encrypted = 0x400001e4 - 0x4084fff0 rom_spiflash_legacy_funcs = 0x4084fff0 - 0x4084ffec rom_spiflash_legacy_data = 0x4084ffec - 0x4084fff4 g_flash_guard_ops = 0x4084fff4 - 0x40000270 esp_rom_spiflash_write_disable = 0x40000270 - 0x400005fc Cache_Get_ICache_Line_Size = 0x400005fc - 0x40000600 Cache_Get_Mode = 0x40000600 - 0x40000604 Cache_Address_Through_Cache = 0x40000604 - 0x40000608 ROM_Boot_Cache_Init = 0x40000608 - 0x4000060c MMU_Set_Page_Mode = 0x4000060c - 0x40000610 MMU_Get_Page_Mode = 0x40000610 - 0x40000614 Cache_Invalidate_ICache_Items = 0x40000614 - 0x40000618 Cache_Op_Addr = 0x40000618 - 0x4000061c Cache_Invalidate_Addr = 0x4000061c - 0x40000620 Cache_Invalidate_ICache_All = 0x40000620 - 0x40000624 Cache_Mask_All = 0x40000624 - 0x40000628 Cache_UnMask_Dram0 = 0x40000628 - 0x4000062c Cache_Suspend_ICache_Autoload = 0x4000062c - 0x40000630 Cache_Resume_ICache_Autoload = 0x40000630 - 0x40000634 Cache_Start_ICache_Preload = 0x40000634 - 0x40000638 Cache_ICache_Preload_Done = 0x40000638 - 0x4000063c Cache_End_ICache_Preload = 0x4000063c - 0x40000640 Cache_Config_ICache_Autoload = 0x40000640 - 0x40000644 Cache_Enable_ICache_Autoload = 0x40000644 - 0x40000648 Cache_Disable_ICache_Autoload = 0x40000648 - 0x4000064c Cache_Enable_ICache_PreLock = 0x4000064c - 0x40000650 Cache_Disable_ICache_PreLock = 0x40000650 - 0x40000654 Cache_Lock_ICache_Items = 0x40000654 - 0x40000658 Cache_Unlock_ICache_Items = 0x40000658 - 0x4000065c Cache_Lock_Addr = 0x4000065c - 0x40000660 Cache_Unlock_Addr = 0x40000660 - 0x40000664 Cache_Disable_ICache = 0x40000664 - 0x40000668 Cache_Enable_ICache = 0x40000668 - 0x4000066c Cache_Suspend_ICache = 0x4000066c - 0x40000670 Cache_Resume_ICache = 0x40000670 - 0x40000674 Cache_Freeze_ICache_Enable = 0x40000674 - 0x40000678 Cache_Freeze_ICache_Disable = 0x40000678 - 0x4000067c Cache_Set_IDROM_MMU_Size = 0x4000067c - 0x40000680 Cache_Get_IROM_MMU_End = 0x40000680 - 0x40000684 Cache_Get_DROM_MMU_End = 0x40000684 - 0x40000688 Cache_MMU_Init = 0x40000688 - 0x4000068c Cache_MSPI_MMU_Set = 0x4000068c - 0x40000690 Cache_Travel_Tag_Memory = 0x40000690 - 0x40000694 Cache_Get_Virtual_Addr = 0x40000694 - 0x4084ffcc rom_cache_op_cb = 0x4084ffcc - 0x4084ffc8 rom_cache_internal_table_ptr = 0x4084ffc8 - 0x40000698 ets_clk_get_xtal_freq = 0x40000698 - 0x4000069c ets_clk_get_cpu_freq = 0x4000069c - 0x400006a0 gpio_input_get = 0x400006a0 - 0x400006a4 gpio_matrix_in = 0x400006a4 - 0x400006a8 gpio_matrix_out = 0x400006a8 - 0x400006b4 gpio_output_set = 0x400006b4 - 0x400006b8 gpio_pad_hold = 0x400006b8 - 0x400006bc gpio_pad_input_disable = 0x400006bc - 0x400006c0 gpio_pad_input_enable = 0x400006c0 - 0x400006c4 gpio_pad_pulldown = 0x400006c4 - 0x400006c8 gpio_pad_pullup = 0x400006c8 - 0x400006cc gpio_pad_select_gpio = 0x400006cc - 0x400006d0 gpio_pad_set_drv = 0x400006d0 - 0x400006d4 gpio_pad_unhold = 0x400006d4 - 0x400006d8 gpio_pin_wakeup_disable = 0x400006d8 - 0x400006dc gpio_pin_wakeup_enable = 0x400006dc - 0x400006e0 gpio_bypass_matrix_in = 0x400006e0 - 0x400006e4 esprv_intc_int_set_priority = 0x400006e4 - 0x400006e8 esprv_intc_int_set_threshold = 0x400006e8 - 0x400006ec esprv_intc_int_enable = 0x400006ec - 0x400006f0 esprv_intc_int_disable = 0x400006f0 - 0x400006f4 esprv_intc_int_set_type = 0x400006f4 - [!provide] PROVIDE (intr_handler_set = 0x400006f8) - 0x400006fc intr_matrix_set = 0x400006fc - 0x40000700 ets_intr_lock = 0x40000700 - 0x40000704 ets_intr_unlock = 0x40000704 - 0x40000708 ets_isr_attach = 0x40000708 - 0x4000070c ets_isr_mask = 0x4000070c - 0x40000710 ets_isr_unmask = 0x40000710 - 0x40000714 md5_vector = 0x40000714 - 0x40000718 MD5Init = 0x40000718 - 0x4000071c MD5Update = 0x4000071c - 0x40000720 MD5Final = 0x40000720 - 0x40000724 crc32_le = 0x40000724 - 0x40000728 crc16_le = 0x40000728 - 0x4000072c crc8_le = 0x4000072c - 0x40000730 crc32_be = 0x40000730 - 0x40000734 crc16_be = 0x40000734 - 0x40000738 crc8_be = 0x40000738 - 0x4000073c esp_crc8 = 0x4000073c - 0x40000740 ets_sha_enable = 0x40000740 - 0x40000744 ets_sha_disable = 0x40000744 - 0x40000748 ets_sha_get_state = 0x40000748 - 0x4000074c ets_sha_init = 0x4000074c - 0x40000750 ets_sha_process = 0x40000750 - 0x40000754 ets_sha_starts = 0x40000754 - 0x40000758 ets_sha_update = 0x40000758 - 0x4000075c ets_sha_finish = 0x4000075c - 0x40000760 ets_sha_clone = 0x40000760 - 0x40000764 ets_hmac_enable = 0x40000764 - 0x40000768 ets_hmac_disable = 0x40000768 - 0x4000076c ets_hmac_calculate_message = 0x4000076c - 0x40000770 ets_hmac_calculate_downstream = 0x40000770 - 0x40000774 ets_hmac_invalidate_downstream = 0x40000774 - 0x40000778 ets_jtag_enable_temporarily = 0x40000778 - 0x4000077c ets_aes_enable = 0x4000077c - 0x40000780 ets_aes_disable = 0x40000780 - 0x40000784 ets_aes_setkey = 0x40000784 - 0x40000788 ets_aes_block = 0x40000788 - 0x4000078c ets_aes_setkey_dec = 0x4000078c - 0x40000790 ets_aes_setkey_enc = 0x40000790 - 0x40000794 ets_bigint_enable = 0x40000794 - 0x40000798 ets_bigint_disable = 0x40000798 - 0x4000079c ets_bigint_multiply = 0x4000079c - 0x400007a0 ets_bigint_modmult = 0x400007a0 - 0x400007a4 ets_bigint_modexp = 0x400007a4 - 0x400007a8 ets_bigint_wait_finish = 0x400007a8 - 0x400007ac ets_bigint_getz = 0x400007ac - 0x400007b0 ets_ds_enable = 0x400007b0 - 0x400007b4 ets_ds_disable = 0x400007b4 - 0x400007b8 ets_ds_start_sign = 0x400007b8 - 0x400007bc ets_ds_is_busy = 0x400007bc - 0x400007c0 ets_ds_finish_sign = 0x400007c0 - 0x400007c4 ets_ds_encrypt_params = 0x400007c4 - 0x400007c8 ets_mgf1_sha256 = 0x400007c8 - 0x4001fff8 crc32_le_table_ptr = 0x4001fff8 - 0x4001fff4 crc16_le_table_ptr = 0x4001fff4 - 0x4001fff0 crc8_le_table_ptr = 0x4001fff0 - 0x4001ffec crc32_be_table_ptr = 0x4001ffec - 0x4001ffe8 crc16_be_table_ptr = 0x4001ffe8 - 0x4001ffe4 crc8_be_table_ptr = 0x4001ffe4 - 0x400007cc ets_efuse_read = 0x400007cc - 0x400007d0 ets_efuse_program = 0x400007d0 - 0x400007d4 ets_efuse_clear_program_registers = 0x400007d4 - 0x400007d8 ets_efuse_write_key = 0x400007d8 - 0x400007dc ets_efuse_get_read_register_address = 0x400007dc - 0x400007e0 ets_efuse_get_key_purpose = 0x400007e0 - 0x400007e4 ets_efuse_key_block_unused = 0x400007e4 - 0x400007e8 ets_efuse_find_unused_key_block = 0x400007e8 - 0x400007ec ets_efuse_rs_calculate = 0x400007ec - 0x400007f0 ets_efuse_count_unused_key_blocks = 0x400007f0 - 0x400007f4 ets_efuse_secure_boot_enabled = 0x400007f4 - 0x400007f8 ets_efuse_secure_boot_aggressive_revoke_enabled = 0x400007f8 - 0x400007fc ets_efuse_cache_encryption_enabled = 0x400007fc - 0x40000800 ets_efuse_download_modes_disabled = 0x40000800 - 0x40000804 ets_efuse_find_purpose = 0x40000804 - 0x40000808 ets_efuse_force_send_resume = 0x40000808 - 0x4000080c ets_efuse_get_flash_delay_us = 0x4000080c - 0x40000810 ets_efuse_get_mac = 0x40000810 - 0x40000814 ets_efuse_get_uart_print_control = 0x40000814 - 0x40000818 ets_efuse_direct_boot_mode_disabled = 0x40000818 - 0x4000081c ets_efuse_security_download_modes_enabled = 0x4000081c - 0x40000820 ets_efuse_jtag_disabled = 0x40000820 - 0x40000824 ets_efuse_usb_print_is_disabled = 0x40000824 - 0x40000828 ets_efuse_usb_download_mode_disabled = 0x40000828 - 0x4000082c ets_efuse_usb_device_disabled = 0x4000082c - 0x40000830 ets_efuse_secure_boot_fast_wake_enabled = 0x40000830 - 0x40000834 ets_emsa_pss_verify = 0x40000834 - 0x40000838 ets_rsa_pss_verify = 0x40000838 - 0x4000083c ets_ecdsa_verify = 0x4000083c - 0x40000840 ets_secure_boot_verify_bootloader_with_keys = 0x40000840 - 0x40000844 ets_secure_boot_verify_signature = 0x40000844 - 0x40000848 ets_secure_boot_read_key_digests = 0x40000848 - 0x4000084c ets_secure_boot_revoke_public_key_digest = 0x4000084c - 0x400009c0 usb_serial_device_rx_one_char = 0x400009c0 - 0x400009c4 usb_serial_device_rx_one_char_block = 0x400009c4 - 0x400009c8 usb_serial_device_tx_flush = 0x400009c8 - 0x400009cc usb_serial_device_tx_one_char = 0x400009cc - 0x40000724 PROVIDE (esp_rom_crc32_le = crc32_le) - [!provide] PROVIDE (esp_rom_crc16_le = crc16_le) - [!provide] PROVIDE (esp_rom_crc8_le = crc8_le) - [!provide] PROVIDE (esp_rom_crc32_be = crc32_be) - [!provide] PROVIDE (esp_rom_crc16_be = crc16_be) - [!provide] PROVIDE (esp_rom_crc8_be = crc8_be) - 0x400006cc PROVIDE (esp_rom_gpio_pad_select_gpio = gpio_pad_select_gpio) - 0x400006c8 PROVIDE (esp_rom_gpio_pad_pullup_only = gpio_pad_pullup) - 0x400006d0 PROVIDE (esp_rom_gpio_pad_set_drv = gpio_pad_set_drv) - [!provide] PROVIDE (esp_rom_gpio_pad_unhold = gpio_pad_unhold) - 0x400006a4 PROVIDE (esp_rom_gpio_connect_in_signal = gpio_matrix_in) - 0x400006a8 PROVIDE (esp_rom_gpio_connect_out_signal = gpio_matrix_out) - [!provide] PROVIDE (esp_rom_efuse_mac_address_crc8 = esp_crc8) - [!provide] PROVIDE (esp_rom_efuse_is_secure_boot_enabled = ets_efuse_secure_boot_enabled) - [!provide] PROVIDE (esp_rom_uart_flush_tx = uart_tx_flush) - [!provide] PROVIDE (esp_rom_uart_tx_one_char = uart_tx_one_char2) - [!provide] PROVIDE (esp_rom_uart_tx_wait_idle = uart_tx_wait_idle) - [!provide] PROVIDE (esp_rom_uart_rx_one_char = uart_rx_one_char) - [!provide] PROVIDE (esp_rom_uart_rx_string = UartRxString) - [!provide] PROVIDE (esp_rom_uart_set_as_console = uart_tx_switch) - [!provide] PROVIDE (esp_rom_uart_putc = ets_write_char_uart) - 0x40000074 PROVIDE (esp_rom_output_flush_tx = uart_tx_flush) - 0x40000058 PROVIDE (esp_rom_output_tx_one_char = uart_tx_one_char) - 0x40000078 PROVIDE (esp_rom_output_tx_wait_idle = uart_tx_wait_idle) - 0x40000060 PROVIDE (esp_rom_output_rx_one_char = uart_rx_one_char) - [!provide] PROVIDE (esp_rom_output_rx_string = UartRxString) - [!provide] PROVIDE (esp_rom_output_set_as_console = uart_tx_switch) - [!provide] PROVIDE (esp_rom_output_putc = ets_write_char_uart) - 0x40000718 PROVIDE (esp_rom_md5_init = MD5Init) - 0x4000071c PROVIDE (esp_rom_md5_update = MD5Update) - 0x40000720 PROVIDE (esp_rom_md5_final = MD5Final) - 0x40000090 PROVIDE (esp_rom_software_reset_system = software_reset) - 0x40000094 PROVIDE (esp_rom_software_reset_cpu = software_reset_cpu) - 0x40000028 PROVIDE (esp_rom_printf = ets_printf) - [!provide] PROVIDE (esp_rom_install_uart_printf = ets_install_uart_printf) - 0x40000040 PROVIDE (esp_rom_delay_us = ets_delay_us) - 0x40000018 PROVIDE (esp_rom_get_reset_reason = rtc_get_reset_reason) - 0x400006fc PROVIDE (esp_rom_route_intr_matrix = intr_matrix_set) - 0x40000044 PROVIDE (esp_rom_get_cpu_ticks_per_us = ets_get_cpu_frequency) - 0x40000048 PROVIDE (esp_rom_set_cpu_ticks_per_us = ets_update_cpu_frequency) - [!provide] PROVIDE (esp_rom_spiflash_attach = spi_flash_attach) - [!provide] PROVIDE (esp_rom_spiflash_clear_bp = esp_rom_spiflash_unlock) - [!provide] PROVIDE (esp_rom_spiflash_write_enable = SPI_write_enable) - [!provide] PROVIDE (esp_rom_spiflash_erase_area = SPIEraseArea) - [!provide] PROVIDE (esp_rom_spiflash_fix_dummylen = spi_dummy_len_fix) - [!provide] PROVIDE (esp_rom_spiflash_set_drvs = SetSpiDrvs) - [!provide] PROVIDE (esp_rom_spiflash_select_padsfunc = SelectSpiFunction) - [!provide] PROVIDE (esp_rom_spiflash_common_cmd = SPI_Common_Command) - 0x40000850 __absvdi2 = 0x40000850 - 0x40000854 __absvsi2 = 0x40000854 - 0x40000858 __adddf3 = 0x40000858 - 0x4000085c __addsf3 = 0x4000085c - 0x40000860 __addvdi3 = 0x40000860 - 0x40000864 __addvsi3 = 0x40000864 - 0x40000868 __ashldi3 = 0x40000868 - 0x4000086c __ashrdi3 = 0x4000086c - 0x40000870 __bswapdi2 = 0x40000870 - 0x40000874 __bswapsi2 = 0x40000874 - 0x40000878 __clear_cache = 0x40000878 - 0x4000087c __clrsbdi2 = 0x4000087c - 0x40000880 __clrsbsi2 = 0x40000880 - 0x40000884 __clzdi2 = 0x40000884 - 0x40000888 __clzsi2 = 0x40000888 - 0x4000088c __cmpdi2 = 0x4000088c - 0x40000890 __ctzdi2 = 0x40000890 - 0x40000894 __ctzsi2 = 0x40000894 - 0x40000898 __divdc3 = 0x40000898 - 0x4000089c __divdf3 = 0x4000089c - 0x400008a0 __divdi3 = 0x400008a0 - 0x400008a4 __divsc3 = 0x400008a4 - 0x400008a8 __divsf3 = 0x400008a8 - 0x400008ac __divsi3 = 0x400008ac - 0x400008b0 __eqdf2 = 0x400008b0 - 0x400008b4 __eqsf2 = 0x400008b4 - 0x400008b8 __extendsfdf2 = 0x400008b8 - 0x400008bc __ffsdi2 = 0x400008bc - 0x400008c0 __ffssi2 = 0x400008c0 - 0x400008c4 __fixdfdi = 0x400008c4 - 0x400008c8 __fixdfsi = 0x400008c8 - 0x400008cc __fixsfdi = 0x400008cc - 0x400008d0 __fixsfsi = 0x400008d0 - 0x400008d4 __fixunsdfsi = 0x400008d4 - 0x400008d8 __fixunssfdi = 0x400008d8 - 0x400008dc __fixunssfsi = 0x400008dc - 0x400008e0 __floatdidf = 0x400008e0 - 0x400008e4 __floatdisf = 0x400008e4 - 0x400008e8 __floatsidf = 0x400008e8 - 0x400008ec __floatsisf = 0x400008ec - 0x400008f0 __floatundidf = 0x400008f0 - 0x400008f4 __floatundisf = 0x400008f4 - 0x400008f8 __floatunsidf = 0x400008f8 - 0x400008fc __floatunsisf = 0x400008fc - 0x40000900 __gcc_bcmp = 0x40000900 - 0x40000904 __gedf2 = 0x40000904 - 0x40000908 __gesf2 = 0x40000908 - 0x4000090c __gtdf2 = 0x4000090c - 0x40000910 __gtsf2 = 0x40000910 - 0x40000914 __ledf2 = 0x40000914 - 0x40000918 __lesf2 = 0x40000918 - 0x4000091c __lshrdi3 = 0x4000091c - 0x40000920 __ltdf2 = 0x40000920 - 0x40000924 __ltsf2 = 0x40000924 - 0x40000928 __moddi3 = 0x40000928 - 0x4000092c __modsi3 = 0x4000092c - 0x40000930 __muldc3 = 0x40000930 - 0x40000934 __muldf3 = 0x40000934 - 0x40000938 __muldi3 = 0x40000938 - 0x4000093c __mulsc3 = 0x4000093c - 0x40000940 __mulsf3 = 0x40000940 - 0x40000944 __mulsi3 = 0x40000944 - 0x40000948 __mulvdi3 = 0x40000948 - 0x4000094c __mulvsi3 = 0x4000094c - 0x40000950 __nedf2 = 0x40000950 - 0x40000954 __negdf2 = 0x40000954 - 0x40000958 __negdi2 = 0x40000958 - 0x4000095c __negsf2 = 0x4000095c - 0x40000960 __negvdi2 = 0x40000960 - 0x40000964 __negvsi2 = 0x40000964 - 0x40000968 __nesf2 = 0x40000968 - 0x4000096c __paritysi2 = 0x4000096c - 0x40000970 __popcountdi2 = 0x40000970 - 0x40000974 __popcountsi2 = 0x40000974 - 0x40000978 __powidf2 = 0x40000978 - 0x4000097c __powisf2 = 0x4000097c - 0x40000980 __subdf3 = 0x40000980 - 0x40000984 __subsf3 = 0x40000984 - 0x40000988 __subvdi3 = 0x40000988 - 0x4000098c __subvsi3 = 0x4000098c - 0x40000990 __truncdfsf2 = 0x40000990 - 0x40000994 __ucmpdi2 = 0x40000994 - 0x40000998 __udivdi3 = 0x40000998 - 0x4000099c __udivmoddi4 = 0x4000099c - 0x400009a0 __udivsi3 = 0x400009a0 - 0x400009a4 __udiv_w_sdiv = 0x400009a4 - 0x400009a8 __umoddi3 = 0x400009a8 - 0x400009ac __umodsi3 = 0x400009ac - 0x400009b0 __unorddf2 = 0x400009b0 - 0x400009b4 __unordsf2 = 0x400009b4 - 0x400009b8 __extenddftf2 = 0x400009b8 - 0x400009bc __trunctfdf2 = 0x400009bc - 0x40000394 wdt_hal_config_stage = 0x40000394 - 0x40000398 wdt_hal_write_protect_disable = 0x40000398 - 0x4000039c wdt_hal_write_protect_enable = 0x4000039c - 0x400003a0 wdt_hal_enable = 0x400003a0 - 0x400003a4 wdt_hal_disable = 0x400003a4 - 0x400003a8 wdt_hal_handle_intr = 0x400003a8 - 0x400003ac wdt_hal_feed = 0x400003ac - 0x400003b0 wdt_hal_set_flashboot_en = 0x400003b0 - 0x400003b4 wdt_hal_is_enabled = 0x400003b4 - 0x400003c0 systimer_hal_set_tick_rate_ops = 0x400003c0 - 0x400003c4 systimer_hal_get_counter_value = 0x400003c4 - 0x400003c8 systimer_hal_get_time = 0x400003c8 - 0x400003cc systimer_hal_set_alarm_target = 0x400003cc - 0x400003d0 systimer_hal_set_alarm_period = 0x400003d0 - 0x400003d4 systimer_hal_get_alarm_value = 0x400003d4 - 0x400003d8 systimer_hal_enable_alarm_int = 0x400003d8 - 0x400003dc systimer_hal_on_apb_freq_update = 0x400003dc - 0x400003e0 systimer_hal_counter_value_advance = 0x400003e0 - 0x400003e4 systimer_hal_enable_counter = 0x400003e4 - 0x400003e8 systimer_hal_select_alarm_mode = 0x400003e8 - 0x400003ec systimer_hal_connect_alarm_counter = 0x400003ec - 0x400003f0 systimer_hal_counter_can_stall_by_cpu = 0x400003f0 - 0x40000010 _rom_chip_id = 0x40000010 - 0x40000014 _rom_eco_version = 0x40000014 - 0x4000049c esp_rom_newlib_init_common_mutexes = 0x4000049c - 0x400004a0 memset = 0x400004a0 - 0x400004c0 strlen = 0x400004c0 - 0x400004c4 strstr = 0x400004c4 - 0x400004c8 bzero = 0x400004c8 - 0x400004d0 sbrk = 0x400004d0 - 0x400004d4 isalnum = 0x400004d4 - 0x400004d8 isalpha = 0x400004d8 - 0x400004dc isascii = 0x400004dc - 0x400004e0 isblank = 0x400004e0 - 0x400004e4 iscntrl = 0x400004e4 - 0x400004e8 isdigit = 0x400004e8 - 0x400004ec islower = 0x400004ec - 0x400004f0 isgraph = 0x400004f0 - 0x400004f4 isprint = 0x400004f4 - 0x400004f8 ispunct = 0x400004f8 - 0x400004fc isspace = 0x400004fc - 0x40000500 isupper = 0x40000500 - 0x40000504 toupper = 0x40000504 - 0x40000508 tolower = 0x40000508 - 0x4000050c toascii = 0x4000050c - 0x40000510 memccpy = 0x40000510 - 0x40000514 memchr = 0x40000514 - 0x40000518 memrchr = 0x40000518 - 0x4000051c strcasecmp = 0x4000051c - 0x40000520 strcasestr = 0x40000520 - 0x40000524 strcat = 0x40000524 - 0x4000052c strchr = 0x4000052c - 0x40000530 strcspn = 0x40000530 - 0x40000534 strcoll = 0x40000534 - 0x40000538 strlcat = 0x40000538 - 0x4000053c strlcpy = 0x4000053c - 0x40000540 strlwr = 0x40000540 - 0x40000544 strncasecmp = 0x40000544 - 0x40000548 strncat = 0x40000548 - 0x40000550 strnlen = 0x40000550 - 0x40000554 strrchr = 0x40000554 - 0x40000558 strsep = 0x40000558 - 0x4000055c strspn = 0x4000055c - 0x40000560 strtok_r = 0x40000560 - 0x40000564 strupr = 0x40000564 - 0x40000568 longjmp = 0x40000568 - 0x4000056c setjmp = 0x4000056c - 0x40000570 abs = 0x40000570 - 0x40000574 div = 0x40000574 - 0x40000578 labs = 0x40000578 - 0x4000057c ldiv = 0x4000057c - 0x40000580 qsort = 0x40000580 - 0x40000590 utoa = 0x40000590 - 0x40000594 itoa = 0x40000594 - 0x4084ffd4 syscall_table_ptr = 0x4084ffd4 - 0x4084ffd0 _global_impure_ptr = 0x4084ffd0 - 0x400004a4 memcpy = 0x400004a4 - 0x400004a8 memmove = 0x400004a8 - 0x400004ac memcmp = 0x400004ac - 0x400004b0 strcpy = 0x400004b0 - 0x400004b4 strncpy = 0x400004b4 - 0x400004b8 strcmp = 0x400004b8 - 0x400004bc strncmp = 0x400004bc - 0x400004cc _isatty_r = 0x400004cc - 0x40000528 strdup = 0x40000528 - 0x4000054c strndup = 0x4000054c - 0x40000584 rand_r = 0x40000584 - 0x40000588 rand = 0x40000588 - 0x4000058c srand = 0x4000058c - 0x40000598 atoi = 0x40000598 - 0x4000059c atol = 0x4000059c - 0x400005a0 strtol = 0x400005a0 - 0x400005a4 strtoul = 0x400005a4 - 0x400005a8 fflush = 0x400005a8 - 0x400005ac _fflush_r = 0x400005ac - 0x400005b0 _fwalk = 0x400005b0 - 0x400005b4 _fwalk_reent = 0x400005b4 - 0x400005b8 __smakebuf_r = 0x400005b8 - 0x400005bc __swhatbuf_r = 0x400005bc - 0x400005c0 __swbuf_r = 0x400005c0 - 0x400005c4 __swbuf = 0x400005c4 - 0x400005c8 __swsetup_r = 0x400005c8 - 0x400003f4 tlsf_create = 0x400003f4 - 0x400003f8 tlsf_create_with_pool = 0x400003f8 - 0x400003fc tlsf_get_pool = 0x400003fc - 0x40000400 tlsf_add_pool = 0x40000400 - 0x40000404 tlsf_remove_pool = 0x40000404 - 0x40000408 tlsf_malloc = 0x40000408 - 0x4000040c tlsf_memalign = 0x4000040c - 0x40000410 tlsf_memalign_offs = 0x40000410 - 0x40000414 tlsf_realloc = 0x40000414 - 0x40000418 tlsf_free = 0x40000418 - 0x4000041c tlsf_block_size = 0x4000041c - 0x40000420 tlsf_size = 0x40000420 - 0x40000424 tlsf_align_size = 0x40000424 - 0x40000428 tlsf_block_size_min = 0x40000428 - 0x4000042c tlsf_block_size_max = 0x4000042c - 0x40000430 tlsf_pool_overhead = 0x40000430 - 0x40000434 tlsf_alloc_overhead = 0x40000434 - 0x40000438 tlsf_walk_pool = 0x40000438 - 0x4000043c tlsf_check = 0x4000043c - 0x40000444 tlsf_poison_fill_pfunc_set = 0x40000444 - 0x40000448 tlsf_poison_check_pfunc_set = 0x40000448 - 0x4000044c multi_heap_get_block_address_impl = 0x4000044c - 0x40000450 multi_heap_get_allocated_size_impl = 0x40000450 - 0x40000454 multi_heap_register_impl = 0x40000454 - 0x40000458 multi_heap_set_lock = 0x40000458 - 0x4000045c multi_heap_os_funcs_init = 0x4000045c - 0x40000460 multi_heap_internal_lock = 0x40000460 - 0x40000464 multi_heap_internal_unlock = 0x40000464 - 0x40000468 multi_heap_get_first_block = 0x40000468 - 0x4000046c multi_heap_get_next_block = 0x4000046c - 0x40000470 multi_heap_is_free = 0x40000470 - 0x40000474 multi_heap_malloc_impl = 0x40000474 - 0x40000478 multi_heap_free_impl = 0x40000478 - 0x4000047c multi_heap_realloc_impl = 0x4000047c - 0x40000480 multi_heap_aligned_alloc_impl_offs = 0x40000480 - 0x40000484 multi_heap_aligned_alloc_impl = 0x40000484 - 0x40000488 multi_heap_check = 0x40000488 - 0x4000048c multi_heap_dump = 0x4000048c - 0x40000490 multi_heap_free_size_impl = 0x40000490 - 0x40000494 multi_heap_minimum_free_size_impl = 0x40000494 - 0x40000498 multi_heap_get_info_impl = 0x40000498 - 0x4084ffd8 heap_tlsf_table_ptr = 0x4084ffd8 - 0x40000474 PROVIDE (multi_heap_malloc = multi_heap_malloc_impl) - 0x40000478 PROVIDE (multi_heap_free = multi_heap_free_impl) - 0x4000047c PROVIDE (multi_heap_realloc = multi_heap_realloc_impl) - 0x40000450 PROVIDE (multi_heap_get_allocated_size = multi_heap_get_allocated_size_impl) - 0x40000454 PROVIDE (multi_heap_register = multi_heap_register_impl) - 0x40000498 PROVIDE (multi_heap_get_info = multi_heap_get_info_impl) - 0x40000490 PROVIDE (multi_heap_free_size = multi_heap_free_size_impl) - 0x40000494 PROVIDE (multi_heap_minimum_free_size = multi_heap_minimum_free_size_impl) - [!provide] PROVIDE (multi_heap_get_block_address = multi_heap_get_block_address_impl) - [!provide] PROVIDE (multi_heap_aligned_alloc = multi_heap_aligned_alloc_impl) - [!provide] PROVIDE (multi_heap_aligned_free = multi_heap_aligned_free_impl) - [!provide] PROVIDE (multi_heap_check = multi_heap_check) - [!provide] PROVIDE (multi_heap_set_lock = multi_heap_set_lock) - [!provide] PROVIDE (multi_heap_os_funcs_init = multi_heap_mutex_init) - [!provide] PROVIDE (multi_heap_internal_lock = multi_heap_internal_lock) - [!provide] PROVIDE (multi_heap_internal_unlock = multi_heap_internal_unlock) - 0x40000000 _heap_end = 0x40000000 - 0x50000000 _data_seg_org = ORIGIN (rtc_data_seg) - 0x00000001 ASSERT ((_flash_rodata_dummy_start == ORIGIN (default_rodata_seg)), .flash_rodata_dummy section must be placed at the beginning of the rodata segment.) - -.rtc.text 0x50000000 0x0 - 0x50000000 . = ALIGN (0x4) - 0x50000000 _rtc_fast_start = ABSOLUTE (.) - 0x50000000 . = ALIGN (0x4) - 0x50000000 _rtc_text_start = ABSOLUTE (.) - *(.rtc.entry.text) - *(.rtc.literal .rtc.text .rtc.text.*) - *rtc_wake_stub*.*(.text .text.*) - *(.rtc_text_end_test) - 0x50000000 . = ALIGN (0x4) - 0x50000000 _rtc_text_end = ABSOLUTE (.) - -.rtc.force_fast - 0x50000000 0x0 - 0x50000000 . = ALIGN (0x4) - 0x50000000 _rtc_force_fast_start = ABSOLUTE (.) - *(.rtc.force_fast .rtc.force_fast.*) - 0x50000000 . = ALIGN (0x4) - 0x50000000 _rtc_force_fast_end = ABSOLUTE (.) - -.rtc.data 0x50000000 0x0 - 0x50000000 _rtc_data_start = ABSOLUTE (.) - *(.rtc.data .rtc.data.*) - *(.rtc.rodata .rtc.rodata.*) - *rtc_wake_stub*.*(.data .rodata .data.* .rodata.* .srodata.*) - 0x50000000 _rtc_data_end = ABSOLUTE (.) - -.rtc.bss 0x50000000 0x0 - 0x50000000 _rtc_bss_start = ABSOLUTE (.) - *rtc_wake_stub*.*(.bss .bss.* .sbss .sbss.*) - *rtc_wake_stub*.*(COMMON) - *(.rtc.bss) - 0x50000000 _rtc_bss_end = ABSOLUTE (.) - -.rtc_noinit 0x50000000 0x0 - 0x50000000 . = ALIGN (0x4) - 0x50000000 _rtc_noinit_start = ABSOLUTE (.) - *(.rtc_noinit .rtc_noinit.*) - 0x50000000 . = ALIGN (0x4) - 0x50000000 _rtc_noinit_end = ABSOLUTE (.) - -.rtc.force_slow - 0x50000000 0x0 - 0x50000000 . = ALIGN (0x4) - 0x50000000 _rtc_force_slow_start = ABSOLUTE (.) - *(.rtc.force_slow .rtc.force_slow.*) - 0x50000000 . = ALIGN (0x4) - 0x50000000 _rtc_force_slow_end = ABSOLUTE (.) - -.rtc_reserved 0x50000fe8 0x18 - 0x50000fe8 . = ALIGN (0x4) - 0x50000fe8 _rtc_reserved_start = ABSOLUTE (.) - *(.rtc_timer_data_in_rtc_mem .rtc_timer_data_in_rtc_mem.*) - .rtc_timer_data_in_rtc_mem - 0x50000fe8 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - *(.bootloader_data_rtc_mem .bootloader_data_rtc_mem.*) - 0x50001000 _rtc_reserved_end = ABSOLUTE (.) - 0x00000018 _rtc_reserved_length = (_rtc_reserved_end - _rtc_reserved_start) - 0x00000001 ASSERT ((_rtc_reserved_length <= LENGTH (rtc_reserved_seg)), RTC reserved segment data does not fit.) - 0x00000000 _rtc_slow_length = (ORIGIN (rtc_slow_seg) == ORIGIN (rtc_data_location))?(_rtc_force_slow_end - _rtc_data_start):(_rtc_force_slow_end - _rtc_force_slow_start) - 0x00000000 _rtc_fast_length = (ORIGIN (rtc_slow_seg) == ORIGIN (rtc_data_location))?(_rtc_force_fast_end - _rtc_fast_start):(_rtc_noinit_end - _rtc_fast_start) - 0x00000000 ASSERT ((_rtc_slow_length <= LENGTH (rtc_slow_seg)), RTC_SLOW segment data does not fit.) - 0x00000000 ASSERT ((_rtc_fast_length <= LENGTH (rtc_data_seg)), RTC_FAST segment data does not fit.) - -.iram0.text 0x40800000 0xc006 - 0x40800000 _iram_start = ABSOLUTE (.) - 0x00000001 ASSERT (((ABSOLUTE (.) % 0x100) == 0x0), vector address must be 256 byte aligned) - 0x40800000 _vector_table_start = ABSOLUTE (.) - *(.exception_vectors_table.text) - .exception_vectors_table.text - 0x40800000 0x102 esp-idf/riscv/libriscv.a(vectors_intc.S.obj) - 0x40800000 _vector_table - *(.exception_vectors.text) - .exception_vectors.text - 0x40800102 0x1d6 esp-idf/riscv/libriscv.a(vectors.S.obj) - 0x40800102 _panic_handler - 0x408001d8 _tee_interrupt_handler - 0x408001d8 _interrupt_handler - 0x408002d8 . = ALIGN (0x4) - *fill* 0x408002d8 0x0 - 0x408002d8 _invalid_pc_placeholder = ABSOLUTE (.) - 0x408002d8 _iram_text_start = ABSOLUTE (.) - *(.iram1 .iram1.*) - .iram1.0 0x408002d8 0x22 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) - 0x408002d8 esp_system_get_time - .iram1.3 0x408002fa 0x1a esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - .iram1.1 0x40800314 0x22 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - 0x40800314 esp_timer_get_time - 0x40800314 esp_timer_impl_get_time - .iram1.2 0x40800336 0x68 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - 0x40800336 esp_timer_impl_set_alarm_id - .iram1.1 0x4080039e 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) - 0x4080039e esp_timer_impl_get_min_period_us - .iram1.4 0x408003a6 0x4 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) - 0x408003a6 flash_init_state - .iram1.5 0x408003aa 0xf4 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) - 0x408003aa call_start_cpu0 - .iram1.0 0x4080049e 0x26 esp-idf/esp_system/libesp_system.a(clk.c.obj) - .iram1.0 0x408004c4 0x12 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - .iram1.1 0x408004d6 0x1c esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - 0x408004d6 panicHandler - .iram1.2 0x408004f2 0x1c esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - 0x408004f2 xt_unhandled_exception - .iram1.0 0x4080050e 0x18 esp-idf/hal/libhal.a(efuse_hal.c.obj) - 0x4080050e efuse_hal_chip_revision - .iram1.1 0x40800526 0x20 esp-idf/hal/libhal.a(efuse_hal.c.obj) - 0x40800526 efuse_hal_blk_version - .iram1.5 0x40800546 0x1e esp-idf/hal/libhal.a(efuse_hal.c.obj) - 0x40800546 efuse_hal_flash_encryption_enabled - .iram1.0 0x40800564 0x10 esp-idf/hal/libhal.a(efuse_hal.c.obj) - 0x40800564 efuse_hal_get_major_chip_version - .iram1.1 0x40800574 0x10 esp-idf/hal/libhal.a(efuse_hal.c.obj) - 0x40800574 efuse_hal_get_minor_chip_version - .iram1.0 0x40800584 0xe esp-idf/heap/libheap.a(heap_caps.c.obj) - .iram1.1 0x40800592 0x24 esp-idf/heap/libheap.a(heap_caps.c.obj) - 0x40800592 heap_caps_malloc - .iram1.2 0x408005b6 0x5a esp-idf/heap/libheap.a(heap_caps.c.obj) - 0x408005b6 heap_caps_malloc_default - .iram1.7 0x40800610 0x24 esp-idf/heap/libheap.a(heap_caps.c.obj) - 0x40800610 heap_caps_realloc - .iram1.3 0x40800634 0x5e esp-idf/heap/libheap.a(heap_caps.c.obj) - 0x40800634 heap_caps_realloc_default - .iram1.8 0x40800692 0x28 esp-idf/heap/libheap.a(heap_caps.c.obj) - 0x40800692 heap_caps_calloc - .iram1.11 0x408006ba 0x4c esp-idf/heap/libheap.a(heap_caps.c.obj) - 0x408006ba heap_caps_aligned_alloc - .iram1.1 0x40800706 0x40 esp-idf/heap/libheap.a(heap_caps_base.c.obj) - 0x40800706 heap_caps_free - .iram1.3 0x40800746 0xac esp-idf/heap/libheap.a(heap_caps_base.c.obj) - 0x40800746 heap_caps_aligned_alloc_base - .iram1.4 0x408007f2 0x8 esp-idf/heap/libheap.a(heap_caps_base.c.obj) - 0x408007f2 heap_caps_malloc_base - .iram1.5 0x408007fa 0xdc esp-idf/heap/libheap.a(heap_caps_base.c.obj) - 0x408007fa heap_caps_realloc_base - .iram1.6 0x408008d6 0x2c esp-idf/heap/libheap.a(heap_caps_base.c.obj) - 0x408008d6 heap_caps_calloc_base - .iram1.0 0x40800902 0x22 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - .iram1.2 0x40800924 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - 0x40800924 esp_clk_cpu_freq - .iram1.3 0x40800940 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - 0x40800940 esp_clk_apb_freq - .iram1.4 0x40800944 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - 0x40800944 esp_clk_xtal_freq - .iram1.0 0x4080095c 0x32 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .iram1.4 0x4080098e 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - 0x4080098e esp_intr_noniram_disable - .iram1.5 0x408009ee 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - 0x408009ee esp_intr_noniram_enable - .iram1.8 0x40800a36 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - 0x40800a36 esp_intr_enable_source - .iram1.2 0x40800a56 0x72 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - 0x40800a56 esp_intr_enable - .iram1.9 0x40800ac8 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - 0x40800ac8 esp_intr_disable_source - .iram1.3 0x40800ae8 0xa6 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - 0x40800ae8 esp_intr_disable - .iram1.0 0x40800b8e 0x2 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - 0x40800b8e rtc_isr_noniram_disable - .iram1.1 0x40800b90 0x2 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - 0x40800b90 rtc_isr_noniram_enable - .iram1.0 0x40800b92 0x84 esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) - .iram1.1 0x40800c16 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) - .iram1.2 0x40800c3e 0x2a esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) - .iram1.3 0x40800c68 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) - .iram1.7 0x40800c7a 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) - .iram1.8 0x40800c92 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) - .iram1.6 0x40800ca4 0x52 esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) - .iram1.5 0x40800cf6 0x6 esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) - .iram1.4 0x40800cfc 0x6 esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) - .iram1.15 0x40800d02 0x66 esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) - .iram1.9 0x40800d68 0x2a esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) - 0x40800d68 MODEM_CLOCK_instance - .iram1.14 0x40800d92 0xe4 esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) - 0x40800d92 modem_clock_module_mac_reset - .iram1.16 0x40800e76 0x64 esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) - 0x40800e76 modem_clock_module_enable - .iram1.17 0x40800eda 0x66 esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) - 0x40800eda modem_clock_module_disable - .iram1.1 0x40800f40 0x78 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) - .iram1.0 0x40800fb8 0x6 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) - 0x40800fb8 PMU_instance - *fill* 0x40800fbe 0x2 - .iram1 0x40800fc0 0x1cc esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu_asm.S.obj) - 0x40800fc0 rv_core_critical_regs_save - 0x408010b0 _rv_core_critical_regs_restore - 0x408010b2 rv_core_critical_regs_restore - .iram1.0 0x4080118c 0x5e esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) - 0x4080118c PAU_instance - .iram1.0 0x408011ea 0x2a esp-idf/newlib/libnewlib.a(locks.c.obj) - .iram1.16 0x40801214 0x12 esp-idf/newlib/libnewlib.a(locks.c.obj) - .iram1.4 0x40801226 0x96 esp-idf/newlib/libnewlib.a(locks.c.obj) - .iram1.9 0x408012bc 0x64 esp-idf/newlib/libnewlib.a(locks.c.obj) - .iram1.2 0x40801320 0x8 esp-idf/newlib/libnewlib.a(locks.c.obj) - 0x40801320 _lock_init_recursive - .iram1.3 0x40801328 0x34 esp-idf/newlib/libnewlib.a(locks.c.obj) - 0x40801328 _lock_close_recursive - 0x40801328 _lock_close - .iram1.5 0x4080135c 0x6 esp-idf/newlib/libnewlib.a(locks.c.obj) - 0x4080135c _lock_acquire - .iram1.6 0x40801362 0x6 esp-idf/newlib/libnewlib.a(locks.c.obj) - 0x40801362 _lock_acquire_recursive - .iram1.7 0x40801368 0x6 esp-idf/newlib/libnewlib.a(locks.c.obj) - 0x40801368 _lock_try_acquire - .iram1.8 0x4080136e 0x6 esp-idf/newlib/libnewlib.a(locks.c.obj) - 0x4080136e _lock_try_acquire_recursive - .iram1.10 0x40801374 0x4 esp-idf/newlib/libnewlib.a(locks.c.obj) - 0x40801374 _lock_release - .iram1.11 0x40801378 0x4 esp-idf/newlib/libnewlib.a(locks.c.obj) - 0x40801378 _lock_release_recursive - .iram1.12 0x4080137c 0x8 esp-idf/newlib/libnewlib.a(locks.c.obj) - 0x4080137c __retarget_lock_init - .iram1.13 0x40801384 0x8 esp-idf/newlib/libnewlib.a(locks.c.obj) - 0x40801384 __retarget_lock_init_recursive - .iram1.14 0x4080138c 0x12 esp-idf/newlib/libnewlib.a(locks.c.obj) - 0x4080138c __retarget_lock_close - .iram1.15 0x4080139e 0x12 esp-idf/newlib/libnewlib.a(locks.c.obj) - 0x4080139e __retarget_lock_close_recursive - .iram1.17 0x408013b0 0x2e esp-idf/newlib/libnewlib.a(locks.c.obj) - 0x408013b0 __retarget_lock_acquire - .iram1.18 0x408013de 0x2e esp-idf/newlib/libnewlib.a(locks.c.obj) - 0x408013de __retarget_lock_acquire_recursive - .iram1.19 0x4080140c 0x2e esp-idf/newlib/libnewlib.a(locks.c.obj) - 0x4080140c __retarget_lock_try_acquire - .iram1.20 0x4080143a 0x2e esp-idf/newlib/libnewlib.a(locks.c.obj) - 0x4080143a __retarget_lock_try_acquire_recursive - .iram1.21 0x40801468 0x14 esp-idf/newlib/libnewlib.a(locks.c.obj) - 0x40801468 __retarget_lock_release - .iram1.22 0x4080147c 0x16 esp-idf/newlib/libnewlib.a(locks.c.obj) - 0x4080147c __retarget_lock_release_recursive - .iram1.3 0x40801492 0x86 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .iram1.1 0x40801518 0x32 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .iram1.4 0x4080154a 0x65c esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .iram1.0 0x40801ba6 0x54 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) - .iram1.0 0x40801bfa 0x4 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - 0x40801bfa phy_i2c_enter_critical - .iram1.1 0x40801bfe 0x4 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - 0x40801bfe phy_i2c_exit_critical - .iram1.2 0x40801c02 0x26 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - 0x40801c02 phy_set_tsens_power - .iram1.1 0x40801c28 0x1c8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - 0x40801c28 bootloader_flash_execute_command_common - .iram1.2 0x40801df0 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - 0x40801df0 bootloader_execute_flash_command - .iram1.4 0x40801e00 0x32 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - 0x40801e00 bootloader_read_flash_id - .iram1.16 0x40801e32 0x70 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - 0x40801e32 bootloader_flash_reset_chip - .iram1.0 0x40801ea2 0x4 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - 0x40801ea2 esp_flash_encryption_enabled - .iram1.2 0x40801ea6 0x4 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .iram1.4 0x40801eaa 0x4 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .iram1.3 0x40801eae 0x4 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .iram1.5 0x40801eb2 0x5a esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .iram1.6 0x40801f0c 0x1e esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .iram1.28 0x40801f2a 0x26 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .iram1.1 0x40801f50 0x6e esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - 0x40801f50 esp_mmu_paddr_find_caps - .iram1.0 0x40801fbe 0x80 esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) - 0x40801fbe esp_heap_adjust_alignment_to_hw - .iram1.6 0x4080203e 0x8 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - 0x40802042 spi_flash_restore_cache - .iram1.5 0x40802046 0x8 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - 0x4080204a spi_flash_disable_cache - .iram1.0 0x4080204e 0x16 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - 0x4080204e spi_flash_disable_interrupts_caches_and_other_cpu - .iram1.1 0x40802064 0x16 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - 0x40802064 spi_flash_enable_interrupts_caches_and_other_cpu - .iram1.4 0x4080207a 0x2 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - 0x4080207a spi_flash_enable_cache - .iram1.7 0x4080207c 0x8 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - 0x4080207c spi_flash_cache_enabled - .iram1.0 0x40802084 0x42 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - .iram1.1 0x408020c6 0x58 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - 0x408020c6 spi_flash_check_and_flush_cache - .iram1.4 0x4080211e 0x2 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - 0x4080211e esp_mspi_pin_init - .iram1.5 0x40802120 0x4 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - 0x40802120 spi_flash_init_chip_state - .iram1.7 0x40802124 0x6 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - 0x40802124 esp_mspi_32bit_address_flash_feature_check - .iram1.3 0x4080212a 0x6e esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .iram1.1 0x40802198 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .iram1.4 0x4080219c 0xc esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .iram1.0 0x408021a8 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .iram1.5 0x408021ac 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .iram1.1 0x408021c0 0x12 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) - .iram1.0 0x408021d2 0x12 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) - .iram1.1 0x408021e4 0x44 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - .iram1.2 0x40802228 0x42 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - .iram1.3 0x4080226a 0x6 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - 0x4080226a esp_crosscore_int_send_yield - .iram1.0 0x40802270 0x58 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - .iram1.0 0x408022c8 0x30 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - 0x408022c8 esp_task_wdt_impl_timer_feed - .iram1.0 0x408022f8 0x84 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) - 0x408022f8 esp_backtrace_print - .iram1.0 0x4080237c 0xd8 esp-idf/esp_rom/libesp_rom.a(esp_rom_regi2c_esp32h2.c.obj) - .iram1.4 0x40802454 0xb0 esp-idf/esp_rom/libesp_rom.a(esp_rom_regi2c_esp32h2.c.obj) - 0x40802454 regi2c_write_mask_impl - 0x40802454 esp_rom_regi2c_write_mask - .iram1.2 0x40802504 0x24 esp-idf/hal/libhal.a(lp_timer_hal.c.obj) - 0x40802504 lp_timer_hal_get_cycle_count - .iram1.0 0x40802528 0x24 esp-idf/hal/libhal.a(modem_clock_hal.c.obj) - 0x40802528 modem_clock_hal_enable_modem_common_fe_clock - .iram1.1 0x4080254c 0x44 esp-idf/hal/libhal.a(modem_clock_hal.c.obj) - 0x4080254c modem_clock_hal_enable_modem_private_fe_clock - .iram1.0 0x40802590 0xb2 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) - 0x40802590 esp_random - .iram1.0 0x40802642 0x9c esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - .iram1.0 0x408026de 0x72 esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - 0x408026de esp_ieee802154_transmit_done - .iram1.3 0x40802750 0x18c esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - 0x40802750 esp_ieee802154_enh_ack_generator - .iram1.4 0x408028dc 0x11c esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - 0x408028dc esp_ieee802154_receive_done - .iram1.5 0x408029f8 0x44 esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - 0x408029f8 esp_ieee802154_transmit_failed - .iram1.6 0x40802a3c 0x2 esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - 0x40802a3c esp_ieee802154_receive_sfd_done - .iram1.7 0x40802a3e 0x2a esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - 0x40802a3e esp_ieee802154_transmit_sfd_done - .iram1.8 0x40802a68 0x12 esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - 0x40802a68 esp_ieee802154_energy_detect_done - .iram1.9 0x40802a7a 0x2 esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - 0x40802a7a esp_ieee802154_cca_done - .iram1.0 0x40802a7c 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - .iram1.0 0x40802aa8 0x98 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_ack.c.obj) - .iram1.0 0x40802b40 0x2e esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - .iram1.13 0x40802b6e 0x1e esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - 0x40802b6e ieee802154_rf_disable - .iram1.14 0x40802b8c 0x1c esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - 0x40802b8c ieee802154_rf_enable - .iram1.9 0x40802ba8 0x2a esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .iram1.8 0x40802bd2 0x10 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .iram1.7 0x40802be2 0x10 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .iram1.5 0x40802bf2 0x70 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .iram1.4 0x40802c62 0x76 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .iram1.2 0x40802cd8 0x90 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - 0x40802cd8 esp_timer_start_periodic - .iram1.3 0x40802d68 0x44 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - 0x40802d68 esp_timer_stop - .iram1 0x40802dac 0x14 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) - 0x40802dac bt_bb_get_rssi_comp - 0x40802db6 bt_bb_get_cur_rx_info - *libclang_rt.builtins.a:_divsf3.*(.literal .literal.* .text .text.*) - *libclang_rt.builtins.a:restore.*(.literal .literal.* .text .text.*) - *libclang_rt.builtins.a:save.*(.literal .literal.* .text .text.*) - *libesp_driver_ana_cmpr.a:ana_cmpr.*(.literal.ana_cmpr_default_intr_handler .text.ana_cmpr_default_intr_handler) - *libesp_driver_gptimer.a:gptimer.*(.literal.gptimer_default_isr .text.gptimer_default_isr) - *libesp_driver_i2c.a:i2c_master.*(.literal.i2c_master_isr_handler_default .text.i2c_master_isr_handler_default) - *libesp_driver_mcpwm.a:mcpwm_cap.*(.literal.mcpwm_capture_default_isr .text.mcpwm_capture_default_isr) - *libesp_driver_mcpwm.a:mcpwm_cmpr.*(.literal.mcpwm_comparator_default_isr .text.mcpwm_comparator_default_isr) - *libesp_driver_mcpwm.a:mcpwm_fault.*(.literal.mcpwm_gpio_fault_default_isr .text.mcpwm_gpio_fault_default_isr) - *libesp_driver_mcpwm.a:mcpwm_oper.*(.literal.mcpwm_operator_default_isr .text.mcpwm_operator_default_isr) - *libesp_driver_mcpwm.a:mcpwm_timer.*(.literal.mcpwm_timer_default_isr .text.mcpwm_timer_default_isr) - *libesp_driver_parlio.a:parlio_rx.*(.literal.parlio_rx_default_desc_done_callback .text.parlio_rx_default_desc_done_callback) - *libesp_driver_parlio.a:parlio_rx.*(.literal.parlio_rx_default_eof_callback .text.parlio_rx_default_eof_callback) - *libesp_driver_parlio.a:parlio_rx.*(.literal.parlio_rx_mount_transaction_buffer .text.parlio_rx_mount_transaction_buffer) - *libesp_driver_parlio.a:parlio_rx.*(.literal.parlio_rx_set_delimiter_config .text.parlio_rx_set_delimiter_config) - *libesp_driver_parlio.a:parlio_tx.*(.literal.parlio_mount_buffer .text.parlio_mount_buffer) - *libesp_driver_parlio.a:parlio_tx.*(.literal.parlio_tx_default_isr .text.parlio_tx_default_isr) - *libesp_driver_parlio.a:parlio_tx.*(.literal.parlio_tx_do_transaction .text.parlio_tx_do_transaction) - *libesp_driver_parlio.a:parlio_tx.*(.literal.parlio_tx_gdma_eof_callback .text.parlio_tx_gdma_eof_callback) - *libesp_driver_rmt.a:rmt_encoder.*(.literal.rmt_encoder_reset .text.rmt_encoder_reset) - *libesp_driver_rmt.a:rmt_rx.*(.literal.rmt_isr_handle_rx_done .text.rmt_isr_handle_rx_done) - *libesp_driver_rmt.a:rmt_rx.*(.literal.rmt_isr_handle_rx_threshold .text.rmt_isr_handle_rx_threshold) - *libesp_driver_rmt.a:rmt_rx.*(.literal.rmt_rx_default_isr .text.rmt_rx_default_isr) - *libesp_driver_rmt.a:rmt_tx.*(.literal.rmt_encode_check_result .text.rmt_encode_check_result) - *libesp_driver_rmt.a:rmt_tx.*(.literal.rmt_isr_handle_tx_done .text.rmt_isr_handle_tx_done) - *libesp_driver_rmt.a:rmt_tx.*(.literal.rmt_isr_handle_tx_loop_end .text.rmt_isr_handle_tx_loop_end) - *libesp_driver_rmt.a:rmt_tx.*(.literal.rmt_isr_handle_tx_threshold .text.rmt_isr_handle_tx_threshold) - *libesp_driver_rmt.a:rmt_tx.*(.literal.rmt_tx_default_isr .text.rmt_tx_default_isr) - *libesp_driver_rmt.a:rmt_tx.*(.literal.rmt_tx_do_transaction .text.rmt_tx_do_transaction) - *libesp_driver_rmt.a:rmt_tx.*(.literal.rmt_tx_mark_eof .text.rmt_tx_mark_eof) - *libesp_driver_uart.a:uart_vfs.*(.literal.select_notif_callback_isr .text.select_notif_callback_isr) - .text.select_notif_callback_isr - 0x40802dc0 0xbc esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - *libesp_driver_usb_serial_jtag.a:usb_serial_jtag_vfs.*(.literal.select_notif_callback_isr .text.select_notif_callback_isr) - .text.select_notif_callback_isr - 0x40802e7c 0x74 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - *libesp_event.a:default_event_loop.*(.literal.esp_event_isr_post .text.esp_event_isr_post) - *libesp_event.a:esp_event.*(.literal.esp_event_isr_post_to .text.esp_event_isr_post_to) - *libesp_hw_support.a:adc_share_hw_ctrl.*(.literal.adc_apb_periph_claim .text.adc_apb_periph_claim) - .text.adc_apb_periph_claim - 0x40802ef0 0x5a esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - 0x40802ef0 adc_apb_periph_claim - *libesp_hw_support.a:adc_share_hw_ctrl.*(.literal.adc_apb_periph_free .text.adc_apb_periph_free) - .text.adc_apb_periph_free - 0x40802f4a 0x46 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - 0x40802f4a adc_apb_periph_free - *libesp_hw_support.a:clk_utils.*(.literal .literal.* .text .text.*) - *libesp_hw_support.a:cpu.*(.literal.esp_cpu_compare_and_set .text.esp_cpu_compare_and_set) - *libesp_hw_support.a:cpu.*(.literal.esp_cpu_reset .text.esp_cpu_reset) - *libesp_hw_support.a:cpu.*(.literal.esp_cpu_stall .text.esp_cpu_stall) - *libesp_hw_support.a:cpu.*(.literal.esp_cpu_unstall .text.esp_cpu_unstall) - *libesp_hw_support.a:cpu.*(.literal.esp_cpu_wait_for_intr .text.esp_cpu_wait_for_intr) - .text.esp_cpu_wait_for_intr - 0x40802f90 0x1e esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - 0x40802f90 esp_cpu_wait_for_intr - *libesp_hw_support.a:esp_clk.*(.literal.esp_clk_private_lock .text.esp_clk_private_lock) - *libesp_hw_support.a:esp_clk.*(.literal.esp_clk_private_unlock .text.esp_clk_private_unlock) - *libesp_hw_support.a:esp_clk.*(.literal.esp_clk_slowclk_cal_get .text.esp_clk_slowclk_cal_get) - *libesp_hw_support.a:esp_clk.*(.literal.esp_clk_slowclk_cal_set .text.esp_clk_slowclk_cal_set) - .text.esp_clk_slowclk_cal_set - 0x40802fae 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - 0x40802fae esp_clk_slowclk_cal_set - *libesp_hw_support.a:esp_clk.*(.literal.esp_rtc_get_time_us .text.esp_rtc_get_time_us) - .text.esp_rtc_get_time_us - 0x40802fc0 0xb8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - 0x40802fc0 esp_rtc_get_time_us - *libesp_hw_support.a:esp_clk_tree.*(.literal.esp_clk_tree_enable_src .text.esp_clk_tree_enable_src) - .text.esp_clk_tree_enable_src - 0x40803078 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) - 0x40803078 esp_clk_tree_enable_src - *libesp_hw_support.a:esp_memory_utils.*(.literal .literal.* .text .text.*) - .text.esp_ptr_executable - 0x4080307c 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) - 0x4080307c esp_ptr_executable - .text.esp_ptr_byte_accessible - 0x408030bc 0x1e esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) - 0x408030bc esp_ptr_byte_accessible - *libesp_hw_support.a:gdma.*(.literal.gdma_append .text.gdma_append) - *libesp_hw_support.a:gdma.*(.literal.gdma_default_rx_isr .text.gdma_default_rx_isr) - *libesp_hw_support.a:gdma.*(.literal.gdma_default_tx_isr .text.gdma_default_tx_isr) - *libesp_hw_support.a:gdma.*(.literal.gdma_reset .text.gdma_reset) - *libesp_hw_support.a:gdma.*(.literal.gdma_start .text.gdma_start) - .text.gdma_start - 0x408030da 0x4e esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - 0x408030da gdma_start - *libesp_hw_support.a:gdma.*(.literal.gdma_stop .text.gdma_stop) - *libesp_hw_support.a:gdma_link.*(.literal.gdma_link_concat .text.gdma_link_concat) - *libesp_hw_support.a:gdma_link.*(.literal.gdma_link_get_buffer .text.gdma_link_get_buffer) - *libesp_hw_support.a:gdma_link.*(.literal.gdma_link_get_head_addr .text.gdma_link_get_head_addr) - *libesp_hw_support.a:gdma_link.*(.literal.gdma_link_mount_buffers .text.gdma_link_mount_buffers) - *libesp_hw_support.a:mspi_timing_tuning.*(.literal .literal.* .text .text.*) - .text.mspi_timing_change_speed_mode_cache_safe - 0x40803128 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) - 0x40803128 mspi_timing_change_speed_mode_cache_safe - *libesp_hw_support.a:periph_ctrl.*(.literal.periph_module_reset .text.periph_module_reset) - *libesp_hw_support.a:periph_ctrl.*(.literal.periph_rcc_acquire_enter .text.periph_rcc_acquire_enter) - .text.periph_rcc_acquire_enter - 0x40803150 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - 0x40803150 periph_rcc_acquire_enter - *libesp_hw_support.a:periph_ctrl.*(.literal.periph_rcc_acquire_exit .text.periph_rcc_acquire_exit) - .text.periph_rcc_acquire_exit - 0x4080316c 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - 0x4080316c periph_rcc_acquire_exit - *libesp_hw_support.a:periph_ctrl.*(.literal.periph_rcc_enter .text.periph_rcc_enter) - .text.periph_rcc_enter - 0x4080317e 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - 0x4080317e periph_rcc_enter - *libesp_hw_support.a:periph_ctrl.*(.literal.periph_rcc_exit .text.periph_rcc_exit) - .text.periph_rcc_exit - 0x4080318e 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - 0x4080318e periph_rcc_exit - *libesp_hw_support.a:periph_ctrl.*(.literal.periph_rcc_release_enter .text.periph_rcc_release_enter) - .text.periph_rcc_release_enter - 0x4080319e 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - 0x4080319e periph_rcc_release_enter - *libesp_hw_support.a:periph_ctrl.*(.literal.periph_rcc_release_exit .text.periph_rcc_release_exit) - .text.periph_rcc_release_exit - 0x408031c2 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - 0x408031c2 periph_rcc_release_exit - *libesp_hw_support.a:pmu_param.*(.literal.get_act_hp_dbias .text.get_act_hp_dbias) - .text.get_act_hp_dbias - 0x408031d4 0x32 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - 0x408031d4 get_act_hp_dbias - *libesp_hw_support.a:pmu_param.*(.literal.get_act_lp_dbias .text.get_act_lp_dbias) - .text.get_act_lp_dbias - 0x40803206 0x32 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - 0x40803206 get_act_lp_dbias - *libesp_hw_support.a:pmu_sleep.*(.literal .literal.* .text .text.*) - .text.pmu_sleep_enable_regdma_backup - 0x40803238 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) - 0x40803238 pmu_sleep_enable_regdma_backup - .text.pmu_sleep_disable_regdma_backup - 0x4080325e 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) - 0x4080325e pmu_sleep_disable_regdma_backup - *libesp_hw_support.a:regi2c_ctrl.*(.literal.regi2c_ctrl_read_reg .text.regi2c_ctrl_read_reg) - *libesp_hw_support.a:regi2c_ctrl.*(.literal.regi2c_ctrl_read_reg_mask .text.regi2c_ctrl_read_reg_mask) - *libesp_hw_support.a:regi2c_ctrl.*(.literal.regi2c_ctrl_write_reg .text.regi2c_ctrl_write_reg) - *libesp_hw_support.a:regi2c_ctrl.*(.literal.regi2c_ctrl_write_reg_mask .text.regi2c_ctrl_write_reg_mask) - .text.regi2c_ctrl_write_reg_mask - 0x40803284 0x7e esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - 0x40803284 regi2c_ctrl_write_reg_mask - *libesp_hw_support.a:regi2c_ctrl.*(.literal.regi2c_enter_critical .text.regi2c_enter_critical) - .text.regi2c_enter_critical - 0x40803302 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - 0x40803302 regi2c_enter_critical - *libesp_hw_support.a:regi2c_ctrl.*(.literal.regi2c_exit_critical .text.regi2c_exit_critical) - .text.regi2c_exit_critical - 0x40803312 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - 0x40803312 regi2c_exit_critical - *libesp_hw_support.a:regi2c_ctrl.*(.literal.regi2c_saradc_disable .text.regi2c_saradc_disable) - .text.regi2c_saradc_disable - 0x40803322 0x3e esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - 0x40803322 regi2c_saradc_disable - *libesp_hw_support.a:regi2c_ctrl.*(.literal.regi2c_saradc_enable .text.regi2c_saradc_enable) - .text.regi2c_saradc_enable - 0x40803360 0x36 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - 0x40803360 regi2c_saradc_enable - *libesp_hw_support.a:rtc_clk.*(.literal .literal.* .text .text.*) - .text.rtc_clk_bbpll_disable - 0x40803396 0x22 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_clk_bbpll_enable - 0x408033b8 0x1e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_clk_cpu_freq_to_8m - 0x408033d6 0x68 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_clk_cpu_freq_to_xtal - 0x4080343e 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_clk_cpu_freq_to_pll_mhz - 0x408034ae 0x9a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_clk_cpu_freq_to_flash_pll - 0x40803548 0x80 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_clk_bbpll_configure - 0x408035c8 0xf0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_clk_32k_enable.part.0 - 0x408036b8 0x54 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_clk_bbpll_add_consumer - 0x4080370c 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x4080370c rtc_clk_bbpll_add_consumer - .text.rtc_clk_bbpll_remove_consumer - 0x4080371c 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x4080371c rtc_clk_bbpll_remove_consumer - .text.rtc_clk_32k_enable - 0x4080372c 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x4080372c rtc_clk_32k_enable - .text.rtc_clk_32k_disable_external - 0x40803748 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x40803748 rtc_clk_32k_disable_external - .text.rtc_clk_rc32k_enable - 0x40803778 0x2e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x40803778 rtc_clk_rc32k_enable - .text.rtc_clk_8m_enable - 0x408037a6 0x2e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x408037a6 rtc_clk_8m_enable - .text.rtc_clk_slow_src_set - 0x408037d4 0x54 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x408037d4 rtc_clk_slow_src_set - .text.rtc_clk_slow_src_get - 0x40803828 0x1e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x40803828 rtc_clk_slow_src_get - .text.rtc_clk_slow_freq_get_hz - 0x40803846 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x40803846 rtc_clk_slow_freq_get_hz - .text.rtc_clk_fast_src_set - 0x40803866 0x46 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x40803866 rtc_clk_fast_src_set - .text.rtc_clk_set_cpu_switch_to_pll - 0x408038ac 0x2 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x408038ac rtc_clk_set_cpu_switch_to_pll - .text.rtc_clk_xtal_freq_get - 0x408038ae 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x408038ae rtc_clk_xtal_freq_get - .text.rtc_clk_cpu_freq_mhz_to_config - 0x408038de 0x66 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x408038de rtc_clk_cpu_freq_mhz_to_config - .text.rtc_clk_cpu_freq_set_config - 0x40803944 0xb8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x40803944 rtc_clk_cpu_freq_set_config - .text.rtc_clk_cpu_freq_get_config - 0x408039fc 0x6e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x408039fc rtc_clk_cpu_freq_get_config - .text.rtc_clk_cpu_set_to_default_config - 0x40803a6a 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x40803a6a rtc_clk_cpu_set_to_default_config - .text.rtc_clk_cpu_freq_set_xtal - 0x40803a84 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x40803a84 rtc_clk_cpu_freq_set_xtal - .text.rtc_clk_apb_freq_get - 0x40803a94 0x80 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x40803a94 rtc_clk_apb_freq_get - .text.rtc_dig_clk8m_enable - 0x40803b14 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x40803b14 rtc_dig_clk8m_enable - .text.rtc_dig_clk8m_disable - 0x40803b30 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x40803b30 rtc_dig_clk8m_disable - *libesp_hw_support.a:rtc_time.*(.literal .literal.* .text .text.*) - .text.rtc_clk_cal - 0x40803b4a 0x44e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - 0x40803b4a rtc_clk_cal - .text.rtc_time_get - 0x40803f98 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - 0x40803f98 rtc_time_get - .text.rtc_clk_freq_cal - 0x40803f9c 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - 0x40803f9c rtc_clk_freq_cal - 0x40803f9c rtc_clk_freq_to_period - .text.startup.enable_timer_group0_for_calibration - 0x40803fb4 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - *libesp_hw_support.a:sar_periph_ctrl.*(.literal.sar_periph_ctrl_power_disable .text.sar_periph_ctrl_power_disable) - *libesp_hw_support.a:sar_periph_ctrl.*(.literal.sar_periph_ctrl_power_enable .text.sar_periph_ctrl_power_enable) - *libesp_hw_support.a:sar_periph_ctrl_common.*(.literal.temp_sensor_get_raw_value .text.temp_sensor_get_raw_value) - .text.temp_sensor_get_raw_value - 0x40803ffc 0x104 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - 0x40803ffc temp_sensor_get_raw_value - *libesp_hw_support.a:sar_periph_ctrl_common.*(.literal.temperature_sensor_power_acquire .text.temperature_sensor_power_acquire) - .text.temperature_sensor_power_acquire - 0x40804100 0x9e esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - 0x40804100 temperature_sensor_power_acquire - *libesp_hw_support.a:sar_periph_ctrl_common.*(.literal.temperature_sensor_power_release .text.temperature_sensor_power_release) - .text.temperature_sensor_power_release - 0x4080419e 0x5a esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - 0x4080419e temperature_sensor_power_release - *libesp_hw_support.a:sleep_clock.*(.literal.clock_domain_pd_allowed .text.clock_domain_pd_allowed) - *libesp_hw_support.a:sleep_console.*(.literal .literal.* .text .text.*) - *libesp_hw_support.a:sleep_cpu.*(.literal.cpu_domain_pd_allowed .text.cpu_domain_pd_allowed) - *libesp_hw_support.a:sleep_modem.*(.literal.modem_domain_pd_allowed .text.modem_domain_pd_allowed) - *libesp_hw_support.a:sleep_modem.*(.literal.periph_inform_out_light_sleep_overhead .text.periph_inform_out_light_sleep_overhead) - *libesp_hw_support.a:sleep_modem.*(.literal.sleep_modem_reject_triggers .text.sleep_modem_reject_triggers) - *libesp_hw_support.a:sleep_modes.*(.literal.esp_light_sleep_start .text.esp_light_sleep_start) - *libesp_hw_support.a:sleep_modes.*(.literal.esp_sleep_enable_timer_wakeup .text.esp_sleep_enable_timer_wakeup) - *libesp_hw_support.a:sleep_system_peripheral.*(.literal.peripheral_domain_pd_allowed .text.peripheral_domain_pd_allowed) - *libesp_hw_support.a:systimer.*(.literal .literal.* .text .text.*) - .text.systimer_ticks_to_us - 0x408041f8 0xc esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) - 0x408041f8 systimer_ticks_to_us - .text.systimer_us_to_ticks - 0x40804204 0xc esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) - 0x40804204 systimer_us_to_ticks - *libesp_mm.a:esp_cache_msync.*(.literal .literal.* .text .text.*) - .text.esp_cache_get_alignment - 0x40804210 0x20 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) - 0x40804210 esp_cache_get_alignment - *libesp_mm.a:esp_cache_utils.*(.literal .literal.* .text .text.*) - .text.esp_cache_suspend_ext_mem_cache - 0x40804230 0x8 esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) - 0x40804230 esp_cache_suspend_ext_mem_cache - .text.esp_cache_resume_ext_mem_cache - 0x40804238 0x8 esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) - 0x40804238 esp_cache_resume_ext_mem_cache - .text.esp_cache_freeze_ext_mem_cache - 0x40804240 0x8 esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) - 0x40804240 esp_cache_freeze_ext_mem_cache - .text.esp_cache_unfreeze_ext_mem_cache - 0x40804248 0x8 esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) - 0x40804248 esp_cache_unfreeze_ext_mem_cache - .text.esp_cache_freeze_caches_disable_interrupts - 0x40804250 0x3c esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) - 0x40804250 esp_cache_freeze_caches_disable_interrupts - .text.esp_cache_unfreeze_caches_enable_interrupts - 0x4080428c 0x14 esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) - 0x4080428c esp_cache_unfreeze_caches_enable_interrupts - *libesp_phy.a:phy_override.*(.literal.phy_get_tsens_value .text.phy_get_tsens_value) - .text.phy_get_tsens_value - 0x408042a0 0x6 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - 0x408042a0 phy_get_tsens_value - *libesp_pm.a:pm_impl.*(.literal.esp_pm_impl_get_cpu_freq .text.esp_pm_impl_get_cpu_freq) - *libesp_ringbuf.a:(.literal .literal.* .text .text.*) - .text.prvCheckItemAvail - 0x408042a6 0x38 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .text.prvGetItemByteBuf - 0x408042de 0x86 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .text.prvCheckItemFitsByteBuffer - 0x40804364 0x4a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .text.prvReturnItemDefault - 0x408043ae 0xae esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .text.prvGetItemDefault - 0x4080445c 0xa4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .text.prvAcquireItemNoSplit - 0x40804500 0x70 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .text.prvSendItemDoneNoSplit - 0x40804570 0x8e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .text.prvCheckItemFitsDefault - 0x408045fe 0x78 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .text.prvInitializeNewRingbuffer - 0x40804676 0xe0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .text.prvCopyItemByteBuf - 0x40804756 0x80 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .text.prvCopyItemAllowSplit - 0x408047d6 0xc4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .text.prvCopyItemNoSplit - 0x4080489a 0x2e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .text.prvReceiveGeneric - 0x408048c8 0xbe esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .text.prvReceiveGenericFromISR - 0x40804986 0x8a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .text.prvSendAcquireGeneric - 0x40804a10 0xb2 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .text.prvGetCurMaxSizeNoSplit - 0x40804ac2 0x3c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .text.prvGetCurMaxSizeAllowSplit - 0x40804afe 0x44 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .text.prvGetCurMaxSizeByteBuf - 0x40804b42 0x1c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .text.prvReturnItemByteBuf.part.0 - 0x40804b5e 0x10 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .text.prvReturnItemByteBuf - 0x40804b6e 0x34 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .text.xRingbufferCreateStatic - 0x40804ba2 0x3e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - 0x40804ba2 xRingbufferCreateStatic - .text.xRingbufferSend - 0x40804be0 0x3c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - 0x40804be0 xRingbufferSend - .text.xRingbufferSendFromISR - 0x40804c1c 0x9c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - 0x40804c1c xRingbufferSendFromISR - .text.xRingbufferReceive - 0x40804cb8 0x3c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - 0x40804cb8 xRingbufferReceive - .text.xRingbufferReceiveFromISR - 0x40804cf4 0x3a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - 0x40804cf4 xRingbufferReceiveFromISR - .text.xRingbufferReceiveUpTo - 0x40804d2e 0x40 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - 0x40804d2e xRingbufferReceiveUpTo - .text.vRingbufferReturnItem - 0x40804d6e 0x46 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - 0x40804d6e vRingbufferReturnItem - .text.vRingbufferReturnItemFromISR - 0x40804db4 0x48 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - 0x40804db4 vRingbufferReturnItemFromISR - .text.vRingbufferDelete - 0x40804dfc 0x22 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - 0x40804dfc vRingbufferDelete - .text.xRingbufferGetMaxItemSize - 0x40804e1e 0x14 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - 0x40804e1e xRingbufferGetMaxItemSize - .text.xRingbufferGetCurFreeSize - 0x40804e32 0x2c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - 0x40804e32 xRingbufferGetCurFreeSize - .text.vRingbufferGetInfo - 0x40804e5e 0x66 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - 0x40804e5e vRingbufferGetInfo - .text.xRingbufferGetStaticBuffer - 0x40804ec4 0x1e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - 0x40804ec4 xRingbufferGetStaticBuffer - .text.xRingbufferCreateWithCaps - 0x40804ee2 0x56 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - 0x40804ee2 xRingbufferCreateWithCaps - .text.vRingbufferDeleteWithCaps - 0x40804f38 0x38 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - 0x40804f38 vRingbufferDeleteWithCaps - *libesp_rom.a:esp_rom_print.*(.literal .literal.* .text .text.*) - *libesp_rom.a:esp_rom_spiflash.*(.literal .literal.* .text .text.*) - *libesp_rom.a:esp_rom_sys.*(.literal .literal.* .text .text.*) - *libesp_rom.a:esp_rom_systimer.*(.literal .literal.* .text .text.*) - .text.systimer_hal_init - 0x40804f70 0x1e esp-idf/esp_rom/libesp_rom.a(esp_rom_systimer.c.obj) - 0x40804f70 systimer_hal_init - *libesp_rom.a:esp_rom_tlsf.*(.literal .literal.* .text .text.*) - .text.integrity_walker - 0x40804f8e 0x5a esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) - .text.tlsf_check_pool - 0x40804fe8 0x24 esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) - 0x40804fe8 tlsf_check_pool - .text.startup.tlsf_set_rom_patches - 0x4080500c 0x36 esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) - 0x4080500c tlsf_set_rom_patches - *libesp_rom.a:esp_rom_wdt.*(.literal .literal.* .text .text.*) - .text.wdt_hal_init - 0x40805042 0x1ce esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) - 0x40805042 wdt_hal_init - *libesp_system.a:esp_err.*(.literal .literal.* .text .text.*) - *libesp_system.a:esp_system_chip.*(.literal.esp_system_abort .text.esp_system_abort) - .text.esp_system_abort - 0x40805210 0x2 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) - 0x40805210 esp_system_abort - *libesp_system.a:freertos_hooks.*(.literal.esp_vApplicationTickHook .text.esp_vApplicationTickHook) - .text.esp_vApplicationTickHook - 0x40805212 0x20 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - 0x40805212 esp_vApplicationTickHook - *libesp_system.a:image_process.*(.literal .literal.* .text .text.*) - *libesp_system.a:panic.*(.literal.panic_abort .text.panic_abort) - .text.panic_abort - 0x40805232 0x16 esp-idf/esp_system/libesp_system.a(panic.c.obj) - 0x40805232 panic_abort - *libesp_system.a:reset_reason.*(.literal.esp_reset_reason_set_hint .text.esp_reset_reason_set_hint) - .text.esp_reset_reason_set_hint - 0x40805248 0x2a esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - 0x40805248 esp_reset_reason_set_hint - *libesp_system.a:system_internal.*(.literal.esp_restart_noos .text.esp_restart_noos) - .text.esp_restart_noos - 0x40805272 0xe0 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) - 0x40805272 esp_restart_noos - *libesp_system.a:system_internal.*(.literal.esp_system_reset_modules_on_exit .text.esp_system_reset_modules_on_exit) - .text.esp_system_reset_modules_on_exit - 0x40805352 0x180 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) - 0x40805352 esp_system_reset_modules_on_exit - *libesp_system.a:system_time.*(.literal.esp_system_get_time .text.esp_system_get_time) - *libesp_system.a:system_time.*(.literal.esp_system_get_time_resolution .text.esp_system_get_time_resolution) - *libesp_system.a:ubsan.*(.literal .literal.* .text .text.*) - .text.__ubsan_include - 0x408054d2 0x2 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - 0x408054d2 __ubsan_include - *libesp_timer.a:esp_timer_impl_common.*(.literal.esp_timer_impl_lock .text.esp_timer_impl_lock) - *libesp_timer.a:esp_timer_impl_common.*(.literal.esp_timer_impl_unlock .text.esp_timer_impl_unlock) - *libesp_timer.a:esp_timer_impl_systimer.*(.literal.esp_timer_impl_advance .text.esp_timer_impl_advance) - *libesp_timer.a:esp_timer_impl_systimer.*(.literal.esp_timer_impl_set .text.esp_timer_impl_set) - *libfreertos.a:(EXCLUDE_FILE(*libfreertos.a:tasks.* *libfreertos.a:idf_additions_event_groups.* *libfreertos.a:idf_additions.* *libfreertos.a:freertos_compatibility.* *libfreertos.a:app_startup.*) .literal EXCLUDE_FILE(*libfreertos.a:tasks.* *libfreertos.a:idf_additions_event_groups.* *libfreertos.a:idf_additions.* *libfreertos.a:freertos_compatibility.* *libfreertos.a:app_startup.*) .literal.* EXCLUDE_FILE(*libfreertos.a:tasks.* *libfreertos.a:idf_additions_event_groups.* *libfreertos.a:idf_additions.* *libfreertos.a:freertos_compatibility.* *libfreertos.a:app_startup.*) .text EXCLUDE_FILE(*libfreertos.a:tasks.* *libfreertos.a:idf_additions_event_groups.* *libfreertos.a:idf_additions.* *libfreertos.a:freertos_compatibility.* *libfreertos.a:app_startup.*) .text.*) - .text.pxPortInitialiseStack - 0x408054d4 0x9c esp-idf/freertos/libfreertos.a(port.c.obj) - 0x408054d4 pxPortInitialiseStack - .text.xPortInIsrContext - 0x40805570 0xa esp-idf/freertos/libfreertos.a(port.c.obj) - 0x40805570 xPortInIsrContext - .text.xPortSetInterruptMaskFromISR - 0x4080557a 0x1a esp-idf/freertos/libfreertos.a(port.c.obj) - 0x4080557a xPortSetInterruptMaskFromISR - .text.vPortClearInterruptMaskFromISR - 0x40805594 0x10 esp-idf/freertos/libfreertos.a(port.c.obj) - 0x40805594 vPortClearInterruptMaskFromISR - .text.vPortEnterCritical - 0x408055a4 0x2c esp-idf/freertos/libfreertos.a(port.c.obj) - 0x408055a4 vPortEnterCritical - .text.vPortExitCritical - 0x408055d0 0x40 esp-idf/freertos/libfreertos.a(port.c.obj) - 0x408055d0 vPortExitCritical - .text.vPortYieldFromISR - 0x40805610 0x14 esp-idf/freertos/libfreertos.a(port.c.obj) - 0x40805610 vPortYieldFromISR - .text.vPortYield - 0x40805624 0x3e esp-idf/freertos/libfreertos.a(port.c.obj) - 0x40805624 vPortYield - .text.xPortStartScheduler - 0x40805662 0x56 esp-idf/freertos/libfreertos.a(port.c.obj) - 0x40805662 xPortStartScheduler - .text.vApplicationStackOverflowHook - 0x408056b8 0x48 esp-idf/freertos/libfreertos.a(port.c.obj) - 0x408056b8 vApplicationStackOverflowHook - .text.vPortTCBPreDeleteHook - 0x40805700 0x20 esp-idf/freertos/libfreertos.a(port.c.obj) - 0x40805700 vPortTCBPreDeleteHook - .text.pvPortMalloc - 0x40805720 0xa esp-idf/freertos/libfreertos.a(heap_idf.c.obj) - 0x40805720 pvPortMalloc - .text.vPortFree - 0x4080572a 0x4 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) - 0x4080572a vPortFree - .text.xPortCheckValidListMem - 0x4080572e 0x28 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) - 0x4080572e xPortCheckValidListMem - .text.xPortCheckValidTCBMem - 0x40805756 0x4 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) - 0x40805756 xPortCheckValidTCBMem - .text.xPortcheckValidStackMem - 0x4080575a 0x4 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) - 0x4080575a xPortcheckValidStackMem - .text.vApplicationGetIdleTaskMemory - 0x4080575e 0x3e esp-idf/freertos/libfreertos.a(port_common.c.obj) - 0x4080575e vApplicationGetIdleTaskMemory - .text.vSystimerSetup - 0x4080579c 0x128 esp-idf/freertos/libfreertos.a(port_systick.c.obj) - 0x4080579c vSystimerSetup - .text.vPortSetupTimer - 0x408058c4 0x4 esp-idf/freertos/libfreertos.a(port_systick.c.obj) - 0x408058c4 vPortSetupTimer - .text.xPortSysTickHandler - 0x408058c8 0x26 esp-idf/freertos/libfreertos.a(port_systick.c.obj) - 0x408058c8 xPortSysTickHandler - .text.SysTickIsrHandler - 0x408058ee 0x62 esp-idf/freertos/libfreertos.a(port_systick.c.obj) - 0x408058ee SysTickIsrHandler - .text.vListInitialise - 0x40805950 0x14 esp-idf/freertos/libfreertos.a(list.c.obj) - 0x40805950 vListInitialise - .text.vListInitialiseItem - 0x40805964 0x6 esp-idf/freertos/libfreertos.a(list.c.obj) - 0x40805964 vListInitialiseItem - .text.vListInsertEnd - 0x4080596a 0x18 esp-idf/freertos/libfreertos.a(list.c.obj) - 0x4080596a vListInsertEnd - .text.vListInsert - 0x40805982 0x30 esp-idf/freertos/libfreertos.a(list.c.obj) - 0x40805982 vListInsert - .text.uxListRemove - 0x408059b2 0x26 esp-idf/freertos/libfreertos.a(list.c.obj) - 0x408059b2 uxListRemove - .text.prvIsQueueEmpty - 0x408059d8 0x18 esp-idf/freertos/libfreertos.a(queue.c.obj) - .text.prvCopyDataToQueue - 0x408059f0 0x7c esp-idf/freertos/libfreertos.a(queue.c.obj) - .text.prvCopyDataFromQueue - 0x40805a6c 0x24 esp-idf/freertos/libfreertos.a(queue.c.obj) - .text.prvNotifyQueueSetContainer - 0x40805a90 0x78 esp-idf/freertos/libfreertos.a(queue.c.obj) - .text.prvUnlockQueue - 0x40805b08 0x82 esp-idf/freertos/libfreertos.a(queue.c.obj) - .text.xQueueGenericReset - 0x40805b8a 0x7c esp-idf/freertos/libfreertos.a(queue.c.obj) - 0x40805b8a xQueueGenericReset - .text.xQueueGenericCreateStatic - 0x40805c06 0x52 esp-idf/freertos/libfreertos.a(queue.c.obj) - 0x40805c06 xQueueGenericCreateStatic - .text.xQueueGenericGetStaticBuffers - 0x40805c58 0x2e esp-idf/freertos/libfreertos.a(queue.c.obj) - 0x40805c58 xQueueGenericGetStaticBuffers - .text.xQueueGenericCreate - 0x40805c86 0x5a esp-idf/freertos/libfreertos.a(queue.c.obj) - 0x40805c86 xQueueGenericCreate - .text.xQueueGetMutexHolder - 0x40805ce0 0x2e esp-idf/freertos/libfreertos.a(queue.c.obj) - 0x40805ce0 xQueueGetMutexHolder - .text.xQueueCreateCountingSemaphoreStatic - 0x40805d0e 0x2a esp-idf/freertos/libfreertos.a(queue.c.obj) - 0x40805d0e xQueueCreateCountingSemaphoreStatic - .text.xQueueGenericSend - 0x40805d38 0x136 esp-idf/freertos/libfreertos.a(queue.c.obj) - 0x40805d38 xQueueGenericSend - .text.xQueueCreateMutexStatic - 0x40805e6e 0x30 esp-idf/freertos/libfreertos.a(queue.c.obj) - 0x40805e6e xQueueCreateMutexStatic - .text.xQueueGiveMutexRecursive - 0x40805e9e 0x3c esp-idf/freertos/libfreertos.a(queue.c.obj) - 0x40805e9e xQueueGiveMutexRecursive - .text.xQueueCreateMutex - 0x40805eda 0x2e esp-idf/freertos/libfreertos.a(queue.c.obj) - 0x40805eda xQueueCreateMutex - .text.xQueueGenericSendFromISR - 0x40805f08 0xbc esp-idf/freertos/libfreertos.a(queue.c.obj) - 0x40805f08 xQueueGenericSendFromISR - .text.xQueueGiveFromISR - 0x40805fc4 0x96 esp-idf/freertos/libfreertos.a(queue.c.obj) - 0x40805fc4 xQueueGiveFromISR - .text.xQueueReceive - 0x4080605a 0x100 esp-idf/freertos/libfreertos.a(queue.c.obj) - 0x4080605a xQueueReceive - .text.xQueueSemaphoreTake - 0x4080615a 0x12a esp-idf/freertos/libfreertos.a(queue.c.obj) - 0x4080615a xQueueSemaphoreTake - .text.xQueueTakeMutexRecursive - 0x40806284 0x3a esp-idf/freertos/libfreertos.a(queue.c.obj) - 0x40806284 xQueueTakeMutexRecursive - .text.xQueueReceiveFromISR - 0x408062be 0x90 esp-idf/freertos/libfreertos.a(queue.c.obj) - 0x408062be xQueueReceiveFromISR - .text.vQueueDelete - 0x4080634e 0x1e esp-idf/freertos/libfreertos.a(queue.c.obj) - 0x4080634e vQueueDelete - .text 0x4080636c 0xd6 esp-idf/freertos/libfreertos.a(portasm.S.obj) - 0x40806376 rtos_int_enter - 0x408063d4 rtos_int_exit - *libfreertos.a:tasks.*(.text .text.__getreent .text.eTaskGetState .text.pcTaskGetName .text.prvAddCurrentTaskToDelayedList .text.prvAddNewTaskToReadyList .text.prvDeleteTCB .text.prvIdleTask .text.prvInitialiseNewTask.constprop.0 .text.prvResetNextTaskUnblockTime .text.prvSearchForNameWithinSingleList .text.prvTaskIsTaskSuspended.part.0 .text.prvTaskPriorityRaise .text.prvTaskPriorityRestore .text.pvTaskGetCurrentTCBForCore .text.pvTaskGetThreadLocalStoragePointer .text.pvTaskIncrementMutexHeldCount .text.pxTaskGetStackStart .text.ulTaskGenericNotifyTake .text.ulTaskGenericNotifyValueClear .text.uxTaskGetNumberOfTasks .text.uxTaskGetStackHighWaterMark .text.uxTaskGetStackHighWaterMark2 .text.uxTaskPriorityGet .text.uxTaskPriorityGetFromISR .text.uxTaskResetEventItemValue .text.vTaskDelay .text.vTaskDelete .text.vTaskEndScheduler .text.vTaskGenericNotifyGiveFromISR .text.vTaskGetSnapshot .text.vTaskInternalSetTimeOutState .text.vTaskMissedYield .text.vTaskPlaceOnEventList .text.vTaskPlaceOnEventListRestricted .text.vTaskPlaceOnUnorderedEventList .text.vTaskPriorityDisinheritAfterTimeout .text.vTaskPrioritySet .text.vTaskRemoveFromUnorderedEventList .text.vTaskResume .text.vTaskSetThreadLocalStoragePointer .text.vTaskSetThreadLocalStoragePointerAndDelCallback .text.vTaskSetTimeOutState .text.vTaskStartScheduler .text.vTaskSuspend .text.vTaskSuspendAll .text.vTaskSwitchContext .text.xTaskAbortDelay .text.xTaskCatchUpTicks .text.xTaskCheckForTimeOut .text.xTaskCreatePinnedToCore .text.xTaskCreateStaticPinnedToCore .text.xTaskDelayUntil .text.xTaskGenericNotify .text.xTaskGenericNotifyFromISR .text.xTaskGenericNotifyStateClear .text.xTaskGenericNotifyWait .text.xTaskGetCoreID .text.xTaskGetCurrentTaskHandle .text.xTaskGetCurrentTaskHandleForCore .text.xTaskGetHandle .text.xTaskGetIdleTaskHandle .text.xTaskGetIdleTaskHandleForCore .text.xTaskGetSchedulerState .text.xTaskGetStaticBuffers .text.xTaskGetTickCount .text.xTaskGetTickCountFromISR .text.xTaskIncrementTick .text.xTaskPriorityDisinherit .text.xTaskPriorityInherit .text.xTaskRemoveFromEventList .text.xTaskResumeAll .text.xTaskResumeFromISR .text.xTimerCreateTimerTask) - .text.prvAddCurrentTaskToDelayedList - 0x40806442 0xce esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.prvAddNewTaskToReadyList - 0x40806510 0x124 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.prvResetNextTaskUnblockTime - 0x40806634 0x22 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.prvTaskIsTaskSuspended.part.0 - 0x40806656 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.prvDeleteTCB - 0x40806666 0x3c esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.prvIdleTask - 0x408066a2 0x56 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.prvInitialiseNewTask.constprop.0 - 0x408066f8 0xac esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.vTaskDelete - 0x408067a4 0xdc esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x408067a4 vTaskDelete - .text.vTaskSuspendAll - 0x40806880 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x40806880 vTaskSuspendAll - .text.xTaskGetTickCount - 0x40806890 0xa esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x40806890 xTaskGetTickCount - .text.uxTaskGetNumberOfTasks - 0x4080689a 0xa esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x4080689a uxTaskGetNumberOfTasks - .text.pcTaskGetName - 0x408068a4 0x22 esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x408068a4 pcTaskGetName - .text.xTaskIncrementTick - 0x408068c6 0x17a esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x408068c6 xTaskIncrementTick - .text.xTaskResumeAll - 0x40806a40 0x142 esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x40806a40 xTaskResumeAll - .text.vTaskDelay - 0x40806b82 0x3e esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x40806b82 vTaskDelay - .text.vTaskSwitchContext - 0x40806bc0 0xba esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x40806bc0 vTaskSwitchContext - .text.vTaskPlaceOnEventList - 0x40806c7a 0x2c esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x40806c7a vTaskPlaceOnEventList - .text.xTaskRemoveFromEventList - 0x40806ca6 0xde esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x40806ca6 xTaskRemoveFromEventList - .text.vTaskInternalSetTimeOutState - 0x40806d84 0x16 esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x40806d84 vTaskInternalSetTimeOutState - .text.xTaskCheckForTimeOut - 0x40806d9a 0x86 esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x40806d9a xTaskCheckForTimeOut - .text.vTaskMissedYield - 0x40806e20 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x40806e20 vTaskMissedYield - .text.pvTaskGetThreadLocalStoragePointer - 0x40806e2c 0x1e esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x40806e2c pvTaskGetThreadLocalStoragePointer - .text.xTaskGetCurrentTaskHandle - 0x40806e4a 0xa esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x40806e4a xTaskGetCurrentTaskHandle - .text.xTaskGetSchedulerState - 0x40806e54 0x1c esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x40806e54 xTaskGetSchedulerState - .text.xTaskPriorityInherit - 0x40806e70 0xc4 esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x40806e70 xTaskPriorityInherit - .text.xTaskPriorityDisinherit - 0x40806f34 0xa2 esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x40806f34 xTaskPriorityDisinherit - .text.vTaskPriorityDisinheritAfterTimeout - 0x40806fd6 0xba esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x40806fd6 vTaskPriorityDisinheritAfterTimeout - .text.pvTaskIncrementMutexHeldCount - 0x40807090 0x1a esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x40807090 pvTaskIncrementMutexHeldCount - .text.ulTaskGenericNotifyTake - 0x408070aa 0x7c esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x408070aa ulTaskGenericNotifyTake - .text.vTaskGenericNotifyGiveFromISR - 0x40807126 0xe6 esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x40807126 vTaskGenericNotifyGiveFromISR - .text.xTaskCreatePinnedToCore - 0x4080720c 0x78 esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x4080720c xTaskCreatePinnedToCore - .text.xTaskCreateStaticPinnedToCore - 0x40807284 0x88 esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x40807284 xTaskCreateStaticPinnedToCore - .text.xTimerCreateTimerTask - 0x4080730c 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x4080730c xTimerCreateTimerTask - .text.vTaskStartScheduler - 0x40807310 0x88 esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x40807310 vTaskStartScheduler - .text.xTaskGetCoreID - 0x40807398 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x40807398 xTaskGetCoreID - .text.xTaskGetIdleTaskHandleForCore - 0x4080739c 0x1e esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x4080739c xTaskGetIdleTaskHandleForCore - .text.xTaskGetCurrentTaskHandleForCore - 0x408073ba 0x1c esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x408073ba xTaskGetCurrentTaskHandleForCore - .text.vTaskSetThreadLocalStoragePointerAndDelCallback - 0x408073d6 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x408073d6 vTaskSetThreadLocalStoragePointerAndDelCallback - .text.__getreent - 0x408073ee 0x16 esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x408073ee __getreent - .text.vTaskGetSnapshot - 0x40807404 0x24 esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x40807404 vTaskGetSnapshot - *libgcc.a:_divsf3.*(.literal .literal.* .text .text.*) - *libgcc.a:lib2funcs.*(.literal .literal.* .text .text.*) - *libgcc.a:save-restore.*(.literal .literal.* .text .text.*) - .text 0x40807428 0x60 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(save-restore.o) - 0x40807428 __riscv_save_12 - 0x40807430 __riscv_save_11 - 0x40807430 __riscv_save_8 - 0x40807430 __riscv_save_9 - 0x40807430 __riscv_save_10 - 0x4080743e __riscv_save_4 - 0x4080743e __riscv_save_5 - 0x4080743e __riscv_save_6 - 0x4080743e __riscv_save_7 - 0x40807458 __riscv_save_1 - 0x40807458 __riscv_save_2 - 0x40807458 __riscv_save_0 - 0x40807458 __riscv_save_3 - 0x40807464 __riscv_restore_12 - 0x40807468 __riscv_restore_11 - 0x40807468 __riscv_restore_8 - 0x40807468 __riscv_restore_10 - 0x40807468 __riscv_restore_9 - 0x40807472 __riscv_restore_6 - 0x40807472 __riscv_restore_5 - 0x40807472 __riscv_restore_4 - 0x40807472 __riscv_restore_7 - 0x4080747c __riscv_restore_2 - 0x4080747c __riscv_restore_0 - 0x4080747c __riscv_restore_1 - 0x4080747c __riscv_restore_3 - *libgcov.a:(.literal .literal.* .text .text.*) - *libhal.a:cache_hal.*(.literal .literal.* .text .text.*) - .text.s_cache_hal_init_ctx - 0x40807488 0x32 esp-idf/hal/libhal.a(cache_hal.c.obj) - 0x40807488 s_cache_hal_init_ctx - .text.cache_hal_init - 0x408074ba 0x44 esp-idf/hal/libhal.a(cache_hal.c.obj) - 0x408074ba cache_hal_init - .text.s_update_cache_state - 0x408074fe 0x30 esp-idf/hal/libhal.a(cache_hal.c.obj) - 0x408074fe s_update_cache_state - .text.s_get_cache_state - 0x4080752e 0x36 esp-idf/hal/libhal.a(cache_hal.c.obj) - 0x4080752e s_get_cache_state - .text.cache_hal_suspend - 0x40807564 0x2c esp-idf/hal/libhal.a(cache_hal.c.obj) - 0x40807564 cache_hal_suspend - .text.cache_hal_resume - 0x40807590 0x34 esp-idf/hal/libhal.a(cache_hal.c.obj) - 0x40807590 cache_hal_resume - .text.cache_hal_is_cache_enabled - 0x408075c4 0x4 esp-idf/hal/libhal.a(cache_hal.c.obj) - 0x408075c4 cache_hal_is_cache_enabled - .text.cache_hal_invalidate_addr - 0x408075c8 0x3a esp-idf/hal/libhal.a(cache_hal.c.obj) - 0x408075c8 cache_hal_invalidate_addr - .text.cache_hal_freeze - 0x40807602 0x1c esp-idf/hal/libhal.a(cache_hal.c.obj) - 0x40807602 cache_hal_freeze - .text.cache_hal_unfreeze - 0x4080761e 0x1a esp-idf/hal/libhal.a(cache_hal.c.obj) - 0x4080761e cache_hal_unfreeze - .text.cache_hal_get_cache_line_size - 0x40807638 0x22 esp-idf/hal/libhal.a(cache_hal.c.obj) - 0x40807638 cache_hal_get_cache_line_size - *libhal.a:gdma_hal_ahb_v1.*(.literal.gdma_ahb_hal_append .text.gdma_ahb_hal_append) - .text.gdma_ahb_hal_append - 0x4080765a 0x32 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) - 0x4080765a gdma_ahb_hal_append - *libhal.a:gdma_hal_ahb_v1.*(.literal.gdma_ahb_hal_clear_intr .text.gdma_ahb_hal_clear_intr) - .text.gdma_ahb_hal_clear_intr - 0x4080768c 0x14 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) - 0x4080768c gdma_ahb_hal_clear_intr - *libhal.a:gdma_hal_ahb_v1.*(.literal.gdma_ahb_hal_get_eof_desc_addr .text.gdma_ahb_hal_get_eof_desc_addr) - .text.gdma_ahb_hal_get_eof_desc_addr - 0x408076a0 0x2e esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) - 0x408076a0 gdma_ahb_hal_get_eof_desc_addr - *libhal.a:gdma_hal_ahb_v1.*(.literal.gdma_ahb_hal_read_intr_status .text.gdma_ahb_hal_read_intr_status) - .text.gdma_ahb_hal_read_intr_status - 0x408076ce 0x1a esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) - 0x408076ce gdma_ahb_hal_read_intr_status - *libhal.a:gdma_hal_ahb_v1.*(.literal.gdma_ahb_hal_reset .text.gdma_ahb_hal_reset) - .text.gdma_ahb_hal_reset - 0x408076e8 0x34 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) - 0x408076e8 gdma_ahb_hal_reset - *libhal.a:gdma_hal_ahb_v1.*(.literal.gdma_ahb_hal_start_with_desc .text.gdma_ahb_hal_start_with_desc) - .text.gdma_ahb_hal_start_with_desc - 0x4080771c 0x4a esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) - 0x4080771c gdma_ahb_hal_start_with_desc - *libhal.a:gdma_hal_ahb_v1.*(.literal.gdma_ahb_hal_stop .text.gdma_ahb_hal_stop) - .text.gdma_ahb_hal_stop - 0x40807766 0x32 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) - 0x40807766 gdma_ahb_hal_stop - *libhal.a:gdma_hal_top.*(.literal.gdma_hal_append .text.gdma_hal_append) - *libhal.a:gdma_hal_top.*(.literal.gdma_hal_clear_intr .text.gdma_hal_clear_intr) - .text.gdma_hal_clear_intr - 0x40807798 0x4 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - 0x40807798 gdma_hal_clear_intr - *libhal.a:gdma_hal_top.*(.literal.gdma_hal_get_eof_desc_addr .text.gdma_hal_get_eof_desc_addr) - *libhal.a:gdma_hal_top.*(.literal.gdma_hal_read_intr_status .text.gdma_hal_read_intr_status) - *libhal.a:gdma_hal_top.*(.literal.gdma_hal_reset .text.gdma_hal_reset) - *libhal.a:gdma_hal_top.*(.literal.gdma_hal_start_with_desc .text.gdma_hal_start_with_desc) - .text.gdma_hal_start_with_desc - 0x4080779c 0x4 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - 0x4080779c gdma_hal_start_with_desc - *libhal.a:gdma_hal_top.*(.literal.gdma_hal_stop .text.gdma_hal_stop) - *libhal.a:gpio_hal.*(.literal.gpio_hal_isolate_in_sleep .text.gpio_hal_isolate_in_sleep) - *libhal.a:i2c_hal_iram.*(.literal .literal.* .text .text.*) - *libhal.a:ledc_hal_iram.*(.literal .literal.* .text .text.*) - *libhal.a:mmu_hal.*(.literal .literal.* .text .text.*) - .text.mmu_hal_pages_to_bytes - 0x408077a0 0x2c esp-idf/hal/libhal.a(mmu_hal.c.obj) - 0x408077a0 mmu_hal_pages_to_bytes - .text.mmu_hal_paddr_to_vaddr - 0x408077cc 0x102 esp-idf/hal/libhal.a(mmu_hal.c.obj) - 0x408077cc mmu_hal_paddr_to_vaddr - .text.mmu_hal_check_valid_ext_vaddr_region - 0x408078ce 0x20 esp-idf/hal/libhal.a(mmu_hal.c.obj) - 0x408078ce mmu_hal_check_valid_ext_vaddr_region - .text.mmu_hal_map_region - 0x408078ee 0x170 esp-idf/hal/libhal.a(mmu_hal.c.obj) - 0x408078ee mmu_hal_map_region - .text.mmu_hal_unmap_region - 0x40807a5e 0x88 esp-idf/hal/libhal.a(mmu_hal.c.obj) - 0x40807a5e mmu_hal_unmap_region - .text.mmu_hal_vaddr_to_paddr - 0x40807ae6 0xb8 esp-idf/hal/libhal.a(mmu_hal.c.obj) - 0x40807ae6 mmu_hal_vaddr_to_paddr - *libhal.a:pmu_hal.*(.literal .literal.* .text .text.*) - .text.pmu_hal_hp_set_sleep_active_backup_enable - 0x40807b9e 0x1c esp-idf/hal/libhal.a(pmu_hal.c.obj) - 0x40807b9e pmu_hal_hp_set_sleep_active_backup_enable - .text.pmu_hal_hp_set_sleep_active_backup_disable - 0x40807bba 0x1c esp-idf/hal/libhal.a(pmu_hal.c.obj) - 0x40807bba pmu_hal_hp_set_sleep_active_backup_disable - *libhal.a:spi_flash_encrypt_hal_iram.*(.literal .literal.* .text .text.*) - .text.spi_flash_encryption_hal_enable - 0x40807bd6 0x1c esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - 0x40807bd6 spi_flash_encryption_hal_enable - .text.spi_flash_encryption_hal_disable - 0x40807bf2 0xc esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - 0x40807bf2 spi_flash_encryption_hal_disable - .text.spi_flash_encryption_hal_prepare - 0x40807bfe 0x7a esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - 0x40807bfe spi_flash_encryption_hal_prepare - .text.spi_flash_encryption_hal_done - 0x40807c78 0x36 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - 0x40807c78 spi_flash_encryption_hal_done - .text.spi_flash_encryption_hal_destroy - 0x40807cae 0x12 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - 0x40807cae spi_flash_encryption_hal_destroy - .text.spi_flash_encryption_hal_check - 0x40807cc0 0xa esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - 0x40807cc0 spi_flash_encryption_hal_check - .text.spi_flash_encryption_hal_enable_pseudo_rounds - 0x40807cca 0x7a esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - 0x40807cca spi_flash_encryption_hal_enable_pseudo_rounds - *libhal.a:spi_flash_hal_gpspi.*(.literal .literal.* .text .text.*) - .text.gpspi_flash_ll_get_buffer_data - 0x40807d44 0x66 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - .text.spi_flash_hal_gpspi_poll_cmd_done - 0x40807daa 0xe esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - 0x40807daa spi_flash_hal_gpspi_poll_cmd_done - .text.spi_flash_hal_gpspi_device_config - 0x40807db8 0xce esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - 0x40807db8 spi_flash_hal_gpspi_device_config - .text.spi_flash_hal_gpspi_configure_host_io_mode - 0x40807e86 0x1c0 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - 0x40807e86 spi_flash_hal_gpspi_configure_host_io_mode - .text.spi_flash_hal_gpspi_common_command - 0x40808046 0x16e esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - 0x40808046 spi_flash_hal_gpspi_common_command - .text.spi_flash_hal_gpspi_read - 0x408081b4 0xae esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - 0x408081b4 spi_flash_hal_gpspi_read - .text.spi_flash_hal_gpspi_supports_direct_write - 0x40808262 0x4 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - 0x40808262 spi_flash_hal_gpspi_supports_direct_write - .text.spi_flash_hal_gpspi_supports_direct_read - 0x40808266 0x4 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - 0x40808266 spi_flash_hal_gpspi_supports_direct_read - .text.spi_flash_hal_gpspi_check_status - 0x4080826a 0xe esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - 0x4080826a spi_flash_hal_gpspi_check_status - *libhal.a:spi_flash_hal_iram.*(.literal .literal.* .text .text.*) - .text.spimem_flash_ll_get_source_freq_mhz - 0x40808278 0x2a esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - .text.spi_flash_hal_poll_cmd_done - 0x408082a2 0x8 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - 0x408082a2 spi_flash_hal_poll_cmd_done - .text.spi_flash_hal_configure_host_io_mode - 0x408082aa 0x1cc esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - 0x408082aa spi_flash_hal_configure_host_io_mode - .text.spi_flash_hal_common_command - 0x40808476 0x190 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - 0x40808476 spi_flash_hal_common_command - .text.spi_flash_hal_read - 0x40808606 0xb4 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - 0x40808606 spi_flash_hal_read - .text.spi_flash_hal_erase_chip - 0x408086ba 0x1a esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - 0x408086ba spi_flash_hal_erase_chip - .text.spi_flash_hal_erase_sector - 0x408086d4 0x3e esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - 0x408086d4 spi_flash_hal_erase_sector - .text.spi_flash_hal_erase_block - 0x40808712 0x38 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - 0x40808712 spi_flash_hal_erase_block - .text.spi_flash_hal_program_page - 0x4080874a 0x96 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - 0x4080874a spi_flash_hal_program_page - .text.spi_flash_hal_set_write_protect - 0x408087e0 0x22 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - 0x408087e0 spi_flash_hal_set_write_protect - .text.spi_flash_hal_check_status - 0x40808802 0x16 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - 0x40808802 spi_flash_hal_check_status - .text.spi_flash_hal_setup_read_suspend - 0x40808818 0x96 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - 0x40808818 spi_flash_hal_setup_read_suspend - .text.spi_flash_hal_setup_auto_suspend_mode - 0x408088ae 0x12a esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - 0x408088ae spi_flash_hal_setup_auto_suspend_mode - .text.spi_flash_hal_disable_auto_suspend_mode - 0x408089d8 0x6a esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - 0x408089d8 spi_flash_hal_disable_auto_suspend_mode - .text.spi_flash_hal_device_config - 0x40808a42 0xaa esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - 0x40808a42 spi_flash_hal_device_config - .text.spi_flash_hal_resume - 0x40808aec 0x14 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - 0x40808aec spi_flash_hal_resume - .text.spi_flash_hal_suspend - 0x40808b00 0x14 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - 0x40808b00 spi_flash_hal_suspend - *libhal.a:spi_hal_iram.*(.literal .literal.* .text .text.*) - *libhal.a:spi_slave_hal_iram.*(.literal .literal.* .text .text.*) - *libhal.a:timer_hal.*(.literal.timer_hal_capture_and_get_counter_value .text.timer_hal_capture_and_get_counter_value) - *libhal.a:uart_hal_iram.*(.literal .literal.* .text .text.*) - .text.uart_hal_txfifo_rst - 0x40808b14 0x42 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) - 0x40808b14 uart_hal_txfifo_rst - .text.uart_hal_rxfifo_rst - 0x40808b56 0x42 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) - 0x40808b56 uart_hal_rxfifo_rst - .text.uart_hal_tx_break - 0x40808b98 0x5a esp-idf/hal/libhal.a(uart_hal_iram.c.obj) - 0x40808b98 uart_hal_tx_break - .text.uart_hal_write_txfifo - 0x40808bf2 0x42 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) - 0x40808bf2 uart_hal_write_txfifo - .text.uart_hal_read_rxfifo - 0x40808c34 0x42 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) - 0x40808c34 uart_hal_read_rxfifo - *libheap.a:multi_heap.*(.literal._multi_heap_lock .text._multi_heap_lock) - .text._multi_heap_lock - 0x40808c76 0x14 esp-idf/heap/libheap.a(multi_heap.c.obj) - 0x40808c76 _multi_heap_lock - *libheap.a:multi_heap.*(.literal._multi_heap_unlock .text._multi_heap_unlock) - .text._multi_heap_unlock - 0x40808c8a 0x14 esp-idf/heap/libheap.a(multi_heap.c.obj) - 0x40808c8a _multi_heap_unlock - *libheap.a:multi_heap.*(.literal.multi_heap_aligned_alloc_offs .text.multi_heap_aligned_alloc_offs) - .text.multi_heap_aligned_alloc_offs - 0x40808c9e 0x8 esp-idf/heap/libheap.a(multi_heap.c.obj) - 0x40808c9e multi_heap_aligned_alloc_offs - *libheap.a:multi_heap.*(.literal.multi_heap_get_full_block_size .text.multi_heap_get_full_block_size) - *libheap.a:multi_heap.*(.literal.multi_heap_in_rom_init .text.multi_heap_in_rom_init) - .text.multi_heap_in_rom_init - 0x40808ca6 0xc esp-idf/heap/libheap.a(multi_heap.c.obj) - 0x40808ca6 multi_heap_in_rom_init - *libieee802154.a:esp_ieee802154.*(.literal.esp_ieee802154_enh_ack_generator .text.esp_ieee802154_enh_ack_generator) - *libieee802154.a:esp_ieee802154.*(.literal.esp_ieee802154_get_extended_address .text.esp_ieee802154_get_extended_address) - .text.esp_ieee802154_get_extended_address - 0x40808cb2 0x2e esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - 0x40808cb2 esp_ieee802154_get_extended_address - *libieee802154.a:esp_ieee802154.*(.literal.esp_ieee802154_get_recent_lqi .text.esp_ieee802154_get_recent_lqi) - *libieee802154.a:esp_ieee802154.*(.literal.esp_ieee802154_get_recent_rssi .text.esp_ieee802154_get_recent_rssi) - .text.esp_ieee802154_get_recent_rssi - 0x40808ce0 0x2 esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - 0x40808ce0 esp_ieee802154_get_recent_rssi - *libieee802154.a:esp_ieee802154.*(.literal.esp_ieee802154_receive .text.esp_ieee802154_receive) - .text.esp_ieee802154_receive - 0x40808ce2 0x4 esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - 0x40808ce2 esp_ieee802154_receive - *libieee802154.a:esp_ieee802154.*(.literal.esp_ieee802154_receive_at .text.esp_ieee802154_receive_at) - .text.esp_ieee802154_receive_at - 0x40808ce6 0x4 esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - 0x40808ce6 esp_ieee802154_receive_at - *libieee802154.a:esp_ieee802154.*(.literal.esp_ieee802154_set_transmit_security .text.esp_ieee802154_set_transmit_security) - .text.esp_ieee802154_set_transmit_security - 0x40808cea 0xe esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - 0x40808cea esp_ieee802154_set_transmit_security - *libieee802154.a:esp_ieee802154.*(.literal.esp_ieee802154_transmit .text.esp_ieee802154_transmit) - .text.esp_ieee802154_transmit - 0x40808cf8 0x4 esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - 0x40808cf8 esp_ieee802154_transmit - *libieee802154.a:esp_ieee802154.*(.literal.esp_ieee802154_transmit_at .text.esp_ieee802154_transmit_at) - .text.esp_ieee802154_transmit_at - 0x40808cfc 0x4 esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - 0x40808cfc esp_ieee802154_transmit_at - *libieee802154.a:esp_ieee802154_ack.*(.literal.ieee802154_ack_config_pending_bit .text.ieee802154_ack_config_pending_bit) - .text.ieee802154_ack_config_pending_bit - 0x40808d00 0xa0 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_ack.c.obj) - 0x40808d00 ieee802154_ack_config_pending_bit - *libieee802154.a:esp_ieee802154_dev.*(.literal.ieee802154_finish_receive_at .text.ieee802154_finish_receive_at) - .text.ieee802154_finish_receive_at - 0x40808da0 0x14 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - *libieee802154.a:esp_ieee802154_dev.*(.literal.ieee802154_get_recent_lqi .text.ieee802154_get_recent_lqi) - *libieee802154.a:esp_ieee802154_dev.*(.literal.ieee802154_get_recent_rssi .text.ieee802154_get_recent_rssi) - .text.ieee802154_get_recent_rssi - 0x40808db4 0x1a esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - 0x40808db4 ieee802154_get_recent_rssi - *libieee802154.a:esp_ieee802154_dev.*(.literal.ieee802154_isr .text.ieee802154_isr) - .text.ieee802154_isr - 0x40808dce 0x7a8 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - *libieee802154.a:esp_ieee802154_dev.*(.literal.ieee802154_receive .text.ieee802154_receive) - .text.ieee802154_receive - 0x40809576 0x58 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - 0x40809576 ieee802154_receive - *libieee802154.a:esp_ieee802154_dev.*(.literal.ieee802154_receive_at .text.ieee802154_receive_at) - .text.ieee802154_receive_at - 0x408095ce 0x56 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - 0x408095ce ieee802154_receive_at - *libieee802154.a:esp_ieee802154_dev.*(.literal.ieee802154_rx_frame_info_update .text.ieee802154_rx_frame_info_update) - .text.ieee802154_rx_frame_info_update - 0x40809624 0x76 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - *libieee802154.a:esp_ieee802154_dev.*(.literal.ieee802154_start_receive_at .text.ieee802154_start_receive_at) - .text.ieee802154_start_receive_at - 0x4080969a 0xe esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - *libieee802154.a:esp_ieee802154_dev.*(.literal.ieee802154_transmit .text.ieee802154_transmit) - .text.ieee802154_transmit - 0x408096a8 0x92 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - 0x408096a8 ieee802154_transmit - *libieee802154.a:esp_ieee802154_dev.*(.literal.ieee802154_transmit_at .text.ieee802154_transmit_at) - .text.ieee802154_transmit_at - 0x4080973a 0xb6 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - 0x4080973a ieee802154_transmit_at - *libieee802154.a:esp_ieee802154_dev.*(.literal.set_next_rx_buffer .text.set_next_rx_buffer) - .text.set_next_rx_buffer - 0x408097f0 0x88 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - *libieee802154.a:esp_ieee802154_dev.*(.literal.stop_cca .text.stop_cca) - .text.stop_cca - 0x40809878 0x28 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - *libieee802154.a:esp_ieee802154_dev.*(.literal.stop_current_operation .text.stop_current_operation) - .text.stop_current_operation - 0x408098a0 0x90 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - *libieee802154.a:esp_ieee802154_dev.*(.literal.stop_ed .text.stop_ed) - .text.stop_ed 0x40809930 0x28 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - *libieee802154.a:esp_ieee802154_dev.*(.literal.stop_rx .text.stop_rx) - .text.stop_rx 0x40809958 0x6a esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - *libieee802154.a:esp_ieee802154_dev.*(.literal.stop_rx_ack .text.stop_rx_ack) - .text.stop_rx_ack - 0x408099c2 0xb6 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - *libieee802154.a:esp_ieee802154_dev.*(.literal.stop_tx .text.stop_tx) - .text.stop_tx 0x40809a78 0xc2 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - *libieee802154.a:esp_ieee802154_dev.*(.literal.stop_tx_ack .text.stop_tx_ack) - .text.stop_tx_ack - 0x40809b3a 0x62 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - *libieee802154.a:esp_ieee802154_dev.*(.literal.stop_tx_cca .text.stop_tx_cca) - .text.stop_tx_cca - 0x40809b9c 0x26 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - *libieee802154.a:esp_ieee802154_event.*(.literal.ieee802154_inner_energy_detect_done .text.ieee802154_inner_energy_detect_done) - .text.ieee802154_inner_energy_detect_done - 0x40809bc2 0x1c esp-idf/ieee802154/libieee802154.a(esp_ieee802154_event.c.obj) - 0x40809bc2 ieee802154_inner_energy_detect_done - *libieee802154.a:esp_ieee802154_event.*(.literal.ieee802154_inner_enh_ack_generator .text.ieee802154_inner_enh_ack_generator) - .text.ieee802154_inner_enh_ack_generator - 0x40809bde 0x1c esp-idf/ieee802154/libieee802154.a(esp_ieee802154_event.c.obj) - 0x40809bde ieee802154_inner_enh_ack_generator - *libieee802154.a:esp_ieee802154_event.*(.literal.ieee802154_inner_receive_done .text.ieee802154_inner_receive_done) - .text.ieee802154_inner_receive_done - 0x40809bfa 0x1a esp-idf/ieee802154/libieee802154.a(esp_ieee802154_event.c.obj) - 0x40809bfa ieee802154_inner_receive_done - *libieee802154.a:esp_ieee802154_event.*(.literal.ieee802154_inner_receive_sfd_done .text.ieee802154_inner_receive_sfd_done) - .text.ieee802154_inner_receive_sfd_done - 0x40809c14 0x1c esp-idf/ieee802154/libieee802154.a(esp_ieee802154_event.c.obj) - 0x40809c14 ieee802154_inner_receive_sfd_done - *libieee802154.a:esp_ieee802154_event.*(.literal.ieee802154_inner_transmit_done .text.ieee802154_inner_transmit_done) - .text.ieee802154_inner_transmit_done - 0x40809c30 0x1c esp-idf/ieee802154/libieee802154.a(esp_ieee802154_event.c.obj) - 0x40809c30 ieee802154_inner_transmit_done - *libieee802154.a:esp_ieee802154_event.*(.literal.ieee802154_inner_transmit_failed .text.ieee802154_inner_transmit_failed) - .text.ieee802154_inner_transmit_failed - 0x40809c4c 0x1c esp-idf/ieee802154/libieee802154.a(esp_ieee802154_event.c.obj) - 0x40809c4c ieee802154_inner_transmit_failed - *libieee802154.a:esp_ieee802154_event.*(.literal.ieee802154_inner_transmit_sfd_done .text.ieee802154_inner_transmit_sfd_done) - .text.ieee802154_inner_transmit_sfd_done - 0x40809c68 0x1c esp-idf/ieee802154/libieee802154.a(esp_ieee802154_event.c.obj) - 0x40809c68 ieee802154_inner_transmit_sfd_done - *libieee802154.a:esp_ieee802154_frame.*(.literal.ieee802154_frame_get_security_field_len .text.ieee802154_frame_get_security_field_len) - .text.ieee802154_frame_get_security_field_len - 0x40809c84 0x54 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_frame.c.obj) - *libieee802154.a:esp_ieee802154_frame.*(.literal.ieee802154_frame_get_security_payload_offset .text.ieee802154_frame_get_security_payload_offset) - .text.ieee802154_frame_get_security_payload_offset - 0x40809cd8 0xe4 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_frame.c.obj) - 0x40809cd8 ieee802154_frame_get_security_payload_offset - *libieee802154.a:esp_ieee802154_frame.*(.literal.ieee802154_frame_get_src_addr .text.ieee802154_frame_get_src_addr) - .text.ieee802154_frame_get_src_addr - 0x40809dbc 0x88 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_frame.c.obj) - 0x40809dbc ieee802154_frame_get_src_addr - *libieee802154.a:esp_ieee802154_frame.*(.literal.ieee802154_frame_security_header_offset .text.ieee802154_frame_security_header_offset) - .text.ieee802154_frame_security_header_offset - 0x40809e44 0x8a esp-idf/ieee802154/libieee802154.a(esp_ieee802154_frame.c.obj) - *libieee802154.a:esp_ieee802154_frame.*(.literal.is_dst_panid_present .text.is_dst_panid_present) - .text.is_dst_panid_present - 0x40809ece 0x4c esp-idf/ieee802154/libieee802154.a(esp_ieee802154_frame.c.obj) - *libieee802154.a:esp_ieee802154_frame.*(.literal.is_src_panid_present .text.is_src_panid_present) - .text.is_src_panid_present - 0x40809f1a 0x46 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_frame.c.obj) - *libieee802154.a:esp_ieee802154_pib.*(.literal.ieee802154_pib_get_pending_mode .text.ieee802154_pib_get_pending_mode) - .text.ieee802154_pib_get_pending_mode - 0x40809f60 0xc esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - 0x40809f60 ieee802154_pib_get_pending_mode - *libieee802154.a:esp_ieee802154_pib.*(.literal.ieee802154_pib_get_rx_when_idle .text.ieee802154_pib_get_rx_when_idle) - .text.ieee802154_pib_get_rx_when_idle - 0x40809f6c 0xa esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - 0x40809f6c ieee802154_pib_get_rx_when_idle - *libieee802154.a:esp_ieee802154_pib.*(.literal.ieee802154_pib_update .text.ieee802154_pib_update) - .text.ieee802154_pib_update - 0x40809f76 0xd6 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - 0x40809f76 ieee802154_pib_update - *libieee802154.a:esp_ieee802154_pib.*(.literal.ieee802154_txpower_convert .text.ieee802154_txpower_convert) - .text.ieee802154_txpower_convert - 0x4080a04c 0x22 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - *libieee802154.a:esp_ieee802154_sec.*(.literal.ieee802154_sec_update .text.ieee802154_sec_update) - .text.ieee802154_sec_update - 0x4080a06e 0x24 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_sec.c.obj) - 0x4080a06e ieee802154_sec_update - *libieee802154.a:esp_ieee802154_sec.*(.literal.ieee802154_transmit_security_config .text.ieee802154_transmit_security_config) - .text.ieee802154_transmit_security_config - 0x4080a092 0xe6 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_sec.c.obj) - 0x4080a092 ieee802154_transmit_security_config - *libieee802154.a:esp_ieee802154_timer.*(.literal.ieee802154_timer0_fire_at .text.ieee802154_timer0_fire_at) - .text.ieee802154_timer0_fire_at - 0x4080a178 0x30 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_timer.c.obj) - 0x4080a178 ieee802154_timer0_fire_at - *libieee802154.a:esp_ieee802154_timer.*(.literal.ieee802154_timer0_fire_at_with_callback .text.ieee802154_timer0_fire_at_with_callback) - .text.ieee802154_timer0_fire_at_with_callback - 0x4080a1a8 0x14 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_timer.c.obj) - 0x4080a1a8 ieee802154_timer0_fire_at_with_callback - *libieee802154.a:esp_ieee802154_timer.*(.literal.ieee802154_timer0_set_callback .text.ieee802154_timer0_set_callback) - *libieee802154.a:esp_ieee802154_timer.*(.literal.ieee802154_timer0_set_threshold .text.ieee802154_timer0_set_threshold) - .text.ieee802154_timer0_set_threshold - 0x4080a1bc 0x1c esp-idf/ieee802154/libieee802154.a(esp_ieee802154_timer.c.obj) - 0x4080a1bc ieee802154_timer0_set_threshold - *libieee802154.a:esp_ieee802154_timer.*(.literal.ieee802154_timer0_start .text.ieee802154_timer0_start) - *libieee802154.a:esp_ieee802154_timer.*(.literal.ieee802154_timer0_stop .text.ieee802154_timer0_stop) - .text.ieee802154_timer0_stop - 0x4080a1d8 0x26 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_timer.c.obj) - 0x4080a1d8 ieee802154_timer0_stop - *libieee802154.a:esp_ieee802154_timer.*(.literal.ieee802154_timer1_fire_at .text.ieee802154_timer1_fire_at) - .text.ieee802154_timer1_fire_at - 0x4080a1fe 0x30 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_timer.c.obj) - 0x4080a1fe ieee802154_timer1_fire_at - *libieee802154.a:esp_ieee802154_timer.*(.literal.ieee802154_timer1_fire_at_with_callback .text.ieee802154_timer1_fire_at_with_callback) - .text.ieee802154_timer1_fire_at_with_callback - 0x4080a22e 0x14 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_timer.c.obj) - 0x4080a22e ieee802154_timer1_fire_at_with_callback - *libieee802154.a:esp_ieee802154_timer.*(.literal.ieee802154_timer1_set_callback .text.ieee802154_timer1_set_callback) - *libieee802154.a:esp_ieee802154_timer.*(.literal.ieee802154_timer1_set_threshold .text.ieee802154_timer1_set_threshold) - .text.ieee802154_timer1_set_threshold - 0x4080a242 0x1c esp-idf/ieee802154/libieee802154.a(esp_ieee802154_timer.c.obj) - 0x4080a242 ieee802154_timer1_set_threshold - *libieee802154.a:esp_ieee802154_timer.*(.literal.ieee802154_timer1_start .text.ieee802154_timer1_start) - *libieee802154.a:esp_ieee802154_timer.*(.literal.ieee802154_timer1_stop .text.ieee802154_timer1_stop) - .text.ieee802154_timer1_stop - 0x4080a25e 0x26 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_timer.c.obj) - 0x4080a25e ieee802154_timer1_stop - *libieee802154.a:esp_ieee802154_timer.*(.literal.isr_handle_timer0_done .text.isr_handle_timer0_done) - .text.isr_handle_timer0_done - 0x4080a284 0x1e esp-idf/ieee802154/libieee802154.a(esp_ieee802154_timer.c.obj) - 0x4080a284 isr_handle_timer0_done - *libieee802154.a:esp_ieee802154_timer.*(.literal.isr_handle_timer1_done .text.isr_handle_timer1_done) - .text.isr_handle_timer1_done - 0x4080a2a2 0x1e esp-idf/ieee802154/libieee802154.a(esp_ieee802154_timer.c.obj) - 0x4080a2a2 isr_handle_timer1_done - *libieee802154.a:esp_ieee802154_util.*(.literal.ieee802154_channel_to_freq .text.ieee802154_channel_to_freq) - .text.ieee802154_channel_to_freq - 0x4080a2c0 0x10 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_util.c.obj) - 0x4080a2c0 ieee802154_channel_to_freq - *libieee802154.a:esp_ieee802154_util.*(.literal.ieee802154_etm_channel_clear .text.ieee802154_etm_channel_clear) - .text.ieee802154_etm_channel_clear - 0x4080a2d0 0x1c esp-idf/ieee802154/libieee802154.a(esp_ieee802154_util.c.obj) - 0x4080a2d0 ieee802154_etm_channel_clear - *liblog.a:log.*(.literal .literal.* .text .text.*) - *liblog.a:log_format_text.*(.literal .literal.* .text .text.*) - *liblog.a:log_lock.*(.literal .literal.* .text .text.*) - *liblog.a:log_print.*(.literal .literal.* .text .text.*) - *liblog.a:log_timestamp.*(.literal.esp_log_early_timestamp .text.esp_log_early_timestamp) - *liblog.a:log_timestamp.*(.literal.esp_log_timestamp .text.esp_log_timestamp) - *liblog.a:log_timestamp_common.*(.literal .literal.* .text .text.*) - *liblog.a:log_write.*(.literal.esp_log_write .text.esp_log_write) - *liblog.a:log_write.*(.literal.esp_log_writev .text.esp_log_writev) - *liblog.a:tag_log_level.*(.literal.esp_log_level_get_timeout .text.esp_log_level_get_timeout) - *liblog.a:util.*(.literal .literal.* .text .text.*) - .text.esp_log_util_set_cache_enabled_cb - 0x4080a2ec 0xa esp-idf/log/liblog.a(util.c.obj) - 0x4080a2ec esp_log_util_set_cache_enabled_cb - *liblwip.a:vfs_lwip.*(.literal.lwip_stop_socket_select_isr .text.lwip_stop_socket_select_isr) - *libnewlib.a:abort.*(.literal .literal.* .text .text.*) - .text.unlikely.abort - 0x4080a2f6 0x74 esp-idf/newlib/libnewlib.a(abort.c.obj) - 0x4080a2f6 abort - *libnewlib.a:assert.*(.literal .literal.* .text .text.*) - .text.__assert_func - 0x4080a36a 0x46 esp-idf/newlib/libnewlib.a(assert.c.obj) - 0x4080a36a __assert_func - .text.esp_libc_include_assert_impl - 0x4080a3b0 0x2 esp-idf/newlib/libnewlib.a(assert.c.obj) - 0x4080a3b0 esp_libc_include_assert_impl - *libnewlib.a:esp_time_impl.*(.literal.esp_set_time_from_rtc .text.esp_set_time_from_rtc) - .text.esp_set_time_from_rtc - 0x4080a3b2 0x2c esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - 0x4080a3b2 esp_set_time_from_rtc - *libnewlib.a:esp_time_impl.*(.literal.esp_time_impl_get_boot_time .text.esp_time_impl_get_boot_time) - .text.esp_time_impl_get_boot_time - 0x4080a3de 0x2e esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - 0x4080a3de esp_time_impl_get_boot_time - *libnewlib.a:esp_time_impl.*(.literal.esp_time_impl_set_boot_time .text.esp_time_impl_set_boot_time) - .text.esp_time_impl_set_boot_time - 0x4080a40c 0x28 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - 0x4080a40c esp_time_impl_set_boot_time - *libnewlib.a:heap.*(.literal .literal.* .text .text.*) - .text.malloc 0x4080a434 0x4 esp-idf/newlib/libnewlib.a(heap.c.obj) - 0x4080a434 pvalloc - 0x4080a434 valloc - 0x4080a434 malloc - .text.free 0x4080a438 0x4 esp-idf/newlib/libnewlib.a(heap.c.obj) - 0x4080a438 free - 0x4080a438 cfree - .text.calloc 0x4080a43c 0x32 esp-idf/newlib/libnewlib.a(heap.c.obj) - 0x4080a43c calloc - .text._free_r 0x4080a46e 0x6 esp-idf/newlib/libnewlib.a(heap.c.obj) - 0x4080a46e _free_r - .text._realloc_r - 0x4080a474 0x8 esp-idf/newlib/libnewlib.a(heap.c.obj) - 0x4080a474 _realloc_r - .text._malloc_r - 0x4080a47c 0x6 esp-idf/newlib/libnewlib.a(heap.c.obj) - 0x4080a47c _malloc_r - .text._calloc_r - 0x4080a482 0x8 esp-idf/newlib/libnewlib.a(heap.c.obj) - 0x4080a482 _calloc_r - .text.esp_libc_include_heap_impl - 0x4080a48a 0x2 esp-idf/newlib/libnewlib.a(heap.c.obj) - 0x4080a48a esp_libc_include_heap_impl - *libnewlib.a:stdatomic.*(.literal .literal.* .text .text.*) - .text.__atomic_fetch_and_8 - 0x4080a48c 0x2e esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - 0x4080a48c __atomic_fetch_and_8 - .text.__atomic_fetch_or_8 - 0x4080a4ba 0x2e esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - 0x4080a4ba __atomic_fetch_or_8 - *libriscv.a:interrupt.*(.text .text._global_interrupt_handler .text.intr_get_item.part.0 .text.intr_handler_get_arg) - .text.intr_get_item.part.0 - 0x4080a4e8 0x10 esp-idf/riscv/libriscv.a(interrupt.c.obj) - .text._global_interrupt_handler - 0x4080a4f8 0x32 esp-idf/riscv/libriscv.a(interrupt.c.obj) - 0x4080a4f8 _global_interrupt_handler - *libriscv.a:rv_utils.*(.literal .literal.* .text .text.*) - .text.rv_utils_dbgr_is_attached - 0x4080a52a 0xc esp-idf/riscv/libriscv.a(rv_utils.c.obj) - 0x4080a52a rv_utils_dbgr_is_attached - *libriscv.a:vectors.*(.literal .literal.* .text .text.*) - *librtc.a:(.literal .literal.* .text .text.*) - *libsoc.a:lldesc.*(.literal .literal.* .text .text.*) - *libspi_flash.a:esp_flash_api.*(.literal.check_chip_pointer_default .text.check_chip_pointer_default) - .text.check_chip_pointer_default - 0x4080a536 0x2e esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - *libspi_flash.a:esp_flash_api.*(.literal.detect_spi_flash_chip .text.detect_spi_flash_chip) - .text.detect_spi_flash_chip - 0x4080a564 0x62 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_chip_driver_initialized .text.esp_flash_chip_driver_initialized) - .text.esp_flash_chip_driver_initialized - 0x4080a5c6 0x8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - 0x4080a5c6 esp_flash_chip_driver_initialized - *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_erase_chip .text.esp_flash_erase_chip) - *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_erase_region .text.esp_flash_erase_region) - .text.esp_flash_erase_region - 0x4080a5ce 0x1ca esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - 0x4080a5ce esp_flash_erase_region - *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_get_chip_write_protect .text.esp_flash_get_chip_write_protect) - *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_get_io_mode .text.esp_flash_get_io_mode) - *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_get_physical_size .text.esp_flash_get_physical_size) - .text.esp_flash_get_physical_size - 0x4080a798 0x5e esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - 0x4080a798 esp_flash_get_physical_size - *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_get_protected_region .text.esp_flash_get_protected_region) - *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_get_size .text.esp_flash_get_size) - *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_init .text.esp_flash_init) - *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_init_main .text.esp_flash_init_main) - .text.esp_flash_init_main - 0x4080a7f6 0xd4 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - 0x4080a7f6 esp_flash_init_main - *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_read .text.esp_flash_read) - .text.esp_flash_read - 0x4080a8ca 0x102 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - 0x4080a8ca esp_flash_read - *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_read_encrypted .text.esp_flash_read_encrypted) - *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_set_chip_write_protect .text.esp_flash_set_chip_write_protect) - *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_set_io_mode .text.esp_flash_set_io_mode) - *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_set_protected_region .text.esp_flash_set_protected_region) - *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_write .text.esp_flash_write) - .text.esp_flash_write - 0x4080a9cc 0x146 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - 0x4080a9cc esp_flash_write - *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_write_encrypted .text.esp_flash_write_encrypted) - .text.esp_flash_write_encrypted - 0x4080ab12 0x1a4 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - 0x4080ab12 esp_flash_write_encrypted - *libspi_flash.a:esp_flash_api.*(.literal.flash_end_flush_cache .text.flash_end_flush_cache) - .text.flash_end_flush_cache - 0x4080acb6 0x4a esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - *libspi_flash.a:esp_flash_api.*(.literal.read_unique_id .text.read_unique_id) - *libspi_flash.a:esp_flash_api.*(.literal.spiflash_end_default .text.spiflash_end_default) - .text.spiflash_end_default - 0x4080ad00 0x1c esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - *libspi_flash.a:esp_flash_api.*(.literal.spiflash_start_default .text.spiflash_start_default) - .text.spiflash_start_default - 0x4080ad1c 0x24 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - *libspi_flash.a:flash_brownout_hook.*(.literal .literal.* .text .text.*) - .text.spi_flash_needs_reset_check - 0x4080ad40 0x20 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) - 0x4080ad40 spi_flash_needs_reset_check - .text.spi_flash_set_erasing_flag - 0x4080ad60 0xa esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) - 0x4080ad60 spi_flash_set_erasing_flag - .text.spi_flash_brownout_need_reset - 0x4080ad6a 0x14 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) - 0x4080ad6a spi_flash_brownout_need_reset - *libspi_flash.a:memspi_host_driver.*(.literal .literal.* .text .text.*) - .text.memspi_host_read_id_hs - 0x4080ad7e 0x68 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - 0x4080ad7e memspi_host_read_id_hs - .text.memspi_host_read_status_hs - 0x4080ade6 0x40 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - 0x4080ade6 memspi_host_read_status_hs - .text.memspi_host_erase_chip - 0x4080ae26 0x2e esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - 0x4080ae26 memspi_host_erase_chip - .text.memspi_host_set_write_protect - 0x4080ae54 0x36 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - 0x4080ae54 memspi_host_set_write_protect - .text.memspi_host_write_data_slicer - 0x4080ae8a 0x3e esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - 0x4080ae8a memspi_host_write_data_slicer - .text.memspi_host_read_data_slicer - 0x4080aec8 0x32 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - 0x4080aec8 memspi_host_read_data_slicer - .text.memspi_host_flush_cache - 0x4080aefa 0x24 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - 0x4080aefa memspi_host_flush_cache - .text.memspi_host_erase_sector.part.0 - 0x4080af1e 0x10 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - .text.memspi_host_erase_sector - 0x4080af2e 0x44 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - 0x4080af2e memspi_host_erase_sector - .text.memspi_host_erase_block - 0x4080af72 0x44 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - 0x4080af72 memspi_host_erase_block - .text.memspi_host_program_page - 0x4080afb6 0x50 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - 0x4080afb6 memspi_host_program_page - .text.memspi_host_init_pointers - 0x4080b006 0x42 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - 0x4080b006 memspi_host_init_pointers - *libspi_flash.a:spi_flash_chip_boya.*(.literal .literal.* .text .text.*) - *libspi_flash.a:spi_flash_chip_gd.*(.literal .literal.* .text .text.*) - .text.spi_flash_chip_gd_get_caps - 0x4080b048 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - 0x4080b048 spi_flash_chip_gd_get_caps - .text.spi_flash_chip_gd_detect_size - 0x4080b05c 0x26 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - 0x4080b05c spi_flash_chip_gd_detect_size - .text.spi_flash_chip_gd_suspend_cmd_conf - 0x4080b082 0x26 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - 0x4080b082 spi_flash_chip_gd_suspend_cmd_conf - .text.spi_flash_chip_gd_get_io_mode - 0x4080b0a8 0x1e esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - 0x4080b0a8 spi_flash_chip_gd_get_io_mode - .text.spi_flash_chip_gd_probe - 0x4080b0c6 0x38 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - 0x4080b0c6 spi_flash_chip_gd_probe - .text.spi_flash_chip_gd_set_io_mode - 0x4080b0fe 0x4a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - 0x4080b0fe spi_flash_chip_gd_set_io_mode - *libspi_flash.a:spi_flash_chip_generic.*(.literal .literal.* .text .text.*) - .text.spi_flash_chip_generic_detect_size - 0x4080b148 0x32 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x4080b148 spi_flash_chip_generic_detect_size - .text.spi_flash_chip_generic_probe - 0x4080b17a 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x4080b17a spi_flash_chip_generic_probe - .text.spi_flash_chip_generic_reset - 0x4080b17e 0x5e esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x4080b17e spi_flash_chip_generic_reset - .text.spi_flash_chip_generic_erase_chip - 0x4080b1dc 0x7a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x4080b1dc spi_flash_chip_generic_erase_chip - .text.spi_flash_chip_generic_set_write_protect - 0x4080b256 0x48 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x4080b256 spi_flash_chip_generic_set_write_protect - .text.spi_flash_chip_generic_read_reg - 0x4080b29e 0xa esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x4080b29e spi_flash_chip_generic_read_reg - .text.spi_flash_chip_generic_wait_idle - 0x4080b2a8 0x8e esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x4080b2a8 spi_flash_chip_generic_wait_idle - .text.spi_flash_chip_generic_config_host_io_mode - 0x4080b336 0x114 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x4080b336 spi_flash_chip_generic_config_host_io_mode - .text.spi_flash_chip_generic_get_caps - 0x4080b44a 0x84 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x4080b44a spi_flash_chip_generic_get_caps - .text.spi_flash_chip_generic_suspend_cmd_conf - 0x4080b4ce 0x26 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x4080b4ce spi_flash_chip_generic_suspend_cmd_conf - .text.spi_flash_chip_generic_read - 0x4080b4f4 0xa2 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x4080b4f4 spi_flash_chip_generic_read - .text.spi_flash_chip_generic_write - 0x4080b596 0x98 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x4080b596 spi_flash_chip_generic_write - .text.spi_flash_chip_generic_yield - 0x4080b62e 0x44 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x4080b62e spi_flash_chip_generic_yield - .text.spi_flash_chip_generic_read_unique_id - 0x4080b672 0x7a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x4080b672 spi_flash_chip_generic_read_unique_id - .text.spi_flash_chip_generic_get_write_protect - 0x4080b6ec 0x34 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x4080b6ec spi_flash_chip_generic_get_write_protect - .text.spi_flash_chip_generic_write_encrypted - 0x4080b720 0xcc esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x4080b720 spi_flash_chip_generic_write_encrypted - .text.spi_flash_common_read_qe_sr.constprop.0.isra.0 - 0x4080b7ec 0x3c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - .text.spi_flash_common_read_status_16b_rdsr_rdsr2 - 0x4080b828 0x3a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x4080b828 spi_flash_common_read_status_16b_rdsr_rdsr2 - .text.spi_flash_common_write_qe_sr.isra.0 - 0x4080b862 0x3a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - .text.spi_flash_common_write_status_16b_wrsr - 0x4080b89c 0xc esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x4080b89c spi_flash_common_write_status_16b_wrsr - .text.spi_flash_chip_generic_erase_block - 0x4080b8a8 0xbc esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x4080b8a8 spi_flash_chip_generic_erase_block - .text.spi_flash_chip_generic_erase_sector - 0x4080b964 0xbc esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x4080b964 spi_flash_chip_generic_erase_sector - .text.spi_flash_chip_generic_page_program - 0x4080ba20 0x9e esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x4080ba20 spi_flash_chip_generic_page_program - .text.spi_flash_common_read_status_8b_rdsr2 - 0x4080babe 0xc esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x4080babe spi_flash_common_read_status_8b_rdsr2 - .text.spi_flash_chip_generic_get_io_mode - 0x4080baca 0x1e esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x4080baca spi_flash_chip_generic_get_io_mode - .text.spi_flash_common_write_status_8b_wrsr2 - 0x4080bae8 0xe esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x4080bae8 spi_flash_common_write_status_8b_wrsr2 - .text.spi_flash_common_set_io_mode - 0x4080baf6 0x8c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x4080baf6 spi_flash_common_set_io_mode - .text.spi_flash_chip_generic_set_io_mode - 0x4080bb82 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x4080bb82 spi_flash_chip_generic_set_io_mode - *libspi_flash.a:spi_flash_chip_issi.*(.literal .literal.* .text .text.*) - *libspi_flash.a:spi_flash_chip_mxic.*(.literal .literal.* .text .text.*) - *libspi_flash.a:spi_flash_chip_th.*(.literal .literal.* .text .text.*) - *libspi_flash.a:spi_flash_chip_winbond.*(.literal .literal.* .text .text.*) - .text.spi_flash_chip_winbond_read - 0x4080bb9a 0xa2 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - 0x4080bb9a spi_flash_chip_winbond_read - .text.spi_flash_chip_winbond_erase_block - 0x4080bc3c 0xd6 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - 0x4080bc3c spi_flash_chip_winbond_erase_block - .text.spi_flash_chip_winbond_erase_sector - 0x4080bd12 0xd6 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - 0x4080bd12 spi_flash_chip_winbond_erase_sector - .text.spi_flash_chip_winbond_page_program - 0x4080bde8 0x9a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - 0x4080bde8 spi_flash_chip_winbond_page_program - *libspi_flash.a:spi_flash_os_func_app.*(.literal.delay_us .text.delay_us) - .text.delay_us - 0x4080be82 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - *libspi_flash.a:spi_flash_os_func_app.*(.literal.get_buffer_malloc .text.get_buffer_malloc) - .text.get_buffer_malloc - 0x4080be96 0x4e esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - *libspi_flash.a:spi_flash_os_func_app.*(.literal.main_flash_op_status .text.main_flash_op_status) - .text.main_flash_op_status - 0x4080bee4 0x6 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - *libspi_flash.a:spi_flash_os_func_app.*(.literal.main_flash_region_protected .text.main_flash_region_protected) - .text.main_flash_region_protected - 0x4080beea 0x40 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - *libspi_flash.a:spi_flash_os_func_app.*(.literal.release_buffer_malloc .text.release_buffer_malloc) - .text.release_buffer_malloc - 0x4080bf2a 0x6 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - *libspi_flash.a:spi_flash_os_func_app.*(.literal.spi23_end .text.spi23_end) - *libspi_flash.a:spi_flash_os_func_app.*(.literal.spi23_start .text.spi23_start) - *libspi_flash.a:spi_flash_os_func_app.*(.literal.spi_flash_os_check_yield .text.spi_flash_os_check_yield) - .text.spi_flash_os_check_yield - 0x4080bf30 0x52 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - *libspi_flash.a:spi_flash_os_func_app.*(.literal.spi_flash_os_yield .text.spi_flash_os_yield) - .text.spi_flash_os_yield - 0x4080bf82 0x22 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - *libspi_flash.a:spi_flash_os_func_noos.*(.literal.delay_us .text.delay_us) - .text.delay_us - 0x4080bfa4 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) - *libspi_flash.a:spi_flash_os_func_noos.*(.literal.esp_flash_app_disable_os_functions .text.esp_flash_app_disable_os_functions) - *libspi_flash.a:spi_flash_os_func_noos.*(.literal.get_temp_buffer_not_supported .text.get_temp_buffer_not_supported) - *libspi_flash.a:spi_flash_wrap.*(.literal .literal.* .text .text.*) - *libvfs.a:vfs.*(.literal.esp_vfs_select_triggered_isr .text.esp_vfs_select_triggered_isr) - .text.esp_vfs_select_triggered_isr - 0x4080bfb8 0x4e esp-idf/vfs/libvfs.a(vfs.c.obj) - 0x4080bfb8 esp_vfs_select_triggered_isr - -.iram0.text_end - 0x4080c006 0x2 - 0x4080c008 . = ALIGN (0x4) - *fill* 0x4080c006 0x2 - 0x4080c008 . = ALIGN (0x4) - 0x4080c008 _iram_text_end = ABSOLUTE (.) - -.iram0.data 0x4080c008 0x8 - 0x4080c010 . = ALIGN (0x10) - *fill* 0x4080c008 0x8 - 0x4080c010 _iram_data_start = ABSOLUTE (.) - *(.iram.data .iram.data.*) - 0x4080c010 _iram_data_end = ABSOLUTE (.) - -.iram0.bss 0x4080c010 0x0 - 0x4080c010 . = ALIGN (0x10) - 0x4080c010 _iram_bss_start = ABSOLUTE (.) - *(.iram.bss .iram.bss.*) - 0x4080c010 _iram_bss_end = ABSOLUTE (.) - 0x4080c010 . = ALIGN (0x10) - 0x4080c010 _iram_end = ABSOLUTE (.) - -.dram0.data 0x4080c010 0x1140 - 0x4080c010 _data_start = ABSOLUTE (.) - *(.gnu.linkonce.d.*) - *(.data1) - .data1 0x4080c010 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu_asm.S.obj) - 0x4080c010 rv_core_critical_regs_frame - 0x4080c814 __global_pointer$ = (. + 0x800) - *(.sdata) - .sdata 0x4080c014 0x4 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-environ.o) - 0x4080c014 environ - .sdata 0x4080c018 0x4 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-impure.o) - 0x4080c018 _impure_ptr - .sdata 0x4080c01c 0x4 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-locale.o) - 0x4080c01c __global_locale_ptr - *(.sdata.*) - .sdata.ESP_EFUSE_ECDSA_FORCE_USE_HARDWARE_K - 0x4080c020 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table_v0.0_v1.1.c.obj) - 0x4080c020 ESP_EFUSE_ECDSA_FORCE_USE_HARDWARE_K - .sdata.ESP_EFUSE_KEY5 - 0x4080c028 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - 0x4080c028 ESP_EFUSE_KEY5 - .sdata.ESP_EFUSE_KEY4 - 0x4080c030 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - 0x4080c030 ESP_EFUSE_KEY4 - .sdata.ESP_EFUSE_KEY3 - 0x4080c038 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - 0x4080c038 ESP_EFUSE_KEY3 - .sdata.ESP_EFUSE_KEY2 - 0x4080c040 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - 0x4080c040 ESP_EFUSE_KEY2 - .sdata.ESP_EFUSE_KEY1 - 0x4080c048 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - 0x4080c048 ESP_EFUSE_KEY1 - .sdata.ESP_EFUSE_KEY0 - 0x4080c050 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - 0x4080c050 ESP_EFUSE_KEY0 - .sdata.ESP_EFUSE_USER_DATA_MAC_CUSTOM - 0x4080c058 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - 0x4080c058 ESP_EFUSE_USER_DATA_MAC_CUSTOM - .sdata.ESP_EFUSE_KEY_PURPOSE_5 - 0x4080c060 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - 0x4080c060 ESP_EFUSE_KEY_PURPOSE_5 - .sdata.ESP_EFUSE_KEY_PURPOSE_4 - 0x4080c068 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - 0x4080c068 ESP_EFUSE_KEY_PURPOSE_4 - .sdata.ESP_EFUSE_KEY_PURPOSE_3 - 0x4080c070 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - 0x4080c070 ESP_EFUSE_KEY_PURPOSE_3 - .sdata.ESP_EFUSE_KEY_PURPOSE_2 - 0x4080c078 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - 0x4080c078 ESP_EFUSE_KEY_PURPOSE_2 - .sdata.ESP_EFUSE_KEY_PURPOSE_1 - 0x4080c080 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - 0x4080c080 ESP_EFUSE_KEY_PURPOSE_1 - .sdata.ESP_EFUSE_KEY_PURPOSE_0 - 0x4080c088 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - 0x4080c088 ESP_EFUSE_KEY_PURPOSE_0 - .sdata.ESP_EFUSE_RD_DIS_BLOCK_KEY5 - 0x4080c090 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - 0x4080c090 ESP_EFUSE_RD_DIS_BLOCK_KEY5 - .sdata.ESP_EFUSE_RD_DIS_BLOCK_KEY4 - 0x4080c098 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - 0x4080c098 ESP_EFUSE_RD_DIS_BLOCK_KEY4 - .sdata.ESP_EFUSE_RD_DIS_BLOCK_KEY3 - 0x4080c0a0 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - 0x4080c0a0 ESP_EFUSE_RD_DIS_BLOCK_KEY3 - .sdata.ESP_EFUSE_RD_DIS_BLOCK_KEY2 - 0x4080c0a8 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - 0x4080c0a8 ESP_EFUSE_RD_DIS_BLOCK_KEY2 - .sdata.ESP_EFUSE_RD_DIS_BLOCK_KEY1 - 0x4080c0b0 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - 0x4080c0b0 ESP_EFUSE_RD_DIS_BLOCK_KEY1 - .sdata.ESP_EFUSE_RD_DIS_BLOCK_KEY0 - 0x4080c0b8 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - 0x4080c0b8 ESP_EFUSE_RD_DIS_BLOCK_KEY0 - .sdata.ESP_EFUSE_WR_DIS_BLOCK_KEY5 - 0x4080c0c0 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - 0x4080c0c0 ESP_EFUSE_WR_DIS_BLOCK_KEY5 - .sdata.ESP_EFUSE_WR_DIS_BLOCK_KEY4 - 0x4080c0c8 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - 0x4080c0c8 ESP_EFUSE_WR_DIS_BLOCK_KEY4 - .sdata.ESP_EFUSE_WR_DIS_BLOCK_KEY3 - 0x4080c0d0 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - 0x4080c0d0 ESP_EFUSE_WR_DIS_BLOCK_KEY3 - .sdata.ESP_EFUSE_WR_DIS_BLOCK_KEY2 - 0x4080c0d8 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - 0x4080c0d8 ESP_EFUSE_WR_DIS_BLOCK_KEY2 - .sdata.ESP_EFUSE_WR_DIS_BLOCK_KEY1 - 0x4080c0e0 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - 0x4080c0e0 ESP_EFUSE_WR_DIS_BLOCK_KEY1 - .sdata.ESP_EFUSE_WR_DIS_BLOCK_KEY0 - 0x4080c0e8 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - 0x4080c0e8 ESP_EFUSE_WR_DIS_BLOCK_KEY0 - .sdata.ESP_EFUSE_WR_DIS_KEY_PURPOSE_5 - 0x4080c0f0 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - 0x4080c0f0 ESP_EFUSE_WR_DIS_KEY_PURPOSE_5 - .sdata.ESP_EFUSE_WR_DIS_KEY_PURPOSE_4 - 0x4080c0f8 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - 0x4080c0f8 ESP_EFUSE_WR_DIS_KEY_PURPOSE_4 - .sdata.ESP_EFUSE_WR_DIS_KEY_PURPOSE_3 - 0x4080c100 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - 0x4080c100 ESP_EFUSE_WR_DIS_KEY_PURPOSE_3 - .sdata.ESP_EFUSE_WR_DIS_KEY_PURPOSE_2 - 0x4080c108 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - 0x4080c108 ESP_EFUSE_WR_DIS_KEY_PURPOSE_2 - .sdata.ESP_EFUSE_WR_DIS_KEY_PURPOSE_1 - 0x4080c110 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - 0x4080c110 ESP_EFUSE_WR_DIS_KEY_PURPOSE_1 - .sdata.ESP_EFUSE_WR_DIS_KEY_PURPOSE_0 - 0x4080c118 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - 0x4080c118 ESP_EFUSE_WR_DIS_KEY_PURPOSE_0 - .sdata.rtc_wdt_ctx - 0x4080c120 0x8 esp-idf/esp_system/libesp_system.a(panic.c.obj) - .sdata.malloc_alwaysinternal_limit - 0x4080c128 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) - .sdata.multi_heap_os_funcs - 0x4080c12c 0x8 esp-idf/heap/libheap.a(multi_heap.c.obj) - 0x4080c12c multi_heap_os_funcs - .sdata.first_call.0 - 0x4080c134 0x1 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - *fill* 0x4080c135 0x3 - .sdata.pau_context.0 - 0x4080c138 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) - .sdata.uart_selectlock - 0x4080c13c 0x8 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .sdata._gpio_hal - 0x4080c144 0x4 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .sdata.esp_flash_registered_chips - 0x4080c148 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) - 0x4080c148 esp_flash_registered_chips - *fill* 0x4080c14c 0x4 - .sdata.s_reserved_pin_mask - 0x4080c150 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) - .sdata.s_tsens_idx - 0x4080c158 0x1 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - *fill* 0x4080c159 0x3 - .sdata.s_record_max - 0x4080c15c 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - .sdata.s_record_min - 0x4080c160 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - .sdata.s_eventfd_vfs_id - 0x4080c164 0x4 esp-idf/vfs/libvfs.a(vfs_eventfd.c.obj) - 0x4080c164 s_eventfd_vfs_id - .sdata.s_task_queue_event_fd - 0x4080c168 0x4 esp-idf/openthread/libopenthread.a(esp_openthread_task_queue.c.obj) - .sdata.s_radio_event_fd - 0x4080c16c 0x4 esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - .sdata.spi_periph_claimed - 0x4080c170 0x2 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) - .sdata.s_rf_closed - 0x4080c172 0x1 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - *fill* 0x4080c173 0x1 - .sdata.gdma_ahb_hal_priv_data - 0x4080c174 0x4 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) - .sdata.DW.ref.__gxx_personality_v0 - 0x4080c178 0x4 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opvnt.o) - 0x4080c178 DW.ref.__gxx_personality_v0 - .sdata._ZN10__cxxabiv119__terminate_handlerE - 0x4080c17c 0x4 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_term_handler.o) - 0x4080c17c __cxxabiv1::__terminate_handler - *(.gnu.linkonce.s.*) - *(.gnu.linkonce.s2.*) - *(.jcr) - *(.data .data.*) - .data.timestamp_id - 0x4080c180 0x10 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) - 0x4080c180 timestamp_id - .data.ESP_EFUSE_MAC_EXT - 0x4080c190 0xc esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - 0x4080c190 ESP_EFUSE_MAC_EXT - .data.ESP_EFUSE_MAC - 0x4080c19c 0x1c esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - 0x4080c19c ESP_EFUSE_MAC - .data.s_config - 0x4080c1b8 0x88 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .data.dummy.1 0x4080c240 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - .data.s_stub_table - 0x4080c26c 0x9c esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - .data.s_context - 0x4080c308 0x50 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .data.uart_context - 0x4080c358 0x60 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .data.s_ctx 0x4080c3b8 0x30 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .data.s_fd_table - 0x4080c3e8 0xc0 esp-idf/vfs/libvfs.a(vfs.c.obj) - .data.gpio_context - 0x4080c4a8 0x20 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .data.default_registered_chips - 0x4080c4c8 0xc esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) - .data.s_mac_table - 0x4080c4d4 0x54 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - .data.s_platform - 0x4080c528 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .data.phy_param - 0x4080c538 0x70 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) - 0x4080c538 phy_param - .data.BLE_RSSI_COMP - 0x4080c5a8 0x2 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) - 0x4080c5a8 BLE_RSSI_COMP - *fill* 0x4080c5aa 0x2 - .data 0x4080c5ac 0xc C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-findfp.o) - 0x4080c5ac __sglue - .data 0x4080c5b8 0xf0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-impure.o) - 0x4080c5b8 _impure_data - *(.dram1 .dram1.*) - .dram1.0 0x4080c6a8 0x4 esp-idf/esp_system/libesp_system.a(panic.c.obj) - .dram1.11 0x4080c6ac 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) - .dram1.10 0x4080c71c 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) - .dram1.3 0x4080c724 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) - .dram1.2 0x4080c72c 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) - .dram1.1 0x4080c74c 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) - .dram1.0 0x4080c750 0x350 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - .dram1.0 0x4080caa0 0xe esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x4080caa0 FreeRTOS_openocd_params - *fill* 0x4080caae 0x2 - .dram1.0 0x4080cab0 0x8 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - 0x4080cab0 g_flash_guard_default_ops - .dram1.2 0x4080cab8 0x4 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - 0x4080cab8 rom_spiflash_api_funcs - .dram1.1 0x4080cabc 0x10 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .dram1.2 0x4080cacc 0x20 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .dram1.1 0x4080caec 0x30 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .dram1.7 0x4080cb1c 0x28 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .dram1.6 0x4080cb44 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .dram1.2 0x4080cb54 0x28 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) - 0x4080cb54 esp_flash_noos_functions - .dram1.5 0x4080cb7c 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x4080cb7c spi_flash_chip_generic_timeout - .dram1.4 0x4080cb90 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - .dram1.3 0x4080cba8 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x4080cba8 rom_flash_chip_dummy_hpm - .dram1.2 0x4080cbac 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x4080cbac rom_flash_chip_dummy - .dram1.1 0x4080cbb0 0x6 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - *fill* 0x4080cbb6 0x2 - .dram1.0 0x4080cbb8 0x6 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - *fill* 0x4080cbbe 0x2 - .dram1.0 0x4080cbc0 0x58 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - .dram1.0 0x4080cc18 0x4 esp-idf/hal/libhal.a(lp_timer_hal.c.obj) - .dram1.2 0x4080cc1c 0x4 esp-idf/openthread/libopenthread.a(esp_openthread_spi_slave.c.obj) - .dram1.1 0x4080cc20 0x4 esp-idf/openthread/libopenthread.a(esp_openthread_spi_slave.c.obj) - .dram1.0 0x4080cc24 0x4 esp-idf/openthread/libopenthread.a(esp_openthread_spi_slave.c.obj) - .dram1.4 0x4080cc28 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - .dram1.3 0x4080cc38 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - .dram1.2 0x4080cc48 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - .dram1.1 0x4080cc54 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - *libclang_rt.builtins.a:_divsf3.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libclang_rt.builtins.a:restore.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libclang_rt.builtins.a:save.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libesp_hw_support.a:clk_utils.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libesp_hw_support.a:esp_memory_utils.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libesp_hw_support.a:mspi_timing_tuning.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libesp_hw_support.a:pmu_sleep.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libesp_hw_support.a:rtc_clk.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libesp_hw_support.a:sleep_console.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libesp_hw_support.a:systimer.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libesp_mm.a:esp_cache_msync.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libesp_mm.a:esp_cache_utils.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libesp_rom.a:esp_rom_print.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libesp_rom.a:esp_rom_spiflash.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libesp_rom.a:esp_rom_sys.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libesp_rom.a:esp_rom_systimer.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libesp_rom.a:esp_rom_tlsf.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libesp_rom.a:esp_rom_wdt.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libesp_system.a:esp_err.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libesp_system.a:image_process.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libesp_system.a:ubsan.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libgcc.a:_divsf3.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libgcc.a:save-restore.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libgcov.a:(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libhal.a:cache_hal.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libhal.a:i2c_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libhal.a:ledc_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libhal.a:mmu_hal.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libhal.a:pmu_hal.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libhal.a:spi_flash_encrypt_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libhal.a:spi_flash_hal_gpspi.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libhal.a:spi_flash_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libhal.a:spi_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libhal.a:spi_slave_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libhal.a:uart_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *liblog.a:log.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *liblog.a:log_format_text.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *liblog.a:log_lock.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *liblog.a:log_print.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *liblog.a:log_timestamp_common.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *liblog.a:util.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libnewlib.a:abort.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - .rodata.abort.str1.4 - 0x4080cc60 0x14b esp-idf/newlib/libnewlib.a(abort.c.obj) - 0x26 (size before relaxing) - *libnewlib.a:assert.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *fill* 0x4080cdab 0x1 - .rodata 0x4080cdac 0x1c esp-idf/newlib/libnewlib.a(assert.c.obj) - *libnewlib.a:heap.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libnewlib.a:stdatomic.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libphy.a:(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - .rodata.rfpll_cap_track.str1.4 - 0x4080cdc8 0x15 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_track.o) - .rodata.txpwr_cal_track.str1.4 - 0x4080cdc8 0x1a C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_track.o) - .rodata 0x4080cdc8 0x50 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pbus.o) - .rodata.freq_get_i2c_data - 0x4080ce18 0x2c C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_hw_freq.o) - .rodata.rfpll_cap_correct.str1.4 - 0x4080ce44 0xd C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rfpll.o) - .rodata.wait_rfpll_cal_end.str1.4 - 0x4080ce44 0x1f C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rfpll.o) - .rodata 0x4080ce44 0x10 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pwdet.o) - .rodata 0x4080ce54 0x15 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_gain.o) - .rodata.get_phy_version_str.str1.4 - 0x4080ce69 0x2f C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_debug.o) - .rodata.phy_version_print.str1.4 - 0x4080ce69 0x20 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_debug.o) - .rodata.bt_set_tx_gain.str1.4 - 0x4080ce69 0x14 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_gain.o) - *fill* 0x4080ce69 0x3 - .rodata.phy_tx_table - 0x4080ce6c 0x6a C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_gain.o) - 0x4080ce6c phy_tx_table - *fill* 0x4080ced6 0x2 - .rodata.phy_tx_table_eco2 - 0x4080ced8 0x6a C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_gain.o) - 0x4080ced8 phy_tx_table_eco2 - *fill* 0x4080cf42 0x2 - .rodata 0x4080cf44 0x2e C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - .rodata.pbus_rx_dco_cal_1step.str1.4 - 0x4080cf72 0x5b C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_cal.o) - *fill* 0x4080cf72 0x2 - .rodata.CSWTCH.11 - 0x4080cf74 0x1a C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_i2c.o) - *libsoc.a:lldesc.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libsoc.a:temperature_sensor_periph.*(.rodata.temperature_sensor_attributes .sdata2.temperature_sensor_attributes .srodata.temperature_sensor_attributes) - *fill* 0x4080cf8e 0x2 - .rodata.temperature_sensor_attributes - 0x4080cf90 0x64 esp-idf/soc/libsoc.a(temperature_sensor_periph.c.obj) - 0x4080cf90 temperature_sensor_attributes - *libspi_flash.a:flash_brownout_hook.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libspi_flash.a:memspi_host_driver.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - .rodata.esp_flash_gpspi_host - 0x4080cff4 0x58 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - *libspi_flash.a:spi_flash_chip_boya.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libspi_flash.a:spi_flash_chip_gd.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - .rodata.esp_flash_chip_gd - 0x4080d04c 0x7c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - 0x4080d04c esp_flash_chip_gd - .srodata.chip_name - 0x4080d0c8 0x3 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - *libspi_flash.a:spi_flash_chip_generic.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *fill* 0x4080d0cb 0x1 - .rodata.esp_flash_chip_generic - 0x4080d0cc 0x7c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x4080d0cc esp_flash_chip_generic - .srodata.chip_name - 0x4080d148 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - *libspi_flash.a:spi_flash_chip_issi.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libspi_flash.a:spi_flash_chip_mxic.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libspi_flash.a:spi_flash_chip_th.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libspi_flash.a:spi_flash_chip_winbond.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libspi_flash.a:spi_flash_wrap.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - 0x4080d150 _data_end = ABSOLUTE (.) - -.noinit 0x4080d150 0x0 - 0x4080d150 . = ALIGN (0x4) - 0x4080d150 _noinit_start = ABSOLUTE (.) - *(.noinit .noinit.*) - 0x4080d150 . = ALIGN (0x4) - 0x4080d150 _noinit_end = ABSOLUTE (.) - -.dram0.bss 0x4080d150 0x4010 - 0x4080d150 . = ALIGN (0x8) - 0x4080d150 _bss_start = ABSOLUTE (.) - *(.bss .bss.*) - .bss.systimer_hal - 0x4080d150 0xc esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - .bss.app_elf_sha256_str - 0x4080d15c 0xa esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - 0x4080d15c app_elf_sha256_str - *fill* 0x4080d166 0x2 - .bss.write_mass_blocks - 0x4080d168 0x160 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .bss.shutdown_handlers - 0x4080d2c8 0x14 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) - .bss.heap_tlsf_patch_table_ptr - 0x4080d2dc 0x50 esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) - 0x4080d2dc heap_tlsf_patch_table_ptr - .bss.ref_counts - 0x4080d32c 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - *fill* 0x4080d352 0x2 - .bss.s_dslp_cb - 0x4080d354 0xc esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .bss.s_calibrated_freq - 0x4080d360 0xc esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) - .bss.xSuspendedTaskList - 0x4080d36c 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .bss.xTasksWaitingTermination - 0x4080d380 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .bss.xPendingReadyList - 0x4080d394 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .bss.xDelayedTaskList2 - 0x4080d3a8 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .bss.xDelayedTaskList1 - 0x4080d3bc 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .bss.pxReadyTasksLists - 0x4080d3d0 0x1f4 esp-idf/freertos/libfreertos.a(tasks.c.obj) - *fill* 0x4080d5c4 0xc - .bss.xIsrStack - 0x4080d5d0 0x600 esp-idf/freertos/libfreertos.a(port.c.obj) - 0x4080d5d0 xIsrStack - .bss.systimer_hal.0 - 0x4080dbd0 0xc esp-idf/freertos/libfreertos.a(port_systick.c.obj) - .bss.s_common_recursive_mutex - 0x4080dbdc 0x54 esp-idf/newlib/libnewlib.a(locks.c.obj) - 0x4080dbdc __lock___atexit_recursive_mutex - 0x4080dbdc __lock___sinit_recursive_mutex - 0x4080dbdc __lock___sfp_recursive_mutex - 0x4080dbdc __lock___env_recursive_mutex - 0x4080dbdc __lock___malloc_recursive_mutex - .bss.s_common_mutex - 0x4080dc30 0x54 esp-idf/newlib/libnewlib.a(locks.c.obj) - 0x4080dc30 __lock___at_quick_exit_mutex - 0x4080dc30 __lock___tz_mutex - 0x4080dc30 __lock___arc4random_mutex - 0x4080dc30 __lock___dd_hash_mutex - .bss.s_vfs 0x4080dc84 0x20 esp-idf/vfs/libvfs.a(vfs.c.obj) - .bss.s_intr_handlers - 0x4080dca4 0x100 esp-idf/riscv/libriscv.a(interrupt.c.obj) - .bss.s_mmu_ctx - 0x4080dda4 0x30 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .bss.tick_cb 0x4080ddd4 0x20 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - .bss.idle_cb 0x4080ddf4 0x20 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - .bss.init_context - 0x4080de14 0xc esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - .bss.s_rtc_io_status - 0x4080de20 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) - .bss._ZL17s_platform_config - 0x4080de34 0xdc esp-idf/openthread/libopenthread.a(esp_openthread_platform.cpp.obj) - .bss.s_security_key - 0x4080df10 0x10 esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - .bss.s_next_key - 0x4080df20 0x10 esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - .bss.s_current_key - 0x4080df30 0x10 esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - .bss.s_pervious_key - 0x4080df40 0x10 esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - .bss.s_transmit_ie_info - 0x4080df50 0x10 esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - .bss.s_ack_frame - 0x4080df60 0x28 esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - .bss.s_receive_frame - 0x4080df88 0x320 esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - .bss.s_transmit_psdu - 0x4080e2a8 0x80 esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - .bss.s_transmit_frame - 0x4080e328 0x28 esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - .bss.s_uart_buffer - 0x4080e350 0x800 esp-idf/openthread/libopenthread.a(esp_openthread_uart.c.obj) - .bss._ZN2ot12gInstanceRawE - 0x4080eb50 0x98 esp-idf/openthread/libopenthread.a(instance.cpp.obj) - 0x4080eb50 ot::gInstanceRaw - .bss._ZN2ot3NcpL7sNcpRawE - 0x4080ebe8 0x13c8 esp-idf/openthread/libopenthread.a(esp_openthread_ncp_hdlc.cpp.obj) - .bss.op_sem_buf.0 - 0x4080ffb0 0x54 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - .bss.ieee802154_pending_table - 0x40810004 0xce esp-idf/ieee802154/libieee802154.a(esp_ieee802154_ack.c.obj) - *fill* 0x408100d2 0x2 - .bss.s_enh_ack_frame - 0x408100d4 0x80 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - *fill* 0x40810154 0x4 - .bss.s_rx_frame_info - 0x40810158 0x150 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - .bss.s_rx_frame - 0x408102a8 0xa95 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - *fill* 0x40810d3d 0x3 - .bss.s_event_cb_list - 0x40810d40 0x1c esp-idf/ieee802154/libieee802154.a(esp_ieee802154_event.c.obj) - .bss.s_ieee802154_pib - 0x40810d5c 0x24 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - .bss.recode_freq_ctrl0_reg - 0x40810d80 0x4 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_hw_freq.o) - 0x40810d80 recode_freq_ctrl0_reg - .bss.bt_bb_cca_en - 0x40810d84 0x1 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) - 0x40810d84 bt_bb_cca_en - *fill* 0x40810d85 0x3 - .bss 0x40810d88 0x138 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-findfp.o) - 0x40810d88 __sf - *(.dynbss .dynsbss .gnu.linkonce.b .gnu.linkonce.b.* .gnu.linkonce.sb .gnu.linkonce.sb.* .gnu.linkonce.sb2 .gnu.linkonce.sb2.* .sbss .sbss.* .sbss2 .sbss2.* .scommon .share.mem) - .sbss.s_correction_us - 0x40810ec0 0x8 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) - .sbss.s_alarm_handler - 0x40810ec8 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - .sbss.s_timer_interrupt_handle - 0x40810ecc 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - .sbss.s_batch_writing_mode - 0x40810ed0 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .sbss.s_efuse_lock - 0x40810ed4 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .sbss.s_burn_counter - 0x40810ed8 0x4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - *fill* 0x40810edc 0x4 - .sbss.g_startup_time - 0x40810ee0 0x8 esp-idf/esp_system/libesp_system.a(startup.c.obj) - 0x40810ee0 g_startup_time - .sbss.g_panic_abort_details - 0x40810ee8 0x4 esp-idf/esp_system/libesp_system.a(panic.c.obj) - 0x40810ee8 g_panic_abort_details - .sbss.g_panic_abort - 0x40810eec 0x1 esp-idf/esp_system/libesp_system.a(panic.c.obj) - 0x40810eec g_panic_abort - *fill* 0x40810eed 0x3 - .sbss.g_exc_frames - 0x40810ef0 0x4 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - 0x40810ef0 g_exc_frames - .sbss.s_poison_check_region - 0x40810ef4 0x4 esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) - .sbss.ctx 0x40810ef8 0x8 esp-idf/hal/libhal.a(cache_hal.c.obj) - .sbss.esp_log_cache_enabled - 0x40810f00 0x4 esp-idf/log/liblog.a(util.c.obj) - .sbss.alloc_failed_callback - 0x40810f04 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) - .sbss.registered_heaps - 0x40810f08 0x4 esp-idf/heap/libheap.a(heap_caps_init.c.obj) - 0x40810f08 registered_heaps - .sbss.non_iram_int_disabled_flag - 0x40810f0c 0x1 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - *fill* 0x40810f0d 0x3 - .sbss.non_iram_int_disabled - 0x40810f10 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .sbss.non_iram_int_mask - 0x40810f14 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .sbss.vector_desc_head - 0x40810f18 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .sbss.s_brownout_callback - 0x40810f1c 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) - .sbss.s_bbpll_digi_consumers_ref_count - 0x40810f20 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .sbss.s_cur_pll_freq - 0x40810f24 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .sbss.s_i2c_saradc_enable_cnt - 0x40810f28 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - .sbss.pau_hal.1 - 0x40810f2c 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) - .sbss.uxSchedulerSuspended - 0x40810f30 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .sbss.xIdleTaskHandle - 0x40810f34 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .sbss.xNextTaskUnblockTime - 0x40810f38 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .sbss.uxTaskNumber - 0x40810f3c 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .sbss.xNumOfOverflows - 0x40810f40 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .sbss.xYieldPending - 0x40810f44 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .sbss.xPendedTicks - 0x40810f48 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .sbss.xSchedulerRunning - 0x40810f4c 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .sbss.uxTopReadyPriority - 0x40810f50 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .sbss.xTickCount - 0x40810f54 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .sbss.uxCurrentNumberOfTasks - 0x40810f58 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .sbss.uxDeletedTasksWaitingCleanUp - 0x40810f5c 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .sbss.pxOverflowDelayedTaskList - 0x40810f60 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .sbss.pxDelayedTaskList - 0x40810f64 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .sbss.pxCurrentTCBs - 0x40810f68 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x40810f68 pxCurrentTCBs - .sbss.xIsrStackBottom - 0x40810f6c 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) - 0x40810f6c xIsrStackBottom - .sbss.xIsrStackTop - 0x40810f70 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) - 0x40810f70 xIsrStackTop - .sbss.xPortSwitchFlag - 0x40810f74 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) - 0x40810f74 xPortSwitchFlag - .sbss.port_uxOldInterruptState - 0x40810f78 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) - 0x40810f78 port_uxOldInterruptState - .sbss.port_uxCriticalNesting - 0x40810f7c 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) - 0x40810f7c port_uxCriticalNesting - .sbss.port_uxInterruptNesting - 0x40810f80 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) - 0x40810f80 port_uxInterruptNesting - .sbss.port_xSchedulerRunning - 0x40810f84 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) - 0x40810f84 port_xSchedulerRunning - .sbss.s_handled_systicks - 0x40810f88 0x4 esp-idf/freertos/libfreertos.a(port_systick.c.obj) - .sbss.s_time_lock - 0x40810f8c 0x4 esp-idf/newlib/libnewlib.a(time.c.obj) - .sbss.s_adjtime_total_correction_us - 0x40810f90 0x8 esp-idf/newlib/libnewlib.a(time.c.obj) - .sbss.s_adjtime_start_us - 0x40810f98 0x8 esp-idf/newlib/libnewlib.a(time.c.obj) - .sbss.s_boot_time_lock - 0x40810fa0 0x4 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - *fill* 0x40810fa4 0x4 - .sbss.s_microseconds_offset - 0x40810fa8 0x8 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - 0x40810fa8 s_microseconds_offset - .sbss.s_keys 0x40810fb0 0x4 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - 0x40810fb0 s_keys - .sbss.s_uart_select_count - 0x40810fb4 0x8 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .sbss.s_registered_select_num - 0x40810fbc 0x4 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .sbss.s_registered_selects - 0x40810fc0 0x4 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .sbss.pat_flg.0 - 0x40810fc4 0x1 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - *fill* 0x40810fc5 0x3 - .sbss.p_uart_obj - 0x40810fc8 0x8 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .sbss.remaining_allowed_no_sof_ticks - 0x40810fd0 0x4 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) - .sbss.s_usb_serial_jtag_conn_status - 0x40810fd4 0x1 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) - *fill* 0x40810fd5 0x3 - .sbss.s_registered_select_num - 0x40810fd8 0x4 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .sbss.s_registered_selects - 0x40810fdc 0x4 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .sbss.p_usb_serial_jtag_obj - 0x40810fe0 0x4 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - .sbss.s_open_count - 0x40810fe4 0x4 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - .sbss.vfs_console - 0x40810fe8 0x8 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - .sbss.primary_vfs - 0x40810ff0 0x4 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - .sbss.s_fd_table_lock - 0x40810ff4 0x4 esp-idf/vfs/libvfs.a(vfs.c.obj) - .sbss.s_vfs_count - 0x40810ff8 0x4 esp-idf/vfs/libvfs.a(vfs.c.obj) - .sbss.g_fds 0x40810ffc 0x4 esp-idf/vfs/libvfs.a(nullfs.c.obj) - .sbss.s_wifi_tsens_xpd_flag - 0x40811000 0x1 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - .sbss.flash_erasing - 0x40811001 0x1 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) - .sbss.flash_brownout_needs_reset - 0x40811002 0x1 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) - *fill* 0x40811003 0x1 - .sbss.esp_flash_default_chip - 0x40811004 0x4 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - 0x40811004 esp_flash_default_chip - .sbss.reason 0x40811008 0x4 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - .sbss.iwdt_context - 0x4081100c 0x8 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - .sbss.p_twdt_obj - 0x40811014 0x4 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .sbss.g_twdt_isr - 0x40811018 0x1 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - 0x40811018 g_twdt_isr - *fill* 0x40811019 0x3 - .sbss.s_rc_fast_freq_hz - 0x4081101c 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - .sbss.s_periph_ref_counts - 0x40811020 0x1 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - *fill* 0x40811021 0x3 - .sbss.last_ccount.0 - 0x40811024 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) - .sbss.timer1 0x40811028 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - .sbss.s_first_temp_read - 0x40811030 0x1 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - *fill* 0x40811031 0x3 - .sbss.s_temperature_sensor_power_cnt - 0x40811034 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - .sbss.s_adc_digi_ctrlr_cnt - 0x40811038 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .sbss.s_default_loop - 0x4081103c 0x4 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) - .sbss._ZN3nvs19NVSPartitionManager8instanceE - 0x40811040 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - 0x40811040 nvs::NVSPartitionManager::instance - .sbss._ZN3nvs4Lock10mSemaphoreE - 0x40811044 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) - 0x40811044 nvs::Lock::mSemaphore - .sbss.s_events - 0x40811048 0x4 esp-idf/vfs/libvfs.a(vfs_eventfd.c.obj) - .sbss.s_event_size - 0x4081104c 0x4 esp-idf/vfs/libvfs.a(vfs_eventfd.c.obj) - .sbss._ZL21s_ot_mainloop_running - 0x40811050 0x1 esp-idf/openthread/libopenthread.a(esp_openthread.cpp.obj) - *fill* 0x40811051 0x3 - .sbss.s_openthread_mutex - 0x40811054 0x4 esp-idf/openthread/libopenthread.a(esp_openthread_lock.c.obj) - .sbss.s_openthread_task_mutex - 0x40811058 0x4 esp-idf/openthread/libopenthread.a(esp_openthread_lock.c.obj) - .sbss._ZL15s_workflow_list - 0x4081105c 0x4 esp-idf/openthread/libopenthread.a(esp_openthread_platform.cpp.obj) - .sbss._ZL33s_openthread_platform_initialized - 0x40811060 0x1 esp-idf/openthread/libopenthread.a(esp_openthread_platform.cpp.obj) - *fill* 0x40811061 0x3 - .sbss.s_task_queue - 0x40811064 0x4 esp-idf/openthread/libopenthread.a(esp_openthread_task_queue.c.obj) - .sbss.s_is_us_running - 0x40811068 0x1 esp-idf/openthread/libopenthread.a(esp_openthread_alarm.c.obj) - *fill* 0x40811069 0x3 - .sbss.s_alarm_us - 0x4081106c 0x4 esp-idf/openthread/libopenthread.a(esp_openthread_alarm.c.obj) - .sbss.s_is_ms_running - 0x40811070 0x1 esp-idf/openthread/libopenthread.a(esp_openthread_alarm.c.obj) - *fill* 0x40811071 0x3 - .sbss.s_alarm_ms - 0x40811074 0x4 esp-idf/openthread/libopenthread.a(esp_openthread_alarm.c.obj) - .sbss.s_recv_queue - 0x40811078 0x8 esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - .sbss.s_security_addr - 0x40811080 0x8 esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - .sbss.s_ack_key_id - 0x40811088 0x1 esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - *fill* 0x40811089 0x3 - .sbss.s_ack_frame_counter - 0x4081108c 0x4 esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - .sbss.s_with_security_enh_ack - 0x40811090 0x1 esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - .sbss.s_key_id - 0x40811091 0x1 esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - *fill* 0x40811092 0x2 - .sbss.s_mac_frame_counter - 0x40811094 0x4 esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - .sbss.s_txrx_events - 0x40811098 0x1 esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - *fill* 0x40811099 0x3 - .sbss.s_tx_error - 0x4081109c 0x4 esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - .sbss.s_ed_power - 0x408110a0 0x4 esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - .sbss.s_enhack - 0x408110a4 0x4 esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - .sbss.s_storage_name - 0x408110a8 0x4 esp-idf/openthread/libopenthread.a(esp_openthread_settings.c.obj) - .sbss.s_uart_fd - 0x408110ac 0x4 esp-idf/openthread/libopenthread.a(esp_openthread_uart.c.obj) - .sbss.s_uart_port - 0x408110b0 0x4 esp-idf/openthread/libopenthread.a(esp_openthread_uart.c.obj) - .sbss._ZN2ot6Random7Manager5sPrngE - 0x408110b4 0x4 esp-idf/openthread/libopenthread.a(random.cpp.obj) - 0x408110b4 ot::Random::Manager::sPrng - .sbss._ZN2ot6Random7Manager10sInitCountE - 0x408110b8 0x2 esp-idf/openthread/libopenthread.a(random.cpp.obj) - 0x408110b8 ot::Random::Manager::sInitCount - *fill* 0x408110ba 0x2 - .sbss._ZN2ot3Ncp7NcpBase12sNcpInstanceE - 0x408110bc 0x4 esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x408110bc ot::Ncp::NcpBase::sNcpInstance - .sbss.op_complete_sem - 0x408110c0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - .sbss.tx_channel - 0x408110c4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - .sbss.rx_channel - 0x408110c8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - .sbss.s_partition_list_lock - 0x408110cc 0x4 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - .sbss.s_partition_list - 0x408110d0 0x4 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - .sbss.s_reset_reason - 0x408110d4 0x4 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - .sbss.s_crypto_sha_aes_lock - 0x408110d8 0x4 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) - .sbss.spihost 0x408110dc 0x8 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) - .sbss.s_pending_tx - 0x408110e4 0x8 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - .sbss.s_ieee802154_isr_handle - 0x408110ec 0x4 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - .sbss.s_recent_rx_frame_info_index - 0x408110f0 0x1 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - .sbss.s_rx_index - 0x408110f1 0x1 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - .sbss.s_needs_next_operation - 0x408110f2 0x1 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - *fill* 0x408110f3 0x1 - .sbss.s_tx_frame - 0x408110f4 0x4 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - .sbss.s_ieee802154_state - 0x408110f8 0x4 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - .sbss.is_pending - 0x408110fc 0x1 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - .sbss.s_is_security - 0x408110fd 0x1 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_sec.c.obj) - *fill* 0x408110fe 0x2 - .sbss.s_timer1_ctx - 0x40811100 0x4 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_timer.c.obj) - .sbss.s_timer0_ctx - 0x40811104 0x4 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_timer.c.obj) - .sbss.s_timer1_callback - 0x40811108 0x4 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_timer.c.obj) - .sbss.s_timer0_callback - 0x4081110c 0x4 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_timer.c.obj) - .sbss.curr_partition.0 - 0x40811110 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .sbss.s_phy_is_enabled - 0x40811114 0x1 esp-idf/esp_phy/libesp_phy.a(phy_init_esp32hxx.c.obj) - *fill* 0x40811115 0x3 - .sbss.s_phy_access_lock - 0x40811118 0x4 esp-idf/esp_phy/libesp_phy.a(phy_init_esp32hxx.c.obj) - .sbss.s_btbb_access_ref - 0x4081111c 0x1 esp-idf/esp_phy/libesp_phy.a(btbb_init.c.obj) - *fill* 0x4081111d 0x3 - .sbss.s_btbb_access_lock - 0x40811120 0x4 esp-idf/esp_phy/libesp_phy.a(btbb_init.c.obj) - *fill* 0x40811124 0x4 - .sbss.s_bt_154_prev_timestamp - 0x40811128 0x8 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - .sbss.phy_track_pll_timer - 0x40811130 0x4 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - .sbss.s_phy_modem_flag - 0x40811134 0x2 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - *fill* 0x40811136 0x2 - .sbss.s_timer_task - 0x40811138 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .sbss.s_timers - 0x4081113c 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .sbss._ZN12_GLOBAL__N_113__new_handlerE - 0x40811140 0x4 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_handler.o) - .sbss._ZL4init - 0x40811144 0x4 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) - .sbss._ZN17__eh_globals_init7_S_initE - 0x40811148 0x1 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) - 0x40811148 __eh_globals_init::_S_init - *fill* 0x40811149 0x3 - .sbss._ZN12_GLOBAL__N_110eh_globalsE - 0x4081114c 0x8 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) - .sbss 0x40811154 0x4 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-environ.o) - .sbss 0x40811158 0x4 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-findfp.o) - 0x40811158 __stdio_exit_handler - *(.ext_ram.bss .ext_ram.bss.*) - *(COMMON) - 0x40811160 . = ALIGN (0x8) - *fill* 0x4081115c 0x4 - 0x40811160 _bss_end = ABSOLUTE (.) - -.flash.text 0x42000020 0x234b8 - 0x42000020 _stext = . - 0x42000020 _instruction_reserved_start = ABSOLUTE (.) - 0x42000020 _text_start = ABSOLUTE (.) - *(EXCLUDE_FILE(*libvfs.a:vfs.* *libspi_flash.a:spi_flash_wrap.* *libspi_flash.a:spi_flash_os_func_noos.* *libspi_flash.a:spi_flash_os_func_app.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:flash_brownout_hook.* *libspi_flash.a:esp_flash_api.* *libsoc.a:lldesc.* *libriscv.a:vectors.* *libriscv.a:rv_utils.* *libriscv.a:interrupt.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:esp_time_impl.* *libnewlib.a:assert.* *libnewlib.a:abort.* *liblwip.a:vfs_lwip.* *liblog.a:util.* *liblog.a:tag_log_level.* *liblog.a:log_write.* *liblog.a:log_timestamp_common.* *liblog.a:log_timestamp.* *liblog.a:log_print.* *liblog.a:log_lock.* *liblog.a:log_format_text.* *liblog.a:log.* *libieee802154.a:esp_ieee802154_util.* *libieee802154.a:esp_ieee802154_timer.* *libieee802154.a:esp_ieee802154_sec.* *libieee802154.a:esp_ieee802154_pib.* *libieee802154.a:esp_ieee802154_frame.* *libieee802154.a:esp_ieee802154_event.* *libieee802154.a:esp_ieee802154_dev.* *libieee802154.a:esp_ieee802154_ack.* *libieee802154.a:esp_ieee802154.* *libheap.a:multi_heap.* *libhal.a:uart_hal_iram.* *libhal.a:timer_hal.* *libhal.a:spi_slave_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:pmu_hal.* *libhal.a:mmu_hal.* *libhal.a:ledc_hal_iram.* *libhal.a:i2c_hal_iram.* *libhal.a:gpio_hal.* *libhal.a:gdma_hal_top.* *libhal.a:gdma_hal_ahb_v1.* *libhal.a:cache_hal.* *libgcc.a:save-restore.* *libgcc.a:lib2funcs.* *libgcc.a:_divsf3.* *libesp_timer.a:esp_timer_impl_systimer.* *libesp_timer.a:esp_timer_impl_common.* *libesp_system.a:ubsan.* *libesp_system.a:system_time.* *libesp_system.a:system_internal.* *libesp_system.a:reset_reason.* *libesp_system.a:panic.* *libesp_system.a:image_process.* *libesp_system.a:freertos_hooks.* *libesp_system.a:esp_system_chip.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_wdt.* *libesp_rom.a:esp_rom_tlsf.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_print.* *libesp_pm.a:pm_impl.* *libesp_phy.a:phy_override.* *libesp_mm.a:esp_cache_utils.* *libesp_mm.a:esp_cache_msync.* *libesp_hw_support.a:systimer.* *libesp_hw_support.a:sleep_system_peripheral.* *libesp_hw_support.a:sleep_modes.* *libesp_hw_support.a:sleep_modem.* *libesp_hw_support.a:sleep_cpu.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:sleep_clock.* *libesp_hw_support.a:sar_periph_ctrl_common.* *libesp_hw_support.a:sar_periph_ctrl.* *libesp_hw_support.a:rtc_time.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:regi2c_ctrl.* *libesp_hw_support.a:pmu_sleep.* *libesp_hw_support.a:pmu_param.* *libesp_hw_support.a:periph_ctrl.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:gdma_link.* *libesp_hw_support.a:gdma.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:esp_clk_tree.* *libesp_hw_support.a:esp_clk.* *libesp_hw_support.a:cpu.* *libesp_hw_support.a:clk_utils.* *libesp_hw_support.a:adc_share_hw_ctrl.* *libesp_event.a:esp_event.* *libesp_event.a:default_event_loop.* *libesp_driver_usb_serial_jtag.a:usb_serial_jtag_vfs.* *libesp_driver_uart.a:uart_vfs.* *libesp_driver_rmt.a:rmt_tx.* *libesp_driver_rmt.a:rmt_rx.* *libesp_driver_rmt.a:rmt_encoder.* *libesp_driver_parlio.a:parlio_tx.* *libesp_driver_parlio.a:parlio_rx.* *libesp_driver_mcpwm.a:mcpwm_timer.* *libesp_driver_mcpwm.a:mcpwm_oper.* *libesp_driver_mcpwm.a:mcpwm_fault.* *libesp_driver_mcpwm.a:mcpwm_cmpr.* *libesp_driver_mcpwm.a:mcpwm_cap.* *libesp_driver_i2c.a:i2c_master.* *libesp_driver_gptimer.a:gptimer.* *libesp_driver_ana_cmpr.a:ana_cmpr.* *libclang_rt.builtins.a:save.* *libclang_rt.builtins.a:restore.* *libclang_rt.builtins.a:_divsf3.* *librtc.a *libgcov.a *libfreertos.a *libesp_ringbuf.a) .literal EXCLUDE_FILE(*libvfs.a:vfs.* *libspi_flash.a:spi_flash_wrap.* *libspi_flash.a:spi_flash_os_func_noos.* *libspi_flash.a:spi_flash_os_func_app.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:flash_brownout_hook.* *libspi_flash.a:esp_flash_api.* *libsoc.a:lldesc.* *libriscv.a:vectors.* *libriscv.a:rv_utils.* *libriscv.a:interrupt.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:esp_time_impl.* *libnewlib.a:assert.* *libnewlib.a:abort.* *liblwip.a:vfs_lwip.* *liblog.a:util.* *liblog.a:tag_log_level.* *liblog.a:log_write.* *liblog.a:log_timestamp_common.* *liblog.a:log_timestamp.* *liblog.a:log_print.* *liblog.a:log_lock.* *liblog.a:log_format_text.* *liblog.a:log.* *libieee802154.a:esp_ieee802154_util.* *libieee802154.a:esp_ieee802154_timer.* *libieee802154.a:esp_ieee802154_sec.* *libieee802154.a:esp_ieee802154_pib.* *libieee802154.a:esp_ieee802154_frame.* *libieee802154.a:esp_ieee802154_event.* *libieee802154.a:esp_ieee802154_dev.* *libieee802154.a:esp_ieee802154_ack.* *libieee802154.a:esp_ieee802154.* *libheap.a:multi_heap.* *libhal.a:uart_hal_iram.* *libhal.a:timer_hal.* *libhal.a:spi_slave_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:pmu_hal.* *libhal.a:mmu_hal.* *libhal.a:ledc_hal_iram.* *libhal.a:i2c_hal_iram.* *libhal.a:gpio_hal.* *libhal.a:gdma_hal_top.* *libhal.a:gdma_hal_ahb_v1.* *libhal.a:cache_hal.* *libgcc.a:save-restore.* *libgcc.a:lib2funcs.* *libgcc.a:_divsf3.* *libesp_timer.a:esp_timer_impl_systimer.* *libesp_timer.a:esp_timer_impl_common.* *libesp_system.a:ubsan.* *libesp_system.a:system_time.* *libesp_system.a:system_internal.* *libesp_system.a:reset_reason.* *libesp_system.a:panic.* *libesp_system.a:image_process.* *libesp_system.a:freertos_hooks.* *libesp_system.a:esp_system_chip.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_wdt.* *libesp_rom.a:esp_rom_tlsf.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_print.* *libesp_pm.a:pm_impl.* *libesp_phy.a:phy_override.* *libesp_mm.a:esp_cache_utils.* *libesp_mm.a:esp_cache_msync.* *libesp_hw_support.a:systimer.* *libesp_hw_support.a:sleep_system_peripheral.* *libesp_hw_support.a:sleep_modes.* *libesp_hw_support.a:sleep_modem.* *libesp_hw_support.a:sleep_cpu.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:sleep_clock.* *libesp_hw_support.a:sar_periph_ctrl_common.* *libesp_hw_support.a:sar_periph_ctrl.* *libesp_hw_support.a:rtc_time.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:regi2c_ctrl.* *libesp_hw_support.a:pmu_sleep.* *libesp_hw_support.a:pmu_param.* *libesp_hw_support.a:periph_ctrl.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:gdma_link.* *libesp_hw_support.a:gdma.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:esp_clk_tree.* *libesp_hw_support.a:esp_clk.* *libesp_hw_support.a:cpu.* *libesp_hw_support.a:clk_utils.* *libesp_hw_support.a:adc_share_hw_ctrl.* *libesp_event.a:esp_event.* *libesp_event.a:default_event_loop.* *libesp_driver_usb_serial_jtag.a:usb_serial_jtag_vfs.* *libesp_driver_uart.a:uart_vfs.* *libesp_driver_rmt.a:rmt_tx.* *libesp_driver_rmt.a:rmt_rx.* *libesp_driver_rmt.a:rmt_encoder.* *libesp_driver_parlio.a:parlio_tx.* *libesp_driver_parlio.a:parlio_rx.* *libesp_driver_mcpwm.a:mcpwm_timer.* *libesp_driver_mcpwm.a:mcpwm_oper.* *libesp_driver_mcpwm.a:mcpwm_fault.* *libesp_driver_mcpwm.a:mcpwm_cmpr.* *libesp_driver_mcpwm.a:mcpwm_cap.* *libesp_driver_i2c.a:i2c_master.* *libesp_driver_gptimer.a:gptimer.* *libesp_driver_ana_cmpr.a:ana_cmpr.* *libclang_rt.builtins.a:save.* *libclang_rt.builtins.a:restore.* *libclang_rt.builtins.a:_divsf3.* *librtc.a *libgcov.a *libfreertos.a *libesp_ringbuf.a) .literal.* EXCLUDE_FILE(*libvfs.a:vfs.* *libspi_flash.a:spi_flash_wrap.* *libspi_flash.a:spi_flash_os_func_noos.* *libspi_flash.a:spi_flash_os_func_app.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:flash_brownout_hook.* *libspi_flash.a:esp_flash_api.* *libsoc.a:lldesc.* *libriscv.a:vectors.* *libriscv.a:rv_utils.* *libriscv.a:interrupt.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:esp_time_impl.* *libnewlib.a:assert.* *libnewlib.a:abort.* *liblwip.a:vfs_lwip.* *liblog.a:util.* *liblog.a:tag_log_level.* *liblog.a:log_write.* *liblog.a:log_timestamp_common.* *liblog.a:log_timestamp.* *liblog.a:log_print.* *liblog.a:log_lock.* *liblog.a:log_format_text.* *liblog.a:log.* *libieee802154.a:esp_ieee802154_util.* *libieee802154.a:esp_ieee802154_timer.* *libieee802154.a:esp_ieee802154_sec.* *libieee802154.a:esp_ieee802154_pib.* *libieee802154.a:esp_ieee802154_frame.* *libieee802154.a:esp_ieee802154_event.* *libieee802154.a:esp_ieee802154_dev.* *libieee802154.a:esp_ieee802154_ack.* *libieee802154.a:esp_ieee802154.* *libheap.a:multi_heap.* *libhal.a:uart_hal_iram.* *libhal.a:timer_hal.* *libhal.a:spi_slave_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:pmu_hal.* *libhal.a:mmu_hal.* *libhal.a:ledc_hal_iram.* *libhal.a:i2c_hal_iram.* *libhal.a:gpio_hal.* *libhal.a:gdma_hal_top.* *libhal.a:gdma_hal_ahb_v1.* *libhal.a:cache_hal.* *libgcc.a:save-restore.* *libgcc.a:lib2funcs.* *libgcc.a:_divsf3.* *libesp_timer.a:esp_timer_impl_systimer.* *libesp_timer.a:esp_timer_impl_common.* *libesp_system.a:ubsan.* *libesp_system.a:system_time.* *libesp_system.a:system_internal.* *libesp_system.a:reset_reason.* *libesp_system.a:panic.* *libesp_system.a:image_process.* *libesp_system.a:freertos_hooks.* *libesp_system.a:esp_system_chip.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_wdt.* *libesp_rom.a:esp_rom_tlsf.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_print.* *libesp_pm.a:pm_impl.* *libesp_phy.a:phy_override.* *libesp_mm.a:esp_cache_utils.* *libesp_mm.a:esp_cache_msync.* *libesp_hw_support.a:systimer.* *libesp_hw_support.a:sleep_system_peripheral.* *libesp_hw_support.a:sleep_modes.* *libesp_hw_support.a:sleep_modem.* *libesp_hw_support.a:sleep_cpu.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:sleep_clock.* *libesp_hw_support.a:sar_periph_ctrl_common.* *libesp_hw_support.a:sar_periph_ctrl.* *libesp_hw_support.a:rtc_time.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:regi2c_ctrl.* *libesp_hw_support.a:pmu_sleep.* *libesp_hw_support.a:pmu_param.* *libesp_hw_support.a:periph_ctrl.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:gdma_link.* *libesp_hw_support.a:gdma.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:esp_clk_tree.* *libesp_hw_support.a:esp_clk.* *libesp_hw_support.a:cpu.* *libesp_hw_support.a:clk_utils.* *libesp_hw_support.a:adc_share_hw_ctrl.* *libesp_event.a:esp_event.* *libesp_event.a:default_event_loop.* *libesp_driver_usb_serial_jtag.a:usb_serial_jtag_vfs.* *libesp_driver_uart.a:uart_vfs.* *libesp_driver_rmt.a:rmt_tx.* *libesp_driver_rmt.a:rmt_rx.* *libesp_driver_rmt.a:rmt_encoder.* *libesp_driver_parlio.a:parlio_tx.* *libesp_driver_parlio.a:parlio_rx.* *libesp_driver_mcpwm.a:mcpwm_timer.* *libesp_driver_mcpwm.a:mcpwm_oper.* *libesp_driver_mcpwm.a:mcpwm_fault.* *libesp_driver_mcpwm.a:mcpwm_cmpr.* *libesp_driver_mcpwm.a:mcpwm_cap.* *libesp_driver_i2c.a:i2c_master.* *libesp_driver_gptimer.a:gptimer.* *libesp_driver_ana_cmpr.a:ana_cmpr.* *libclang_rt.builtins.a:save.* *libclang_rt.builtins.a:restore.* *libclang_rt.builtins.a:_divsf3.* *librtc.a *libgcov.a *libfreertos.a *libesp_ringbuf.a) .text EXCLUDE_FILE(*libvfs.a:vfs.* *libspi_flash.a:spi_flash_wrap.* *libspi_flash.a:spi_flash_os_func_noos.* *libspi_flash.a:spi_flash_os_func_app.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:flash_brownout_hook.* *libspi_flash.a:esp_flash_api.* *libsoc.a:lldesc.* *libriscv.a:vectors.* *libriscv.a:rv_utils.* *libriscv.a:interrupt.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:esp_time_impl.* *libnewlib.a:assert.* *libnewlib.a:abort.* *liblwip.a:vfs_lwip.* *liblog.a:util.* *liblog.a:tag_log_level.* *liblog.a:log_write.* *liblog.a:log_timestamp_common.* *liblog.a:log_timestamp.* *liblog.a:log_print.* *liblog.a:log_lock.* *liblog.a:log_format_text.* *liblog.a:log.* *libieee802154.a:esp_ieee802154_util.* *libieee802154.a:esp_ieee802154_timer.* *libieee802154.a:esp_ieee802154_sec.* *libieee802154.a:esp_ieee802154_pib.* *libieee802154.a:esp_ieee802154_frame.* *libieee802154.a:esp_ieee802154_event.* *libieee802154.a:esp_ieee802154_dev.* *libieee802154.a:esp_ieee802154_ack.* *libieee802154.a:esp_ieee802154.* *libheap.a:multi_heap.* *libhal.a:uart_hal_iram.* *libhal.a:timer_hal.* *libhal.a:spi_slave_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:pmu_hal.* *libhal.a:mmu_hal.* *libhal.a:ledc_hal_iram.* *libhal.a:i2c_hal_iram.* *libhal.a:gpio_hal.* *libhal.a:gdma_hal_top.* *libhal.a:gdma_hal_ahb_v1.* *libhal.a:cache_hal.* *libgcc.a:save-restore.* *libgcc.a:lib2funcs.* *libgcc.a:_divsf3.* *libesp_timer.a:esp_timer_impl_systimer.* *libesp_timer.a:esp_timer_impl_common.* *libesp_system.a:ubsan.* *libesp_system.a:system_time.* *libesp_system.a:system_internal.* *libesp_system.a:reset_reason.* *libesp_system.a:panic.* *libesp_system.a:image_process.* *libesp_system.a:freertos_hooks.* *libesp_system.a:esp_system_chip.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_wdt.* *libesp_rom.a:esp_rom_tlsf.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_print.* *libesp_pm.a:pm_impl.* *libesp_phy.a:phy_override.* *libesp_mm.a:esp_cache_utils.* *libesp_mm.a:esp_cache_msync.* *libesp_hw_support.a:systimer.* *libesp_hw_support.a:sleep_system_peripheral.* *libesp_hw_support.a:sleep_modes.* *libesp_hw_support.a:sleep_modem.* *libesp_hw_support.a:sleep_cpu.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:sleep_clock.* *libesp_hw_support.a:sar_periph_ctrl_common.* *libesp_hw_support.a:sar_periph_ctrl.* *libesp_hw_support.a:rtc_time.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:regi2c_ctrl.* *libesp_hw_support.a:pmu_sleep.* *libesp_hw_support.a:pmu_param.* *libesp_hw_support.a:periph_ctrl.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:gdma_link.* *libesp_hw_support.a:gdma.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:esp_clk_tree.* *libesp_hw_support.a:esp_clk.* *libesp_hw_support.a:cpu.* *libesp_hw_support.a:clk_utils.* *libesp_hw_support.a:adc_share_hw_ctrl.* *libesp_event.a:esp_event.* *libesp_event.a:default_event_loop.* *libesp_driver_usb_serial_jtag.a:usb_serial_jtag_vfs.* *libesp_driver_uart.a:uart_vfs.* *libesp_driver_rmt.a:rmt_tx.* *libesp_driver_rmt.a:rmt_rx.* *libesp_driver_rmt.a:rmt_encoder.* *libesp_driver_parlio.a:parlio_tx.* *libesp_driver_parlio.a:parlio_rx.* *libesp_driver_mcpwm.a:mcpwm_timer.* *libesp_driver_mcpwm.a:mcpwm_oper.* *libesp_driver_mcpwm.a:mcpwm_fault.* *libesp_driver_mcpwm.a:mcpwm_cmpr.* *libesp_driver_mcpwm.a:mcpwm_cap.* *libesp_driver_i2c.a:i2c_master.* *libesp_driver_gptimer.a:gptimer.* *libesp_driver_ana_cmpr.a:ana_cmpr.* *libclang_rt.builtins.a:save.* *libclang_rt.builtins.a:restore.* *libclang_rt.builtins.a:_divsf3.* *librtc.a *libgcov.a *libfreertos.a *libesp_ringbuf.a) .text.*) - .text.__esp_system_init_fn_esp_timer_init_nonos - 0x42000020 0x18 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) - .text.esp_timer_init_include_func - 0x42000038 0x2 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) - 0x42000038 esp_timer_init_include_func - .text.esp_timer_impl_init_system_time - 0x4200003a 0x5e esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) - 0x4200003a esp_timer_impl_init_system_time - .text.esp_app_format_init_elf_sha256.part.0 - 0x42000098 0x5a esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .text.__esp_system_init_fn_init_show_app_info - 0x420000f2 0x22 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .text.__esp_system_init_fn_init_efuse_show_app_info - 0x42000114 0x4 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) - .text.__esp_system_init_fn_init_efuse_check - 0x42000118 0x18 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) - .text.__esp_system_init_fn_init_efuse - 0x42000130 0x36 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) - .text.esp_efuse_startup_include_func - 0x42000166 0x2 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) - 0x42000166 esp_efuse_startup_include_func - .text.esp_efuse_read_field_blob - 0x42000168 0x60 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - 0x42000168 esp_efuse_read_field_blob - .text.esp_efuse_write_field_blob - 0x420001c8 0x74 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - 0x420001c8 esp_efuse_write_field_blob - .text.esp_efuse_write_field_bit - 0x4200023c 0x54 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - 0x4200023c esp_efuse_write_field_bit - .text.esp_efuse_get_field_size - 0x42000290 0x18 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - 0x42000290 esp_efuse_get_field_size - .text.esp_efuse_check_errors - 0x420002a8 0x2 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - 0x420002a8 esp_efuse_check_errors - .text.write_reg.part.0 - 0x420002aa 0x18 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.write_reg - 0x420002c2 0x58 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.esp_efuse_utility_process - 0x4200031a 0x10e esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - 0x4200031a esp_efuse_utility_process - .text.esp_efuse_utility_reset - 0x42000428 0x4c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - 0x42000428 esp_efuse_utility_reset - .text.esp_efuse_utility_burn_efuses - 0x42000474 0x2a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - 0x42000474 esp_efuse_utility_burn_efuses - .text.esp_efuse_utility_get_number_of_items - 0x4200049e 0x10 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - 0x4200049e esp_efuse_utility_get_number_of_items - .text.esp_efuse_utility_read_reg - 0x420004ae 0x46 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - 0x420004ae esp_efuse_utility_read_reg - .text.esp_efuse_utility_fill_buff - 0x420004f4 0xc2 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - 0x420004f4 esp_efuse_utility_fill_buff - .text.esp_efuse_utility_count_once - 0x420005b6 0x52 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - 0x420005b6 esp_efuse_utility_count_once - .text.esp_efuse_utility_write_reg - 0x42000608 0x32 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - 0x42000608 esp_efuse_utility_write_reg - .text.esp_efuse_utility_write_blob - 0x4200063a 0x8c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - 0x4200063a esp_efuse_utility_write_blob - .text.esp_efuse_utility_is_correct_written_data - 0x420006c6 0x60 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - 0x420006c6 esp_efuse_utility_is_correct_written_data - .text.esp_efuse_get_coding_scheme - 0x42000726 0x6 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - 0x42000726 esp_efuse_get_coding_scheme - .text.esp_efuse_get_key_purpose - 0x4200072c 0x4c esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - 0x4200072c esp_efuse_get_key_purpose - .text.esp_efuse_find_purpose - 0x42000778 0x36 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - 0x42000778 esp_efuse_find_purpose - .text.esp_efuse_utility_clear_program_registers - 0x420007ae 0x18 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - 0x420007ae esp_efuse_utility_clear_program_registers - .text.esp_efuse_utility_check_errors - 0x420007c6 0x4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - 0x420007c6 esp_efuse_utility_check_errors - .text.esp_efuse_utility_burn_chip_opt - 0x420007ca 0x15a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - 0x420007ca esp_efuse_utility_burn_chip_opt - .text.esp_efuse_utility_burn_chip - 0x42000924 0x6 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - 0x42000924 esp_efuse_utility_burn_chip - .text.esp_efuse_utility_apply_new_coding_scheme - 0x4200092a 0x70 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - 0x4200092a esp_efuse_utility_apply_new_coding_scheme - .text.esp_register_shutdown_handler - 0x4200099a 0x36 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) - 0x4200099a esp_register_shutdown_handler - .text.esp_restart - 0x420009d0 0x30 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) - 0x420009d0 esp_restart - .text.do_system_init_fn - 0x42000a00 0x48 esp-idf/esp_system/libesp_system.a(startup.c.obj) - .text.start_cpu0_default - 0x42000a48 0x4e esp-idf/esp_system/libesp_system.a(startup.c.obj) - 0x42000a48 start_cpu0 - .text.__esp_system_init_fn_init_show_cpu_freq - 0x42000a96 0x1a esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) - .text.__esp_system_init_fn_init_brownout - 0x42000ab0 0x28 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) - .text.__esp_system_init_fn_init_newlib_time - 0x42000ad8 0x16 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) - .text.__esp_system_init_fn_init_disable_rtc_wdt - 0x42000aee 0x40 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) - .text.__esp_system_init_fn_init_flash - 0x42000b2e 0x44 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) - .text.esp_system_include_startup_funcs - 0x42000b72 0x2 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) - 0x42000b72 esp_system_include_startup_funcs - .text.system_early_init - 0x42000b74 0x136 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) - .text.sys_rtc_init.isra.0 - 0x42000caa 0x2 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) - .text.mspi_init - 0x42000cac 0x28 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) - .text.select_rtc_slow_clk - 0x42000cd4 0x86 esp-idf/esp_system/libesp_system.a(clk.c.obj) - .text.esp_rtc_init - 0x42000d5a 0x1c esp-idf/esp_system/libesp_system.a(clk.c.obj) - 0x42000d5a esp_rtc_init - .text.esp_clk_init - 0x42000d76 0x122 esp-idf/esp_system/libesp_system.a(clk.c.obj) - 0x42000d76 esp_clk_init - .text.esp_perip_clk_init - 0x42000e98 0x2be esp-idf/esp_system/libesp_system.a(clk.c.obj) - 0x42000e98 esp_perip_clk_init - .text.esp_cache_err_get_panic_info - 0x42001156 0x1c esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) - 0x42001156 esp_cache_err_get_panic_info - .text.esp_cache_err_has_active_err - 0x42001172 0xe esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) - 0x42001172 esp_cache_err_has_active_err - .text.esp_cache_err_int_init - 0x42001180 0x6a esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) - 0x42001180 esp_cache_err_int_init - .text.esp_cache_err_get_cpuid - 0x420011ea 0x4 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) - 0x420011ea esp_cache_err_get_cpuid - .text.panic_handler - 0x420011ee 0x94 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - .text.print_state - 0x42001282 0x1c esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - .text.panic_restart - 0x4200129e 0x8 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - 0x4200129e panic_restart - .text.print_assist_debug_details - 0x420012a6 0x3e esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - .text.print_cache_err_details - 0x420012e4 0x1e esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - .text.panic_print_registers - 0x42001302 0x2 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - 0x42001302 panic_print_registers - .text.panic_soc_check_pseudo_cause - 0x42001304 0x34 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - 0x42001304 panic_soc_check_pseudo_cause - .text.panic_soc_fill_info - 0x42001338 0x82 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - 0x42001338 panic_soc_fill_info - .text.panic_arch_fill_info - 0x420013ba 0x34 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - 0x420013ba panic_arch_fill_info - .text.panic_print_backtrace - 0x420013ee 0x2 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - 0x420013ee panic_print_backtrace - .text.panic_prepare_frame_from_ctx - 0x420013f0 0x24 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - 0x420013f0 panic_prepare_frame_from_ctx - .text.__esp_system_init_fn_esp_hw_stack_guard_init - 0x42001414 0x76 esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) - .text.esp_hw_stack_guard_get_bounds - 0x4200148a 0x16 esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) - 0x4200148a esp_hw_stack_guard_get_bounds - .text.esp_hw_stack_guard_get_fired_cpu - 0x420014a0 0x14 esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) - 0x420014a0 esp_hw_stack_guard_get_fired_cpu - .text.esp_hw_stack_guard_get_pc - 0x420014b4 0x8 esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) - 0x420014b4 esp_hw_stack_guard_get_pc - .text.esp_rom_include_multi_heap_patch - 0x420014bc 0x2 esp-idf/esp_rom/libesp_rom.a(esp_rom_multi_heap.c.obj) - 0x420014bc esp_rom_include_multi_heap_patch - .text.efuse_hal_set_timing - 0x420014be 0x44 esp-idf/hal/libhal.a(efuse_hal.c.obj) - 0x420014be efuse_hal_set_timing - .text.efuse_hal_read - 0x42001502 0x4c esp-idf/hal/libhal.a(efuse_hal.c.obj) - 0x42001502 efuse_hal_read - .text.efuse_hal_clear_program_registers - 0x4200154e 0x8 esp-idf/hal/libhal.a(efuse_hal.c.obj) - 0x4200154e efuse_hal_clear_program_registers - .text.efuse_hal_program - 0x42001556 0x62 esp-idf/hal/libhal.a(efuse_hal.c.obj) - 0x42001556 efuse_hal_program - .text.efuse_hal_rs_calculate - 0x420015b8 0x8 esp-idf/hal/libhal.a(efuse_hal.c.obj) - 0x420015b8 efuse_hal_rs_calculate - .text.efuse_hal_is_coding_error_in_block - 0x420015c0 0x54 esp-idf/hal/libhal.a(efuse_hal.c.obj) - 0x420015c0 efuse_hal_is_coding_error_in_block - .text.heap_caps_match - 0x42001614 0x1e esp-idf/heap/libheap.a(heap_caps.c.obj) - 0x42001614 heap_caps_match - .text.heap_caps_get_info - 0x42001632 0x82 esp-idf/heap/libheap.a(heap_caps.c.obj) - 0x42001632 heap_caps_get_info - .text.heap_caps_get_largest_free_block - 0x420016b4 0x1c esp-idf/heap/libheap.a(heap_caps.c.obj) - 0x420016b4 heap_caps_get_largest_free_block - .text.heap_caps_aligned_calloc - 0x420016d0 0x3a esp-idf/heap/libheap.a(heap_caps.c.obj) - 0x420016d0 heap_caps_aligned_calloc - .text.register_heap - 0x4200170a 0x3a esp-idf/heap/libheap.a(heap_caps_init.c.obj) - .text.heap_caps_enable_nonos_stack_heaps - 0x42001744 0x36 esp-idf/heap/libheap.a(heap_caps_init.c.obj) - 0x42001744 heap_caps_enable_nonos_stack_heaps - .text.heap_caps_init - 0x4200177a 0x1e0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) - 0x4200177a heap_caps_init - .text.__esp_system_init_fn_init_heap - 0x4200195a 0x14 esp-idf/heap/libheap.a(heap_caps_init.c.obj) - .text.s_compare_reserved_regions - 0x4200196e 0x8 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - .text.soc_get_available_memory_region_max_count - 0x42001976 0x22 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - 0x42001976 soc_get_available_memory_region_max_count - .text.soc_get_available_memory_regions - 0x42001998 0x1c8 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - 0x42001998 soc_get_available_memory_regions - .text.__esp_system_init_fn_esp_security_init - 0x42001b60 0x24 esp-idf/esp_security/libesp_security.a(init.c.obj) - .text.esp_security_init_include_impl - 0x42001b84 0x2 esp-idf/esp_security/libesp_security.a(init.c.obj) - 0x42001b84 esp_security_init_include_impl - .text.esp_crypto_dpa_protection_startup - 0x42001b86 0x18 esp-idf/esp_security/libesp_security.a(esp_dpa_protection.c.obj) - 0x42001b86 esp_crypto_dpa_protection_startup - .text.find_desc_for_int - 0x42001b9e 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .text.is_vect_desc_usable - 0x42001bc4 0xa4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .text.get_desc_for_int - 0x42001c68 0xac esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .text.esp_intr_ptr_in_isr_region - 0x42001d14 0x32 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - 0x42001d14 esp_intr_ptr_in_isr_region - .text.esp_intr_alloc_intrstatus_bind - 0x42001d46 0x43e esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - 0x42001d46 esp_intr_alloc_intrstatus_bind - .text.esp_intr_alloc_intrstatus - 0x42002184 0x6 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - 0x42002184 esp_intr_alloc_intrstatus - .text.esp_intr_alloc - 0x4200218a 0xc esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - 0x4200218a esp_intr_alloc - .text.esp_intr_free - 0x42002196 0xe8 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - 0x42002196 esp_intr_free - .text.esp_sleep_config_gpio_isolate - 0x4200227e 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) - 0x4200227e esp_sleep_config_gpio_isolate - .text.esp_sleep_enable_gpio_switch - 0x420022be 0x62 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) - 0x420022be esp_sleep_enable_gpio_switch - .text.__esp_system_init_fn_esp_sleep_startup_init - 0x42002320 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) - .text.esp_deep_sleep_wakeup_io_reset - 0x42002338 0x72 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) - 0x42002338 esp_deep_sleep_wakeup_io_reset - .text.esp_sleep_gpio_include - 0x420023aa 0x2 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) - 0x420023aa esp_sleep_gpio_include - .text.modem_clock_deselect_all_module_lp_clock_source - 0x420023ac 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) - 0x420023ac modem_clock_deselect_all_module_lp_clock_source - .text.esp_brownout_init - 0x420023d8 0x68 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) - 0x420023d8 esp_brownout_init - .text.pmu_hp_system_init - 0x42002440 0x2ce esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) - 0x42002440 pmu_hp_system_init - .text.pmu_lp_system_init - 0x4200270e 0xfc esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) - 0x4200270e pmu_lp_system_init - .text.pmu_init - 0x4200280a 0x24a esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) - 0x4200280a pmu_init - .text.esp_cpu_intr_get_desc - 0x42002a54 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) - 0x42002a54 esp_cpu_intr_get_desc - .text.esp_clk_tree_xtal32k_get_freq_hz - 0x42002aa4 0x6e esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) - 0x42002aa4 esp_clk_tree_xtal32k_get_freq_hz - .text.esp_clk_tree_lp_slow_get_freq_hz - 0x42002b12 0x54 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) - 0x42002b12 esp_clk_tree_lp_slow_get_freq_hz - .text.esp_clk_tree_rc_fast_get_freq_hz - 0x42002b66 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) - 0x42002b66 esp_clk_tree_rc_fast_get_freq_hz - .text.esp_clk_tree_lp_fast_get_freq_hz - 0x42002bae 0x5a esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) - 0x42002bae esp_clk_tree_lp_fast_get_freq_hz - .text.sleep_retention_entries_update - 0x42002c08 0xbc esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - .text.sleep_retention_entries_join - 0x42002cc4 0x84 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - .text.sleep_retention_entries_owner_bitmap - 0x42002d48 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - .text.sleep_retention_entries_do_destroy.part.0 - 0x42002d98 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - .text.sleep_retention_entries_do_destroy - 0x42002db0 0x2de esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - .text.sleep_retention_entries_create_bonding - 0x4200308e 0x94 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - .text.sleep_retention_entries_create_impl - 0x42003122 0x21c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - .text.sleep_retention_entries_create - 0x4200333e 0xe2 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - 0x4200333e sleep_retention_entries_create - .text.sleep_retention_module_init - 0x42003420 0xb2 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - 0x42003420 sleep_retention_module_init - .text.pau_regdma_set_entry_link_addr - 0x420034d2 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) - 0x420034d2 pau_regdma_set_entry_link_addr - .text.regdma_link_get_next_continuous_wrapper - 0x420034f8 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - .text.regdma_link_get_next_addr_map_wrapper - 0x420034fc 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - .text.regdma_link_get_next_write_wait_wrapper - 0x42003500 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - .text.regdma_link_get_next_branch_continuous_wrapper - 0x42003504 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - .text.regdma_link_update_continuous_next_wrapper - 0x42003508 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - .text.regdma_link_update_addr_map_next_wrapper - 0x4200351c 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - .text.regdma_link_update_write_wait_next_wrapper - 0x42003530 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - .text.regdma_link_update_branch_continuous_next_wrapper - 0x42003544 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - .text.regdma_link_update_branch_addr_map_next_wrapper - 0x42003556 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - .text.regdma_link_update_branch_write_wait_next_wrapper - 0x42003568 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - .text.regdma_link_get_next - 0x4200357a 0x8e esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - .text.regdma_link_recursive_impl - 0x42003608 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - .text.regdma_link_get_instance.part.0 - 0x42003650 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - .text.regdma_link_get_instance - 0x42003668 0x4e esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - .text.regdma_link_get_stats - 0x420036b6 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - .text.regdma_link_destroy_wrapper - 0x420036f6 0x44 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - .text.regdma_link_update_stats_wrapper - 0x4200373a 0x3c esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - .text.regdma_link_get_next_branch_addr_map_wrapper - 0x42003776 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - .text.regdma_link_get_next_branch_write_wait_wrapper - 0x4200377a 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - .text.regdma_link_new_continuous - 0x4200377e 0xe6 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - 0x4200377e regdma_link_new_continuous - .text.regdma_link_new_addr_map - 0x42003864 0x150 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - 0x42003864 regdma_link_new_addr_map - .text.regdma_link_new_write - 0x420039b4 0xc4 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - 0x420039b4 regdma_link_new_write - .text.regdma_link_init_write_wrapper - 0x42003a78 0x56 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - .text.regdma_link_new_wait - 0x42003ace 0xc4 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - 0x42003ace regdma_link_new_wait - .text.regdma_link_init_wait_wrapper - 0x42003b92 0x56 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - .text.regdma_link_new_branch_continuous - 0x42003be8 0xf4 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - 0x42003be8 regdma_link_new_branch_continuous - .text.regdma_link_new_branch_addr_map - 0x42003cdc 0x102 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - 0x42003cdc regdma_link_new_branch_addr_map - .text.regdma_link_new_branch_write - 0x42003dde 0xd6 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - 0x42003dde regdma_link_new_branch_write - .text.regdma_link_init_branch_write_wrapper - 0x42003eb4 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - .text.regdma_link_new_branch_wait - 0x42003f10 0xd6 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - 0x42003f10 regdma_link_new_branch_wait - .text.regdma_link_init_branch_wait_wrapper - 0x42003fe6 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - .text.regdma_link_new_continuous_default - 0x42004042 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - 0x42004042 regdma_link_new_continuous_default - .text.regdma_link_init_continuous_wrapper - 0x4200406a 0x5a esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - .text.regdma_link_new_addr_map_default - 0x420040c4 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - 0x420040c4 regdma_link_new_addr_map_default - .text.regdma_link_init_addr_map_wrapper - 0x420040f0 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - .text.regdma_link_new_branch_continuous_default - 0x42004160 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - 0x42004160 regdma_link_new_branch_continuous_default - .text.regdma_link_init_branch_continuous_wrapper - 0x42004188 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - .text.regdma_link_new_branch_addr_map_default - 0x420041e8 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - 0x420041e8 regdma_link_new_branch_addr_map_default - .text.regdma_link_init_branch_addr_map_wrapper - 0x42004214 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - .text.regdma_link_init - 0x42004284 0x6e esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - 0x42004284 regdma_link_init - .text.regdma_link_stats - 0x420042f2 0x44 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - 0x420042f2 regdma_link_stats - .text.regdma_link_destroy - 0x42004336 0xe esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - 0x42004336 regdma_link_destroy - .text.regdma_link_update_next - 0x42004344 0xb6 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - 0x42004344 regdma_link_update_next - .text.regdma_link_get_owner_bitmap - 0x420043fa 0x4e esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - 0x420043fa regdma_link_get_owner_bitmap - .text.regdma_find_module_link_head - 0x42004448 0x44 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - 0x42004448 regdma_find_module_link_head - .text.regdma_find_module_link_tail - 0x4200448c 0x76 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - 0x4200448c regdma_find_module_link_tail - .text.regdma_find_next_module_link_head - 0x42004502 0x42 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - 0x42004502 regdma_find_next_module_link_head - .text.regdma_find_prev_module_link_tail - 0x42004544 0x56 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - 0x42004544 regdma_find_prev_module_link_tail - .text.regdma_link_get_config_mode - 0x4200459a 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - 0x4200459a regdma_link_get_config_mode - .text.__esp_system_init_fn_init_libc - 0x420045ba 0x14 esp-idf/newlib/libnewlib.a(init.c.obj) - .text.__esp_system_init_fn_init_libc_stdio - 0x420045ce 0x1c esp-idf/newlib/libnewlib.a(init.c.obj) - .text.esp_libc_init_funcs - 0x420045ea 0x2 esp-idf/newlib/libnewlib.a(init.c.obj) - 0x420045ea esp_libc_init_funcs - .text.esp_libc_locks_init - 0x420045ec 0x6e esp-idf/newlib/libnewlib.a(locks.c.obj) - 0x420045ec esp_libc_locks_init - 0x420045ec esp_newlib_locks_init - .text.esp_libc_include_pthread_impl - 0x4200465a 0x2 esp-idf/newlib/libnewlib.a(pthread.c.obj) - 0x4200465a esp_libc_include_pthread_impl - .text.esp_libc_include_getentropy_impl - 0x4200465c 0x2 esp-idf/newlib/libnewlib.a(getentropy.c.obj) - 0x4200465c esp_libc_include_getentropy_impl - .text.adjust_boot_time - 0x4200465e 0x138 esp-idf/newlib/libnewlib.a(time.c.obj) - .text._gettimeofday_r.part.0 - 0x42004796 0x7a esp-idf/newlib/libnewlib.a(time.c.obj) - .text.settimeofday.part.0 - 0x42004810 0x92 esp-idf/newlib/libnewlib.a(time.c.obj) - .text._times_r - 0x420048a2 0x3c esp-idf/newlib/libnewlib.a(time.c.obj) - 0x420048a2 _times_r - .text._gettimeofday_r - 0x420048de 0x1c esp-idf/newlib/libnewlib.a(time.c.obj) - 0x420048de _gettimeofday_r - .text.settimeofday - 0x420048fa 0x1a esp-idf/newlib/libnewlib.a(time.c.obj) - 0x420048fa settimeofday - .text.esp_libc_time_init - 0x42004914 0x8 esp-idf/newlib/libnewlib.a(time.c.obj) - 0x42004914 esp_libc_time_init - 0x42004914 esp_newlib_time_init - .text.fstat 0x4200491c 0x28 esp-idf/newlib/libnewlib.a(syscalls.c.obj) - 0x4200491c fstat - .text.esp_libc_include_syscalls_impl - 0x42004944 0x2 esp-idf/newlib/libnewlib.a(syscalls.c.obj) - 0x42004944 esp_libc_include_syscalls_impl - .text.syscall_not_implemented - 0x42004946 0x1c esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) - 0x42004946 _system_r - 0x42004946 _getpid_r - 0x42004946 _kill_r - .text.unlikely.syscall_not_implemented_aborts - 0x42004962 0x8 esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) - 0x42004962 _raise_r - 0x42004962 _sbrk_r - .text.esp_libc_include_reent_syscalls_impl - 0x4200496a 0x2 esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) - 0x4200496a esp_libc_include_reent_syscalls_impl - .text.esp_reent_init - 0x4200496c 0x38 esp-idf/newlib/libnewlib.a(reent_init.c.obj) - 0x4200496c esp_reent_init - .text.esp_cleanup_r - 0x420049a4 0x42 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - .text.raise_r_stub - 0x420049e6 0x4 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - .text.esp_libc_init - 0x420049ea 0x6a esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - 0x420049ea esp_setup_newlib_syscalls - 0x420049ea esp_newlib_init - 0x420049ea esp_libc_init - .text.esp_libc_init_global_stdio - 0x42004a54 0x40 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - 0x42004a54 esp_libc_init_global_stdio - .text.esp_libc_include_init_funcs - 0x42004a94 0x2 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - 0x42004a94 esp_libc_include_init_funcs - .text.pthread_include_pthread_impl - 0x42004a96 0x2 esp-idf/pthread/libpthread.a(pthread.c.obj) - 0x42004a96 pthread_include_pthread_impl - .text.pthread_include_pthread_cond_var_impl - 0x42004a98 0x2 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - 0x42004a98 pthread_include_pthread_cond_var_impl - .text.find_key - 0x42004a9a 0x38 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - .text.pthread_cleanup_thread_specific_data_callback - 0x42004ad2 0x4e esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - .text.pthread_key_create - 0x42004b20 0x56 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - 0x42004b20 pthread_key_create - .text.pthread_getspecific - 0x42004b76 0x32 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - 0x42004b76 pthread_getspecific - .text.pthread_setspecific - 0x42004ba8 0xc4 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - 0x42004ba8 pthread_setspecific - .text.pthread_include_pthread_local_storage_impl - 0x42004c6c 0x2 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - 0x42004c6c pthread_include_pthread_local_storage_impl - .text.pthread_include_pthread_rwlock_impl - 0x42004c6e 0x2 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - 0x42004c6e pthread_include_pthread_rwlock_impl - .text.pthread_include_pthread_semaphore_impl - 0x42004c70 0x2 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) - 0x42004c70 pthread_include_pthread_semaphore_impl - .text.__cxa_guard_dummy - 0x42004c72 0x2 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - 0x42004c72 __cxa_guard_dummy - .text.__cxx_init_dummy - 0x42004c74 0x2 esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) - 0x42004c74 __cxx_init_dummy - .text.uart_try_set_iomux_pin - 0x42004c76 0x6c esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_free_driver_obj - 0x42004ce2 0x6e esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_release_pin - 0x42004d50 0xe8 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_module_enable - 0x42004e38 0xb0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_reenable_intr_mask.constprop.0.isra.0 - 0x42004ee8 0x58 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_check_buf_full - 0x42004f40 0x68 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_pattern_queue_update.isra.0 - 0x42004fa8 0x3c esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_module_disable - 0x42004fe4 0x88 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_set_word_length - 0x4200506c 0x52 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - 0x4200506c uart_set_word_length - .text.uart_get_word_length - 0x420050be 0x30 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - 0x420050be uart_get_word_length - .text.uart_set_stop_bits - 0x420050ee 0x52 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - 0x420050ee uart_set_stop_bits - .text.uart_get_stop_bits - 0x42005140 0x4a esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - 0x42005140 uart_get_stop_bits - .text.uart_set_parity - 0x4200518a 0x4a esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - 0x4200518a uart_set_parity - .text.uart_get_parity - 0x420051d4 0x4a esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - 0x420051d4 uart_get_parity - .text.uart_set_baudrate - 0x4200521e 0x130 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - 0x4200521e uart_set_baudrate - .text.uart_get_baudrate - 0x4200534e 0x60 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - 0x4200534e uart_get_baudrate - .text.uart_disable_intr_mask - 0x420053ae 0x60 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - 0x420053ae uart_disable_intr_mask - .text.uart_pattern_queue_reset - 0x4200540e 0x80 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - 0x4200540e uart_pattern_queue_reset - .text.uart_disable_rx_intr - 0x4200548e 0x6 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - 0x4200548e uart_disable_rx_intr - .text.uart_disable_tx_intr - 0x42005494 0x4 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - 0x42005494 uart_disable_tx_intr - .text.uart_enable_tx_intr - 0x42005498 0x6e esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - 0x42005498 uart_enable_tx_intr - .text.uart_tx_all.part.0 - 0x42005506 0x192 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .text.uart_set_pin - 0x42005698 0x2e2 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - 0x42005698 uart_set_pin - .text.uart_param_config - 0x4200597a 0x254 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - 0x4200597a uart_param_config - .text.uart_intr_config - 0x42005bce 0xa0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - 0x42005bce uart_intr_config - .text.uart_wait_tx_done - 0x42005c6e 0x16c esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - 0x42005c6e uart_wait_tx_done - .text.uart_write_bytes - 0x42005dda 0x2e esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - 0x42005dda uart_write_bytes - .text.uart_read_bytes - 0x42005e08 0xea esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - 0x42005e08 uart_read_bytes - .text.uart_get_buffered_data_len - 0x42005ef2 0x46 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - 0x42005ef2 uart_get_buffered_data_len - .text.uart_flush_input - 0x42005f38 0x14a esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - 0x42005f38 uart_flush - 0x42005f38 uart_flush_input - .text.uart_driver_delete - 0x42006082 0xce esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - 0x42006082 uart_driver_delete - .text.uart_driver_install - 0x42006150 0x24e esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - 0x42006150 uart_driver_install - .text.uart_is_driver_installed - 0x4200639e 0x1e esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - 0x4200639e uart_is_driver_installed - .text.uart_set_select_notif_callback - 0x420063bc 0x1a esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - 0x420063bc uart_set_select_notif_callback - .text.uart_get_selectlock - 0x420063d6 0x6 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - 0x420063d6 uart_get_selectlock - .text.__esp_system_init_fn_usb_serial_jtag_conn_status_init - 0x420063dc 0x36 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) - .text.usb_serial_jtag_connection_monitor_include - 0x42006412 0x2 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) - 0x42006412 usb_serial_jtag_connection_monitor_include - .text.usb_serial_jtag_is_driver_installed - 0x42006414 0xe esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - 0x42006414 usb_serial_jtag_is_driver_installed - .text.usb_serial_jtag_set_select_notif_callback - 0x42006422 0xe esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - 0x42006422 usb_serial_jtag_set_select_notif_callback - .text.usb_serial_jtag_get_read_bytes_available - 0x42006430 0x3c esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - 0x42006430 usb_serial_jtag_get_read_bytes_available - .text.usb_serial_jtag_write_ready - 0x4200646c 0x26 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - 0x4200646c usb_serial_jtag_write_ready - .text.console_start_select - 0x42006492 0x34 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - .text.console_end_select - 0x420064c6 0x16 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - 0x420064c6 console_end_select - .text.console_write - 0x420064dc 0x2e esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - 0x420064dc console_write - .text.console_fstat - 0x4200650a 0xc esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - 0x4200650a console_fstat - .text.console_read - 0x42006516 0xc esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - 0x42006516 console_read - .text.console_fcntl - 0x42006522 0xc esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - 0x42006522 console_fcntl - .text.console_fsync - 0x4200652e 0x28 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - 0x4200652e console_fsync - .text.console_access - 0x42006556 0xc esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - 0x42006556 console_access - .text.console_tcsetattr - 0x42006562 0xc esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - 0x42006562 console_tcsetattr - .text.console_tcgetattr - 0x4200656e 0xc esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - 0x4200656e console_tcgetattr - .text.console_tcdrain - 0x4200657a 0xc esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - 0x4200657a console_tcdrain - .text.console_tcflush - 0x42006586 0xc esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - 0x42006586 console_tcflush - .text.console_open - 0x42006592 0x54 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - 0x42006592 console_open - .text.console_close - 0x420065e6 0x44 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - 0x420065e6 console_close - .text.esp_vfs_console_register - 0x4200662a 0x38 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - 0x4200662a esp_vfs_console_register - .text.__esp_system_init_fn_init_vfs_console - 0x42006662 0x2 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - .text.esp_vfs_include_console_register - 0x42006664 0x2 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - 0x42006664 esp_vfs_include_console_register - .text.vfs_null_open - 0x42006666 0x8a esp-idf/vfs/libvfs.a(nullfs.c.obj) - .text.vfs_null_lseek - 0x420066f0 0x42 esp-idf/vfs/libvfs.a(nullfs.c.obj) - .text.vfs_null_pread - 0x42006732 0x36 esp-idf/vfs/libvfs.a(nullfs.c.obj) - .text.vfs_null_fcntl - 0x42006768 0x2a esp-idf/vfs/libvfs.a(nullfs.c.obj) - .text.vfs_null_write - 0x42006792 0x38 esp-idf/vfs/libvfs.a(nullfs.c.obj) - .text.vfs_null_stat - 0x420067ca 0x52 esp-idf/vfs/libvfs.a(nullfs.c.obj) - .text.vfs_null_ioctl - 0x4200681c 0x2a esp-idf/vfs/libvfs.a(nullfs.c.obj) - .text.vfs_null_read - 0x42006846 0x36 esp-idf/vfs/libvfs.a(nullfs.c.obj) - .text.vfs_null_fstat - 0x4200687c 0x44 esp-idf/vfs/libvfs.a(nullfs.c.obj) - .text.vfs_null_close - 0x420068c0 0x24 esp-idf/vfs/libvfs.a(nullfs.c.obj) - .text.vfs_null_fsync - 0x420068e4 0x2 esp-idf/vfs/libvfs.a(nullfs.c.obj) - .text.vfs_null_pwrite - 0x420068e6 0x38 esp-idf/vfs/libvfs.a(nullfs.c.obj) - .text.esp_vfs_null_register - 0x4200691e 0x18 esp-idf/vfs/libvfs.a(nullfs.c.obj) - 0x4200691e esp_vfs_null_register - .text.__esp_system_init_fn_init_vfs_nullfs - 0x42006936 0x2 esp-idf/vfs/libvfs.a(nullfs.c.obj) - .text.esp_vfs_include_nullfs_register - 0x42006938 0x2 esp-idf/vfs/libvfs.a(nullfs.c.obj) - 0x42006938 esp_vfs_include_nullfs_register - .text.ot_task_worker - 0x4200693a 0x80 esp-idf/main/libmain.a(esp_ot_rcp.c.obj) - .text.app_main - 0x420069ba 0x66 esp-idf/main/libmain.a(esp_ot_rcp.c.obj) - 0x420069ba app_main - .text.riscv_decode_offset_from_jal_instruction - 0x42006a20 0x44 esp-idf/riscv/libriscv.a(instruction_decode.c.obj) - 0x42006a20 riscv_decode_offset_from_jal_instruction - .text.gpio_sleep_pulldown_dis.isra.0 - 0x42006a64 0x48 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .text.gpio_sleep_pulldown_en.isra.0 - 0x42006aac 0x4a esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .text.gpio_sleep_pullup_dis.isra.0 - 0x42006af6 0x48 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .text.gpio_sleep_pullup_en.isra.0 - 0x42006b3e 0x4a esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .text.gpio_input_disable.isra.0 - 0x42006b88 0x3a esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .text.gpio_pullup_en - 0x42006bc2 0x60 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - 0x42006bc2 gpio_pullup_en - .text.gpio_pulldown_dis - 0x42006c22 0x60 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - 0x42006c22 gpio_pulldown_dis - .text.gpio_intr_disable - 0x42006c82 0x44 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - 0x42006c82 gpio_intr_disable - .text.gpio_input_enable - 0x42006cc6 0x4c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - 0x42006cc6 gpio_input_enable - .text.gpio_output_disable - 0x42006d12 0x64 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - 0x42006d12 gpio_output_disable - .text.gpio_reset_pin - 0x42006d76 0xac esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - 0x42006d76 gpio_reset_pin - .text.gpio_iomux_input - 0x42006e22 0x5c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - 0x42006e22 gpio_iomux_input - .text.gpio_iomux_output - 0x42006e7e 0x58 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - 0x42006e7e gpio_iomux_output - .text.gpio_sleep_set_direction - 0x42006ed6 0x6c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - 0x42006ed6 gpio_sleep_set_direction - .text.gpio_sleep_set_pull_mode - 0x42006f42 0x7a esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - 0x42006f42 gpio_sleep_set_pull_mode - .text.gpio_sleep_sel_en - 0x42006fbc 0x5c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - 0x42006fbc gpio_sleep_sel_en - .text.gpio_sleep_sel_dis - 0x42007018 0x5a esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - 0x42007018 gpio_sleep_sel_dis - .text.gpio_func_sel - 0x42007072 0x78 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - 0x42007072 gpio_func_sel - .text.rtc_gpio_is_valid_gpio - 0x420070ea 0x20 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) - 0x420070ea rtc_gpio_is_valid_gpio - .text.rtc_gpio_deinit - 0x4200710a 0x78 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) - 0x4200710a rtc_gpio_deinit - .text.bootloader_init_mem - 0x42007182 0x1a esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - 0x42007182 bootloader_init_mem - .text.bootloader_flash_update_id - 0x4200719c 0x22 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) - 0x4200719c bootloader_flash_update_id - .text.esp_mmu_map_init - 0x420071be 0x184 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - 0x420071be esp_mmu_map_init - .text.esp_mmu_map - 0x42007342 0x2b8 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - 0x42007342 esp_mmu_map - .text.esp_mmu_unmap - 0x420075fa 0xbe esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - 0x420075fa esp_mmu_unmap - .text.esp_mmu_vaddr_to_paddr - 0x420076b8 0x64 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - 0x420076b8 esp_mmu_vaddr_to_paddr - .text.spi_flash_init_lock - 0x4200771c 0x2 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - 0x4200771c spi_flash_init_lock - .text.spi_flash_op_lock - 0x4200771e 0x8 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - 0x4200771e spi_flash_op_lock - .text.spi_flash_op_unlock - 0x42007726 0x8 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - 0x42007726 spi_flash_op_unlock - .text.spi_flash_mmap - 0x4200772e 0xae esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - 0x4200772e spi_flash_mmap - .text.spi_flash_munmap - 0x420077dc 0x56 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - 0x420077dc spi_flash_munmap - .text.spi_flash_cache2phys - 0x42007832 0x2e esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - 0x42007832 spi_flash_cache2phys - .text.esp_mspi_get_io - 0x42007860 0x2e esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - 0x42007860 esp_mspi_get_io - .text.esp_mspi_pin_reserve - 0x4200788e 0x48 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - 0x4200788e esp_mspi_pin_reserve - .text.spimem_flash_ll_get_source_freq_mhz - 0x420078d6 0x2a esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .text.esp_flash_init_default_chip - 0x42007900 0xb4 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - 0x42007900 esp_flash_init_default_chip - .text.esp_flash_app_init - 0x420079b4 0x28 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - 0x420079b4 esp_flash_app_init - .text.spi_flash_chip_list_check - 0x420079dc 0x2 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) - 0x420079dc spi_flash_chip_list_check - .text.esp_crosscore_int_init - 0x420079de 0x4a esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - 0x420079de esp_crosscore_int_init - .text.esp_int_wdt_init - 0x42007a28 0xc2 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - 0x42007a28 esp_int_wdt_init - .text.esp_int_wdt_cpu_init - 0x42007aea 0x5a esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - 0x42007aea esp_int_wdt_cpu_init - .text.find_entry_and_check_all_reset - 0x42007b44 0x32 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .text.find_entry_from_task_handle_and_check_all_reset - 0x42007b76 0x34 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .text.task_wdt_timer_feed - 0x42007baa 0x32 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .text.add_entry - 0x42007bdc 0xb4 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .text.task_wdt_timeout_abort.part.0 - 0x42007c90 0x18 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .text.task_wdt_timeout_abort - 0x42007ca8 0x5a esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - 0x42007ca8 task_wdt_timeout_abort - .text.esp_task_wdt_add - 0x42007d02 0x3a esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - 0x42007d02 esp_task_wdt_add - .text.subscribe_idle - 0x42007d3c 0x5a esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .text.esp_task_wdt_init - 0x42007d96 0x94 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - 0x42007d96 esp_task_wdt_init - .text.esp_task_wdt_reset - 0x42007e2a 0x68 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - 0x42007e2a esp_task_wdt_reset - .text.idle_hook_cb - 0x42007e92 0x16 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .text.esp_task_wdt_print_triggered_tasks - 0x42007ea8 0xd0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - 0x42007ea8 esp_task_wdt_print_triggered_tasks - .text.task_wdt_isr - 0x42007f78 0x8c esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .text.esp_task_wdt_impl_timer_allocate - 0x42008004 0xe4 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - 0x42008004 esp_task_wdt_impl_timer_allocate - .text.esp_task_wdt_impl_timeout_triggered - 0x420080e8 0x32 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - 0x420080e8 esp_task_wdt_impl_timeout_triggered - .text.esp_task_wdt_impl_timer_restart - 0x4200811a 0x42 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - 0x4200811a esp_task_wdt_impl_timer_restart - .text.get_flash_clock_divider - 0x4200815c 0x36 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - .text.spi_flash_hal_init - 0x42008192 0x158 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - 0x42008192 spi_flash_hal_init - .text.spi_flash_hal_supports_direct_write - 0x420082ea 0x12 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - 0x420082ea spi_flash_hal_supports_direct_write - .text.spi_flash_hal_supports_direct_read - 0x420082fc 0x12 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - 0x420082fc spi_flash_hal_supports_direct_read - .text.clk_hal_lp_slow_get_freq_hz - 0x4200830e 0x18 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) - 0x4200830e clk_hal_lp_slow_get_freq_hz - .text.clk_hal_xtal_get_freq_mhz - 0x42008326 0x30 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) - 0x42008326 clk_hal_xtal_get_freq_mhz - .text.clk_hal_soc_root_get_freq_mhz - 0x42008356 0x3c esp-idf/hal/libhal.a(clk_tree_hal.c.obj) - 0x42008356 clk_hal_soc_root_get_freq_mhz - .text.clk_hal_cpu_get_freq_hz - 0x42008392 0x5c esp-idf/hal/libhal.a(clk_tree_hal.c.obj) - 0x42008392 clk_hal_cpu_get_freq_hz - .text.uart_hal_get_sclk - 0x420083ee 0x36 esp-idf/hal/libhal.a(uart_hal.c.obj) - 0x420083ee uart_hal_get_sclk - .text.uart_hal_get_baudrate - 0x42008424 0x50 esp-idf/hal/libhal.a(uart_hal.c.obj) - 0x42008424 uart_hal_get_baudrate - .text.uart_hal_set_stop_bits - 0x42008474 0x26 esp-idf/hal/libhal.a(uart_hal.c.obj) - 0x42008474 uart_hal_set_stop_bits - .text.uart_hal_get_stop_bits - 0x4200849a 0xc esp-idf/hal/libhal.a(uart_hal.c.obj) - 0x4200849a uart_hal_get_stop_bits - .text.uart_hal_set_data_bit_num - 0x420084a6 0x24 esp-idf/hal/libhal.a(uart_hal.c.obj) - 0x420084a6 uart_hal_set_data_bit_num - .text.uart_hal_get_data_bit_num - 0x420084ca 0xc esp-idf/hal/libhal.a(uart_hal.c.obj) - 0x420084ca uart_hal_get_data_bit_num - .text.uart_hal_set_parity - 0x420084d6 0x30 esp-idf/hal/libhal.a(uart_hal.c.obj) - 0x420084d6 uart_hal_set_parity - .text.uart_hal_get_parity - 0x42008506 0x18 esp-idf/hal/libhal.a(uart_hal.c.obj) - 0x42008506 uart_hal_get_parity - .text.uart_hal_set_hw_flow_ctrl - 0x4200851e 0x82 esp-idf/hal/libhal.a(uart_hal.c.obj) - 0x4200851e uart_hal_set_hw_flow_ctrl - .text.uart_hal_set_tx_idle_num - 0x420085a0 0x2e esp-idf/hal/libhal.a(uart_hal.c.obj) - 0x420085a0 uart_hal_set_tx_idle_num - .text.uart_hal_set_rxfifo_full_thr - 0x420085ce 0x1e esp-idf/hal/libhal.a(uart_hal.c.obj) - 0x420085ce uart_hal_set_rxfifo_full_thr - .text.uart_hal_set_txfifo_empty_thr - 0x420085ec 0x24 esp-idf/hal/libhal.a(uart_hal.c.obj) - 0x420085ec uart_hal_set_txfifo_empty_thr - .text.uart_hal_init - 0x42008610 0xd2 esp-idf/hal/libhal.a(uart_hal.c.obj) - 0x42008610 uart_hal_init - .text.uart_hal_get_symb_len - 0x420086e2 0x34 esp-idf/hal/libhal.a(uart_hal.c.obj) - 0x420086e2 uart_hal_get_symb_len - .text.uart_hal_set_rx_timeout - 0x42008716 0x58 esp-idf/hal/libhal.a(uart_hal.c.obj) - 0x42008716 uart_hal_set_rx_timeout - .text.modem_clock_hal_deselect_all_ble_rtc_timer_lpclk_source - 0x4200876e 0x3a esp-idf/hal/libhal.a(modem_clock_hal.c.obj) - 0x4200876e modem_clock_hal_deselect_all_ble_rtc_timer_lpclk_source - .text.modem_clock_hal_deselect_all_coex_lpclk_source - 0x420087a8 0x1c esp-idf/hal/libhal.a(modem_clock_hal.c.obj) - 0x420087a8 modem_clock_hal_deselect_all_coex_lpclk_source - .text.pau_hal_set_regdma_entry_link_addr - 0x420087c4 0x8 esp-idf/hal/libhal.a(pau_hal.c.obj) - 0x420087c4 pau_hal_set_regdma_entry_link_addr - .text.pau_hal_set_regdma_work_timeout - 0x420087cc 0x2 esp-idf/hal/libhal.a(pau_hal.c.obj) - 0x420087cc pau_hal_set_regdma_work_timeout - .text.pau_hal_set_regdma_wait_timeout - 0x420087ce 0x36 esp-idf/hal/libhal.a(pau_hal.c.obj) - 0x420087ce pau_hal_set_regdma_wait_timeout - .text.brownout_hal_config - 0x42008804 0xe4 esp-idf/hal/libhal.a(brownout_hal.c.obj) - 0x42008804 brownout_hal_config - .text.apm_hal_enable_ctrl_filter_all - 0x420088e8 0x16 esp-idf/hal/libhal.a(apm_hal.c.obj) - 0x420088e8 apm_hal_enable_ctrl_filter_all - .text.esp_cpu_configure_region_protection - 0x420088fe 0x268 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) - 0x420088fe esp_cpu_configure_region_protection - .text.periph_rtc_dig_clk8m_enable - 0x42008b66 0x62 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - 0x42008b66 periph_rtc_dig_clk8m_enable - .text.periph_rtc_dig_clk8m_disable - 0x42008bc8 0x56 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - 0x42008bc8 periph_rtc_dig_clk8m_disable - .text.__esp_system_init_fn_init_rng - 0x42008c1e 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) - .text.esp_fill_random - 0x42008c38 0x54 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) - 0x42008c38 esp_fill_random - .text.esp_gpio_reserve - 0x42008c8c 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) - 0x42008c8c esp_gpio_reserve - .text.esp_gpio_revoke - 0x42008c9e 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) - 0x42008c9e esp_gpio_revoke - .text._rtcio_ll_enable_io_clock - 0x42008cb6 0x34 esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) - .text.io_mux_force_disable_lp_io_clock - 0x42008cea 0x7c esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) - 0x42008cea io_mux_force_disable_lp_io_clock - .text.nvs_flash_init_partition.part.0 - 0x42008d66 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .text.nvs_flash_init_partition - 0x42008d7e 0x4c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x42008d7e nvs_flash_init_partition - .text.nvs_flash_init - 0x42008dca 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - 0x42008dca nvs_flash_init - .text._ZN3nvs20isVariableLengthTypeENS_8ItemTypeE - 0x42008dd6 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - 0x42008dd6 nvs::isVariableLengthType(nvs::ItemType) - .text._ZN3nvs4PageC2Ev - 0x42008dea 0x40 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - 0x42008dea nvs::Page::Page() - 0x42008dea nvs::Page::Page() - .text._ZN3nvs4Page6Header14calculateCrc32Ev - 0x42008e2a 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - 0x42008e2a nvs::Page::Header::calculateCrc32() - .text._ZN3nvs4Page10initializeEv - 0x42008e3a 0x78 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - 0x42008e3a nvs::Page::initialize() - .text._ZNK3nvs4Page9readEntryEjRNS_4ItemE - 0x42008eb2 0x22 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - 0x42008eb2 nvs::Page::readEntry(unsigned int, nvs::Item&) const - .text._ZNK3nvs4Page12getSeqNumberERm - 0x42008ed4 0x2a esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - 0x42008ed4 nvs::Page::getSeqNumber(unsigned long&) const - .text._ZN3nvs4Page12setSeqNumberEm - 0x42008efe 0x16 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - 0x42008efe nvs::Page::setSeqNumber(unsigned long) - .text._ZN3nvs4Page5eraseEv - 0x42008f14 0x3e esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - 0x42008f14 nvs::Page::erase() - .text._ZNK19CompressedEnumTableIN3nvs4Page10EntryStateELj2ELj126EE3getEjPS2_ - 0x42008f52 0x26 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - 0x42008f52 CompressedEnumTable::get(unsigned int, nvs::Page::EntryState*) const - .text._ZN3nvs4Page20updateFirstUsedEntryEjj - 0x42008f78 0x5e esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - 0x42008f78 nvs::Page::updateFirstUsedEntry(unsigned int, unsigned int) - .text._ZN19CompressedEnumTableIN3nvs4Page10EntryStateELj2ELj126EE3setEjS2_ - 0x42008fd6 0x32 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - 0x42008fd6 CompressedEnumTable::set(unsigned int, nvs::Page::EntryState) - .text._ZN3nvs4Page15alterEntryStateEjNS0_10EntryStateE - 0x42009008 0x5a esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - 0x42009008 nvs::Page::alterEntryState(unsigned int, nvs::Page::EntryState) - .text._ZN3nvs4Page10writeEntryERKNS_4ItemE - 0x42009062 0x6a esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - 0x42009062 nvs::Page::writeEntry(nvs::Item const&) - .text._ZN3nvs4Page9copyItemsERS0_ - 0x420090cc 0xc0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - 0x420090cc nvs::Page::copyItems(nvs::Page&) - .text._ZN3nvs4Page20alterEntryRangeStateEjjNS0_10EntryStateE - 0x4200918c 0x86 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - 0x4200918c nvs::Page::alterEntryRangeState(unsigned int, unsigned int, nvs::Page::EntryState) - .text._ZN3nvs4Page17eraseEntryAndSpanEj - 0x42009212 0x110 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - 0x42009212 nvs::Page::eraseEntryAndSpan(unsigned int) - .text._ZN3nvs4Page8findItemEhNS_8ItemTypeEPKcRjRNS_4ItemEhNS_9VerOffsetE - 0x42009322 0x1d0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - 0x42009322 nvs::Page::findItem(unsigned char, nvs::ItemType, char const*, unsigned int&, nvs::Item&, unsigned char, nvs::VerOffset) - .text._ZN3nvs4Page9eraseItemEhNS_8ItemTypeEPKchNS_9VerOffsetE - 0x420094f2 0x2e esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - 0x420094f2 nvs::Page::eraseItem(unsigned char, nvs::ItemType, char const*, unsigned char, nvs::VerOffset) - .text._ZN3nvs4Page15mLoadEntryTableEv - 0x42009520 0x2ee esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - 0x42009520 nvs::Page::mLoadEntryTable() - .text._ZN3nvs4Page4loadEPNS_9PartitionEm - 0x4200980e 0x142 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - 0x4200980e nvs::Page::load(nvs::Partition*, unsigned long) - .text._ZN3nvs7Storage19populateBlobIndicesER14intrusive_listINS0_13BlobIndexNodeEE - 0x42009950 0xb6 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - 0x42009950 nvs::Storage::populateBlobIndices(intrusive_list&) - .text._ZN3nvs7Storage26eraseMismatchedBlobIndexesER14intrusive_listINS0_13BlobIndexNodeEE - 0x42009a06 0x1a2 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - 0x42009a06 nvs::Storage::eraseMismatchedBlobIndexes(intrusive_list&) - .text._ZN3nvs7Storage20eraseOrphanDataBlobsER14intrusive_listINS0_13BlobIndexNodeEE - 0x42009ba8 0x10c esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - 0x42009ba8 nvs::Storage::eraseOrphanDataBlobs(intrusive_list&) - .text._ZN14intrusive_listIN3nvs7Storage14NamespaceEntryEE17clearAndFreeNodesEv - 0x42009cb4 0x3a esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - 0x42009cb4 intrusive_list::clearAndFreeNodes() - .text._ZN3nvs7StorageD2Ev - 0x42009cee 0x48 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - 0x42009cee nvs::Storage::~Storage() - 0x42009cee nvs::Storage::~Storage() - .text._ZN19CompressedEnumTableIbLj1ELj256EE3setEjb - 0x42009d36 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - 0x42009d36 CompressedEnumTable::set(unsigned int, bool) - .text._ZN14intrusive_listIN3nvs7Storage14NamespaceEntryEE9push_backEPS2_ - 0x42009d66 0x1e esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - 0x42009d66 intrusive_list::push_back(nvs::Storage::NamespaceEntry*) - .text._ZN3nvs7Storage4initEmm - 0x42009d84 0x14a esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - 0x42009d84 nvs::Storage::init(unsigned long, unsigned long) - .text._ZN3nvs12NVSPartitionD2Ev - 0x42009ece 0x2 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - 0x42009ece nvs::NVSPartition::~NVSPartition() - 0x42009ece nvs::NVSPartition::~NVSPartition() - .text._ZN3nvs12NVSPartition18get_partition_nameEv - 0x42009ed0 0x6 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - 0x42009ed0 nvs::NVSPartition::get_partition_name() - .text._ZN3nvs12NVSPartition11get_addressEv - 0x42009ed6 0x6 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - 0x42009ed6 nvs::NVSPartition::get_address() - .text._ZN3nvs12NVSPartition8get_sizeEv - 0x42009edc 0x6 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - 0x42009edc nvs::NVSPartition::get_size() - .text._ZN3nvs12NVSPartition12get_readonlyEv - 0x42009ee2 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - 0x42009ee2 nvs::NVSPartition::get_readonly() - .text._ZN3nvs12NVSPartition8read_rawEjPvj - 0x42009eea 0x6 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - 0x42009eea nvs::NVSPartition::read_raw(unsigned int, void*, unsigned int) - .text._ZN3nvs12NVSPartition9write_rawEjPKvj - 0x42009ef0 0x6 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - 0x42009ef0 nvs::NVSPartition::write_raw(unsigned int, void const*, unsigned int) - .text._ZN3nvs12NVSPartition11erase_rangeEjj - 0x42009ef6 0x6 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - 0x42009ef6 nvs::NVSPartition::erase_range(unsigned int, unsigned int) - .text._ZN3nvs12NVSPartitionD0Ev - 0x42009efc 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - 0x42009efc nvs::NVSPartition::~NVSPartition() - .text._ZN3nvs12NVSPartition5writeEjPKvj - 0x42009f04 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - 0x42009f04 nvs::NVSPartition::write(unsigned int, void const*, unsigned int) - .text._ZN3nvs12NVSPartition4readEjPvj - 0x42009f16 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - 0x42009f16 nvs::NVSPartition::read(unsigned int, void*, unsigned int) - .text._ZN3nvs12NVSPartitionC2EPK15esp_partition_t - 0x42009f28 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - 0x42009f28 nvs::NVSPartition::NVSPartition(esp_partition_t const*) - 0x42009f28 nvs::NVSPartition::NVSPartition(esp_partition_t const*) - .text._ZN3nvs19NVSPartitionManagerD2Ev - 0x42009f48 0x2 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - 0x42009f48 nvs::NVSPartitionManager::~NVSPartitionManager() - 0x42009f48 nvs::NVSPartitionManager::~NVSPartitionManager() - .text._ZN3nvs19NVSPartitionManagerD0Ev - 0x42009f4a 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - 0x42009f4a nvs::NVSPartitionManager::~NVSPartitionManager() - .text._ZN3nvs19NVSPartitionManager12get_instanceEv - 0x42009f52 0x5a esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - 0x42009f52 nvs::NVSPartitionManager::get_instance() - .text._ZN3nvs19NVSPartitionManager24lookup_storage_from_nameEPKc - 0x42009fac 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - 0x42009fac nvs::NVSPartitionManager::lookup_storage_from_name(char const*) - .text._ZN14intrusive_listIN3nvs12NVSPartitionEE5eraseENS2_8iteratorE - 0x42009fdc 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - 0x42009fdc intrusive_list::erase(intrusive_list::iterator) - .text._ZN3nvs19NVSPartitionManager11init_customEPNS_9PartitionEmm - 0x42009ff8 0xdc esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - 0x42009ff8 nvs::NVSPartitionManager::init_custom(nvs::Partition*, unsigned long, unsigned long) - .text._ZN3nvs19NVSPartitionManager14init_partitionEPKc - 0x4200a0d4 0x94 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - 0x4200a0d4 nvs::NVSPartitionManager::init_partition(char const*) - .text._ZNK3nvs4Item14calculateCrc32Ev - 0x4200a168 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) - 0x4200a168 nvs::Item::calculateCrc32() const - .text._ZNK3nvs4Item26calculateCrc32WithoutValueEv - 0x4200a1a4 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) - 0x4200a1a4 nvs::Item::calculateCrc32WithoutValue() const - .text._ZNK3nvs4Item22checkHeaderConsistencyEh - 0x4200a1e0 0xee esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) - 0x4200a1e0 nvs::Item::checkHeaderConsistency(unsigned char) const - .text._ZN3nvs4LockC2Ev - 0x4200a2ce 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) - 0x4200a2ce nvs::Lock::Lock() - 0x4200a2ce nvs::Lock::Lock() - .text._ZN3nvs4LockD2Ev - 0x4200a2de 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) - 0x4200a2de nvs::Lock::~Lock() - 0x4200a2de nvs::Lock::~Lock() - .text._ZN3nvs4Lock4initEv - 0x4200a2ee 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) - 0x4200a2ee nvs::Lock::init() - .text._ZN3nvs8HashListC2Ev - 0x4200a2f2 0xe esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - 0x4200a2f2 nvs::HashList::HashList() - 0x4200a2f2 nvs::HashList::HashList() - .text._ZN3nvs8HashList13HashListBlockC2Ev - 0x4200a300 0x22 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - 0x4200a300 nvs::HashList::HashListBlock::HashListBlock() - 0x4200a300 nvs::HashList::HashListBlock::HashListBlock() - .text._ZN3nvs8HashList6insertERKNS_4ItemEj - 0x4200a322 0x92 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - 0x4200a322 nvs::HashList::insert(nvs::Item const&, unsigned int) - .text._ZN3nvs8HashList4findEjRKNS_4ItemE - 0x4200a3b4 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - 0x4200a3b4 nvs::HashList::find(unsigned int, nvs::Item const&) - .text._ZN14intrusive_listIN3nvs8HashList13HashListBlockEE5eraseENS3_8iteratorE - 0x4200a408 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - 0x4200a408 intrusive_list::erase(intrusive_list::iterator) - .text._ZN3nvs8HashList5clearEv - 0x4200a424 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - 0x4200a424 nvs::HashList::clear() - .text._ZN3nvs8HashListD2Ev - 0x4200a454 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - 0x4200a454 nvs::HashList::~HashList() - 0x4200a454 nvs::HashList::~HashList() - .text._ZN3nvs8HashList5eraseEj - 0x4200a458 0x78 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - 0x4200a458 nvs::HashList::erase(unsigned int) - .text._ZN14intrusive_listIN3nvs4PageEE9push_backEPS1_ - 0x4200a4d0 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - 0x4200a4d0 intrusive_list::push_back(nvs::Page*) - .text._ZN14intrusive_listIN3nvs4PageEE5eraseENS2_8iteratorE - 0x4200a4ec 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - 0x4200a4ec intrusive_list::erase(intrusive_list::iterator) - .text._ZN14intrusive_listIN3nvs4PageEE5clearEv - 0x4200a508 0x1e esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - 0x4200a508 intrusive_list::clear() - .text._ZN3nvs11PageManager12activatePageEv - 0x4200a526 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - 0x4200a526 nvs::PageManager::activatePage() - .text._ZN3nvs11PageManager4loadEPNS_9PartitionEmm - 0x4200a57a 0x29c esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - 0x4200a57a nvs::PageManager::load(nvs::Partition*, unsigned long, unsigned long) - .text._ZN3nvs16partition_lookup20lookup_nvs_partitionEPKcPPNS_12NVSPartitionE - 0x4200a816 0x50 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) - 0x4200a816 nvs::partition_lookup::lookup_nvs_partition(char const*, nvs::NVSPartition**) - .text.event_end_select - 0x4200a866 0xd8 esp-idf/vfs/libvfs.a(vfs_eventfd.c.obj) - .text.event_start_select - 0x4200a93e 0x190 esp-idf/vfs/libvfs.a(vfs_eventfd.c.obj) - .text.event_close - 0x4200aace 0xba esp-idf/vfs/libvfs.a(vfs_eventfd.c.obj) - .text.event_read - 0x4200ab88 0xb8 esp-idf/vfs/libvfs.a(vfs_eventfd.c.obj) - .text.event_write - 0x4200ac40 0x158 esp-idf/vfs/libvfs.a(vfs_eventfd.c.obj) - .text.esp_vfs_eventfd_register - 0x4200ad98 0xd6 esp-idf/vfs/libvfs.a(vfs_eventfd.c.obj) - 0x4200ad98 esp_vfs_eventfd_register - .text.esp_vfs_eventfd_unregister - 0x4200ae6e 0x5e esp-idf/vfs/libvfs.a(vfs_eventfd.c.obj) - 0x4200ae6e esp_vfs_eventfd_unregister - .text.eventfd 0x4200aecc 0x114 esp-idf/vfs/libvfs.a(vfs_eventfd.c.obj) - 0x4200aecc eventfd - .text.spicommon_dma_chan_alloc.part.0 - 0x4200afe0 0x18 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .text.spicommon_dma_chan_free - 0x4200aff8 0x40 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - 0x4200aff8 spicommon_dma_chan_free - .text.spicommon_bus_free_io_cfg - 0x4200b038 0x56 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - 0x4200b038 spicommon_bus_free_io_cfg - .text.esp_openthread_init - 0x4200b08e 0x28 esp-idf/openthread/libopenthread.a(esp_openthread.cpp.obj) - 0x4200b08e esp_openthread_init - .text.esp_openthread_launch_mainloop - 0x4200b0b6 0x9c esp-idf/openthread/libopenthread.a(esp_openthread.cpp.obj) - 0x4200b0b6 esp_openthread_launch_mainloop - .text.esp_openthread_lock_acquire - 0x4200b152 0x54 esp-idf/openthread/libopenthread.a(esp_openthread_lock.c.obj) - 0x4200b152 esp_openthread_lock_acquire - .text.esp_openthread_lock_release - 0x4200b1a6 0x38 esp-idf/openthread/libopenthread.a(esp_openthread_lock.c.obj) - 0x4200b1a6 esp_openthread_lock_release - .text.esp_openthread_lock_init - 0x4200b1de 0x5a esp-idf/openthread/libopenthread.a(esp_openthread_lock.c.obj) - 0x4200b1de esp_openthread_lock_init - .text.esp_openthread_lock_deinit - 0x4200b238 0x3c esp-idf/openthread/libopenthread.a(esp_openthread_lock.c.obj) - 0x4200b238 esp_openthread_lock_deinit - .text.esp_openthread_platform_workflow_register - 0x4200b274 0x9a esp-idf/openthread/libopenthread.a(esp_openthread_platform.cpp.obj) - 0x4200b274 esp_openthread_platform_workflow_register - .text.esp_openthread_platform_workflow_unregister - 0x4200b30e 0x5a esp-idf/openthread/libopenthread.a(esp_openthread_platform.cpp.obj) - 0x4200b30e esp_openthread_platform_workflow_unregister - .text.esp_openthread_get_instance - 0x4200b368 0x4 esp-idf/openthread/libopenthread.a(esp_openthread_platform.cpp.obj) - 0x4200b368 esp_openthread_get_instance - .text.esp_openthread_platform_deinit - 0x4200b36c 0x54 esp-idf/openthread/libopenthread.a(esp_openthread_platform.cpp.obj) - 0x4200b36c esp_openthread_platform_deinit - .text.esp_openthread_platform_init - 0x4200b3c0 0xa8 esp-idf/openthread/libopenthread.a(esp_openthread_platform.cpp.obj) - 0x4200b3c0 esp_openthread_platform_init - .text.esp_openthread_platform_update - 0x4200b468 0x26 esp-idf/openthread/libopenthread.a(esp_openthread_platform.cpp.obj) - 0x4200b468 esp_openthread_platform_update - .text.esp_openthread_platform_process - 0x4200b48e 0x2e esp-idf/openthread/libopenthread.a(esp_openthread_platform.cpp.obj) - 0x4200b48e esp_openthread_platform_process - .text.esp_openthread_task_queue_update - 0x4200b4bc 0x2e esp-idf/openthread/libopenthread.a(esp_openthread_task_queue.c.obj) - 0x4200b4bc esp_openthread_task_queue_update - .text.esp_openthread_task_queue_process - 0x4200b4ea 0x82 esp-idf/openthread/libopenthread.a(esp_openthread_task_queue.c.obj) - 0x4200b4ea esp_openthread_task_queue_process - .text.esp_openthread_task_queue_init - 0x4200b56c 0x62 esp-idf/openthread/libopenthread.a(esp_openthread_task_queue.c.obj) - 0x4200b56c esp_openthread_task_queue_init - .text.otTaskletsSignalPending - 0x4200b5ce 0x40 esp-idf/openthread/libopenthread.a(esp_openthread_task_queue.c.obj) - 0x4200b5ce otTaskletsSignalPending - .text.esp_openthread_task_queue_deinit - 0x4200b60e 0x46 esp-idf/openthread/libopenthread.a(esp_openthread_task_queue.c.obj) - 0x4200b60e esp_openthread_task_queue_deinit - .text.otPlatTimeGet - 0x4200b654 0x8 esp-idf/openthread/libopenthread.a(esp_openthread_alarm.c.obj) - 0x4200b654 otPlatTimeGet - .text.otPlatAlarmMilliStartAt - 0x4200b65c 0x16 esp-idf/openthread/libopenthread.a(esp_openthread_alarm.c.obj) - 0x4200b65c otPlatAlarmMilliStartAt - .text.otPlatAlarmMilliStop - 0x4200b672 0xa esp-idf/openthread/libopenthread.a(esp_openthread_alarm.c.obj) - 0x4200b672 otPlatAlarmMilliStop - .text.otPlatAlarmMilliGetNow - 0x4200b67c 0x26 esp-idf/openthread/libopenthread.a(esp_openthread_alarm.c.obj) - 0x4200b67c otPlatAlarmMilliGetNow - .text.otPlatAlarmMicroStartAt - 0x4200b6a2 0x16 esp-idf/openthread/libopenthread.a(esp_openthread_alarm.c.obj) - 0x4200b6a2 otPlatAlarmMicroStartAt - .text.otPlatAlarmMicroStop - 0x4200b6b8 0xa esp-idf/openthread/libopenthread.a(esp_openthread_alarm.c.obj) - 0x4200b6b8 otPlatAlarmMicroStop - .text.otPlatAlarmMicroGetNow - 0x4200b6c2 0x8 esp-idf/openthread/libopenthread.a(esp_openthread_alarm.c.obj) - 0x4200b6c2 otPlatAlarmMicroGetNow - .text.esp_openthread_alarm_update - 0x4200b6ca 0xc0 esp-idf/openthread/libopenthread.a(esp_openthread_alarm.c.obj) - 0x4200b6ca esp_openthread_alarm_update - .text.esp_openthread_alarm_process - 0x4200b78a 0x64 esp-idf/openthread/libopenthread.a(esp_openthread_alarm.c.obj) - 0x4200b78a esp_openthread_alarm_process - .text.esp_openthread_alarm_init - 0x4200b7ee 0x1c esp-idf/openthread/libopenthread.a(esp_openthread_alarm.c.obj) - 0x4200b7ee esp_openthread_alarm_init - .text.esp_openthread_alarm_deinit - 0x4200b80a 0xc esp-idf/openthread/libopenthread.a(esp_openthread_alarm.c.obj) - 0x4200b80a esp_openthread_alarm_deinit - .text.esp_openthread_radio_update - 0x4200b816 0x2a esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - 0x4200b816 esp_openthread_radio_update - .text.set_event - 0x4200b840 0x4a esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - .text.esp_openthread_radio_process - 0x4200b88a 0x19c esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - 0x4200b88a esp_openthread_radio_process - .text.esp_openthread_radio_init - 0x4200ba26 0xa4 esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - 0x4200ba26 esp_openthread_radio_init - .text.esp_openthread_radio_deinit - 0x4200baca 0x32 esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - 0x4200baca esp_openthread_radio_deinit - .text.otPlatRadioGetIeeeEui64 - 0x4200bafc 0x32 esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - 0x4200bafc otPlatRadioGetIeeeEui64 - .text.otPlatRadioSetPanId - 0x4200bb2e 0x6 esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - 0x4200bb2e otPlatRadioSetPanId - .text.otPlatRadioSetExtendedAddress - 0x4200bb34 0x6 esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - 0x4200bb34 otPlatRadioSetExtendedAddress - .text.otPlatRadioSetShortAddress - 0x4200bb3a 0x6 esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - 0x4200bb3a otPlatRadioSetShortAddress - .text.otPlatRadioSetPromiscuous - 0x4200bb40 0x6 esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - 0x4200bb40 otPlatRadioSetPromiscuous - .text.otPlatRadioIsEnabled - 0x4200bb46 0x18 esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - 0x4200bb46 otPlatRadioIsEnabled - .text.otPlatRadioEnable - 0x4200bb5e 0x4 esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - 0x4200bb5e otPlatRadioEnable - .text.otPlatRadioDisable - 0x4200bb62 0x4 esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - 0x4200bb62 otPlatRadioDisable - .text.otPlatRadioSleep - 0x4200bb66 0x16 esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - 0x4200bb66 otPlatRadioSleep - .text.otPlatRadioReceive - 0x4200bb7c 0x20 esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - 0x4200bb7c otPlatRadioReceive - .text.otPlatRadioTransmit - 0x4200bb9c 0xe8 esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - 0x4200bb9c otPlatRadioTransmit - .text.otPlatRadioGetTransmitBuffer - 0x4200bc84 0xa esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - 0x4200bc84 otPlatRadioGetTransmitBuffer - .text.otPlatRadioGetRssi - 0x4200bc8e 0x8 esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - 0x4200bc8e otPlatRadioGetRssi - .text.otPlatRadioGetCaps - 0x4200bc96 0x6 esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - 0x4200bc96 otPlatRadioGetCaps - .text.otPlatRadioReceiveAt - 0x4200bc9c 0x28 esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - 0x4200bc9c otPlatRadioReceiveAt - .text.otPlatRadioGetPromiscuous - 0x4200bcc4 0x4 esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - 0x4200bcc4 otPlatRadioGetPromiscuous - .text.otPlatRadioEnableSrcMatch - 0x4200bcc8 0x6 esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - 0x4200bcc8 otPlatRadioEnableSrcMatch - .text.otPlatRadioAddSrcMatchShortEntry - 0x4200bcce 0x24 esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - 0x4200bcce otPlatRadioAddSrcMatchShortEntry - .text.otPlatRadioAddSrcMatchExtEntry - 0x4200bcf2 0x1a esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - 0x4200bcf2 otPlatRadioAddSrcMatchExtEntry - .text.otPlatRadioClearSrcMatchShortEntry - 0x4200bd0c 0x24 esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - 0x4200bd0c otPlatRadioClearSrcMatchShortEntry - .text.otPlatRadioClearSrcMatchExtEntry - 0x4200bd30 0x1a esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - 0x4200bd30 otPlatRadioClearSrcMatchExtEntry - .text.otPlatRadioClearSrcMatchShortEntries - 0x4200bd4a 0x6 esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - 0x4200bd4a otPlatRadioClearSrcMatchShortEntries - .text.otPlatRadioClearSrcMatchExtEntries - 0x4200bd50 0x6 esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - 0x4200bd50 otPlatRadioClearSrcMatchExtEntries - .text.otPlatRadioEnergyScan - 0x4200bd56 0x28 esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - 0x4200bd56 otPlatRadioEnergyScan - .text.otPlatRadioGetTransmitPower - 0x4200bd7e 0x1c esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - 0x4200bd7e otPlatRadioGetTransmitPower - .text.otPlatRadioSetTransmitPower - 0x4200bd9a 0x18 esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - 0x4200bd9a otPlatRadioSetTransmitPower - .text.otPlatRadioGetCcaEnergyDetectThreshold - 0x4200bdb2 0x1c esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - 0x4200bdb2 otPlatRadioGetCcaEnergyDetectThreshold - .text.otPlatRadioSetCcaEnergyDetectThreshold - 0x4200bdce 0x18 esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - 0x4200bdce otPlatRadioSetCcaEnergyDetectThreshold - .text.otPlatRadioGetReceiveSensitivity - 0x4200bde6 0x6 esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - 0x4200bde6 otPlatRadioGetReceiveSensitivity - .text.otPlatRadioSetMacKey - 0x4200bdec 0x72 esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - 0x4200bdec otPlatRadioSetMacKey - .text.otPlatRadioSetMacFrameCounter - 0x4200be5e 0xa esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - 0x4200be5e otPlatRadioSetMacFrameCounter - .text.otPlatRadioSetMacFrameCounterIfLarger - 0x4200be68 0x12 esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - 0x4200be68 otPlatRadioSetMacFrameCounterIfLarger - .text.otPlatRadioGetNow - 0x4200be7a 0x4 esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - 0x4200be7a otPlatRadioGetNow - .text.otPlatRadioGetCslAccuracy - 0x4200be7e 0x6 esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - 0x4200be7e otPlatRadioGetCslAccuracy - .text.otPlatRadioGetCslUncertainty - 0x4200be84 0x4 esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - 0x4200be84 otPlatRadioGetCslUncertainty - .text.otPlatEntropyGet - 0x4200be88 0x16 esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - 0x4200be88 otPlatEntropyGet - .text.otPlatRadioSetChannelMaxTransmitPower - 0x4200be9e 0x4 esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - 0x4200be9e otPlatRadioSetChannelMaxTransmitPower - .text.otPlatRadioSetRxOnWhenIdle - 0x4200bea2 0x6 esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - 0x4200bea2 otPlatRadioSetRxOnWhenIdle - .text.otPlatRadioGetPreferredChannelMask - 0x4200bea8 0xa esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - 0x4200bea8 otPlatRadioGetPreferredChannelMask - .text.otPlatRadioGetSupportedChannelMask - 0x4200beb2 0xa esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - 0x4200beb2 otPlatRadioGetSupportedChannelMask - .text.esp_ieee802154_receive_at_done - 0x4200bebc 0x6 esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - 0x4200bebc esp_ieee802154_receive_at_done - .text.esp_openthread_set_storage_name - 0x4200bec2 0xa esp-idf/openthread/libopenthread.a(esp_openthread_settings.c.obj) - 0x4200bec2 esp_openthread_set_storage_name - .text.esp_openthread_spi_slave_deinit - 0x4200becc 0x52 esp-idf/openthread/libopenthread.a(esp_openthread_spi_slave.c.obj) - 0x4200becc esp_openthread_spi_slave_deinit - .text.esp_openthread_uart_update - 0x4200bf1e 0x2e esp-idf/openthread/libopenthread.a(esp_openthread_uart.c.obj) - 0x4200bf1e esp_openthread_uart_update - .text.esp_openthread_uart_process - 0x4200bf4c 0x52 esp-idf/openthread/libopenthread.a(esp_openthread_uart.c.obj) - 0x4200bf4c esp_openthread_uart_process - .text.otPlatUartEnable - 0x4200bf9e 0x4 esp-idf/openthread/libopenthread.a(esp_openthread_uart.c.obj) - 0x4200bf9e otPlatUartEnable - .text.otPlatUartSend - 0x4200bfa2 0x30 esp-idf/openthread/libopenthread.a(esp_openthread_uart.c.obj) - 0x4200bfa2 otPlatUartSend - .text.esp_openthread_uart_init_port - 0x4200bfd2 0x52 esp-idf/openthread/libopenthread.a(esp_openthread_uart.c.obj) - 0x4200bfd2 esp_openthread_uart_init_port - .text.esp_openthread_host_cli_uart_init - 0x4200c024 0x8 esp-idf/openthread/libopenthread.a(esp_openthread_uart.c.obj) - 0x4200c024 esp_openthread_host_cli_uart_init - .text.esp_openthread_host_rcp_uart_init - 0x4200c02c 0x86 esp-idf/openthread/libopenthread.a(esp_openthread_uart.c.obj) - 0x4200c02c esp_openthread_host_rcp_uart_init - .text.esp_openthread_uart_deinit - 0x4200c0b2 0x3e esp-idf/openthread/libopenthread.a(esp_openthread_uart.c.obj) - 0x4200c0b2 esp_openthread_uart_deinit - .text._ZNK2ot3Mac5Frame20GetFrameControlFieldEv.isra.0 - 0x4200c0f0 0x10 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - .text.otMacFrameIsAckRequested - 0x4200c100 0x1a esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - 0x4200c100 otMacFrameIsAckRequested - .text.otMacFrameIsVersion2015 - 0x4200c11a 0x22 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - 0x4200c11a otMacFrameIsVersion2015 - .text.otMacFrameGenerateEnhAck - 0x4200c13c 0x34 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - 0x4200c13c otMacFrameGenerateEnhAck - .text.otMacFrameIsSecurityEnabled - 0x4200c170 0x1a esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - 0x4200c170 otMacFrameIsSecurityEnabled - .text.otMacFrameIsKeyIdMode1 - 0x4200c18a 0x2c esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - 0x4200c18a otMacFrameIsKeyIdMode1 - .text.otMacFrameGetKeyId - 0x4200c1b6 0x24 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - 0x4200c1b6 otMacFrameGetKeyId - .text.otMacFrameSetKeyId - 0x4200c1da 0x4 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - 0x4200c1da otMacFrameSetKeyId - .text.otMacFrameSetFrameCounter - 0x4200c1de 0x4 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - 0x4200c1de otMacFrameSetFrameCounter - .text.otInstanceInitSingle - 0x4200c1e2 0x2 esp-idf/openthread/libopenthread.a(instance_api.cpp.obj) - 0x4200c1e2 otInstanceInitSingle - .text.otInstanceIsInitialized - 0x4200c1e4 0x4 esp-idf/openthread/libopenthread.a(instance_api.cpp.obj) - 0x4200c1e4 otInstanceIsInitialized - .text.otInstanceReset - 0x4200c1e8 0x2 esp-idf/openthread/libopenthread.a(instance_api.cpp.obj) - 0x4200c1e8 otInstanceReset - .text.otInstanceResetRadioStack - 0x4200c1ea 0x2 esp-idf/openthread/libopenthread.a(instance_api.cpp.obj) - 0x4200c1ea otInstanceResetRadioStack - .text.otGetVersionString - 0x4200c1ec 0xa esp-idf/openthread/libopenthread.a(instance_api.cpp.obj) - 0x4200c1ec otGetVersionString - .text.otTaskletsProcess - 0x4200c1f6 0x1e esp-idf/openthread/libopenthread.a(tasklet_api.cpp.obj) - 0x4200c1f6 otTaskletsProcess - .text.otTaskletsArePending - 0x4200c214 0x1e esp-idf/openthread/libopenthread.a(tasklet_api.cpp.obj) - 0x4200c214 otTaskletsArePending - .text._ZN2ot7Tasklet9Scheduler11PostTaskletERS0_ - 0x4200c232 0x1e esp-idf/openthread/libopenthread.a(tasklet.cpp.obj) - 0x4200c232 ot::Tasklet::Scheduler::PostTasklet(ot::Tasklet&) - .text._ZN2ot7Tasklet4PostEv - 0x4200c250 0x14 esp-idf/openthread/libopenthread.a(tasklet.cpp.obj) - 0x4200c250 ot::Tasklet::Post() - .text._ZN2ot7Tasklet9Scheduler21ProcessQueuedTaskletsEv - 0x4200c264 0x30 esp-idf/openthread/libopenthread.a(tasklet.cpp.obj) - 0x4200c264 ot::Tasklet::Scheduler::ProcessQueuedTasklets() - .text._ZNK2ot5Timer14DoesFireBeforeERKS0_NS_4TimeE - 0x4200c294 0x20 esp-idf/openthread/libopenthread.a(timer.cpp.obj) - 0x4200c294 ot::Timer::DoesFireBefore(ot::Timer const&, ot::Time) const - .text._ZN2ot5Timer9Scheduler8SetAlarmERKNS1_8AlarmApiE - 0x4200c2b4 0x44 esp-idf/openthread/libopenthread.a(timer.cpp.obj) - 0x4200c2b4 ot::Timer::Scheduler::SetAlarm(ot::Timer::Scheduler::AlarmApi const&) - .text._ZN2ot5Timer9Scheduler6RemoveERS0_RKNS1_8AlarmApiE - 0x4200c2f8 0x50 esp-idf/openthread/libopenthread.a(timer.cpp.obj) - 0x4200c2f8 ot::Timer::Scheduler::Remove(ot::Timer&, ot::Timer::Scheduler::AlarmApi const&) - .text._ZN2ot5Timer9Scheduler3AddERS0_RKNS1_8AlarmApiE - 0x4200c348 0x64 esp-idf/openthread/libopenthread.a(timer.cpp.obj) - 0x4200c348 ot::Timer::Scheduler::Add(ot::Timer&, ot::Timer::Scheduler::AlarmApi const&) - .text._ZN2ot5Timer9Scheduler13ProcessTimersERKNS1_8AlarmApiE - 0x4200c3ac 0x42 esp-idf/openthread/libopenthread.a(timer.cpp.obj) - 0x4200c3ac ot::Timer::Scheduler::ProcessTimers(ot::Timer::Scheduler::AlarmApi const&) - .text.otPlatAlarmMilliFired - 0x4200c3ee 0x28 esp-idf/openthread/libopenthread.a(timer.cpp.obj) - 0x4200c3ee otPlatAlarmMilliFired - .text._ZN2ot10TimerMicro6FireAtENS_4TimeE - 0x4200c416 0x18 esp-idf/openthread/libopenthread.a(timer.cpp.obj) - 0x4200c416 ot::TimerMicro::FireAt(ot::Time) - .text._ZN2ot10TimerMicro7StartAtENS_4TimeEm - 0x4200c42e 0x2c esp-idf/openthread/libopenthread.a(timer.cpp.obj) - 0x4200c42e ot::TimerMicro::StartAt(ot::Time, unsigned long) - .text._ZN2ot10TimerMicro5StartEm - 0x4200c45a 0x26 esp-idf/openthread/libopenthread.a(timer.cpp.obj) - 0x4200c45a ot::TimerMicro::Start(unsigned long) - .text._ZN2ot10TimerMicro4StopEv - 0x4200c480 0x16 esp-idf/openthread/libopenthread.a(timer.cpp.obj) - 0x4200c480 ot::TimerMicro::Stop() - .text.otPlatAlarmMicroFired - 0x4200c496 0x28 esp-idf/openthread/libopenthread.a(timer.cpp.obj) - 0x4200c496 otPlatAlarmMicroFired - .text._ZN2ot8InstanceC2Ev - 0x4200c4be 0x38 esp-idf/openthread/libopenthread.a(instance.cpp.obj) - 0x4200c4be ot::Instance::Instance() - 0x4200c4be ot::Instance::Instance() - .text._ZN2ot8Instance10InitSingleEv - 0x4200c4f6 0x30 esp-idf/openthread/libopenthread.a(instance.cpp.obj) - 0x4200c4f6 ot::Instance::InitSingle() - .text._ZN2ot8Instance3GetEv - 0x4200c526 0xa esp-idf/openthread/libopenthread.a(instance.cpp.obj) - 0x4200c526 ot::Instance::Get() - .text._ZN2ot8Instance5ResetEv - 0x4200c530 0x4 esp-idf/openthread/libopenthread.a(instance.cpp.obj) - 0x4200c530 ot::Instance::Reset() - .text._ZN2ot8Instance15ResetRadioStackEv - 0x4200c534 0x1e esp-idf/openthread/libopenthread.a(instance.cpp.obj) - 0x4200c534 ot::Instance::ResetRadioStack() - .text._ZN2ot3Mac7LinkRaw4InitEv - 0x4200c552 0x1e esp-idf/openthread/libopenthread.a(link_raw.cpp.obj) - 0x4200c552 ot::Mac::LinkRaw::Init() - .text._ZN2ot3Mac7LinkRawC2ERNS_8InstanceE - 0x4200c570 0x30 esp-idf/openthread/libopenthread.a(link_raw.cpp.obj) - 0x4200c570 ot::Mac::LinkRaw::LinkRaw(ot::Instance&) - 0x4200c570 ot::Mac::LinkRaw::LinkRaw(ot::Instance&) - .text._ZN2ot3Mac7LinkRaw14SetReceiveDoneEPFvP10otInstanceP12otRadioFrame7otErrorE - 0x4200c5a0 0x28 esp-idf/openthread/libopenthread.a(link_raw.cpp.obj) - 0x4200c5a0 ot::Mac::LinkRaw::SetReceiveDone(void (*)(otInstance*, otRadioFrame*, otError)) - .text._ZN2ot3Mac7LinkRaw8SetPanIdEt - 0x4200c5c8 0x28 esp-idf/openthread/libopenthread.a(link_raw.cpp.obj) - 0x4200c5c8 ot::Mac::LinkRaw::SetPanId(unsigned short) - .text._ZN2ot3Mac7LinkRaw10SetChannelEh - 0x4200c5f0 0x10 esp-idf/openthread/libopenthread.a(link_raw.cpp.obj) - 0x4200c5f0 ot::Mac::LinkRaw::SetChannel(unsigned char) - .text._ZN2ot3Mac7LinkRaw13SetExtAddressERKNS0_10ExtAddressE - 0x4200c600 0x20 esp-idf/openthread/libopenthread.a(link_raw.cpp.obj) - 0x4200c600 ot::Mac::LinkRaw::SetExtAddress(ot::Mac::ExtAddress const&) - .text._ZN2ot3Mac7LinkRaw15SetShortAddressEt - 0x4200c620 0x20 esp-idf/openthread/libopenthread.a(link_raw.cpp.obj) - 0x4200c620 ot::Mac::LinkRaw::SetShortAddress(unsigned short) - .text._ZN2ot3Mac7LinkRaw24SetAlternateShortAddressEt - 0x4200c640 0x20 esp-idf/openthread/libopenthread.a(link_raw.cpp.obj) - 0x4200c640 ot::Mac::LinkRaw::SetAlternateShortAddress(unsigned short) - .text._ZN2ot3Mac7LinkRaw7ReceiveEv - 0x4200c660 0x12 esp-idf/openthread/libopenthread.a(link_raw.cpp.obj) - 0x4200c660 ot::Mac::LinkRaw::Receive() - .text._ZN2ot3Mac7LinkRaw17InvokeReceiveDoneEPNS0_7RxFrameE7otError - 0x4200c672 0x12 esp-idf/openthread/libopenthread.a(link_raw.cpp.obj) - 0x4200c672 ot::Mac::LinkRaw::InvokeReceiveDone(ot::Mac::RxFrame*, otError) - .text._ZN2ot3Mac7LinkRaw8TransmitEPFvP10otInstanceP12otRadioFrameS5_7otErrorE - 0x4200c684 0x26 esp-idf/openthread/libopenthread.a(link_raw.cpp.obj) - 0x4200c684 ot::Mac::LinkRaw::Transmit(void (*)(otInstance*, otRadioFrame*, otRadioFrame*, otError)) - .text._ZN2ot3Mac7LinkRaw18InvokeTransmitDoneERNS0_7TxFrameEPNS0_7RxFrameE7otError - 0x4200c6aa 0x26 esp-idf/openthread/libopenthread.a(link_raw.cpp.obj) - 0x4200c6aa ot::Mac::LinkRaw::InvokeTransmitDone(ot::Mac::TxFrame&, ot::Mac::RxFrame*, otError) - .text._ZN2ot3Mac7LinkRaw10EnergyScanEhtPFvP10otInstanceaE - 0x4200c6d0 0x26 esp-idf/openthread/libopenthread.a(link_raw.cpp.obj) - 0x4200c6d0 ot::Mac::LinkRaw::EnergyScan(unsigned char, unsigned short, void (*)(otInstance*, signed char)) - .text._ZN2ot3Mac7LinkRaw20InvokeEnergyScanDoneEa - 0x4200c6f6 0x2a esp-idf/openthread/libopenthread.a(link_raw.cpp.obj) - 0x4200c6f6 ot::Mac::LinkRaw::InvokeEnergyScanDone(signed char) - .text._ZN2ot3Mac7LinkRaw9SetMacKeyEhhRKNS0_3KeyES4_S4_ - 0x4200c720 0x78 esp-idf/openthread/libopenthread.a(link_raw.cpp.obj) - 0x4200c720 ot::Mac::LinkRaw::SetMacKey(unsigned char, unsigned char, ot::Mac::Key const&, ot::Mac::Key const&, ot::Mac::Key const&) - .text._ZN2ot3Mac7LinkRaw18SetMacFrameCounterEmb - 0x4200c798 0x20 esp-idf/openthread/libopenthread.a(link_raw.cpp.obj) - 0x4200c798 ot::Mac::LinkRaw::SetMacFrameCounter(unsigned long, bool) - .text._ZNK2ot3Mac5Frame20GetFrameControlFieldEv.isra.0 - 0x4200c7b8 0x10 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - .text._ZNK2ot3Mac5Frame18GetSecurityEnabledEv.isra.0 - 0x4200c7c8 0x18 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - .text._ZN2ot3Mac5Frame20SetFrameControlFieldEt - 0x4200c7e0 0xe esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - 0x4200c7e0 ot::Mac::Frame::SetFrameControlField(unsigned short) - .text._ZN2ot3Mac5Frame15SetFramePendingEb - 0x4200c7ee 0x2e esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - 0x4200c7ee ot::Mac::Frame::SetFramePending(bool) - .text._ZN2ot3Mac5Frame12SetIePresentEb - 0x4200c81c 0x2e esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - 0x4200c81c ot::Mac::Frame::SetIePresent(bool) - .text._ZNK2ot3Mac5Frame17SkipSequenceIndexEv - 0x4200c84a 0x20 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - 0x4200c84a ot::Mac::Frame::SkipSequenceIndex() const - .text._ZN2ot3Mac5Frame17IsDstPanIdPresentEt - 0x4200c86a 0x82 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - 0x4200c86a ot::Mac::Frame::IsDstPanIdPresent(unsigned short) - .text._ZNK2ot3Mac5Frame17FindDstPanIdIndexEv - 0x4200c8ec 0x2a esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - 0x4200c8ec ot::Mac::Frame::FindDstPanIdIndex() const - .text._ZNK2ot3Mac5Frame11GetDstPanIdERt - 0x4200c916 0x3a esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - 0x4200c916 ot::Mac::Frame::GetDstPanId(unsigned short&) const - .text._ZNK2ot3Mac5Frame11GetSequenceEv - 0x4200c950 0x34 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - 0x4200c950 ot::Mac::Frame::GetSequence() const - .text._ZN2ot3Mac5Frame11SetSequenceEh - 0x4200c984 0x36 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - 0x4200c984 ot::Mac::Frame::SetSequence(unsigned char) - .text._ZNK2ot3Mac5Frame16FindDstAddrIndexEv - 0x4200c9ba 0x2a esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - 0x4200c9ba ot::Mac::Frame::FindDstAddrIndex() const - .text._ZNK2ot3Mac5Frame10GetDstAddrERNS0_7AddressE - 0x4200c9e4 0x62 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - 0x4200c9e4 ot::Mac::Frame::GetDstAddr(ot::Mac::Address&) const - .text._ZN2ot3Mac5Frame17IsSrcPanIdPresentEt - 0x4200ca46 0x32 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - 0x4200ca46 ot::Mac::Frame::IsSrcPanIdPresent(unsigned short) - .text._ZNK2ot3Mac5Frame17FindSrcPanIdIndexEv - 0x4200ca78 0x58 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - 0x4200ca78 ot::Mac::Frame::FindSrcPanIdIndex() const - .text._ZNK2ot3Mac5Frame11GetSrcPanIdERt - 0x4200cad0 0x3a esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - 0x4200cad0 ot::Mac::Frame::GetSrcPanId(unsigned short&) const - .text._ZNK2ot3Mac5Frame16FindSrcAddrIndexEv - 0x4200cb0a 0x5c esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - 0x4200cb0a ot::Mac::Frame::FindSrcAddrIndex() const - .text._ZNK2ot3Mac5Frame10GetSrcAddrERNS0_7AddressE - 0x4200cb66 0x6a esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - 0x4200cb66 ot::Mac::Frame::GetSrcAddr(ot::Mac::Address&) const - .text._ZN2ot3Mac5Frame22CalculateKeySourceSizeEh - 0x4200cbd0 0x16 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - 0x4200cbd0 ot::Mac::Frame::CalculateKeySourceSize(unsigned char) - .text._ZN2ot3Mac5Frame16CalculateMicSizeEh - 0x4200cbe6 0x28 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - 0x4200cbe6 ot::Mac::Frame::CalculateMicSize(unsigned char) - .text._ZN2ot3Mac5Frame20DetermineFcfAddrTypeERKNS0_7AddressEt - 0x4200cc0e 0x20 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - 0x4200cc0e ot::Mac::Frame::DetermineFcfAddrType(ot::Mac::Address const&, unsigned short) - .text._ZN2ot3Mac5Frame27CalculateSecurityHeaderSizeEh - 0x4200cc2e 0x30 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - 0x4200cc2e ot::Mac::Frame::CalculateSecurityHeaderSize(unsigned char) - .text._ZNK2ot3Mac7TxFrame4Info16PrepareHeadersInERS1_ - 0x4200cc5e 0x1f0 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - 0x4200cc5e ot::Mac::TxFrame::Info::PrepareHeadersIn(ot::Mac::TxFrame&) const - .text._ZN2ot3Mac5Frame22CalculateAddrFieldSizeEt - 0x4200ce4e 0x7a esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - 0x4200ce4e ot::Mac::Frame::CalculateAddrFieldSize(unsigned short) - .text._ZNK2ot3Mac5Frame18SkipAddrFieldIndexEv - 0x4200cec8 0x2a esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - 0x4200cec8 ot::Mac::Frame::SkipAddrFieldIndex() const - .text._ZNK2ot3Mac5Frame23FindSecurityHeaderIndexEv - 0x4200cef2 0x36 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - 0x4200cef2 ot::Mac::Frame::FindSecurityHeaderIndex() const - .text._ZNK2ot3Mac5Frame16GetSecurityLevelERh - 0x4200cf28 0x34 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - 0x4200cf28 ot::Mac::Frame::GetSecurityLevel(unsigned char&) const - .text._ZNK2ot3Mac5Frame12GetKeyIdModeERh - 0x4200cf5c 0x34 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - 0x4200cf5c ot::Mac::Frame::GetKeyIdMode(unsigned char&) const - .text._ZNK2ot3Mac5Frame15GetFrameCounterERm - 0x4200cf90 0x50 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - 0x4200cf90 ot::Mac::Frame::GetFrameCounter(unsigned long&) const - .text._ZN2ot3Mac5Frame15SetFrameCounterEm - 0x4200cfe0 0x64 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - 0x4200cfe0 ot::Mac::Frame::SetFrameCounter(unsigned long) - .text._ZNK2ot3Mac5Frame8GetKeyIdERh - 0x4200d044 0x3c esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - 0x4200d044 ot::Mac::Frame::GetKeyId(unsigned char&) const - .text._ZN2ot3Mac5Frame8SetKeyIdEh - 0x4200d080 0x44 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - 0x4200d080 ot::Mac::Frame::SetKeyId(unsigned char) - .text._ZNK2ot3Mac5Frame15GetFooterLengthEv - 0x4200d0c4 0x34 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - 0x4200d0c4 ot::Mac::Frame::GetFooterLength() const - .text._ZNK2ot3Mac5Frame23SkipSecurityHeaderIndexEv - 0x4200d0f8 0x54 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - 0x4200d0f8 ot::Mac::Frame::SkipSecurityHeaderIndex() const - .text._ZNK2ot3Mac5Frame16FindPayloadIndexEv - 0x4200d14c 0xa6 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - 0x4200d14c ot::Mac::Frame::FindPayloadIndex() const - .text._ZNK2ot3Mac5Frame10GetPayloadEv - 0x4200d1f2 0x26 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - 0x4200d1f2 ot::Mac::Frame::GetPayload() const - .text._ZNK2ot3Mac5Frame15GetHeaderLengthEv - 0x4200d218 0x1e esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - 0x4200d218 ot::Mac::Frame::GetHeaderLength() const - .text._ZNK2ot3Mac5Frame16GetPayloadLengthEv - 0x4200d236 0x2c esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - 0x4200d236 ot::Mac::Frame::GetPayloadLength() const - .text._ZNK2ot3Mac5Frame9GetFooterEv - 0x4200d262 0x22 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - 0x4200d262 ot::Mac::Frame::GetFooter() const - .text._ZNK2ot3Mac5Frame17FindHeaderIeIndexEv - 0x4200d284 0x2a esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - 0x4200d284 ot::Mac::Frame::FindHeaderIeIndex() const - .text._ZN2ot3Mac7TxFrame21ProcessTransmitAesCcmERKNS0_10ExtAddressE - 0x4200d2ae 0xd0 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - 0x4200d2ae ot::Mac::TxFrame::ProcessTransmitAesCcm(ot::Mac::ExtAddress const&) - .text._ZN2ot3Mac7TxFrame14GenerateEnhAckERKNS0_7RxFrameEbPKhh - 0x4200d37e 0x1aa esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - 0x4200d37e ot::Mac::TxFrame::GenerateEnhAck(ot::Mac::RxFrame const&, bool, unsigned char const*, unsigned char) - .text._ZN2ot3Mac8HeaderIe4InitEth - 0x4200d528 0x20 esp-idf/openthread/libopenthread.a(mac_header_ie.cpp.obj) - 0x4200d528 ot::Mac::HeaderIe::Init(unsigned short, unsigned char) - .text._ZN2ot3Mac10ExtAddress11CopyAddressEPhPKhNS1_13CopyByteOrderE - 0x4200d548 0x2e esp-idf/openthread/libopenthread.a(mac_types.cpp.obj) - 0x4200d548 ot::Mac::ExtAddress::CopyAddress(unsigned char*, unsigned char const*, ot::Mac::ExtAddress::CopyByteOrder) - .text._ZN2ot3Mac6PanIds14SetDestinationEt - 0x4200d576 0xc esp-idf/openthread/libopenthread.a(mac_types.cpp.obj) - 0x4200d576 ot::Mac::PanIds::SetDestination(unsigned short) - .text._ZN2ot3Mac11KeyMaterial5ClearEv - 0x4200d582 0xc esp-idf/openthread/libopenthread.a(mac_types.cpp.obj) - 0x4200d582 ot::Mac::KeyMaterial::Clear() - .text._ZN2ot3Mac11KeyMaterial7SetFromERKNS0_3KeyEb - 0x4200d58e 0xa esp-idf/openthread/libopenthread.a(mac_types.cpp.obj) - 0x4200d58e ot::Mac::KeyMaterial::SetFrom(ot::Mac::Key const&, bool) - .text._ZNK2ot3Mac11KeyMaterial18ConvertToCryptoKeyERNS_6Crypto3KeyE - 0x4200d598 0xa esp-idf/openthread/libopenthread.a(mac_types.cpp.obj) - 0x4200d598 ot::Mac::KeyMaterial::ConvertToCryptoKey(ot::Crypto::Key&) const - .text._ZN2ot3Mac6SubMac4InitEv - 0x4200d5a2 0x76 esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - 0x4200d5a2 ot::Mac::SubMac::Init() - .text._ZN2ot3Mac6SubMacC2ERNS_8InstanceE - 0x4200d618 0x8a esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - 0x4200d618 ot::Mac::SubMac::SubMac(ot::Instance&) - 0x4200d618 ot::Mac::SubMac::SubMac(ot::Instance&) - .text._ZNK2ot3Mac6SubMac7GetCapsEv - 0x4200d6a2 0xa esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - 0x4200d6a2 ot::Mac::SubMac::GetCaps() const - .text._ZN2ot3Mac6SubMac8SetPanIdEt - 0x4200d6ac 0xc esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - 0x4200d6ac ot::Mac::SubMac::SetPanId(unsigned short) - .text._ZN2ot3Mac6SubMac15SetShortAddressEt - 0x4200d6b8 0x10 esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - 0x4200d6b8 ot::Mac::SubMac::SetShortAddress(unsigned short) - .text._ZN2ot3Mac6SubMac24SetAlternateShortAddressEt - 0x4200d6c8 0x2a esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - 0x4200d6c8 ot::Mac::SubMac::SetAlternateShortAddress(unsigned short) - .text._ZN2ot3Mac6SubMac13SetExtAddressERKNS0_10ExtAddressE - 0x4200d6f2 0x2c esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - 0x4200d6f2 ot::Mac::SubMac::SetExtAddress(ot::Mac::ExtAddress const&) - .text._ZN2ot3Mac6SubMac15SetRxOnWhenIdleEb - 0x4200d71e 0x28 esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - 0x4200d71e ot::Mac::SubMac::SetRxOnWhenIdle(bool) - .text._ZN2ot3Mac6SubMac6EnableEv - 0x4200d746 0x56 esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - 0x4200d746 ot::Mac::SubMac::Enable() - .text._ZN2ot3Mac6SubMac7DisableEv - 0x4200d79c 0x3c esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - 0x4200d79c ot::Mac::SubMac::Disable() - .text._ZN2ot3Mac6SubMac7ReceiveEh - 0x4200d7d8 0x2e esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - 0x4200d7d8 ot::Mac::SubMac::Receive(unsigned char) - .text._ZN2ot3Mac6SubMac20StartTimerForBackoffEh - 0x4200d806 0x54 esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - 0x4200d806 ot::Mac::SubMac::StartTimerForBackoff(unsigned char) - .text._ZN2ot3Mac6SubMac13BeginTransmitEv - 0x4200d85a 0xa0 esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - 0x4200d85a ot::Mac::SubMac::BeginTransmit() - .text._ZN2ot3Mac6SubMac21HandleTransmitStartedERNS0_7TxFrameE - 0x4200d8fa 0x10 esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - 0x4200d8fa ot::Mac::SubMac::HandleTransmitStarted(ot::Mac::TxFrame&) - .text._ZN2ot3Mac6SubMac10EnergyScanEht - 0x4200d90a 0x52 esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - 0x4200d90a ot::Mac::SubMac::EnergyScan(unsigned char, unsigned short) - .text._ZN2ot3Mac6SubMac20HandleEnergyScanDoneEa - 0x4200d95c 0x12 esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - 0x4200d95c ot::Mac::SubMac::HandleEnergyScanDone(signed char) - .text._ZN2ot3Mac6SubMac10SampleRssiEv - 0x4200d96e 0x76 esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - 0x4200d96e ot::Mac::SubMac::SampleRssi() - .text._ZNK2ot3Mac6SubMac28ShouldHandleTransmitSecurityEv - 0x4200d9e4 0xc esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - 0x4200d9e4 ot::Mac::SubMac::ShouldHandleTransmitSecurity() const - .text._ZNK2ot3Mac6SubMac23ShouldHandleCsmaBackOffEv - 0x4200d9f0 0x1a esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - 0x4200d9f0 ot::Mac::SubMac::ShouldHandleCsmaBackOff() const - .text._ZNK2ot3Mac6SubMac19ShouldHandleRetriesEv - 0x4200da0a 0xc esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - 0x4200da0a ot::Mac::SubMac::ShouldHandleRetries() const - .text._ZNK2ot3Mac6SubMac30ShouldHandleTransmitTargetTimeEv - 0x4200da16 0xc esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - 0x4200da16 ot::Mac::SubMac::ShouldHandleTransmitTargetTime() const - .text._ZN2ot3Mac6SubMac16StartCsmaBackoffEv - 0x4200da22 0xa8 esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - 0x4200da22 ot::Mac::SubMac::StartCsmaBackoff() - .text._ZN2ot3Mac6SubMac9SetMacKeyEhhRKNS0_11KeyMaterialES4_S4_ - 0x4200daca 0x90 esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - 0x4200daca ot::Mac::SubMac::SetMacKey(unsigned char, unsigned char, ot::Mac::KeyMaterial const&, ot::Mac::KeyMaterial const&, ot::Mac::KeyMaterial const&) - .text._ZN2ot3Mac6SubMac22SignalFrameCounterUsedEmh - 0x4200db5a 0x2c esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - 0x4200db5a ot::Mac::SubMac::SignalFrameCounterUsed(unsigned long, unsigned char) - .text._ZN2ot3Mac6SubMac17HandleReceiveDoneEPNS0_7RxFrameE7otError - 0x4200db86 0x50 esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - 0x4200db86 ot::Mac::SubMac::HandleReceiveDone(ot::Mac::RxFrame*, otError) - .text._ZN2ot3Mac6SubMac23ProcessTransmitSecurityEv - 0x4200dbd6 0x82 esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - 0x4200dbd6 ot::Mac::SubMac::ProcessTransmitSecurity() - .text._ZN2ot3Mac6SubMac4SendEv - 0x4200dc58 0x38 esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - 0x4200dc58 ot::Mac::SubMac::Send() - .text._ZN2ot3Mac6SubMac30SignalFrameCounterUsedOnTxDoneERKNS0_7TxFrameE - 0x4200dc90 0x96 esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - 0x4200dc90 ot::Mac::SubMac::SignalFrameCounterUsedOnTxDone(ot::Mac::TxFrame const&) - .text._ZN2ot3Mac6SubMac18HandleTransmitDoneERNS0_7TxFrameEPNS0_7RxFrameE7otError - 0x4200dd26 0x154 esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - 0x4200dd26 ot::Mac::SubMac::HandleTransmitDone(ot::Mac::TxFrame&, ot::Mac::RxFrame*, otError) - .text._ZN2ot3Mac6SubMac11HandleTimerEv - 0x4200de7a 0x6c esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - 0x4200de7a ot::Mac::SubMac::HandleTimer() - .text._ZN2ot12TimerMicroInINS_3Mac6SubMacEXadL_ZNS2_11HandleTimerEvEEE11HandleTimerERNS_5TimerE - 0x4200dee6 0xc esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - 0x4200dee6 ot::TimerMicroIn::HandleTimer(ot::Timer&) - .text._ZN2ot3Mac6SubMac15SetFrameCounterEmb - 0x4200def2 0x3e esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - 0x4200def2 ot::Mac::SubMac::SetFrameCounter(unsigned long, bool) - .text._ZN2ot3Mac6SubMac9CallbacksC2ERNS_8InstanceE - 0x4200df30 0x2 esp-idf/openthread/libopenthread.a(sub_mac_callbacks.cpp.obj) - 0x4200df30 ot::Mac::SubMac::Callbacks::Callbacks(ot::Instance&) - 0x4200df30 ot::Mac::SubMac::Callbacks::Callbacks(ot::Instance&) - .text._ZN2ot3Mac6SubMac9Callbacks11ReceiveDoneEPNS0_7RxFrameE7otError - 0x4200df32 0xc esp-idf/openthread/libopenthread.a(sub_mac_callbacks.cpp.obj) - 0x4200df32 ot::Mac::SubMac::Callbacks::ReceiveDone(ot::Mac::RxFrame*, otError) - .text._ZN2ot3Mac6SubMac9Callbacks15RecordCcaStatusEbh - 0x4200df3e 0x2 esp-idf/openthread/libopenthread.a(sub_mac_callbacks.cpp.obj) - 0x4200df3e ot::Mac::SubMac::Callbacks::RecordCcaStatus(bool, unsigned char) - .text._ZN2ot3Mac6SubMac9Callbacks25RecordFrameTransmitStatusERKNS0_7TxFrameE7otErrorhb - 0x4200df40 0x2 esp-idf/openthread/libopenthread.a(sub_mac_callbacks.cpp.obj) - 0x4200df40 ot::Mac::SubMac::Callbacks::RecordFrameTransmitStatus(ot::Mac::TxFrame const&, otError, unsigned char, bool) - .text._ZN2ot3Mac6SubMac9Callbacks12TransmitDoneERNS0_7TxFrameEPNS0_7RxFrameE7otError - 0x4200df42 0xc esp-idf/openthread/libopenthread.a(sub_mac_callbacks.cpp.obj) - 0x4200df42 ot::Mac::SubMac::Callbacks::TransmitDone(ot::Mac::TxFrame&, ot::Mac::RxFrame*, otError) - .text._ZN2ot3Mac6SubMac9Callbacks14EnergyScanDoneEa - 0x4200df4e 0xc esp-idf/openthread/libopenthread.a(sub_mac_callbacks.cpp.obj) - 0x4200df4e ot::Mac::SubMac::Callbacks::EnergyScanDone(signed char) - .text._ZN2ot3Mac6SubMac9Callbacks16FrameCounterUsedEm - 0x4200df5a 0x2 esp-idf/openthread/libopenthread.a(sub_mac_callbacks.cpp.obj) - 0x4200df5a ot::Mac::SubMac::Callbacks::FrameCounterUsed(unsigned long) - .text._ZN2ot5Radio18SetExtendedAddressERKNS_3Mac10ExtAddressE - 0x4200df5c 0x2a esp-idf/openthread/libopenthread.a(radio.cpp.obj) - 0x4200df5c ot::Radio::SetExtendedAddress(ot::Mac::ExtAddress const&) - .text._ZN2ot5Radio4InitEv - 0x4200df86 0xf2 esp-idf/openthread/libopenthread.a(radio.cpp.obj) - 0x4200df86 ot::Radio::Init() - .text._ZN2ot5Radio15SetShortAddressEt - 0x4200e078 0xc esp-idf/openthread/libopenthread.a(radio.cpp.obj) - 0x4200e078 ot::Radio::SetShortAddress(unsigned short) - .text._ZN2ot5Radio19AddSrcMatchExtEntryERKNS_3Mac10ExtAddressE - 0x4200e084 0x2a esp-idf/openthread/libopenthread.a(radio.cpp.obj) - 0x4200e084 ot::Radio::AddSrcMatchExtEntry(ot::Mac::ExtAddress const&) - .text._ZN2ot5Radio21ClearSrcMatchExtEntryERKNS_3Mac10ExtAddressE - 0x4200e0ae 0x2a esp-idf/openthread/libopenthread.a(radio.cpp.obj) - 0x4200e0ae ot::Radio::ClearSrcMatchExtEntry(ot::Mac::ExtAddress const&) - .text._ZN2ot5Radio8TransmitERNS_3Mac7TxFrameE - 0x4200e0d8 0xc esp-idf/openthread/libopenthread.a(radio.cpp.obj) - 0x4200e0d8 ot::Radio::Transmit(ot::Mac::TxFrame&) - .text.otPlatRadioReceiveDone - 0x4200e0e4 0x1e esp-idf/openthread/libopenthread.a(radio_platform.cpp.obj) - 0x4200e0e4 otPlatRadioReceiveDone - .text.otPlatRadioTxStarted - 0x4200e102 0x1e esp-idf/openthread/libopenthread.a(radio_platform.cpp.obj) - 0x4200e102 otPlatRadioTxStarted - .text.otPlatRadioTxDone - 0x4200e120 0x1e esp-idf/openthread/libopenthread.a(radio_platform.cpp.obj) - 0x4200e120 otPlatRadioTxDone - .text.otPlatRadioEnergyScanDone - 0x4200e13e 0x1e esp-idf/openthread/libopenthread.a(radio_platform.cpp.obj) - 0x4200e13e otPlatRadioEnergyScanDone - .text.otPlatRadioSetAlternateShortAddress - 0x4200e15c 0x2 esp-idf/openthread/libopenthread.a(radio_platform.cpp.obj) - 0x4200e15c otPlatRadioSetAlternateShortAddress - .text.otPlatRadioGetFemLnaGain - 0x4200e15e 0x4 esp-idf/openthread/libopenthread.a(radio_platform.cpp.obj) - 0x4200e15e otPlatRadioGetFemLnaGain - .text.otPlatRadioSetFemLnaGain - 0x4200e162 0x4 esp-idf/openthread/libopenthread.a(radio_platform.cpp.obj) - 0x4200e162 otPlatRadioSetFemLnaGain - .text.otPlatRadioSetRegion - 0x4200e166 0x4 esp-idf/openthread/libopenthread.a(radio_platform.cpp.obj) - 0x4200e166 otPlatRadioSetRegion - .text.otPlatRadioGetRegion - 0x4200e16a 0x4 esp-idf/openthread/libopenthread.a(radio_platform.cpp.obj) - 0x4200e16a otPlatRadioGetRegion - .text.otPlatUartReceived - 0x4200e16e 0x4 esp-idf/openthread/libopenthread.a(ncp.c.obj) - 0x4200e16e otPlatUartReceived - .text.otPlatUartSendDone - 0x4200e172 0x4 esp-idf/openthread/libopenthread.a(ncp.c.obj) - 0x4200e172 otPlatUartSendDone - .text.NcpSend 0x4200e176 0x18 esp-idf/openthread/libopenthread.a(esp_openthread_ncp.cpp.obj) - .text.otAppNcpInit - 0x4200e18e 0x22 esp-idf/openthread/libopenthread.a(esp_openthread_ncp.cpp.obj) - 0x4200e18e otAppNcpInit - .text._ZN2ot3Ncp7NcpBase20VendorCommandHandlerEhj - 0x4200e1b0 0x2e esp-idf/openthread/libopenthread.a(esp_openthread_ncp.cpp.obj) - 0x4200e1b0 ot::Ncp::NcpBase::VendorCommandHandler(unsigned char, unsigned int) - .text._ZN2ot3Ncp7NcpBase37VendorHandleFrameRemovedFromNcpBufferEPKv - 0x4200e1de 0x2 esp-idf/openthread/libopenthread.a(esp_openthread_ncp.cpp.obj) - 0x4200e1de ot::Ncp::NcpBase::VendorHandleFrameRemovedFromNcpBuffer(void const*) - .text._ZN2ot3Ncp7NcpBase24VendorGetPropertyHandlerEm - 0x4200e1e0 0x10 esp-idf/openthread/libopenthread.a(esp_openthread_ncp.cpp.obj) - 0x4200e1e0 ot::Ncp::NcpBase::VendorGetPropertyHandler(unsigned long) - .text._ZN2ot3Ncp7NcpBase24VendorSetPropertyHandlerEm - 0x4200e1f0 0x64 esp-idf/openthread/libopenthread.a(esp_openthread_ncp.cpp.obj) - 0x4200e1f0 ot::Ncp::NcpBase::VendorSetPropertyHandler(unsigned long) - .text.otNcpHdlcInit - 0x4200e254 0x3a esp-idf/openthread/libopenthread.a(esp_openthread_ncp_hdlc.cpp.obj) - 0x4200e254 otNcpHdlcInit - .text.otPlatLog - 0x4200e28e 0x14 esp-idf/openthread/libopenthread.a(esp_openthread_logging.c.obj) - 0x4200e28e otPlatLog - .text.otPlatReset - 0x4200e2a2 0x4 esp-idf/openthread/libopenthread.a(esp_openthread_misc.c.obj) - 0x4200e2a2 otPlatReset - .text.otPlatGetResetReason - 0x4200e2a6 0x50 esp-idf/openthread/libopenthread.a(esp_openthread_misc.c.obj) - 0x4200e2a6 otPlatGetResetReason - .text.otPlatWakeHost - 0x4200e2f6 0x2 esp-idf/openthread/libopenthread.a(esp_openthread_misc.c.obj) - 0x4200e2f6 otPlatWakeHost - .text.otPlatAssertFail - 0x4200e2f8 0x18 esp-idf/openthread/libopenthread.a(esp_openthread_misc.c.obj) - 0x4200e2f8 otPlatAssertFail - .text._ZN2ot12FrameBuilder4InitEPvt - 0x4200e310 0xc esp-idf/openthread/libopenthread.a(frame_builder.cpp.obj) - 0x4200e310 ot::FrameBuilder::Init(void*, unsigned short) - .text._ZN2ot12FrameBuilder11AppendBytesEPKvt - 0x4200e31c 0x40 esp-idf/openthread/libopenthread.a(frame_builder.cpp.obj) - 0x4200e31c ot::FrameBuilder::AppendBytes(void const*, unsigned short) - .text._ZN2ot12FrameBuilder11AppendUint8Eh - 0x4200e35c 0x22 esp-idf/openthread/libopenthread.a(frame_builder.cpp.obj) - 0x4200e35c ot::FrameBuilder::AppendUint8(unsigned char) - .text._ZN2ot12FrameBuilder24AppendLittleEndianUint16Et - 0x4200e37e 0x22 esp-idf/openthread/libopenthread.a(frame_builder.cpp.obj) - 0x4200e37e ot::FrameBuilder::AppendLittleEndianUint16(unsigned short) - .text._ZN2ot12FrameBuilder16AppendMacAddressERKNS_3Mac7AddressE - 0x4200e3a0 0x54 esp-idf/openthread/libopenthread.a(frame_builder.cpp.obj) - 0x4200e3a0 ot::FrameBuilder::AppendMacAddress(ot::Mac::Address const&) - .text._ZN2ot12FrameBuilder12AppendLengthEt - 0x4200e3f4 0x1e esp-idf/openthread/libopenthread.a(frame_builder.cpp.obj) - 0x4200e3f4 ot::FrameBuilder::AppendLength(unsigned short) - .text._ZN2ot6Random7Manager13NonCryptoPrng4InitEm - 0x4200e412 0x12 esp-idf/openthread/libopenthread.a(random.cpp.obj) - 0x4200e412 ot::Random::Manager::NonCryptoPrng::Init(unsigned long) - .text._ZN2ot6Random7ManagerC2Ev - 0x4200e424 0x6c esp-idf/openthread/libopenthread.a(random.cpp.obj) - 0x4200e424 ot::Random::Manager::Manager() - 0x4200e424 ot::Random::Manager::Manager() - .text._ZN2ot6Random7Manager13NonCryptoPrng7GetNextEv - 0x4200e490 0x2a esp-idf/openthread/libopenthread.a(random.cpp.obj) - 0x4200e490 ot::Random::Manager::NonCryptoPrng::GetNext() - .text._ZN2ot6Random7Manager18NonCryptoGetUint32Ev - 0x4200e4ba 0x38 esp-idf/openthread/libopenthread.a(random.cpp.obj) - 0x4200e4ba ot::Random::Manager::NonCryptoGetUint32() - .text._ZN2ot6Random9NonCrypto16GetUint32InRangeEmm - 0x4200e4f2 0x36 esp-idf/openthread/libopenthread.a(random.cpp.obj) - 0x4200e4f2 ot::Random::NonCrypto::GetUint32InRange(unsigned long, unsigned long) - .text._ZN2ot6Crypto6AesCcm6SetKeyERKNS_3Mac11KeyMaterialE - 0x4200e528 0x24 esp-idf/openthread/libopenthread.a(aes_ccm.cpp.obj) - 0x4200e528 ot::Crypto::AesCcm::SetKey(ot::Mac::KeyMaterial const&) - .text._ZN2ot6Crypto6AesCcm4InitEmmhPKvh - 0x4200e54c 0x19a esp-idf/openthread/libopenthread.a(aes_ccm.cpp.obj) - 0x4200e54c ot::Crypto::AesCcm::Init(unsigned long, unsigned long, unsigned char, void const*, unsigned char) - .text._ZN2ot6Crypto6AesCcm6HeaderEPKvm - 0x4200e6e6 0x90 esp-idf/openthread/libopenthread.a(aes_ccm.cpp.obj) - 0x4200e6e6 ot::Crypto::AesCcm::Header(void const*, unsigned long) - .text._ZN2ot6Crypto6AesCcm7PayloadEPvS2_mNS1_4ModeE - 0x4200e776 0x128 esp-idf/openthread/libopenthread.a(aes_ccm.cpp.obj) - 0x4200e776 ot::Crypto::AesCcm::Payload(void*, void*, unsigned long, ot::Crypto::AesCcm::Mode) - .text._ZN2ot6Crypto6AesCcm8FinalizeEPv - 0x4200e89e 0x5e esp-idf/openthread/libopenthread.a(aes_ccm.cpp.obj) - 0x4200e89e ot::Crypto::AesCcm::Finalize(void*) - .text._ZN2ot6Crypto6AesCcm13GenerateNonceERKNS_3Mac10ExtAddressEmhPh - 0x4200e8fc 0x42 esp-idf/openthread/libopenthread.a(aes_ccm.cpp.obj) - 0x4200e8fc ot::Crypto::AesCcm::GenerateNonce(ot::Mac::ExtAddress const&, unsigned long, unsigned char, unsigned char*) - .text._ZN2ot6Crypto6AesEcbC2Ev - 0x4200e93e 0x34 esp-idf/openthread/libopenthread.a(aes_ecb.cpp.obj) - 0x4200e93e ot::Crypto::AesEcb::AesEcb() - 0x4200e93e ot::Crypto::AesEcb::AesEcb() - .text._ZN2ot6Crypto6AesEcb6SetKeyERKNS0_3KeyE - 0x4200e972 0x26 esp-idf/openthread/libopenthread.a(aes_ecb.cpp.obj) - 0x4200e972 ot::Crypto::AesEcb::SetKey(ot::Crypto::Key const&) - .text._ZN2ot6Crypto6AesEcb7EncryptEPKhPh - 0x4200e998 0x26 esp-idf/openthread/libopenthread.a(aes_ecb.cpp.obj) - 0x4200e998 ot::Crypto::AesEcb::Encrypt(unsigned char const*, unsigned char*) - .text._ZN2ot6Crypto6AesEcbD2Ev - 0x4200e9be 0x26 esp-idf/openthread/libopenthread.a(aes_ecb.cpp.obj) - 0x4200e9be ot::Crypto::AesEcb::~AesEcb() - 0x4200e9be ot::Crypto::AesEcb::~AesEcb() - .text.otPlatCryptoAesInit - 0x4200e9e4 0x30 esp-idf/openthread/libopenthread.a(crypto_platform.cpp.obj) - 0x4200e9e4 otPlatCryptoAesInit - .text.otPlatCryptoAesSetKey - 0x4200ea14 0x3e esp-idf/openthread/libopenthread.a(crypto_platform.cpp.obj) - 0x4200ea14 otPlatCryptoAesSetKey - .text.otPlatCryptoAesEncrypt - 0x4200ea52 0x38 esp-idf/openthread/libopenthread.a(crypto_platform.cpp.obj) - 0x4200ea52 otPlatCryptoAesEncrypt - .text.otPlatCryptoAesFree - 0x4200ea8a 0x30 esp-idf/openthread/libopenthread.a(crypto_platform.cpp.obj) - 0x4200ea8a otPlatCryptoAesFree - .text._ZN2ot6Crypto10LiteralKeyC2ERKNS0_3KeyE - 0x4200eaba 0xe esp-idf/openthread/libopenthread.a(storage.cpp.obj) - 0x4200eaba ot::Crypto::LiteralKey::LiteralKey(ot::Crypto::Key const&) - 0x4200eaba ot::Crypto::LiteralKey::LiteralKey(ot::Crypto::Key const&) - .text._ZN2ot5Radio9Callbacks17HandleReceiveDoneEPNS_3Mac7RxFrameE7otError - 0x4200eac8 0xc esp-idf/openthread/libopenthread.a(radio_callbacks.cpp.obj) - 0x4200eac8 ot::Radio::Callbacks::HandleReceiveDone(ot::Mac::RxFrame*, otError) - .text._ZN2ot5Radio9Callbacks21HandleTransmitStartedERNS_3Mac7TxFrameE - 0x4200ead4 0xc esp-idf/openthread/libopenthread.a(radio_callbacks.cpp.obj) - 0x4200ead4 ot::Radio::Callbacks::HandleTransmitStarted(ot::Mac::TxFrame&) - .text._ZN2ot5Radio9Callbacks18HandleTransmitDoneERNS_3Mac7TxFrameEPNS2_7RxFrameE7otError - 0x4200eae0 0xc esp-idf/openthread/libopenthread.a(radio_callbacks.cpp.obj) - 0x4200eae0 ot::Radio::Callbacks::HandleTransmitDone(ot::Mac::TxFrame&, ot::Mac::RxFrame*, otError) - .text._ZN2ot5Radio9Callbacks20HandleEnergyScanDoneEa - 0x4200eaec 0xc esp-idf/openthread/libopenthread.a(radio_callbacks.cpp.obj) - 0x4200eaec ot::Radio::Callbacks::HandleEnergyScanDone(signed char) - .text._ZN2ot6Spinel7DecoderC2Ev - 0x4200eaf8 0x12 esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) - 0x4200eaf8 ot::Spinel::Decoder::Decoder() - 0x4200eaf8 ot::Spinel::Decoder::Decoder() - .text._ZN2ot6Spinel7Decoder5ResetEv - 0x4200eb0a 0x16 esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) - 0x4200eb0a ot::Spinel::Decoder::Reset() - .text._ZN2ot6Spinel7Decoder4InitEPKht - 0x4200eb20 0x2a esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) - 0x4200eb20 ot::Spinel::Decoder::Init(unsigned char const*, unsigned short) - .text._ZN2ot6Spinel7Decoder9ReadUint8ERh - 0x4200eb4a 0x2e esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) - 0x4200eb4a ot::Spinel::Decoder::ReadUint8(unsigned char&) - .text._ZN2ot6Spinel7Decoder8ReadBoolERb - 0x4200eb78 0x3a esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) - 0x4200eb78 ot::Spinel::Decoder::ReadBool(bool&) - .text._ZN2ot6Spinel7Decoder8ReadInt8ERa - 0x4200ebb2 0x28 esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) - 0x4200ebb2 ot::Spinel::Decoder::ReadInt8(signed char&) - .text._ZN2ot6Spinel7Decoder10ReadUint16ERt - 0x4200ebda 0x36 esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) - 0x4200ebda ot::Spinel::Decoder::ReadUint16(unsigned short&) - .text._ZN2ot6Spinel7Decoder10ReadUint32ERm - 0x4200ec10 0x3e esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) - 0x4200ec10 ot::Spinel::Decoder::ReadUint32(unsigned long&) - .text._ZN2ot6Spinel7Decoder9ReadInt32ERl - 0x4200ec4e 0x22 esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) - 0x4200ec4e ot::Spinel::Decoder::ReadInt32(long&) - .text._ZN2ot6Spinel7Decoder10ReadUint64ERy - 0x4200ec70 0x5c esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) - 0x4200ec70 ot::Spinel::Decoder::ReadUint64(unsigned long long&) - .text._ZN2ot6Spinel7Decoder14ReadUintPackedERj - 0x4200eccc 0x44 esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) - 0x4200eccc ot::Spinel::Decoder::ReadUintPacked(unsigned int&) - .text._ZN2ot6Spinel7Decoder8ReadItemEPPKht - 0x4200ed10 0x20 esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) - 0x4200ed10 ot::Spinel::Decoder::ReadItem(unsigned char const**, unsigned short) - .text._ZN2ot6Spinel7Decoder8ReadDataERPKhRt - 0x4200ed30 0x18 esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) - 0x4200ed30 ot::Spinel::Decoder::ReadData(unsigned char const*&, unsigned short&) - .text._ZN2ot6Spinel7Decoder15ReadDataWithLenERPKhRt - 0x4200ed48 0x3c esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) - 0x4200ed48 ot::Spinel::Decoder::ReadDataWithLen(unsigned char const*&, unsigned short&) - .text._ZN2ot6Spinel7Decoder12SavePositionEv - 0x4200ed84 0x1a esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) - 0x4200ed84 ot::Spinel::Decoder::SavePosition() - .text._ZN2ot6Spinel7Decoder12ResetToSavedEv - 0x4200ed9e 0x28 esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) - 0x4200ed9e ot::Spinel::Decoder::ResetToSaved() - .text._ZN2ot6Spinel7Encoder10WriteUint8Eh.isra.0 - 0x4200edc6 0x4 esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - .text._ZN2ot3Ncp7NcpBase13InstanceToIidEPNS_8InstanceE - 0x4200edca 0x4 esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x4200edca ot::Ncp::NcpBase::InstanceToIid(ot::Instance*) - .text._ZN2ot3Ncp7NcpBase13IidToInstanceEh - 0x4200edce 0x20 esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x4200edce ot::Ncp::NcpBase::IidToInstance(unsigned char) - .text._ZN2ot3Ncp7NcpBase25ThreadErrorToSpinelStatusE7otError - 0x4200edee 0x8a esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x4200edee ot::Ncp::NcpBase::ThreadErrorToSpinelStatus(otError) - .text._ZN2ot3Ncp7NcpBaseC2EPNS_8InstanceE - 0x4200ee78 0x17c esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x4200ee78 ot::Ncp::NcpBase::NcpBase(ot::Instance*) - 0x4200ee78 ot::Ncp::NcpBase::NcpBase(ot::Instance*) - .text._ZN2ot3Ncp7NcpBase14GetNcpInstanceEv - 0x4200eff4 0xa esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x4200eff4 ot::Ncp::NcpBase::GetNcpInstance() - .text._ZN2ot3Ncp7NcpBase14ShouldWakeHostEv - 0x4200effe 0x18 esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x4200effe ot::Ncp::NcpBase::ShouldWakeHost() - .text._ZN2ot3Ncp7NcpBase19ShouldDeferHostSendEv - 0x4200f016 0x16 esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x4200f016 ot::Ncp::NcpBase::ShouldDeferHostSend() - .text._ZN2ot3Ncp7NcpBase26IncrementFrameErrorCounterEv - 0x4200f02c 0x10 esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x4200f02c ot::Ncp::NcpBase::IncrementFrameErrorCounter() - .text._ZN2ot3Ncp7NcpBase11StreamWriteEiPKhi - 0x4200f03c 0x8e esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x4200f03c ot::Ncp::NcpBase::StreamWrite(int, unsigned char const*, int) - .text._ZN2ot3Ncp7NcpBase15ConvertLogLevelEi - 0x4200f0ca 0x38 esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x4200f0ca ot::Ncp::NcpBase::ConvertLogLevel(int) - .text._ZN2ot3Ncp7NcpBase15EnqueueResponseEhNS1_12ResponseTypeEj - 0x4200f102 0x110 esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x4200f102 ot::Ncp::NcpBase::EnqueueResponse(unsigned char, ot::Ncp::NcpBase::ResponseType, unsigned int) - .text._ZN2ot3Ncp7NcpBase25PrepareLastStatusResponseEhm - 0x4200f212 0x8 esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x4200f212 ot::Ncp::NcpBase::PrepareLastStatusResponse(unsigned char, unsigned long) - .text._ZN2ot3Ncp7NcpBase20WriteLastStatusFrameEhm - 0x4200f21a 0x3c esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x4200f21a ot::Ncp::NcpBase::WriteLastStatusFrame(unsigned char, unsigned long) - .text._ZN2ot3Ncp7NcpBase25WritePropertyValueIsFrameEhmb - 0x4200f256 0xa2 esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x4200f256 ot::Ncp::NcpBase::WritePropertyValueIsFrame(unsigned char, unsigned long, bool) - .text._ZN2ot3Ncp7NcpBase19SendQueuedResponsesEv - 0x4200f2f8 0xb4 esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x4200f2f8 ot::Ncp::NcpBase::SendQueuedResponses() - .text._ZN2ot3Ncp7NcpBase18UpdateChangedPropsEv - 0x4200f3ac 0x11a esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x4200f3ac ot::Ncp::NcpBase::UpdateChangedProps() - .text._ZN2ot3Ncp7NcpBase18UpdateChangedPropsERNS_7TaskletE - 0x4200f4c6 0xc esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x4200f4c6 ot::Ncp::NcpBase::UpdateChangedProps(ot::Tasklet&) - .text._ZN2ot3Ncp7NcpBase31HandleFrameRemovedFromNcpBufferEPKv - 0x4200f4d2 0x72 esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x4200f4d2 ot::Ncp::NcpBase::HandleFrameRemovedFromNcpBuffer(void const*) - .text._ZN2ot3Ncp7NcpBase31HandleFrameRemovedFromNcpBufferEPvPKvNS_6Spinel6Buffer8PriorityEPS6_ - 0x4200f544 0x4 esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x4200f544 ot::Ncp::NcpBase::HandleFrameRemovedFromNcpBuffer(void*, void const*, ot::Spinel::Buffer::Priority, ot::Spinel::Buffer*) - .text._ZN2ot3Ncp7NcpBase38WritePropertyValueInsertedRemovedFrameEhjmPKht - 0x4200f548 0x34 esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x4200f548 ot::Ncp::NcpBase::WritePropertyValueInsertedRemovedFrame(unsigned char, unsigned int, unsigned long, unsigned char const*, unsigned short) - .text._ZN2ot3Ncp7NcpBase33HandleCommandPropertyInsertRemoveEhmj - 0x4200f57c 0xc8 esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x4200f57c ot::Ncp::NcpBase::HandleCommandPropertyInsertRemove(unsigned char, unsigned long, unsigned int) - .text._ZN2ot3Ncp7NcpBase19CommandHandler_NOOPEh - 0x4200f644 0x6 esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x4200f644 ot::Ncp::NcpBase::CommandHandler_NOOP(unsigned char) - .text._ZN2ot3Ncp7NcpBase20CommandHandler_RESETEh - 0x4200f64a 0xc0 esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x4200f64a ot::Ncp::NcpBase::CommandHandler_RESET(unsigned char) - .text._ZN2ot3Ncp7NcpBase17HandlePropertyGetILm32EEE7otErrorv - 0x4200f70a 0x20 esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x4200f70a otError ot::Ncp::NcpBase::HandlePropertyGet<32ul>() - .text._ZN2ot3Ncp7NcpBase17HandlePropertyGetILm33EEE7otErrorv - 0x4200f72a 0x20 esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x4200f72a otError ot::Ncp::NcpBase::HandlePropertyGet<33ul>() - .text._ZN2ot3Ncp7NcpBase17HandlePropertySetILm33EEE7otErrorv - 0x4200f74a 0x5a esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x4200f74a otError ot::Ncp::NcpBase::HandlePropertySet<33ul>() - .text._ZN2ot3Ncp7NcpBase17HandlePropertyGetILm56EEE7otErrorv - 0x4200f7a4 0x26 esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x4200f7a4 otError ot::Ncp::NcpBase::HandlePropertyGet<56ul>() - .text._ZN2ot3Ncp7NcpBase17HandlePropertySetILm56EEE7otErrorv - 0x4200f7ca 0x46 esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x4200f7ca otError ot::Ncp::NcpBase::HandlePropertySet<56ul>() - .text._ZN2ot3Ncp7NcpBase17HandlePropertySetILm59EEE7otErrorv - 0x4200f810 0x2e esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x4200f810 otError ot::Ncp::NcpBase::HandlePropertySet<59ul>() - .text._ZN2ot3Ncp7NcpBase17HandlePropertyGetILm54EEE7otErrorv - 0x4200f83e 0x22 esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x4200f83e otError ot::Ncp::NcpBase::HandlePropertyGet<54ul>() - .text._ZN2ot3Ncp7NcpBase17HandlePropertySetILm54EEE7otErrorv - 0x4200f860 0x2e esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x4200f860 otError ot::Ncp::NcpBase::HandlePropertySet<54ul>() - .text._ZN2ot3Ncp7NcpBase17HandlePropertyGetILm52EEE7otErrorv - 0x4200f88e 0x22 esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x4200f88e otError ot::Ncp::NcpBase::HandlePropertyGet<52ul>() - .text._ZN2ot3Ncp7NcpBase17HandlePropertySetILm52EEE7otErrorv - 0x4200f8b0 0x2c esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x4200f8b0 otError ot::Ncp::NcpBase::HandlePropertySet<52ul>() - .text._ZN2ot3Ncp7NcpBase17HandlePropertyGetILm53EEE7otErrorv - 0x4200f8dc 0x22 esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x4200f8dc otError ot::Ncp::NcpBase::HandlePropertyGet<53ul>() - .text._ZN2ot3Ncp7NcpBase17HandlePropertyGetILm55EEE7otErrorv - 0x4200f8fe 0x18 esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x4200f8fe otError ot::Ncp::NcpBase::HandlePropertyGet<55ul>() - .text._ZN2ot3Ncp7NcpBase17HandlePropertySetILm55EEE7otErrorv - 0x4200f916 0x5e esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x4200f916 otError ot::Ncp::NcpBase::HandlePropertySet<55ul>() - .text._ZN2ot3Ncp7NcpBase17HandlePropertySetILm61EEE7otErrorv - 0x4200f974 0x74 esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x4200f974 otError ot::Ncp::NcpBase::HandlePropertySet<61ul>() - .text._ZN2ot3Ncp7NcpBase17HandlePropertyGetILm2052EEE7otErrorv - 0x4200f9e8 0x20 esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x4200f9e8 otError ot::Ncp::NcpBase::HandlePropertyGet<2052ul>() - .text._ZN2ot3Ncp7NcpBase17HandlePropertyGetILm2053EEE7otErrorv - 0x4200fa08 0x20 esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x4200fa08 otError ot::Ncp::NcpBase::HandlePropertyGet<2053ul>() - .text._ZN2ot3Ncp7NcpBase17EncodeChannelMaskEm - 0x4200fa28 0x3c esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x4200fa28 ot::Ncp::NcpBase::EncodeChannelMask(unsigned long) - .text._ZN2ot3Ncp7NcpBase17DecodeChannelMaskERm - 0x4200fa64 0x54 esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x4200fa64 ot::Ncp::NcpBase::DecodeChannelMask(unsigned long&) - .text._ZN2ot3Ncp7NcpBase17HandlePropertyGetILm49EEE7otErrorv - 0x4200fab8 0x8 esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x4200fab8 otError ot::Ncp::NcpBase::HandlePropertyGet<49ul>() - .text._ZN2ot3Ncp7NcpBase17HandlePropertySetILm49EEE7otErrorv - 0x4200fac0 0x26 esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x4200fac0 otError ot::Ncp::NcpBase::HandlePropertySet<49ul>() - .text._ZN2ot3Ncp7NcpBase17HandlePropertyGetILm50EEE7otErrorv - 0x4200fae6 0xc esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x4200fae6 otError ot::Ncp::NcpBase::HandlePropertyGet<50ul>() - .text._ZN2ot3Ncp7NcpBase17HandlePropertySetILm50EEE7otErrorv - 0x4200faf2 0xc esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x4200faf2 otError ot::Ncp::NcpBase::HandlePropertySet<50ul>() - .text._ZN2ot3Ncp7NcpBase17HandlePropertyGetILm48EEE7otErrorv - 0x4200fafe 0x3c esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x4200fafe otError ot::Ncp::NcpBase::HandlePropertyGet<48ul>() - .text._ZN2ot3Ncp7NcpBase17HandlePropertySetILm48EEE7otErrorv - 0x4200fb3a 0x9a esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x4200fb3a otError ot::Ncp::NcpBase::HandlePropertySet<48ul>() - .text._ZN2ot3Ncp7NcpBase20HandlePropertyInsertILm4104EEE7otErrorv - 0x4200fbd4 0x2e esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x4200fbd4 otError ot::Ncp::NcpBase::HandlePropertyInsert<4104ul>() - .text._ZN2ot3Ncp7NcpBase20HandlePropertyRemoveILm4104EEE7otErrorv - 0x4200fc02 0x2e esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x4200fc02 otError ot::Ncp::NcpBase::HandlePropertyRemove<4104ul>() - .text._ZN2ot3Ncp7NcpBase17HandlePropertyGetILm0EEE7otErrorv - 0x4200fc30 0xc esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x4200fc30 otError ot::Ncp::NcpBase::HandlePropertyGet<0ul>() - .text._ZN2ot3Ncp7NcpBase17HandlePropertyGetILm1EEE7otErrorv - 0x4200fc3c 0x26 esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x4200fc3c otError ot::Ncp::NcpBase::HandlePropertyGet<1ul>() - .text._ZN2ot3Ncp7NcpBase17HandlePropertyGetILm3EEE7otErrorv - 0x4200fc62 0xa esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x4200fc62 otError ot::Ncp::NcpBase::HandlePropertyGet<3ul>() - .text._ZN2ot3Ncp7NcpBase17HandlePropertyGetILm4EEE7otErrorv - 0x4200fc6c 0xa esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x4200fc6c otError ot::Ncp::NcpBase::HandlePropertyGet<4ul>() - .text._ZN2ot3Ncp7NcpBase17HandlePropertyGetILm5EEE7otErrorv - 0x4200fc76 0x60 esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x4200fc76 otError ot::Ncp::NcpBase::HandlePropertyGet<5ul>() - .text._ZN2ot3Ncp7NcpBase17HandlePropertyGetILm2EEE7otErrorv - 0x4200fcd6 0x20 esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x4200fcd6 otError ot::Ncp::NcpBase::HandlePropertyGet<2ul>() - .text._ZN2ot3Ncp7NcpBase17HandlePropertyGetILm6EEE7otErrorv - 0x4200fcf6 0x8 esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x4200fcf6 otError ot::Ncp::NcpBase::HandlePropertyGet<6ul>() - .text._ZN2ot3Ncp7NcpBase17HandlePropertyGetILm13EEE7otErrorv - 0x4200fcfe 0x8 esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x4200fcfe otError ot::Ncp::NcpBase::HandlePropertyGet<13ul>() - .text._ZN2ot3Ncp7NcpBase17HandlePropertyGetILm7EEE7otErrorv - 0x4200fd06 0x8 esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x4200fd06 otError ot::Ncp::NcpBase::HandlePropertyGet<7ul>() - .text._ZN2ot3Ncp7NcpBase17HandlePropertySetILm7EEE7otErrorv - 0x4200fd0e 0x4 esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x4200fd0e otError ot::Ncp::NcpBase::HandlePropertySet<7ul>() - .text._ZN2ot3Ncp7NcpBase17HandlePropertyGetILm8EEE7otErrorv - 0x4200fd12 0x2a esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x4200fd12 otError ot::Ncp::NcpBase::HandlePropertyGet<8ul>() - .text._ZN2ot3Ncp7NcpBase17HandlePropertyGetILm9EEE7otErrorv - 0x4200fd3c 0xa esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x4200fd3c otError ot::Ncp::NcpBase::HandlePropertyGet<9ul>() - .text._ZN2ot3Ncp7NcpBase17HandlePropertyGetILm12EEE7otErrorv - 0x4200fd46 0xa esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x4200fd46 otError ot::Ncp::NcpBase::HandlePropertyGet<12ul>() - .text._ZN2ot3Ncp7NcpBase46HandlePropertySet_SPINEL_PROP_HOST_POWER_STATEEh - 0x4200fd50 0xac esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x4200fd50 ot::Ncp::NcpBase::HandlePropertySet_SPINEL_PROP_HOST_POWER_STATE(unsigned char) - .text._ZN2ot3Ncp7NcpBase37HandlePropertySetForSpecialPropertiesEhmR7otError - 0x4200fdfc 0x32 esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x4200fdfc ot::Ncp::NcpBase::HandlePropertySetForSpecialProperties(unsigned char, unsigned long, otError&) - .text._ZN2ot3Ncp7NcpBase24HandleCommandPropertySetEhm - 0x4200fe2e 0xb4 esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x4200fe2e ot::Ncp::NcpBase::HandleCommandPropertySet(unsigned char, unsigned long) - .text._ZN2ot3Ncp7NcpBase32CommandHandler_PROP_VALUE_updateEhj - 0x4200fee2 0x80 esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x4200fee2 ot::Ncp::NcpBase::CommandHandler_PROP_VALUE_update(unsigned char, unsigned int) - .text._ZN2ot3Ncp7NcpBase13HandleCommandEh - 0x4200ff62 0x82 esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x4200ff62 ot::Ncp::NcpBase::HandleCommand(unsigned char) - .text._ZN2ot3Ncp7NcpBase13HandleReceiveEPKht - 0x4200ffe4 0xea esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x4200ffe4 ot::Ncp::NcpBase::HandleReceive(unsigned char const*, unsigned short) - .text._ZN2ot3Ncp7NcpBase17HandlePropertyGetILm38EEE7otErrorv - 0x420100ce 0x22 esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x420100ce otError ot::Ncp::NcpBase::HandlePropertyGet<38ul>() - .text._ZN2ot3Ncp7NcpBase17HandlePropertyGetILm39EEE7otErrorv - 0x420100f0 0x22 esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x420100f0 otError ot::Ncp::NcpBase::HandlePropertyGet<39ul>() - .text._ZN2ot3Ncp7NcpBase17HandlePropertyGetILm35EEE7otErrorv - 0x42010112 0x60 esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x42010112 otError ot::Ncp::NcpBase::HandlePropertyGet<35ul>() - .text._ZN2ot3Ncp7NcpBase17HandlePropertyGetILm36EEE7otErrorv - 0x42010172 0x3c esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x42010172 otError ot::Ncp::NcpBase::HandlePropertyGet<36ul>() - .text._ZN2ot3Ncp7NcpBase17HandlePropertySetILm36EEE7otErrorv - 0x420101ae 0x32 esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x420101ae otError ot::Ncp::NcpBase::HandlePropertySet<36ul>() - .text._ZN2ot3Ncp7NcpBase17HandlePropertyGetILm37EEE7otErrorv - 0x420101e0 0x3c esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x420101e0 otError ot::Ncp::NcpBase::HandlePropertyGet<37ul>() - .text._ZN2ot3Ncp7NcpBase17HandlePropertySetILm37EEE7otErrorv - 0x4201021c 0x32 esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x4201021c otError ot::Ncp::NcpBase::HandlePropertySet<37ul>() - .text._ZN2ot3Ncp7NcpBase17HandlePropertyGetILm42EEE7otErrorv - 0x4201024e 0x3c esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x4201024e otError ot::Ncp::NcpBase::HandlePropertyGet<42ul>() - .text._ZN2ot3Ncp7NcpBase17HandlePropertySetILm42EEE7otErrorv - 0x4201028a 0x32 esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x4201028a otError ot::Ncp::NcpBase::HandlePropertySet<42ul>() - .text._ZN2ot3Ncp7NcpBase17HandlePropertySetILm43EEE7otErrorv - 0x420102bc 0x40 esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x420102bc otError ot::Ncp::NcpBase::HandlePropertySet<43ul>() - .text._ZN2ot3Ncp7NcpBase17HandlePropertyGetILm44EEE7otErrorv - 0x420102fc 0x3e esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x420102fc otError ot::Ncp::NcpBase::HandlePropertyGet<44ul>() - .text._ZN2ot3Ncp7NcpBase17HandlePropertySetILm44EEE7otErrorv - 0x4201033a 0x2e esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x4201033a otError ot::Ncp::NcpBase::HandlePropertySet<44ul>() - .text._ZN2ot3Ncp7NcpBase17HandlePropertyGetILm16384EEE7otErrorv - 0x42010368 0x1c esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x42010368 otError ot::Ncp::NcpBase::HandlePropertyGet<16384ul>() - .text._ZN2ot3Ncp7NcpBase17HandlePropertyGetILm16386EEE7otErrorv - 0x42010384 0x2 esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x42010384 otError ot::Ncp::NcpBase::HandlePropertyGet<16386ul>() - .text._ZN2ot3Ncp7NcpBase17HandlePropertyGetILm16385EEE7otErrorv - 0x42010386 0x22 esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x42010386 otError ot::Ncp::NcpBase::HandlePropertyGet<16385ul>() - .text._ZN2ot3Ncp7NcpBase17HandlePropertySetILm16387EEE7otErrorv - 0x420103a8 0x54 esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x420103a8 otError ot::Ncp::NcpBase::HandlePropertySet<16387ul>() - .text._ZN2ot3Ncp7NcpBase17HandlePropertyGetILm16387EEE7otErrorv - 0x420103fc 0x14 esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x420103fc otError ot::Ncp::NcpBase::HandlePropertyGet<16387ul>() - .text._ZN2ot3Ncp7NcpBase17HandlePropertyGetILm34EEE7otErrorv - 0x42010410 0x20 esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x42010410 otError ot::Ncp::NcpBase::HandlePropertyGet<34ul>() - .text._ZN2ot3Ncp7NcpBase17HandlePropertyGetILm41EEE7otErrorv - 0x42010430 0x20 esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x42010430 otError ot::Ncp::NcpBase::HandlePropertyGet<41ul>() - .text.otNcpStreamWrite - 0x42010450 0x1a esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - 0x42010450 otNcpStreamWrite - .text._ZN2ot3Ncp7NcpBase19FindPropertyHandlerEPKNS1_12HandlerEntryEjm.part.0 - 0x4201046a 0x4a esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) - .text._ZN2ot3Ncp7NcpBase22FindGetPropertyHandlerEm - 0x420104b4 0x26 esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) - 0x420104b4 ot::Ncp::NcpBase::FindGetPropertyHandler(unsigned long) - .text._ZN2ot3Ncp7NcpBase22FindSetPropertyHandlerEm - 0x420104da 0x24 esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) - 0x420104da ot::Ncp::NcpBase::FindSetPropertyHandler(unsigned long) - .text._ZN2ot3Ncp7NcpBase25FindInsertPropertyHandlerEm - 0x420104fe 0x24 esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) - 0x420104fe ot::Ncp::NcpBase::FindInsertPropertyHandler(unsigned long) - .text._ZN2ot3Ncp7NcpBase25FindRemovePropertyHandlerEm - 0x42010522 0x24 esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) - 0x42010522 ot::Ncp::NcpBase::FindRemovePropertyHandler(unsigned long) - .text._ZN2ot6Spinel7Encoder10WriteUint8Eh.isra.0 - 0x42010546 0x4 esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - .text._ZN2ot3Ncp7NcpBase17HandlePropertyGetILm176EEE7otErrorv - 0x4201054a 0xa esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - 0x4201054a otError ot::Ncp::NcpBase::HandlePropertyGet<176ul>() - .text._ZN2ot3Ncp7NcpBase17HandlePropertyGetILm177EEE7otErrorv - 0x42010554 0xa esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - 0x42010554 otError ot::Ncp::NcpBase::HandlePropertyGet<177ul>() - .text._ZN2ot3Ncp7NcpBase14PackRadioFrameEP12otRadioFrame7otError - 0x4201055e 0x102 esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - 0x4201055e ot::Ncp::NcpBase::PackRadioFrame(otRadioFrame*, otError) - .text._ZN2ot3Ncp7NcpBase18LinkRawReceiveDoneEhP12otRadioFrame7otError - 0x42010660 0x44 esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - 0x42010660 ot::Ncp::NcpBase::LinkRawReceiveDone(unsigned char, otRadioFrame*, otError) - .text._ZN2ot3Ncp7NcpBase18LinkRawReceiveDoneEP10otInstanceP12otRadioFrame7otError - 0x420106a4 0x34 esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - 0x420106a4 ot::Ncp::NcpBase::LinkRawReceiveDone(otInstance*, otRadioFrame*, otError) - .text._ZN2ot3Ncp7NcpBase19LinkRawTransmitDoneEhP12otRadioFrameS3_7otError - 0x420106d8 0xe8 esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - 0x420106d8 ot::Ncp::NcpBase::LinkRawTransmitDone(unsigned char, otRadioFrame*, otRadioFrame*, otError) - .text._ZN2ot3Ncp7NcpBase19LinkRawTransmitDoneEP10otInstanceP12otRadioFrameS5_7otError - 0x420107c0 0x38 esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - 0x420107c0 ot::Ncp::NcpBase::LinkRawTransmitDone(otInstance*, otRadioFrame*, otRadioFrame*, otError) - .text._ZN2ot3Ncp7NcpBase21LinkRawEnergyScanDoneEha - 0x420107f8 0x96 esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - 0x420107f8 ot::Ncp::NcpBase::LinkRawEnergyScanDone(unsigned char, signed char) - .text._ZN2ot3Ncp7NcpBase21LinkRawEnergyScanDoneEP10otInstancea - 0x4201088e 0x30 esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - 0x4201088e ot::Ncp::NcpBase::LinkRawEnergyScanDone(otInstance*, signed char) - .text._ZN2ot3Ncp7NcpBase17HandlePropertyGetILm4619EEE7otErrorv - 0x420108be 0x22 esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - 0x420108be otError ot::Ncp::NcpBase::HandlePropertyGet<4619ul>() - .text._ZN2ot3Ncp7NcpBase17HandlePropertyGetILm4867EEE7otErrorv - 0x420108e0 0x18 esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - 0x420108e0 otError ot::Ncp::NcpBase::HandlePropertyGet<4867ul>() - .text._ZN2ot3Ncp7NcpBase17HandlePropertyGetILm2050EEE7otErrorv - 0x420108f8 0x24 esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - 0x420108f8 otError ot::Ncp::NcpBase::HandlePropertyGet<2050ul>() - .text._ZN2ot3Ncp7NcpBase17HandlePropertySetILm4867EEE7otErrorv - 0x4201091c 0x40 esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - 0x4201091c otError ot::Ncp::NcpBase::HandlePropertySet<4867ul>() - .text._ZN2ot3Ncp7NcpBase17HandlePropertySetILm4868EEE7otErrorv - 0x4201095c 0x54 esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - 0x4201095c otError ot::Ncp::NcpBase::HandlePropertySet<4868ul>() - .text._ZN2ot3Ncp7NcpBase17HandlePropertySetILm4869EEE7otErrorv - 0x420109b0 0x52 esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - 0x420109b0 otError ot::Ncp::NcpBase::HandlePropertySet<4869ul>() - .text._ZN2ot3Ncp7NcpBase20HandlePropertyRemoveILm4868EEE7otErrorv - 0x42010a02 0x2e esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - 0x42010a02 otError ot::Ncp::NcpBase::HandlePropertyRemove<4868ul>() - .text._ZN2ot3Ncp7NcpBase20HandlePropertyRemoveILm4869EEE7otErrorv - 0x42010a30 0x2c esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - 0x42010a30 otError ot::Ncp::NcpBase::HandlePropertyRemove<4869ul>() - .text._ZN2ot3Ncp7NcpBase20HandlePropertyInsertILm4868EEE7otErrorv - 0x42010a5c 0x2e esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - 0x42010a5c otError ot::Ncp::NcpBase::HandlePropertyInsert<4868ul>() - .text._ZN2ot3Ncp7NcpBase20HandlePropertyInsertILm4869EEE7otErrorv - 0x42010a8a 0x2e esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - 0x42010a8a otError ot::Ncp::NcpBase::HandlePropertyInsert<4869ul>() - .text._ZN2ot3Ncp7NcpBase17HandlePropertySetILm32EEE7otErrorv - 0x42010ab8 0x3c esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - 0x42010ab8 otError ot::Ncp::NcpBase::HandlePropertySet<32ul>() - .text._ZN2ot3Ncp7NcpBase17HandlePropertySetILm53EEE7otErrorv - 0x42010af4 0x2c esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - 0x42010af4 otError ot::Ncp::NcpBase::HandlePropertySet<53ul>() - .text._ZN2ot3Ncp7NcpBase17HandlePropertySetILm60EEE7otErrorv - 0x42010b20 0x2c esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - 0x42010b20 otError ot::Ncp::NcpBase::HandlePropertySet<60ul>() - .text._ZN2ot3Ncp7NcpBase24DecodeStreamRawTxRequestER12otRadioFrame - 0x42010b4c 0x14a esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - 0x42010b4c ot::Ncp::NcpBase::DecodeStreamRawTxRequest(otRadioFrame&) - .text._ZN2ot3Ncp7NcpBase40HandlePropertySet_SPINEL_PROP_STREAM_RAWEh - 0x42010c96 0x72 esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - 0x42010c96 ot::Ncp::NcpBase::HandlePropertySet_SPINEL_PROP_STREAM_RAW(unsigned char) - .text._ZN2ot3Ncp7NcpBase17HandlePropertySetILm2048EEE7otErrorv - 0x42010d08 0x94 esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - 0x42010d08 otError ot::Ncp::NcpBase::HandlePropertySet<2048ul>() - .text._ZN2ot3Ncp7NcpBase17HandlePropertySetILm2049EEE7otErrorv - 0x42010d9c 0x52 esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - 0x42010d9c otError ot::Ncp::NcpBase::HandlePropertySet<2049ul>() - .text._ZN2ot3Ncp7NcpHdlcC2EPNS_8InstanceEPFiPKhtE - 0x42010dee 0xaa esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) - 0x42010dee ot::Ncp::NcpHdlc::NcpHdlc(ot::Instance*, int (*)(unsigned char const*, unsigned short)) - 0x42010dee ot::Ncp::NcpHdlc::NcpHdlc(ot::Instance*, int (*)(unsigned char const*, unsigned short)) - .text._ZN2ot3Ncp7NcpHdlc27HandleFrameAddedToNcpBufferEv - 0x42010e98 0x22 esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) - 0x42010e98 ot::Ncp::NcpHdlc::HandleFrameAddedToNcpBuffer() - .text._ZN2ot3Ncp7NcpHdlc27HandleFrameAddedToNcpBufferEPvPKvNS_6Spinel6Buffer8PriorityEPS6_ - 0x42010eba 0x4 esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) - 0x42010eba ot::Ncp::NcpHdlc::HandleFrameAddedToNcpBuffer(void*, void const*, ot::Spinel::Buffer::Priority, ot::Spinel::Buffer*) - .text._ZN2ot3Ncp7NcpHdlc13EncodeAndSendEv - 0x42010ebe 0x114 esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) - 0x42010ebe ot::Ncp::NcpHdlc::EncodeAndSend() - .text._ZN2ot3Ncp7NcpHdlc13EncodeAndSendERNS_7TaskletE - 0x42010fd2 0x18 esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) - 0x42010fd2 ot::Ncp::NcpHdlc::EncodeAndSend(ot::Tasklet&) - .text._ZN2ot3Ncp7NcpHdlc18HandleHdlcSendDoneEv - 0x42010fea 0x26 esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) - 0x42010fea ot::Ncp::NcpHdlc::HandleHdlcSendDone() - .text.otNcpHdlcSendDone - 0x42011010 0x1a esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) - 0x42011010 otNcpHdlcSendDone - .text.otNcpHdlcReceive - 0x4201102a 0x2c esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) - 0x4201102a otNcpHdlcReceive - .text._ZN2ot3Ncp7NcpHdlc11HandleErrorE7otErrorPht - 0x42011056 0xb6 esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) - 0x42011056 ot::Ncp::NcpHdlc::HandleError(otError, unsigned char*, unsigned short) - .text._ZN2ot3Ncp7NcpHdlc11HandleFrameE7otError - 0x4201110c 0x48 esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) - 0x4201110c ot::Ncp::NcpHdlc::HandleFrame(otError) - .text._ZN2ot3Ncp7NcpHdlc11HandleFrameEPv7otError - 0x42011154 0x4 esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) - 0x42011154 ot::Ncp::NcpHdlc::HandleFrame(void*, otError) - .text.otLinkRawSetReceiveDone - 0x42011158 0x6 esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - 0x42011158 otLinkRawSetReceiveDone - .text.otLinkRawIsEnabled - 0x4201115e 0x8 esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - 0x4201115e otLinkRawIsEnabled - .text.otLinkRawSetShortAddress - 0x42011166 0x6 esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - 0x42011166 otLinkRawSetShortAddress - .text.otLinkRawSetAlternateShortAddress - 0x4201116c 0x6 esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - 0x4201116c otLinkRawSetAlternateShortAddress - .text.otLinkRawGetPromiscuous - 0x42011172 0xc esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - 0x42011172 otLinkRawGetPromiscuous - .text.otLinkRawSetPromiscuous - 0x4201117e 0x26 esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - 0x4201117e otLinkRawSetPromiscuous - .text.otLinkRawSleep - 0x420111a4 0x14 esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - 0x420111a4 otLinkRawSleep - .text.otLinkRawReceive - 0x420111b8 0x6 esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - 0x420111b8 otLinkRawReceive - .text.otLinkRawGetTransmitBuffer - 0x420111be 0x4 esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - 0x420111be otLinkRawGetTransmitBuffer - .text.otLinkRawTransmit - 0x420111c2 0x6 esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - 0x420111c2 otLinkRawTransmit - .text.otLinkRawGetCaps - 0x420111c8 0x8 esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - 0x420111c8 otLinkRawGetCaps - .text.otLinkRawEnergyScan - 0x420111d0 0x6 esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - 0x420111d0 otLinkRawEnergyScan - .text.otLinkRawSrcMatchEnable - 0x420111d6 0x26 esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - 0x420111d6 otLinkRawSrcMatchEnable - .text.otLinkRawSrcMatchAddShortEntry - 0x420111fc 0x14 esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - 0x420111fc otLinkRawSrcMatchAddShortEntry - .text.otLinkRawSrcMatchAddExtEntry - 0x42011210 0xe esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - 0x42011210 otLinkRawSrcMatchAddExtEntry - .text.otLinkRawSrcMatchClearShortEntry - 0x4201121e 0x14 esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - 0x4201121e otLinkRawSrcMatchClearShortEntry - .text.otLinkRawSrcMatchClearExtEntry - 0x42011232 0xe esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - 0x42011232 otLinkRawSrcMatchClearExtEntry - .text.otLinkRawSrcMatchClearShortEntries - 0x42011240 0x26 esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - 0x42011240 otLinkRawSrcMatchClearShortEntries - .text.otLinkRawSrcMatchClearExtEntries - 0x42011266 0x26 esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - 0x42011266 otLinkRawSrcMatchClearExtEntries - .text.otLinkRawSetMacKey - 0x4201128c 0x6 esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - 0x4201128c otLinkRawSetMacKey - .text.otLinkRawSetMacFrameCounter - 0x42011292 0x8 esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - 0x42011292 otLinkRawSetMacFrameCounter - .text.otLinkRawSetMacFrameCounterIfLarger - 0x4201129a 0x8 esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - 0x4201129a otLinkRawSetMacFrameCounterIfLarger - .text.otLinkRawGetRadioTime - 0x420112a2 0x4 esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - 0x420112a2 otLinkRawGetRadioTime - .text.otLinkGetChannel - 0x420112a6 0x6 esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - 0x420112a6 otLinkGetChannel - .text.otLinkSetChannel - 0x420112ac 0x6 esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - 0x420112ac otLinkSetChannel - .text.otLinkGetPanId - 0x420112b2 0x6 esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - 0x420112b2 otLinkGetPanId - .text.otLinkSetPanId - 0x420112b8 0x6 esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - 0x420112b8 otLinkSetPanId - .text.otLinkGetExtendedAddress - 0x420112be 0x6 esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - 0x420112be otLinkGetExtendedAddress - .text.otLinkSetExtendedAddress - 0x420112c4 0x6 esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - 0x420112c4 otLinkSetExtendedAddress - .text.otLinkGetShortAddress - 0x420112ca 0x6 esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - 0x420112ca otLinkGetShortAddress - .text.otLinkGetFactoryAssignedIeeeEui64 - 0x420112d0 0x4 esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - 0x420112d0 otLinkGetFactoryAssignedIeeeEui64 - .text.otLinkSetRxOnWhenIdle - 0x420112d4 0x22 esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - 0x420112d4 otLinkSetRxOnWhenIdle - .text.otLoggingGetLevel - 0x420112f6 0x4 esp-idf/openthread/libopenthread.a(logging_api.cpp.obj) - 0x420112f6 otLoggingGetLevel - .text._ZN2ot6Spinel17FrameWritePointer9WriteByteEh - 0x420112fa 0x24 esp-idf/openthread/libopenthread.a(hdlc.cpp.obj) - 0x420112fa ot::Spinel::FrameWritePointer::WriteByte(unsigned char) - .text._ZN2ot4Hdlc7EncoderC2ERNS_6Spinel17FrameWritePointerE - 0x4201131e 0x8 esp-idf/openthread/libopenthread.a(hdlc.cpp.obj) - 0x4201131e ot::Hdlc::Encoder::Encoder(ot::Spinel::FrameWritePointer&) - 0x4201131e ot::Hdlc::Encoder::Encoder(ot::Spinel::FrameWritePointer&) - .text._ZN2ot4Hdlc7Encoder10BeginFrameEv - 0x42011326 0x10 esp-idf/openthread/libopenthread.a(hdlc.cpp.obj) - 0x42011326 ot::Hdlc::Encoder::BeginFrame() - .text._ZN2ot4Hdlc7Encoder6EncodeEh - 0x42011336 0x86 esp-idf/openthread/libopenthread.a(hdlc.cpp.obj) - 0x42011336 ot::Hdlc::Encoder::Encode(unsigned char) - .text._ZN2ot4Hdlc7Encoder8EndFrameEv - 0x420113bc 0x68 esp-idf/openthread/libopenthread.a(hdlc.cpp.obj) - 0x420113bc ot::Hdlc::Encoder::EndFrame() - .text._ZN2ot4Hdlc7DecoderC2Ev - 0x42011424 0x16 esp-idf/openthread/libopenthread.a(hdlc.cpp.obj) - 0x42011424 ot::Hdlc::Decoder::Decoder() - 0x42011424 ot::Hdlc::Decoder::Decoder() - .text._ZN2ot4Hdlc7Decoder4InitERNS_6Spinel17FrameWritePointerEPFvPv7otErrorES5_ - 0x4201143a 0x8 esp-idf/openthread/libopenthread.a(hdlc.cpp.obj) - 0x4201143a ot::Hdlc::Decoder::Init(ot::Spinel::FrameWritePointer&, void (*)(void*, otError), void*) - .text._ZN2ot4Hdlc7Decoder6DecodeEPKht - 0x42011442 0x128 esp-idf/openthread/libopenthread.a(hdlc.cpp.obj) - 0x42011442 ot::Hdlc::Decoder::Decode(unsigned char const*, unsigned short) - .text.spinel_packed_uint_decode - 0x4201156a 0x3e esp-idf/openthread/libopenthread.a(spinel.c.obj) - 0x4201156a spinel_packed_uint_decode - .text.spinel_packed_uint_size - 0x420115a8 0x32 esp-idf/openthread/libopenthread.a(spinel.c.obj) - 0x420115a8 spinel_packed_uint_size - .text.spinel_packed_uint_encode - 0x420115da 0x4c esp-idf/openthread/libopenthread.a(spinel.c.obj) - 0x420115da spinel_packed_uint_encode - .text._ZN2ot6Spinel6Buffer5ClearEv - 0x42011626 0x4a esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - 0x42011626 ot::Spinel::Buffer::Clear() - .text._ZN2ot6Spinel6BufferC2EPht - 0x42011670 0x1e esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - 0x42011670 ot::Spinel::Buffer::Buffer(unsigned char*, unsigned short) - 0x42011670 ot::Spinel::Buffer::Buffer(unsigned char*, unsigned short) - .text._ZN2ot6Spinel6Buffer21SetFrameAddedCallbackEPFvPvPKvNS1_8PriorityEPS1_ES2_ - 0x4201168e 0x6 esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - 0x4201168e ot::Spinel::Buffer::SetFrameAddedCallback(void (*)(void*, void const*, ot::Spinel::Buffer::Priority, ot::Spinel::Buffer*), void*) - .text._ZN2ot6Spinel6Buffer23SetFrameRemovedCallbackEPFvPvPKvNS1_8PriorityEPS1_ES2_ - 0x42011694 0x6 esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - 0x42011694 ot::Spinel::Buffer::SetFrameRemovedCallback(void (*)(void*, void const*, ot::Spinel::Buffer::Priority, ot::Spinel::Buffer*), void*) - .text._ZNK2ot6Spinel6Buffer16GetUpdatedBufPtrEPhtNS1_9DirectionE - 0x4201169a 0x54 esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - 0x4201169a ot::Spinel::Buffer::GetUpdatedBufPtr(unsigned char*, unsigned short, ot::Spinel::Buffer::Direction) const - .text._ZNK2ot6Spinel6Buffer11GetDistanceEPKhS3_NS1_9DirectionE - 0x420116ee 0x56 esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - 0x420116ee ot::Spinel::Buffer::GetDistance(unsigned char const*, unsigned char const*, ot::Spinel::Buffer::Direction) const - .text._ZN2ot6Spinel6Buffer13WriteUint16AtEPhtNS1_9DirectionE - 0x42011744 0x24 esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - 0x42011744 ot::Spinel::Buffer::WriteUint16At(unsigned char*, unsigned short, ot::Spinel::Buffer::Direction) - .text._ZN2ot6Spinel6Buffer12ReadUint16AtEPhNS1_9DirectionE - 0x42011768 0x2a esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - 0x42011768 ot::Spinel::Buffer::ReadUint16At(unsigned char*, ot::Spinel::Buffer::Direction) - .text._ZN2ot6Spinel6Buffer17InFrameEndSegmentEt - 0x42011792 0x5e esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - 0x42011792 ot::Spinel::Buffer::InFrameEndSegment(unsigned short) - .text._ZN2ot6Spinel6Buffer16InFrameOverwriteERKNS1_13WritePositionEPKht - 0x420117f0 0x78 esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - 0x420117f0 ot::Spinel::Buffer::InFrameOverwrite(ot::Spinel::Buffer::WritePosition const&, unsigned char const*, unsigned short) - .text._ZNK2ot6Spinel6Buffer18InFrameGetDistanceERKNS1_13WritePositionE - 0x42011868 0x60 esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - 0x42011868 ot::Spinel::Buffer::InFrameGetDistance(ot::Spinel::Buffer::WritePosition const&) const - .text._ZN2ot6Spinel6Buffer12InFrameResetERKNS1_13WritePositionE - 0x420118c8 0x50 esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - 0x420118c8 ot::Spinel::Buffer::InFrameReset(ot::Spinel::Buffer::WritePosition const&) - .text._ZN2ot6Spinel6Buffer10InFrameEndEv - 0x42011918 0x44 esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - 0x42011918 ot::Spinel::Buffer::InFrameEnd() - .text._ZNK2ot6Spinel6Buffer17InFrameGetLastTagEv - 0x4201195c 0x4 esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - 0x4201195c ot::Spinel::Buffer::InFrameGetLastTag() const - .text._ZNK2ot6Spinel6Buffer7IsEmptyEv - 0x42011960 0x1a esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - 0x42011960 ot::Spinel::Buffer::IsEmpty() const - .text._ZN2ot6Spinel6Buffer27OutFrameSelectReadDirectionEv - 0x4201197a 0x12 esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - 0x4201197a ot::Spinel::Buffer::OutFrameSelectReadDirection() - .text._ZN2ot6Spinel6Buffer22OutFramePrepareSegmentEv - 0x4201198c 0x86 esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - 0x4201198c ot::Spinel::Buffer::OutFramePrepareSegment() - .text._ZN2ot6Spinel6Buffer13OutFrameBeginEv - 0x42011a12 0x36 esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - 0x42011a12 ot::Spinel::Buffer::OutFrameBegin() - .text._ZN2ot6Spinel6Buffer16OutFrameHasEndedEv - 0x42011a48 0x10 esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - 0x42011a48 ot::Spinel::Buffer::OutFrameHasEnded() - .text._ZN2ot6Spinel6Buffer16OutFrameReadByteEv - 0x42011a58 0x38 esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - 0x42011a58 ot::Spinel::Buffer::OutFrameReadByte() - .text._ZN2ot6Spinel6Buffer28UpdateReadWriteStartPointersEv - 0x42011a90 0x4a esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - 0x42011a90 ot::Spinel::Buffer::UpdateReadWriteStartPointers() - .text._ZN2ot6Spinel6Buffer14InFrameDiscardEv - 0x42011ada 0x1a esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - 0x42011ada ot::Spinel::Buffer::InFrameDiscard() - .text._ZN2ot6Spinel6Buffer13InFrameAppendEh - 0x42011af4 0x5c esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - 0x42011af4 ot::Spinel::Buffer::InFrameAppend(unsigned char) - .text._ZN2ot6Spinel6Buffer19InFrameBeginSegmentEv - 0x42011b50 0x54 esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - 0x42011b50 ot::Spinel::Buffer::InFrameBeginSegment() - .text._ZN2ot6Spinel6Buffer18InFrameGetPositionERNS1_13WritePositionE - 0x42011ba4 0x32 esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - 0x42011ba4 ot::Spinel::Buffer::InFrameGetPosition(ot::Spinel::Buffer::WritePosition&) - .text._ZN2ot6Spinel6Buffer15InFrameFeedByteEh - 0x42011bd6 0x36 esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - 0x42011bd6 ot::Spinel::Buffer::InFrameFeedByte(unsigned char) - .text._ZN2ot6Spinel6Buffer15InFrameFeedDataEPKht - 0x42011c0c 0x4a esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - 0x42011c0c ot::Spinel::Buffer::InFrameFeedData(unsigned char const*, unsigned short) - .text._ZN2ot6Spinel6Buffer12InFrameBeginENS1_8PriorityE - 0x42011c56 0x36 esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - 0x42011c56 ot::Spinel::Buffer::InFrameBegin(ot::Spinel::Buffer::Priority) - .text._ZN2ot6Spinel6Buffer14OutFrameRemoveEv - 0x42011c8c 0xb2 esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - 0x42011c8c ot::Spinel::Buffer::OutFrameRemove() - .text._ZN2ot6Spinel7Encoder11WriteUint16Et - 0x42011d3e 0x2a esp-idf/openthread/libopenthread.a(spinel_encoder.cpp.obj) - 0x42011d3e ot::Spinel::Encoder::WriteUint16(unsigned short) - .text._ZN2ot6Spinel7Encoder11WriteUint32Em - 0x42011d68 0x4a esp-idf/openthread/libopenthread.a(spinel_encoder.cpp.obj) - 0x42011d68 ot::Spinel::Encoder::WriteUint32(unsigned long) - .text._ZN2ot6Spinel7Encoder11WriteUint64Ey - 0x42011db2 0x84 esp-idf/openthread/libopenthread.a(spinel_encoder.cpp.obj) - 0x42011db2 ot::Spinel::Encoder::WriteUint64(unsigned long long) - .text._ZN2ot6Spinel7Encoder15WriteUintPackedEj - 0x42011e36 0x2e esp-idf/openthread/libopenthread.a(spinel_encoder.cpp.obj) - 0x42011e36 ot::Spinel::Encoder::WriteUintPacked(unsigned int) - .text._ZN2ot6Spinel7Encoder10BeginFrameEhj - 0x42011e64 0x3c esp-idf/openthread/libopenthread.a(spinel_encoder.cpp.obj) - 0x42011e64 ot::Spinel::Encoder::BeginFrame(unsigned char, unsigned int) - .text._ZN2ot6Spinel7Encoder16WriteDataWithLenEPKht - 0x42011ea0 0x2c esp-idf/openthread/libopenthread.a(spinel_encoder.cpp.obj) - 0x42011ea0 ot::Spinel::Encoder::WriteDataWithLen(unsigned char const*, unsigned short) - .text._ZN2ot6Spinel7Encoder9WriteUtf8EPKc - 0x42011ecc 0x44 esp-idf/openthread/libopenthread.a(spinel_encoder.cpp.obj) - 0x42011ecc ot::Spinel::Encoder::WriteUtf8(char const*) - .text._ZN2ot6Spinel7Encoder10OpenStructEv - 0x42011f10 0x4c esp-idf/openthread/libopenthread.a(spinel_encoder.cpp.obj) - 0x42011f10 ot::Spinel::Encoder::OpenStruct() - .text._ZN2ot6Spinel7Encoder11CloseStructEv - 0x42011f5c 0x5a esp-idf/openthread/libopenthread.a(spinel_encoder.cpp.obj) - 0x42011f5c ot::Spinel::Encoder::CloseStruct() - .text._ZN2ot6Spinel7Encoder8EndFrameEv - 0x42011fb6 0x28 esp-idf/openthread/libopenthread.a(spinel_encoder.cpp.obj) - 0x42011fb6 ot::Spinel::Encoder::EndFrame() - .text._ZN2ot6Spinel7Encoder12SavePositionEv - 0x42011fde 0x26 esp-idf/openthread/libopenthread.a(spinel_encoder.cpp.obj) - 0x42011fde ot::Spinel::Encoder::SavePosition() - .text._ZN2ot6Spinel7Encoder10BeginFrameEhjm - 0x42012004 0x2a esp-idf/openthread/libopenthread.a(spinel_encoder.cpp.obj) - 0x42012004 ot::Spinel::Encoder::BeginFrame(unsigned char, unsigned int, unsigned long) - .text._ZN2ot6Spinel7Encoder12ResetToSavedEv - 0x4201202e 0x26 esp-idf/openthread/libopenthread.a(spinel_encoder.cpp.obj) - 0x4201202e ot::Spinel::Encoder::ResetToSaved() - .text._ZN2ot6Spinel7Encoder28OverwriteWithLastStatusErrorEm - 0x42012054 0x2c esp-idf/openthread/libopenthread.a(spinel_encoder.cpp.obj) - 0x42012054 ot::Spinel::Encoder::OverwriteWithLastStatusError(unsigned long) - .text._ZN2ot6Spinel7Encoder14ClearNcpBufferEv - 0x42012080 0x6 esp-idf/openthread/libopenthread.a(spinel_encoder.cpp.obj) - 0x42012080 ot::Spinel::Encoder::ClearNcpBuffer() - .text._ZNK2ot3Ncp15ChangedPropsSet13GetNumEntriesEv - 0x42012086 0x4 esp-idf/openthread/libopenthread.a(changed_props_set.cpp.obj) - 0x42012086 ot::Ncp::ChangedPropsSet::GetNumEntries() const - .text._ZN2ot3Ncp15ChangedPropsSet3AddEmm - 0x4201208a 0x6c esp-idf/openthread/libopenthread.a(changed_props_set.cpp.obj) - 0x4201208a ot::Ncp::ChangedPropsSet::Add(unsigned long, unsigned long) - .text._ZN2ot3Ncp15ChangedPropsSet20EnablePropertyFilterEmb - 0x420120f6 0x92 esp-idf/openthread/libopenthread.a(changed_props_set.cpp.obj) - 0x420120f6 ot::Ncp::ChangedPropsSet::EnablePropertyFilter(unsigned long, bool) - .text._ZNK2ot3Ncp15ChangedPropsSet18IsPropertyFilteredEm - 0x42012188 0x46 esp-idf/openthread/libopenthread.a(changed_props_set.cpp.obj) - 0x42012188 ot::Ncp::ChangedPropsSet::IsPropertyFiltered(unsigned long) const - .text.valid_key_length - 0x420121ce 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) - 0x420121ce valid_key_length - .text.esp_aes_init - 0x420121de 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) - 0x420121de esp_aes_init - .text.esp_aes_free - 0x420121fe 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) - 0x420121fe esp_aes_free - .text.esp_aes_setkey - 0x42012210 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) - 0x42012210 esp_aes_setkey - .text.esp_aes_acquire_hardware - 0x42012254 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - 0x42012254 esp_aes_acquire_hardware - .text.esp_aes_release_hardware - 0x4201226e 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - 0x4201226e esp_aes_release_hardware - .text.esp_aes_crypt_ecb - 0x42012288 0x62 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - 0x42012288 esp_aes_crypt_ecb - .text.dma_desc_setup_link.constprop.0 - 0x420122ea 0x64 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - .text.esp_aes_intr_alloc - 0x4201234e 0x66 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - 0x4201234e esp_aes_intr_alloc - .text.esp_aes_process_dma - 0x420123b4 0x300 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - 0x420123b4 esp_aes_process_dma - .text.mbedtls_platform_zeroize - 0x420126b4 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) - 0x420126b4 mbedtls_platform_zeroize - .text.esp_aes_dma_start - 0x420126d8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) - 0x420126d8 esp_aes_dma_start - .text.esp_aes_dma_done - 0x420126dc 0xa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) - 0x420126dc esp_aes_dma_done - .text.crypto_shared_gdma_new_channel - 0x420126e6 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - .text.crypto_shared_gdma_init - 0x4201271a 0xb8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - .text.esp_crypto_shared_gdma_start_axi_ahb - 0x420127d2 0xc2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - 0x420127d2 esp_crypto_shared_gdma_start_axi_ahb - .text.is_partition_encrypted - 0x42012894 0x48 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - .text.ensure_partitions_loaded.part.0 - 0x420128dc 0x16e esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - .text.esp_partition_next - 0x42012a4a 0x94 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - 0x42012a4a esp_partition_next - .text.esp_partition_find - 0x42012ade 0x5a esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - 0x42012ade esp_partition_find - .text.esp_partition_find_first - 0x42012b38 0x24 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - 0x42012b38 esp_partition_find_first - .text.esp_partition_iterator_release - 0x42012b5c 0x8 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - 0x42012b5c esp_partition_iterator_release - .text.esp_partition_get - 0x42012b64 0x1c esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - 0x42012b64 esp_partition_get - .text.esp_partition_write - 0x42012b80 0x80 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - 0x42012b80 esp_partition_write - .text.esp_partition_read_raw - 0x42012c00 0x4c esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - 0x42012c00 esp_partition_read_raw - .text.esp_partition_write_raw - 0x42012c4c 0x58 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - 0x42012c4c esp_partition_write_raw - .text.esp_partition_erase_range - 0x42012ca4 0x62 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - 0x42012ca4 esp_partition_erase_range - .text.esp_partition_mmap - 0x42012d06 0x7a esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - 0x42012d06 esp_partition_mmap - .text.esp_partition_read - 0x42012d80 0x96 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - 0x42012d80 esp_partition_read - .text.esp_partition_is_flash_region_writable - 0x42012e16 0x54 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - 0x42012e16 esp_partition_is_flash_region_writable - .text.esp_partition_main_flash_region_safe - 0x42012e6a 0x3e esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - 0x42012e6a esp_partition_main_flash_region_safe - .text.esp_partition_get_main_flash_sector_size - 0x42012ea8 0x4 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - 0x42012ea8 esp_partition_get_main_flash_sector_size - .text.aes_hal_setkey - 0x42012eac 0x6e esp-idf/hal/libhal.a(aes_hal.c.obj) - 0x42012eac aes_hal_setkey - .text.aes_hal_transform_dma_start - 0x42012f1a 0x12 esp-idf/hal/libhal.a(aes_hal.c.obj) - 0x42012f1a aes_hal_transform_dma_start - .text.aes_hal_transform_dma_finish - 0x42012f2c 0xe esp-idf/hal/libhal.a(aes_hal.c.obj) - 0x42012f2c aes_hal_transform_dma_finish - .text.aes_hal_mode_init - 0x42012f3a 0x18 esp-idf/hal/libhal.a(aes_hal.c.obj) - 0x42012f3a aes_hal_mode_init - .text.aes_hal_wait_done - 0x42012f52 0x12 esp-idf/hal/libhal.a(aes_hal.c.obj) - 0x42012f52 aes_hal_wait_done - .text.esp_crypto_sha_aes_lock_acquire - 0x42012f64 0x10 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) - 0x42012f64 esp_crypto_sha_aes_lock_acquire - .text.esp_crypto_sha_aes_lock_release - 0x42012f74 0x10 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) - 0x42012f74 esp_crypto_sha_aes_lock_release - .text.esp_crypto_aes_enable_periph_clk - 0x42012f84 0x34 esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) - 0x42012f84 esp_crypto_aes_enable_periph_clk - .text.get_idx 0x42012fb8 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - .text.get_efuse_mac_custom - 0x42012fdc 0x64 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - .text.get_efuse_factory_mac - 0x42013040 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - .text.get_mac_addr_from_mac_table.isra.0 - 0x42013080 0xac esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - .text.esp_derive_local_mac - 0x4201312c 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - 0x4201312c esp_derive_local_mac - .text.esp_read_mac - 0x4201317c 0xd6 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - 0x4201317c esp_read_mac - .text.spicommon_periph_free - 0x42013252 0x98 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) - 0x42013252 spicommon_periph_free - .text.spi_slave_free - 0x420132ea 0x9a esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) - 0x420132ea spi_slave_free - .text.esp_ota_get_running_partition - 0x42013384 0x80 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - 0x42013384 esp_ota_get_running_partition - .text.esp_phy_enable - 0x42013404 0x6a esp-idf/esp_phy/libesp_phy.a(phy_init_esp32hxx.c.obj) - 0x42013404 esp_phy_enable - .text.esp_phy_disable - 0x4201346e 0x50 esp-idf/esp_phy/libesp_phy.a(phy_init_esp32hxx.c.obj) - 0x4201346e esp_phy_disable - .text.phy_get_lock - 0x420134be 0xa esp-idf/esp_phy/libesp_phy.a(phy_init_esp32hxx.c.obj) - 0x420134be phy_get_lock - .text.esp_btbb_enable - 0x420134c8 0x46 esp-idf/esp_phy/libesp_phy.a(btbb_init.c.obj) - 0x420134c8 esp_btbb_enable - .text.esp_btbb_disable - 0x4201350e 0x3c esp-idf/esp_phy/libesp_phy.a(btbb_init.c.obj) - 0x4201350e esp_btbb_disable - .text.phy_track_pll_internal - 0x4201354a 0x3e esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - .text.phy_track_pll_timer_callback - 0x42013588 0x32 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - .text.phy_track_pll - 0x420135ba 0x56 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - 0x420135ba phy_track_pll - .text.phy_track_pll_init - 0x42013610 0x5c esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - 0x42013610 phy_track_pll_init - .text.phy_track_pll_deinit - 0x4201366c 0x32 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - 0x4201366c phy_track_pll_deinit - .text.phy_set_modem_flag - 0x4201369e 0x14 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - 0x4201369e phy_set_modem_flag - .text.phy_clr_modem_flag - 0x420136b2 0x18 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - 0x420136b2 phy_clr_modem_flag - .text.phy_get_modem_flag - 0x420136ca 0xa esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - 0x420136ca phy_get_modem_flag - .text.deinit_timer_task - 0x420136d4 0x26 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .text.timer_task - 0x420136fa 0x128 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .text.esp_timer_create - 0x42013822 0x6e esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - 0x42013822 esp_timer_create - .text.esp_timer_delete - 0x42013890 0x7a esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - 0x42013890 esp_timer_delete - .text.esp_timer_init - 0x4201390a 0x66 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - 0x4201390a esp_timer_init - .text.__esp_system_init_fn_esp_timer_init_os - 0x42013970 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .text._ZdaPv 0x42013974 0x2 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_opv.o) - 0x42013974 operator delete[](void*) - .text._ZSt15get_new_handlerv - 0x42013976 0x10 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_handler.o) - 0x42013976 std::get_new_handler() - .text._ZnajRKSt9nothrow_t - 0x42013986 0x14 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opvnt.o) - 0x42013986 operator new[](unsigned int, std::nothrow_t const&) - .text._ZdlPv 0x4201399a 0x8 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_op.o) - 0x4201399a operator delete(void*) - .text.__cxa_begin_catch - 0x420139a2 0x70 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_catch.o) - 0x420139a2 __cxa_begin_catch - .text.__cxa_end_catch - 0x42013a12 0x66 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_catch.o) - 0x42013a12 __cxa_end_catch - .text._ZL15eh_globals_dtorPv - 0x42013a78 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) - .text.__cxa_get_globals_fast - 0x42013aa8 0x2a C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) - 0x42013aa8 __cxa_get_globals_fast - .text.__cxa_get_globals - 0x42013ad2 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) - 0x42013ad2 __cxa_get_globals - .text.startup._GLOBAL__sub_I__ZN17__eh_globals_init7_S_initE - 0x42013b2e 0x2a C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) - .text._ZN10__cxxabiv111__terminateEPFvvE - 0x42013b58 0x1a C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) - 0x42013b58 __cxxabiv1::__terminate(void (*)()) - .text._ZSt13get_terminatev - 0x42013b72 0xc C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) - 0x42013b72 std::get_terminate() - .text.unlikely._ZSt9terminatev - 0x42013b7e 0xc C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) - 0x42013b7e std::terminate() - .text._Znaj 0x42013b8a 0x2 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opv.o) - 0x42013b8a operator new[](unsigned int) - .text._Znwj 0x42013b8c 0x4a C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_op.o) - 0x42013b8c operator new(unsigned int) - .text._ZN10__cxxabiv120__si_class_type_infoD2Ev - 0x42013bd6 0xc C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) - 0x42013bd6 __cxxabiv1::__si_class_type_info::~__si_class_type_info() - 0x42013bd6 __cxxabiv1::__si_class_type_info::~__si_class_type_info() - .text._ZN10__cxxabiv120__si_class_type_infoD0Ev - 0x42013be2 0x18 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) - 0x42013be2 __cxxabiv1::__si_class_type_info::~__si_class_type_info() - .text._ZNKSt9type_infoeqERKS_.isra.0 - 0x42013bfa 0x3e C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) - .text._ZNK10__cxxabiv120__si_class_type_info12__do_dyncastEiNS_17__class_type_info10__sub_kindEPKS1_PKvS4_S6_RNS1_16__dyncast_resultE - 0x42013c38 0xb4 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) - 0x42013c38 __cxxabiv1::__si_class_type_info::__do_dyncast(int, __cxxabiv1::__class_type_info::__sub_kind, __cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info::__dyncast_result&) const - .text._ZNK10__cxxabiv120__si_class_type_info20__do_find_public_srcEiPKvPKNS_17__class_type_infoES2_ - 0x42013cec 0x44 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) - 0x42013cec __cxxabiv1::__si_class_type_info::__do_find_public_src(int, void const*, __cxxabiv1::__class_type_info const*, void const*) const - .text._ZNK10__cxxabiv120__si_class_type_info11__do_upcastEPKNS_17__class_type_infoEPKvRNS1_15__upcast_resultE - 0x42013d30 0x42 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) - 0x42013d30 __cxxabiv1::__si_class_type_info::__do_upcast(__cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info::__upcast_result&) const - .text._ZNSt9type_infoD2Ev - 0x42013d72 0x2 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(tinfo.o) - 0x42013d72 std::type_info::~type_info() - 0x42013d72 std::type_info::~type_info() - .text._ZNKSt9type_info14__is_pointer_pEv - 0x42013d74 0x4 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(tinfo.o) - 0x42013d74 std::type_info::__is_pointer_p() const - 0x42013d74 std::type_info::__is_function_p() const - .text._ZNKSt9bad_alloc4whatEv - 0x42013d78 0xa C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(bad_alloc.o) - 0x42013d78 std::bad_alloc::what() const - .text._ZNSt9bad_allocD2Ev - 0x42013d82 0xc C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(bad_alloc.o) - 0x42013d82 std::bad_alloc::~bad_alloc() - 0x42013d82 std::bad_alloc::~bad_alloc() - .text._ZNSt9bad_allocD0Ev - 0x42013d8e 0x18 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(bad_alloc.o) - 0x42013d8e std::bad_alloc::~bad_alloc() - .text._ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PPv - 0x42013da6 0x36 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(class_type_info.o) - 0x42013da6 __cxxabiv1::__class_type_info::__do_upcast(__cxxabiv1::__class_type_info const*, void**) const - .text._ZNK10__cxxabiv117__class_type_info20__do_find_public_srcEiPKvPKS0_S2_ - 0x42013ddc 0xa C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(class_type_info.o) - 0x42013ddc __cxxabiv1::__class_type_info::__do_find_public_src(int, void const*, __cxxabiv1::__class_type_info const*, void const*) const - .text._ZN10__cxxabiv117__class_type_infoD2Ev - 0x42013de6 0xe C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(class_type_info.o) - 0x42013de6 __cxxabiv1::__class_type_info::~__class_type_info() - 0x42013de6 __cxxabiv1::__class_type_info::~__class_type_info() - .text._ZN10__cxxabiv117__class_type_infoD0Ev - 0x42013df4 0x18 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(class_type_info.o) - 0x42013df4 __cxxabiv1::__class_type_info::~__class_type_info() - .text._ZNKSt9type_infoeqERKS_.isra.0 - 0x42013e0c 0x3e C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(class_type_info.o) - .text._ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PKvRNS0_15__upcast_resultE - 0x42013e4a 0x2a C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(class_type_info.o) - 0x42013e4a __cxxabiv1::__class_type_info::__do_upcast(__cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info::__upcast_result&) const - .text._ZNK10__cxxabiv117__class_type_info12__do_dyncastEiNS0_10__sub_kindEPKS0_PKvS3_S5_RNS0_16__dyncast_resultE - 0x42013e74 0x54 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(class_type_info.o) - 0x42013e74 __cxxabiv1::__class_type_info::__do_dyncast(int, __cxxabiv1::__class_type_info::__sub_kind, __cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info::__dyncast_result&) const - .text._ZNK10__cxxabiv117__class_type_info10__do_catchEPKSt9type_infoPPvj - 0x42013ec8 0x44 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(class_type_info.o) - 0x42013ec8 __cxxabiv1::__class_type_info::__do_catch(std::type_info const*, void**, unsigned int) const - .text._ZdlPvj 0x42013f0c 0x4 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_ops.o) - 0x42013f0c operator delete(void*, unsigned int) - .text._ZNSt9exceptionD2Ev - 0x42013f10 0x2 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) - 0x42013f10 std::exception::~exception() - 0x42013f10 std::exception::~exception() - .text.unlikely.__wrap__Unwind_DeleteException - 0x42013f12 0x8 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - 0x42013f12 __wrap__Unwind_DeleteException - .text.unlikely.__wrap___gxx_personality_v0 - 0x42013f1a 0x8 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - 0x42013f1a __wrap___gxx_personality_v0 - .text.unlikely.__wrap___cxa_allocate_exception - 0x42013f22 0x8 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - 0x42013f22 __wrap___cxa_allocate_exception - .text.unlikely.__wrap___cxa_throw - 0x42013f2a 0x8 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - 0x42013f2a __wrap___cxa_throw - .text.rfpll_cap_track - 0x42013f32 0x74 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_track.o) - 0x42013f32 rfpll_cap_track - .text.txpwr_cal_track - 0x42013fa6 0x9a C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_track.o) - 0x42013fa6 txpwr_cal_track - .text.bt_track_tx_power - 0x42014040 0xa C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_track.o) - 0x42014040 bt_track_tx_power - .text.phy_param_track_tot - 0x4201404a 0x58 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_track.o) - 0x4201404a phy_param_track_tot - .text.phy_xpd_tsens - 0x420140a2 0x2c C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_api.o) - 0x420140a2 phy_xpd_tsens - .text.phy_get_rf_cal_version - 0x420140ce 0x6 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_api.o) - 0x420140ce phy_get_rf_cal_version - .text.get_chip_version - 0x420140d4 0x38 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) - 0x420140d4 get_chip_version - .text.rf_init 0x4201410c 0x90 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) - 0x4201410c rf_init - .text.phy_reg_init - 0x4201419c 0x32 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) - 0x4201419c phy_reg_init - .text.bb_init 0x420141ce 0x62 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) - 0x420141ce bb_init - .text.register_chipv7_phy - 0x42014230 0x9c C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) - 0x42014230 register_chipv7_phy - .text.phy_wakeup_init - 0x420142cc 0x74 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) - 0x420142cc phy_wakeup_init - .text.phy_xpd_rf - 0x42014340 0x34 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) - 0x42014340 phy_xpd_rf - .text.phy_close_rf - 0x42014374 0xb2 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) - 0x42014374 phy_close_rf - .text.pbus_force_mode.part.0 - 0x42014426 0x22 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pbus.o) - .text.pbus_force_mode - 0x42014448 0x24 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pbus.o) - 0x42014448 pbus_force_mode - .text.pbus_rd_addr - 0x4201446c 0x46 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pbus.o) - 0x4201446c pbus_rd_addr - .text.pbus_rd_shift - 0x420144b2 0x38 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pbus.o) - 0x420144b2 pbus_rd_shift - .text.pbus_force_test - 0x420144ea 0x42 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pbus.o) - 0x420144ea pbus_force_test - .text.pbus_rd 0x4201452c 0x3c C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pbus.o) - 0x4201452c pbus_rd - .text.pbus_debugmode - 0x42014568 0x4 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pbus.o) - 0x42014568 pbus_debugmode - .text.pbus_workmode - 0x4201456c 0x6 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pbus.o) - 0x4201456c pbus_workmode - .text.pbus_set_rxgain - 0x42014572 0x32 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pbus.o) - 0x42014572 pbus_set_rxgain - .text.pbus_xpd_rx_off - 0x420145a4 0x26 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pbus.o) - 0x420145a4 pbus_xpd_rx_off - .text.pbus_xpd_rx_on - 0x420145ca 0x42 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pbus.o) - 0x420145ca pbus_xpd_rx_on - .text.pbus_xpd_tx_off - 0x4201460c 0x3a C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pbus.o) - 0x4201460c pbus_xpd_tx_off - .text.pbus_xpd_tx_on - 0x42014646 0x3e C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pbus.o) - 0x42014646 pbus_xpd_tx_on - .text.pbus_set_dco - 0x42014684 0x26 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pbus.o) - 0x42014684 pbus_set_dco - .text.txcal_debuge_mode - 0x420146aa 0x24 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pbus.o) - 0x420146aa txcal_debuge_mode - .text.txcal_work_mode - 0x420146ce 0x28 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pbus.o) - 0x420146ce txcal_work_mode - .text.save_pbus_reg - 0x420146f6 0x1c C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pbus.o) - 0x420146f6 save_pbus_reg - .text.set_pbus_mem_update_ppa_eco2 - 0x42014712 0x1a2 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pbus.o) - 0x42014712 set_pbus_mem_update_ppa_eco2 - .text.set_pbus_mem_eco2 - 0x420148b4 0xfc C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pbus.o) - 0x420148b4 set_pbus_mem_eco2 - .text.set_pbus_mem - 0x420149b0 0x15a C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pbus.o) - 0x420149b0 set_pbus_mem - .text.freq_chan_en_sw - 0x42014b0a 0x68 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_hw_freq.o) - 0x42014b0a freq_chan_en_sw - .text.write_chan_freq - 0x42014b72 0x18 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_hw_freq.o) - 0x42014b72 write_chan_freq - .text.get_freq_mem_param - 0x42014b8a 0x42 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_hw_freq.o) - 0x42014b8a get_freq_mem_param - .text.get_freq_mem_addr - 0x42014bcc 0xe C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_hw_freq.o) - 0x42014bcc get_freq_mem_addr - .text.read_rf_freq_mem_new - 0x42014bda 0x46 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_hw_freq.o) - 0x42014bda read_rf_freq_mem_new - .text.freq_i2c_mem_write_new - 0x42014c20 0x2e C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_hw_freq.o) - 0x42014c20 freq_i2c_mem_write_new - .text.wr_rf_freq_mem_new - 0x42014c4e 0x4c C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_hw_freq.o) - 0x42014c4e wr_rf_freq_mem_new - .text.freq_reg_init - 0x42014c9a 0x5a C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_hw_freq.o) - 0x42014c9a freq_reg_init - .text.freq_num_get_data - 0x42014cf4 0x24 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_hw_freq.o) - 0x42014cf4 freq_num_get_data - .text.freq_i2c_num_addr - 0x42014d18 0x74 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_hw_freq.o) - 0x42014d18 freq_i2c_num_addr - .text.freq_i2c_write_set_new - 0x42014d8c 0x168 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_hw_freq.o) - 0x42014d8c freq_i2c_write_set_new - .text.pll_cap_mem_update - 0x42014ef4 0xd8 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_hw_freq.o) - 0x42014ef4 pll_cap_mem_update - .text.get_rf_freq_init_new - 0x42014fcc 0x17a C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_hw_freq.o) - 0x42014fcc get_rf_freq_init_new - .text.freq_get_i2c_data - 0x42015146 0x174 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_hw_freq.o) - 0x42015146 freq_get_i2c_data - .text.freq_i2c_data_write - 0x420152ba 0x2a C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_hw_freq.o) - 0x420152ba freq_i2c_data_write - .text.set_chan_freq_hw_init - 0x420152e4 0x1c C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_hw_freq.o) - 0x420152e4 set_chan_freq_hw_init - .text.phy_en_hw_set_freq - 0x42015300 0x16 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_hw_freq.o) - 0x42015300 phy_en_hw_set_freq - .text.wait_freq_set_busy - 0x42015316 0x20 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_hw_freq.o) - 0x42015316 wait_freq_set_busy - .text.phy_dis_hw_set_freq - 0x42015336 0x28 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_hw_freq.o) - 0x42015336 phy_dis_hw_set_freq - .text.set_chan_freq_sw_start - 0x4201535e 0x22 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_hw_freq.o) - 0x4201535e set_chan_freq_sw_start - .text.phy_get_rf_freq_init - 0x42015380 0xec C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_hw_freq.o) - 0x42015380 phy_get_rf_freq_init - .text.phy_chan_hw_init - 0x4201546c 0xa4 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_hw_freq.o) - 0x4201546c phy_chan_hw_init - .text.chan_to_freq - 0x42015510 0x26 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rfpll.o) - 0x42015510 chan_to_freq - .text.restart_cal - 0x42015536 0x50 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rfpll.o) - 0x42015536 restart_cal - .text.write_rfpll_sdm - 0x42015586 0x62 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rfpll.o) - 0x42015586 write_rfpll_sdm - .text.wait_rfpll_cal_end - 0x420155e8 0x56 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rfpll.o) - 0x420155e8 wait_rfpll_cal_end - .text.rfpll_set_freq - 0x4201563e 0x22 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rfpll.o) - 0x4201563e rfpll_set_freq - .text.set_rfpll_freq - 0x42015660 0x4c C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rfpll.o) - 0x42015660 set_rfpll_freq - .text.set_rf_freq_offset - 0x420156ac 0x10 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rfpll.o) - 0x420156ac set_rf_freq_offset - .text.set_channel_rfpll_freq - 0x420156bc 0x88 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rfpll.o) - 0x420156bc set_channel_rfpll_freq - .text.write_pll_cap - 0x42015744 0x10 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rfpll.o) - 0x42015744 write_pll_cap - .text.read_pll_cap - 0x42015754 0x16 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rfpll.o) - 0x42015754 read_pll_cap - .text.rfpll_cap_correct - 0x4201576a 0xba C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rfpll.o) - 0x4201576a rfpll_cap_correct - .text.chip_v7_set_chan - 0x42015824 0x30 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rfpll.o) - 0x42015824 chip_v7_set_chan - .text.chip_v7_set_chan_ana - 0x42015854 0x26 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rfpll.o) - 0x42015854 chip_v7_set_chan_ana - .text.tsens_read_init - 0x4201587a 0x3a C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tsens.o) - 0x4201587a tsens_read_init - .text.tsens_temp_read - 0x420158b4 0x16 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tsens.o) - 0x420158b4 tsens_temp_read - .text.temp_to_power - 0x420158ca 0x12 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tsens.o) - 0x420158ca temp_to_power - .text.get_temp_init - 0x420158dc 0x22 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tsens.o) - 0x420158dc get_temp_init - .text.enter_critical_phy - 0x420158fe 0x4 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_basic.o) - 0x420158fe enter_critical_phy - .text.exit_critical_phy - 0x42015902 0x2 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_basic.o) - 0x42015902 exit_critical_phy - .text.abs_temp - 0x42015904 0xa C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_basic.o) - 0x42015904 abs_temp - .text.get_data_sat - 0x4201590e 0x10 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_basic.o) - 0x4201590e get_data_sat - .text.i2c_master_reset - 0x4201591e 0x62 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_basic.o) - 0x4201591e i2c_master_reset - .text.i2c_rc_set_reg - 0x42015980 0x4a C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_analog_cal.o) - 0x42015980 i2c_rc_set_reg - .text.get_rc_dout - 0x420159ca 0x9a C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_analog_cal.o) - 0x420159ca get_rc_dout - .text.rc_cal 0x42015a64 0x80 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_analog_cal.o) - 0x42015a64 rc_cal - .text.pwdet_reg_init - 0x42015ae4 0x8e C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pwdet.o) - 0x42015ae4 pwdet_reg_init - .text.pwdet_sar2_init - 0x42015b72 0x3c C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pwdet.o) - 0x42015b72 pwdet_sar2_init - .text.en_pwdet - 0x42015bae 0x26 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pwdet.o) - 0x42015bae en_pwdet - .text.get_sar_sig_ref - 0x42015bd4 0x3a C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pwdet.o) - 0x42015bd4 get_sar_sig_ref - .text.pwdet_tone_start - 0x42015c0e 0x7e C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pwdet.o) - 0x42015c0e pwdet_tone_start - .text.linear_to_db - 0x42015c8c 0x80 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pwdet.o) - 0x42015c8c linear_to_db - .text.read_sar_dout - 0x42015d0c 0x2e C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pwdet.o) - 0x42015d0c read_sar_dout - .text.get_tone_sar_dout - 0x42015d3a 0x54 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pwdet.o) - 0x42015d3a get_tone_sar_dout - .text.get_fm_sar_dout - 0x42015d8e 0x22 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pwdet.o) - 0x42015d8e get_fm_sar_dout - .text.get_power_db - 0x42015db0 0x46 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pwdet.o) - 0x42015db0 get_power_db - .text.tx_pwctrl_bg_init - 0x42015df6 0x1e C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pwdet.o) - 0x42015df6 tx_pwctrl_bg_init - .text.gen_rx_gain_table - 0x42015e14 0xc4 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_gain.o) - 0x42015e14 gen_rx_gain_table - .text.wr_rx_gain_mem - 0x42015ed8 0xdc C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_gain.o) - 0x42015ed8 wr_rx_gain_mem - .text.phy_get_efuse_rxiq - 0x42015fb4 0x5e C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_gain.o) - 0x42015fb4 phy_get_efuse_rxiq - .text.set_rx_gain_table - 0x42016012 0xc0 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_gain.o) - 0x42016012 set_rx_gain_table - .text.phy_version_print - 0x420160d2 0x26 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_debug.o) - 0x420160d2 phy_version_print - .text.set_tx_gain_mem - 0x420160f8 0xb4 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_gain.o) - 0x420160f8 set_tx_gain_mem - .text.get_tx_gain_table - 0x420161ac 0x62 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_gain.o) - 0x420161ac get_tx_gain_table - .text.bt_get_tx_gain - 0x4201620e 0xb8 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_gain.o) - 0x4201620e bt_get_tx_gain - .text.bt_set_tx_gain - 0x420162c6 0x62 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_gain.o) - 0x420162c6 bt_set_tx_gain - .text.write_gain_mem - 0x42016328 0x1a C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - 0x42016328 write_gain_mem - .text.i2cmst_reg_init - 0x42016342 0x22 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - 0x42016342 i2cmst_reg_init - .text.adc_cal_set - 0x42016364 0xee C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - 0x42016364 adc_cal_set - .text.logain_reg_init - 0x42016452 0x66 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - 0x42016452 logain_reg_init - .text.fe_reg_init - 0x420164b8 0xe2 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - 0x420164b8 fe_reg_init - .text.agc_reg_init - 0x4201659a 0x56 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - 0x4201659a agc_reg_init - .text.open_i2c_xpd - 0x420165f0 0x76 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - 0x420165f0 open_i2c_xpd - .text.set_txclk_en - 0x42016666 0x24 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - 0x42016666 set_txclk_en - .text.set_rxclk_en - 0x4201668a 0x20 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - 0x4201668a set_rxclk_en - .text.stop_tx_tone - 0x420166aa 0x20 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - 0x420166aa stop_tx_tone - .text.iq_corr_enable - 0x420166ca 0x2 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - 0x420166ca iq_corr_enable - .text.phy_bbpll_cal - 0x420166cc 0x1c C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - 0x420166cc phy_bbpll_cal - .text.phy_modem_lo_clk - 0x420166e8 0x22 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - 0x420166e8 phy_modem_lo_clk - .text.phy_ant_init - 0x4201670a 0x126 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - 0x4201670a phy_ant_init - .text.bt_filter_reg - 0x42016830 0x34 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - 0x42016830 bt_filter_reg - .text.set_pbus_reg - 0x42016864 0x1c C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - 0x42016864 set_pbus_reg - .text.set_sdm_inv_phase - 0x42016880 0x24 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - 0x42016880 set_sdm_inv_phase - .text.force_txon - 0x420168a4 0x8e C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - 0x420168a4 force_txon - .text.force_txon_mode - 0x42016932 0x64 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - 0x42016932 force_txon_mode - .text.iq_est_enable - 0x42016996 0x8a C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_cal.o) - 0x42016996 iq_est_enable - .text.iq_est_disable - 0x42016a20 0x30 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_cal.o) - 0x42016a20 iq_est_disable - .text.dc_iq_est - 0x42016a50 0x6e C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_cal.o) - 0x42016a50 dc_iq_est - .text.rxdc_est_min - 0x42016abe 0x76 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_cal.o) - 0x42016abe rxdc_est_min - .text.pbus_rx_dco_cal_1step - 0x42016b34 0x29c C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_cal.o) - 0x42016b34 pbus_rx_dco_cal_1step - .text.set_rx_gain_cal_dc - 0x42016dd0 0xbc C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_cal.o) - 0x42016dd0 set_rx_gain_cal_dc - .text.i2c_clk_sel - 0x42016e8c 0x1c C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_i2c.o) - 0x42016e8c i2c_clk_sel - .text.get_i2c_read_mask - 0x42016ea8 0x20 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_i2c.o) - 0x42016ea8 get_i2c_read_mask - .text.get_i2c_hostid - 0x42016ec8 0x3a C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_i2c.o) - 0x42016ec8 get_i2c_hostid - .text.chip_i2c_readReg_org - 0x42016f02 0x38 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_i2c.o) - 0x42016f02 chip_i2c_readReg_org - .text.chip_i2c_readReg - 0x42016f3a 0x40 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_i2c.o) - 0x42016f3a chip_i2c_readReg - .text.i2c_paral_write - 0x42016f7a 0x50 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_i2c.o) - 0x42016f7a i2c_paral_write - .text.i2c_paral_write_num - 0x42016fca 0x8c C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_i2c.o) - 0x42016fca i2c_paral_write_num - .text.i2c_readReg - 0x42017056 0x4 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_i2c.o) - 0x42017056 i2c_readReg - .text.chip_i2c_writeReg - 0x4201705a 0x5c C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_i2c.o) - 0x4201705a chip_i2c_writeReg - .text.i2c_writeReg - 0x420170b6 0x4 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_i2c.o) - 0x420170b6 i2c_writeReg - .text.i2c_readReg_Mask - 0x420170ba 0x2c C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_i2c.o) - 0x420170ba i2c_readReg_Mask - .text.i2c_writeReg_Mask - 0x420170e6 0x58 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_i2c.o) - 0x420170e6 i2c_writeReg_Mask - .text.i2c_sar2_init_code - 0x4201713e 0x32 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_i2c.o) - 0x4201713e i2c_sar2_init_code - .text.i2c_txtop_init - 0x42017170 0x48 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_i2c.o) - 0x42017170 i2c_txtop_init - .text.i2c_rfpll_init - 0x420171b8 0x50 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_i2c.o) - 0x420171b8 i2c_rfpll_init - .text.i2c_bbtop_init - 0x42017208 0x60 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_i2c.o) - 0x42017208 i2c_bbtop_init - .text.phy_i2c_init - 0x42017268 0x14 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_i2c.o) - 0x42017268 phy_i2c_init - .text.bias_reg_set - 0x4201727c 0x12 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_i2c.o) - 0x4201727c bias_reg_set - .text.phy_i2c_init1 - 0x4201728e 0x12c C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_i2c.o) - 0x4201728e phy_i2c_init1 - .text.pwdet_ref_code - 0x420173ba 0x50 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_cal.o) - 0x420173ba pwdet_ref_code - .text.pwdet_code_cal - 0x4201740a 0x36 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_cal.o) - 0x4201740a pwdet_code_cal - .text.tx_pwctrl_init_cal - 0x42017440 0xd8 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_cal.o) - 0x42017440 tx_pwctrl_init_cal - .text.bt_tx_pwctrl_init - 0x42017518 0x6a C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_cal.o) - 0x42017518 bt_tx_pwctrl_init - .text.bt_agc_gain_max - 0x42017582 0x34 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) - 0x42017582 bt_agc_gain_max - .text.bt_set_rx_comp - 0x420175b6 0x8e C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) - 0x420175b6 bt_set_rx_comp - .text.bt_agc_v2_set - 0x42017644 0x120 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) - 0x42017644 bt_agc_v2_set - .text.bt_agc_gain_set - 0x42017764 0x4c C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) - 0x42017764 bt_agc_gain_set - .text.bt_agc_rssi_thresh - 0x420177b0 0xae C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) - 0x420177b0 bt_agc_rssi_thresh - .text.bt_agc_target_set - 0x4201785e 0xac C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) - 0x4201785e bt_agc_target_set - .text.bt_agc_restart_set - 0x4201790a 0x1dc C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) - 0x4201790a bt_agc_restart_set - .text.bt_agc_recorrect_set - 0x42017ae6 0xbc C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) - 0x42017ae6 bt_agc_recorrect_set - .text.bt_agc_detect_set - 0x42017ba2 0x166 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) - 0x42017ba2 bt_agc_detect_set - .text.bt_bb_rx_correlator_set - 0x42017d08 0x140 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) - 0x42017d08 bt_bb_rx_correlator_set - .text.bt_bb_rx_dpo_set - 0x42017e48 0x274 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) - 0x42017e48 bt_bb_rx_dpo_set - .text.bt_bb_rx_filter_sel - 0x420180bc 0x5e C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) - 0x420180bc bt_bb_rx_filter_sel - .text.zb_rx_core_set - 0x4201811a 0x78 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) - 0x4201811a zb_rx_core_set - .text.zb_rx_v0_0_set - 0x42018192 0xe0 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) - 0x42018192 zb_rx_v0_0_set - .text.zb_rx_auto_sel - 0x42018272 0x2e C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) - 0x42018272 zb_rx_auto_sel - .text.bt_bb_rx_set - 0x420182a0 0x180 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) - 0x420182a0 bt_bb_rx_set - .text.bt_eco_reg_set - 0x42018420 0x8e C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) - 0x42018420 bt_eco_reg_set - .text.bt_bb_v2_rx_set - 0x420184ae 0x56 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) - 0x420184ae bt_bb_v2_rx_set - .text.bt_bb_tx_cca_period - 0x42018504 0x52 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) - 0x42018504 bt_bb_tx_cca_period - .text.bt_bb_set_le_tx_on_delay - 0x42018556 0x1e C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) - 0x42018556 bt_bb_set_le_tx_on_delay - .text.bt_bb_set_zb_tx_on_delay - 0x42018574 0x1e C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) - 0x42018574 bt_bb_set_zb_tx_on_delay - .text.bt_bb_coex_config - 0x42018592 0x22 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) - 0x42018592 bt_bb_coex_config - .text.set_gauss_coeff_1m - 0x420185b4 0x100 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) - 0x420185b4 set_gauss_coeff_1m - .text.set_gauss_coeff_2m - 0x420186b4 0x82 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) - 0x420186b4 set_gauss_coeff_2m - .text.bt_bb_v2_tx_set - 0x42018736 0x54 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) - 0x42018736 bt_bb_v2_tx_set - .text.ieee802154_txon_delay_set - 0x4201878a 0x46 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) - 0x4201878a ieee802154_txon_delay_set - .text.bt_bb_v2_version - 0x420187d0 0x22 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) - 0x420187d0 bt_bb_v2_version - .text.bt_bb_v2_init_cmplx - 0x420187f2 0xa8 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) - 0x420187f2 bt_bb_v2_init_cmplx - .text.lib_printf.isra.0 - 0x4201889a 0x22 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) - .text.phy_printf - 0x420188bc 0x20 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) - 0x420188bc phy_printf - .text 0x420188dc 0x6e0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf_float.o) - 0x420188dc __cvt - 0x420189e2 __exponent - 0x42018a7e _printf_float - .text 0x42018fbc 0x374 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf_i.o) - 0x42018fbc _printf_common - 0x420190ce _printf_i - .text 0x42019330 0x490 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfscanf_float.o) - 0x42019330 _scanf_float - .text 0x420197c0 0xec C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fclose.o) - 0x420197c0 _fclose_r - 0x42019896 fclose - .text 0x420198ac 0x1e4 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fflush.o) - 0x420198ac __sflush_r - .text 0x42019a90 0x2ea C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-findfp.o) - 0x42019c22 __sfp_lock_acquire - 0x42019c32 __sfp_lock_release - 0x42019c42 __sfp - 0x42019d18 __sinit - 0x42019d46 __fp_lock_all - 0x42019d60 __fp_unlock_all - .text 0x42019d7a 0xfc C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fopen.o) - 0x42019d7a _fopen_r - 0x42019e58 fopen - .text 0x42019e76 0x28 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fseek.o) - 0x42019e76 _fseek_r - 0x42019e78 fseek - .text 0x42019e9e 0x68 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fwalk.o) - 0x42019e9e _fwalk_sglue - .text 0x42019f06 0xf6 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-snprintf.o) - 0x42019f06 _sniprintf_r - 0x42019f06 _snprintf_r - 0x42019f7a sniprintf - 0x42019f7a snprintf - .text 0x42019ffc 0x90 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sprintf.o) - 0x42019ffc _sprintf_r - 0x42019ffc _siprintf_r - 0x4201a03a sprintf - 0x4201a03a siprintf - .text 0x4201a08c 0xc8 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-stdio.o) - 0x4201a08c __sread - 0x4201a0be __seofread - 0x4201a0c2 __swrite - 0x4201a114 __sseek - 0x4201a14c __sclose - .text 0x4201a154 0x92 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-vsnprintf.o) - 0x4201a154 _vsniprintf_r - 0x4201a154 _vsnprintf_r - 0x4201a1b8 vsnprintf - 0x4201a1b8 vsniprintf - .text 0x4201a1e6 0x32e C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fseeko.o) - 0x4201a1e6 _fseeko_r - 0x4201a4ee fseeko - .text 0x4201a514 0x22 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-localeconv.o) - 0x4201a514 __localeconv_l - 0x4201a51a _localeconv_r - 0x4201a528 localeconv - .text 0x4201a536 0x100 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-reent.o) - 0x4201a536 _reclaim_reent - .text 0x4201a636 0x12 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-errno.o) - 0x4201a636 __errno - .text 0x4201a648 0x18 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysclose.o) - 0x4201a648 close - .text 0x4201a660 0x28 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysfcntl.o) - 0x4201a660 fcntl - .text 0x4201a688 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysgettod.o) - 0x4201a688 gettimeofday - .text 0x4201a6a8 0x3a C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysopen.o) - 0x4201a6a8 open - .text 0x4201a6e2 0x28 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysread.o) - 0x4201a6e2 read - .text 0x4201a70a 0x28 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-syswrite.o) - 0x4201a70a write - .text 0x4201a732 0xa C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libm_a-sf_nan.o) - 0x4201a732 nanf - .text 0x4201a73c 0xf6e C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-dtoa.o) - 0x4201a870 _dtoa_r - .text 0x4201b6aa 0xbfc C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-mprec.o) - 0x4201b6aa _Balloc - 0x4201b75c _Bfree - 0x4201b7c4 __multadd - 0x4201b886 __s2b - 0x4201b946 __hi0bits - 0x4201b98c __lo0bits - 0x4201b9f6 __i2b - 0x4201ba30 __multiply - 0x4201bbb0 __pow5mult - 0x4201bc90 __lshift - 0x4201bd94 __mcmp - 0x4201bdca __mdiff - 0x4201bf3c __ulp - 0x4201bf80 __b2d - 0x4201c046 __d2b - 0x4201c126 __ratio - 0x4201c1aa _mprec_log10 - 0x4201c214 __copybits - 0x4201c260 __any_on - .text 0x4201c2a6 0x1152 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtod.o) - 0x4201c304 _strtod_l - 0x4201d138 _strtod_r - 0x4201d144 strtod_l - 0x4201d16c strtod - 0x4201d194 strtof_l - 0x4201d2ba strtof - .text 0x4201d3f8 0x182 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtol.o) - 0x4201d52c _strtol_r - 0x4201d52e strtol_l - .text 0x4201d57a 0x4c2 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-svfprintf.o) - 0x4201d57a __ssputs_r - 0x4201d680 __ssprint_r - 0x4201d7be _svfiprintf_r - 0x4201d7be _svfprintf_r - .text 0x4201da3c 0x7a C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-flags.o) - 0x4201da3c __sflags - .text 0x4201dab6 0x13a C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-refill.o) - 0x4201dae2 __srefill_r - .text 0x4201dbf0 0xe C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libm_a-s_nan.o) - 0x4201dbf0 nan - .text 0x4201dbfe 0x5a4 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-gdtoa-gethex.o) - 0x4201dca8 __hexdig_fun - 0x4201dcea __gethex - .text 0x4201e1a2 0x1ce C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-gdtoa-hexnan.o) - 0x4201e1cc __match - 0x4201e1fc __hexnan - .text 0x4201e370 0x48 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-mbtowc_r.o) - 0x4201e370 _mbtowc_r - 0x4201e37e __ascii_mbtowc - .text 0x4201e3b8 0x2e C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-wctomb_r.o) - 0x4201e3b8 _wctomb_r - 0x4201e3c6 __ascii_wctomb - *libesp_driver_ana_cmpr.a:ana_cmpr.*(.text .text.ana_cmpr_del_unit .text.ana_cmpr_destroy_unit .text.ana_cmpr_disable .text.ana_cmpr_enable .text.ana_cmpr_get_gpio .text.ana_cmpr_get_unit_id .text.ana_cmpr_new_unit .text.ana_cmpr_register_event_callbacks .text.ana_cmpr_set_cross_type .text.ana_cmpr_set_debounce .text.ana_cmpr_set_internal_reference) - *libesp_driver_gptimer.a:gptimer.*(.text .text.gptimer_del_timer .text.gptimer_destroy .text.gptimer_disable .text.gptimer_enable .text.gptimer_get_captured_count .text.gptimer_get_raw_count .text.gptimer_get_resolution .text.gptimer_new_timer .text.gptimer_register_event_callbacks .text.gptimer_set_alarm_action .text.gptimer_set_raw_count .text.gptimer_start .text.gptimer_stop) - *libesp_driver_i2c.a:i2c_master.*(.text .text.i2c_del_master_bus .text.i2c_ll_master_set_fractional_divider.constprop.0 .text.i2c_master_bus_add_device .text.i2c_master_bus_destroy .text.i2c_master_bus_reset .text.i2c_master_bus_rm_device .text.i2c_master_bus_wait_all_done .text.i2c_master_device_change_address .text.i2c_master_execute_defined_operations .text.i2c_master_get_bus_handle .text.i2c_master_multi_buffer_transmit .text.i2c_master_probe .text.i2c_master_receive .text.i2c_master_register_event_callbacks .text.i2c_master_transmit .text.i2c_master_transmit_receive .text.i2c_new_master_bus .text.s_i2c_asynchronous_transaction .text.s_i2c_hw_fsm_reset.constprop.0 .text.s_i2c_read_command .text.s_i2c_send_command_async .text.s_i2c_send_commands .text.s_i2c_start_end_command .text.s_i2c_synchronous_transaction .text.s_i2c_transaction_start .text.s_i2c_write_command) - *libesp_driver_mcpwm.a:mcpwm_cap.*(.text .text.mcpwm_cap_timer_destroy.isra.0 .text.mcpwm_capture_channel_destroy .text.mcpwm_capture_channel_disable .text.mcpwm_capture_channel_enable .text.mcpwm_capture_channel_register_event_callbacks .text.mcpwm_capture_channel_trigger_soft_catch .text.mcpwm_capture_timer_disable .text.mcpwm_capture_timer_enable .text.mcpwm_capture_timer_get_resolution .text.mcpwm_capture_timer_set_phase_on_sync .text.mcpwm_capture_timer_start .text.mcpwm_capture_timer_stop .text.mcpwm_del_capture_channel .text.mcpwm_del_capture_timer .text.mcpwm_new_capture_channel .text.mcpwm_new_capture_timer) - *libesp_driver_mcpwm.a:mcpwm_cmpr.*(.text .text.mcpwm_comparator_destroy .text.mcpwm_comparator_register_event_callbacks .text.mcpwm_comparator_set_compare_value .text.mcpwm_del_comparator .text.mcpwm_new_comparator) - *libesp_driver_mcpwm.a:mcpwm_fault.*(.text .text.mcpwm_del_fault .text.mcpwm_del_gpio_fault .text.mcpwm_del_soft_fault .text.mcpwm_fault_register_event_callbacks .text.mcpwm_gpio_fault_destroy .text.mcpwm_new_gpio_fault .text.mcpwm_new_soft_fault .text.mcpwm_soft_fault_activate) - *libesp_driver_mcpwm.a:mcpwm_oper.*(.text .text.mcpwm_del_operator .text.mcpwm_new_operator .text.mcpwm_operator_apply_carrier .text.mcpwm_operator_connect_timer .text.mcpwm_operator_destroy .text.mcpwm_operator_recover_from_fault .text.mcpwm_operator_register_event_callbacks .text.mcpwm_operator_set_brake_on_fault) - *libesp_driver_mcpwm.a:mcpwm_timer.*(.text .text.mcpwm_del_timer .text.mcpwm_new_timer .text.mcpwm_timer_destroy .text.mcpwm_timer_disable .text.mcpwm_timer_enable .text.mcpwm_timer_get_phase .text.mcpwm_timer_register_event_callbacks .text.mcpwm_timer_set_period .text.mcpwm_timer_set_phase_on_sync .text.mcpwm_timer_start_stop) - *libesp_driver_parlio.a:parlio_rx.*(.text .text.parlio_del_rx_delimiter .text.parlio_del_rx_unit .text.parlio_destroy_rx_unit .text.parlio_new_rx_level_delimiter .text.parlio_new_rx_pulse_delimiter .text.parlio_new_rx_soft_delimiter .text.parlio_new_rx_unit .text.parlio_rx_soft_delimiter_start_stop .text.parlio_rx_unit_disable .text.parlio_rx_unit_enable .text.parlio_rx_unit_receive .text.parlio_rx_unit_register_event_callbacks .text.parlio_rx_unit_wait_all_done) - *libesp_driver_parlio.a:parlio_tx.*(.text .text.parlio_del_tx_unit .text.parlio_destroy_tx_unit .text.parlio_new_tx_unit .text.parlio_tx_get_alignment_constraints .text.parlio_tx_unit_disable .text.parlio_tx_unit_enable .text.parlio_tx_unit_register_event_callbacks .text.parlio_tx_unit_transmit .text.parlio_tx_unit_wait_all_done) - *libesp_driver_rmt.a:rmt_encoder.*(.text .text.rmt_alloc_encoder_mem .text.rmt_del_encoder) - *libesp_driver_rmt.a:rmt_rx.*(.text .text.rmt_del_rx_channel .text.rmt_new_rx_channel .text.rmt_receive .text.rmt_rx_demodulate_carrier .text.rmt_rx_destroy .text.rmt_rx_disable .text.rmt_rx_enable .text.rmt_rx_register_event_callbacks) - *libesp_driver_rmt.a:rmt_tx.*(.text .text.rmt_del_sync_manager .text.rmt_del_tx_channel .text.rmt_new_sync_manager .text.rmt_new_tx_channel .text.rmt_sync_reset .text.rmt_transmit .text.rmt_tx_destroy .text.rmt_tx_disable .text.rmt_tx_enable .text.rmt_tx_modulate_carrier .text.rmt_tx_register_event_callbacks .text.rmt_tx_switch_gpio .text.rmt_tx_wait_all_done) - *libesp_driver_uart.a:uart_vfs.*(.text .text.__esp_system_init_fn_init_vfs_uart .text.esp_vfs_uart_get_vfs .text.uart_access .text.uart_close .text.uart_end_select .text.uart_fcntl .text.uart_fstat .text.uart_fstat.part.0 .text.uart_fsync .text.uart_get_avail_data_len .text.uart_get_avail_data_len_via_driver .text.uart_open .text.uart_read .text.uart_read_char .text.uart_return_char .text.uart_rx_char .text.uart_rx_char_via_driver .text.uart_start_select .text.uart_tcdrain .text.uart_tcflush .text.uart_tcgetattr .text.uart_tcsetattr .text.uart_tx_char .text.uart_tx_char_via_driver .text.uart_vfs_dev_port_set_rx_line_endings .text.uart_vfs_dev_port_set_tx_line_endings .text.uart_vfs_dev_register .text.uart_vfs_dev_set_rx_line_endings .text.uart_vfs_dev_set_tx_line_endings .text.uart_vfs_dev_use_driver .text.uart_vfs_dev_use_nonblocking .text.uart_vfs_include_dev_init .text.uart_write) - .text.uart_get_avail_data_len - 0x4201e3e6 0x20 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .text.uart_tx_char - 0x4201e406 0x36 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .text.uart_rx_char - 0x4201e43c 0x2a esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .text.uart_read_char - 0x4201e466 0x22 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .text.uart_end_select - 0x4201e488 0xe6 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .text.uart_get_avail_data_len_via_driver - 0x4201e56e 0x1e esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .text.uart_start_select - 0x4201e58c 0x1ce esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .text.uart_tcflush - 0x4201e75a 0x30 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .text.uart_tcdrain - 0x4201e78a 0x30 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .text.uart_tcgetattr - 0x4201e7ba 0x2f4 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .text.uart_tcsetattr - 0x4201eaae 0x292 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .text.uart_access - 0x4201ed40 0x6e esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .text.uart_write - 0x4201edae 0x8c esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .text.uart_rx_char_via_driver - 0x4201ee3a 0x40 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .text.uart_tx_char_via_driver - 0x4201ee7a 0x22 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .text.uart_open - 0x4201ee9c 0x60 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .text.uart_fcntl - 0x4201eefc 0x74 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .text.uart_fstat.part.0 - 0x4201ef70 0x18 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .text.uart_fstat - 0x4201ef88 0x32 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .text.uart_close - 0x4201efba 0x22 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .text.uart_return_char - 0x4201efdc 0x1e esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .text.uart_read - 0x4201effa 0x110 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .text.uart_fsync - 0x4201f10a 0x50 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .text.esp_vfs_uart_get_vfs - 0x4201f15a 0xa esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - 0x4201f15a esp_vfs_uart_get_vfs - .text.uart_vfs_dev_register - 0x4201f164 0x32 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - 0x4201f164 esp_vfs_dev_uart_register - 0x4201f164 uart_vfs_dev_register - .text.__esp_system_init_fn_init_vfs_uart - 0x4201f196 0x16 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .text.uart_vfs_dev_port_set_rx_line_endings - 0x4201f1ac 0x34 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - 0x4201f1ac uart_vfs_dev_port_set_rx_line_endings - 0x4201f1ac esp_vfs_dev_uart_port_set_rx_line_endings - .text.uart_vfs_dev_port_set_tx_line_endings - 0x4201f1e0 0x34 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - 0x4201f1e0 esp_vfs_dev_uart_port_set_tx_line_endings - 0x4201f1e0 uart_vfs_dev_port_set_tx_line_endings - .text.uart_vfs_dev_use_driver - 0x4201f214 0x70 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - 0x4201f214 uart_vfs_dev_use_driver - 0x4201f214 esp_vfs_dev_uart_use_driver - .text.uart_vfs_include_dev_init - 0x4201f284 0x2 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - 0x4201f284 uart_vfs_include_dev_init - *libesp_driver_usb_serial_jtag.a:usb_serial_jtag_vfs.*(.text .text.__esp_system_init_fn_init_vfs_usj_sec .text.esp_vfs_usb_serial_jtag_get_vfs .text.usb_serial_jtag_close .text.usb_serial_jtag_end_select .text.usb_serial_jtag_fcntl .text.usb_serial_jtag_fstat .text.usb_serial_jtag_fsync .text.usb_serial_jtag_open .text.usb_serial_jtag_read .text.usb_serial_jtag_read_char.constprop.0 .text.usb_serial_jtag_return_char.constprop.0 .text.usb_serial_jtag_rx_char_no_driver .text.usb_serial_jtag_start_select .text.usb_serial_jtag_tcdrain .text.usb_serial_jtag_tcflush .text.usb_serial_jtag_tcgetattr .text.usb_serial_jtag_tcsetattr .text.usb_serial_jtag_tx_char_no_driver .text.usb_serial_jtag_vfs_include_dev_init .text.usb_serial_jtag_vfs_register .text.usb_serial_jtag_vfs_set_rx_line_endings .text.usb_serial_jtag_vfs_set_tx_line_endings .text.usb_serial_jtag_vfs_use_driver .text.usb_serial_jtag_vfs_use_nonblocking .text.usb_serial_jtag_wait_tx_done_no_driver .text.usb_serial_jtag_write .text.usbjtag_rx_char_via_driver .text.usbjtag_tx_char_via_driver .text.usbjtag_wait_tx_done_via_driver) - .text.usb_serial_jtag_open - 0x4201f286 0xc esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .text.usb_serial_jtag_close - 0x4201f292 0x4 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .text.usb_serial_jtag_end_select - 0x4201f296 0x8e esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .text.usb_serial_jtag_start_select - 0x4201f324 0x14e esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .text.usb_serial_jtag_tcflush - 0x4201f472 0x1a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .text.usb_serial_jtag_fstat - 0x4201f48c 0x28 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .text.usb_serial_jtag_fsync - 0x4201f4b4 0x42 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .text.usb_serial_jtag_tcdrain - 0x4201f4f6 0x16 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .text.usb_serial_jtag_write - 0x4201f50c 0x74 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .text.__esp_system_init_fn_init_vfs_usj_sec - 0x4201f580 0x2a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .text.usb_serial_jtag_wait_tx_done_no_driver - 0x4201f5aa 0x7a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .text.usb_serial_jtag_fcntl - 0x4201f624 0x44 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .text.usb_serial_jtag_tcgetattr - 0x4201f668 0x5c esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .text.usb_serial_jtag_return_char.constprop.0 - 0x4201f6c4 0x28 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .text.usb_serial_jtag_read_char.constprop.0 - 0x4201f6ec 0x16 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .text.usb_serial_jtag_read - 0x4201f702 0xec esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .text.usb_serial_jtag_rx_char_no_driver - 0x4201f7ee 0x1a esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .text.usb_serial_jtag_tx_char_no_driver - 0x4201f808 0x7e esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .text.usb_serial_jtag_tcsetattr - 0x4201f886 0x52 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .text.esp_vfs_usb_serial_jtag_get_vfs - 0x4201f8d8 0xa esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - 0x4201f8d8 esp_vfs_usb_serial_jtag_get_vfs - .text.usb_serial_jtag_vfs_include_dev_init - 0x4201f8e2 0x2 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - 0x4201f8e2 usb_serial_jtag_vfs_include_dev_init - *libesp_event.a:default_event_loop.*(.text .text.esp_event_handler_instance_register .text.esp_event_handler_instance_unregister .text.esp_event_handler_register .text.esp_event_handler_unregister .text.esp_event_loop_create_default .text.esp_event_loop_delete_default .text.esp_event_post) - .text.esp_event_loop_create_default - 0x4201f8e4 0x3e esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) - 0x4201f8e4 esp_event_loop_create_default - *libesp_event.a:esp_event.*(.text .text.base_node_add_handler .text.esp_event_dump .text.esp_event_handler_instance_register_with .text.esp_event_handler_instance_unregister_with .text.esp_event_handler_register_with .text.esp_event_handler_register_with_internal .text.esp_event_handler_unregister_with .text.esp_event_handler_unregister_with_internal .text.esp_event_loop_create .text.esp_event_loop_delete .text.esp_event_loop_run .text.esp_event_loop_run_task .text.esp_event_post_to .text.handler_instances_add .text.handler_instances_remove .text.handler_instances_remove_all .text.loop_node_add_handler .text.loop_remove_handler) - .text.handler_instances_remove - 0x4201f922 0x74 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .text.loop_remove_handler - 0x4201f996 0x130 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .text.esp_event_loop_create - 0x4201fac6 0xcc esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - 0x4201fac6 esp_event_loop_create - .text.esp_event_loop_run - 0x4201fb92 0x20e esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - 0x4201fb92 esp_event_loop_run - .text.esp_event_loop_run_task - 0x4201fda0 0x14 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - *libesp_hw_support.a:adc_share_hw_ctrl.*(.text .text.adc2_wifi_acquire .text.adc2_wifi_release .text.adc_calc_hw_calibration_code .text.adc_load_hw_calibration_chan_compens .text.adc_lock_acquire .text.adc_lock_release .text.adc_lock_try_acquire) - *libesp_hw_support.a:cpu.*(.text .text.esp_cpu_clear_breakpoint .text.esp_cpu_clear_watchpoint .text.esp_cpu_set_breakpoint .text.esp_cpu_set_watchpoint .text.semihosting_call_noerrno) - .text.semihosting_call_noerrno - 0x4201fdb4 0xe esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - .text.esp_cpu_set_breakpoint - 0x4201fdc2 0x56 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - 0x4201fdc2 esp_cpu_set_breakpoint - *libesp_hw_support.a:esp_clk.*(.text .text.esp_clk_rtc_time) - *libesp_hw_support.a:esp_clk_tree.*(.text .text.esp_clk_tree_src_get_freq_hz) - .text.esp_clk_tree_src_get_freq_hz - 0x4201fe18 0xb0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) - 0x4201fe18 esp_clk_tree_src_get_freq_hz - *libesp_hw_support.a:gdma.*(.text .text.gdma_apply_strategy .text.gdma_config_transfer .text.gdma_connect .text.gdma_del_channel .text.gdma_del_rx_channel .text.gdma_del_tx_channel .text.gdma_disconnect .text.gdma_get_alignment_constraints .text.gdma_get_free_m2m_trig_id_mask .text.gdma_get_group_channel_id .text.gdma_new_ahb_channel .text.gdma_register_rx_event_callbacks .text.gdma_register_tx_event_callbacks .text.gdma_release_group_handle .text.gdma_release_group_handle.part.0 .text.gdma_release_pair_handle .text.gdma_set_priority) - .text.gdma_release_group_handle.part.0 - 0x4201fec8 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .text.gdma_release_group_handle - 0x4201fee0 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .text.gdma_release_pair_handle - 0x4201ff50 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .text.gdma_del_rx_channel - 0x4201ffac 0x80 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .text.gdma_del_tx_channel - 0x4202002c 0x80 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .text.gdma_new_ahb_channel - 0x420200ac 0x332 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - 0x420200ac gdma_new_channel - 0x420200ac gdma_new_ahb_channel - .text.gdma_del_channel - 0x420203de 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - 0x420203de gdma_del_channel - .text.gdma_get_group_channel_id - 0x4202040e 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - 0x4202040e gdma_get_group_channel_id - .text.gdma_connect - 0x4202042a 0xc0 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - 0x4202042a gdma_connect - .text.gdma_disconnect - 0x420204ea 0x90 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - 0x420204ea gdma_disconnect - .text.gdma_config_transfer - 0x4202057a 0xae esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - 0x4202057a gdma_config_transfer - *libesp_hw_support.a:gdma_link.*(.text .text.gdma_del_link_list .text.gdma_link_count_buffer_size_till_eof .text.gdma_link_get_length .text.gdma_link_get_owner .text.gdma_link_set_owner .text.gdma_new_link_list) - *libesp_hw_support.a:periph_ctrl.*(.text .text.periph_ll_get_clk_en_mask .text.periph_ll_get_clk_en_reg .text.periph_ll_get_rst_en_mask .text.periph_ll_get_rst_en_reg .text.periph_module_disable .text.periph_module_enable) - *libesp_hw_support.a:pmu_param.*(.text .text.pmu_hp_system_analog_param_default .text.pmu_hp_system_clock_param_default .text.pmu_hp_system_digital_param_default .text.pmu_hp_system_power_param_default .text.pmu_hp_system_retention_param_default .text.pmu_lp_system_analog_param_default .text.pmu_lp_system_power_param_default) - .text.pmu_hp_system_power_param_default - 0x42020628 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - 0x42020628 pmu_hp_system_power_param_default - .text.pmu_hp_system_clock_param_default - 0x42020658 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - 0x42020658 pmu_hp_system_clock_param_default - .text.pmu_hp_system_digital_param_default - 0x42020684 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - 0x42020684 pmu_hp_system_digital_param_default - .text.pmu_hp_system_analog_param_default - 0x420206b0 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - 0x420206b0 pmu_hp_system_analog_param_default - .text.pmu_hp_system_retention_param_default - 0x420206e0 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - 0x420206e0 pmu_hp_system_retention_param_default - .text.pmu_lp_system_power_param_default - 0x4202070c 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - 0x4202070c pmu_lp_system_power_param_default - .text.pmu_lp_system_analog_param_default - 0x4202073c 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - 0x4202073c pmu_lp_system_analog_param_default - *libesp_hw_support.a:regi2c_ctrl.*(.text) - *libesp_hw_support.a:sar_periph_ctrl.*(.text .text.s_sar_power_acquire .text.s_sar_power_release .text.sar_periph_ctrl_adc_continuous_power_acquire .text.sar_periph_ctrl_adc_continuous_power_release .text.sar_periph_ctrl_adc_oneshot_power_acquire .text.sar_periph_ctrl_adc_oneshot_power_release .text.sar_periph_ctrl_init .text.sar_periph_ctrl_pwdet_power_acquire .text.sar_periph_ctrl_pwdet_power_release) - *libesp_hw_support.a:sar_periph_ctrl_common.*(.text .text.temp_sensor_sync_tsens_idx) - *libesp_hw_support.a:sleep_clock.*(.text .text.__esp_system_init_fn_sleep_clock_startup_init .text.sleep_clock_system_retention_init) - .text.sleep_clock_system_retention_init - 0x4202076c 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_clock.c.obj) - 0x4202076c sleep_clock_system_retention_init - .text.__esp_system_init_fn_sleep_clock_startup_init - 0x4202077e 0x2e esp-idf/esp_hw_support/libesp_hw_support.a(sleep_clock.c.obj) - *libesp_hw_support.a:sleep_cpu.*(.text .text.cpu_domain_dev_sleep_frame_alloc_and_init .text.esp_sleep_cpu_retention_deinit .text.esp_sleep_cpu_retention_deinit_impl.isra.0 .text.esp_sleep_cpu_retention_init .text.esp_sleep_cpu_retention_init_impl .text.sleep_cpu_configure) - *libesp_hw_support.a:sleep_modem.*(.text .text.esp_pm_register_inform_out_light_sleep_overhead_callback .text.esp_pm_register_light_sleep_default_params_config_callback .text.esp_pm_unregister_inform_out_light_sleep_overhead_callback .text.esp_pm_unregister_light_sleep_default_params_config_callback .text.sleep_modem_configure) - *libesp_hw_support.a:sleep_modes.*(.text .text.esp_deep_sleep .text.esp_deep_sleep_deregister_hook .text.esp_deep_sleep_deregister_phy_hook .text.esp_deep_sleep_register_hook .text.esp_deep_sleep_register_phy_hook .text.esp_deep_sleep_try .text.esp_get_deep_sleep_wake_stub .text.esp_sleep_clock_config .text.esp_sleep_disable_bt_wakeup .text.esp_sleep_disable_ext1_wakeup_io .text.esp_sleep_disable_wakeup_source .text.esp_sleep_disable_wifi_beacon_wakeup .text.esp_sleep_disable_wifi_wakeup .text.esp_sleep_enable_adc_tsens_monitor .text.esp_sleep_enable_bt_wakeup .text.esp_sleep_enable_ext1_wakeup .text.esp_sleep_enable_ext1_wakeup_io .text.esp_sleep_enable_ext1_wakeup_with_level_mask .text.esp_sleep_enable_gpio_wakeup .text.esp_sleep_enable_uart_wakeup .text.esp_sleep_enable_ulp_wakeup .text.esp_sleep_enable_vbat_under_volt_wakeup .text.esp_sleep_enable_wifi_beacon_wakeup .text.esp_sleep_enable_wifi_wakeup .text.esp_sleep_get_ext1_wakeup_status .text.esp_sleep_get_wakeup_cause .text.esp_sleep_is_valid_wakeup_gpio .text.esp_sleep_overhead_out_time_refresh .text.esp_sleep_pd_config .text.esp_sleep_periph_use_8m .text.esp_sleep_sub_mode_config .text.esp_sleep_sub_mode_dump_config .text.esp_sleep_sub_mode_force_disable .text.rtc_sleep_enable_ultra_low .text.s_sleep_hook_deregister .text.s_sleep_hook_register) - .text.s_sleep_hook_register - 0x420207ac 0x4a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .text.esp_deep_sleep_register_hook - 0x420207f6 0xc esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - 0x420207f6 esp_deep_sleep_register_hook - .text.esp_sleep_pd_config - 0x42020802 0x90 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - 0x42020802 esp_sleep_pd_config - *libesp_hw_support.a:sleep_system_peripheral.*(.text) - *libesp_phy.a:phy_override.*(.text .text.esp_phy_efuse_get_chip_ver_pkg .text.esp_phy_efuse_get_mac .text.include_esp_phy_override .text.phy_set_pwdet_power .text.set_xpd_sar) - .text.include_esp_phy_override - 0x42020892 0x2 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - 0x42020892 include_esp_phy_override - *libesp_pm.a:pm_impl.*(.text .text.esp_pm_configure .text.esp_pm_get_configuration .text.esp_pm_impl_get_mode .text.esp_pm_impl_idle_hook .text.esp_pm_impl_init .text.esp_pm_impl_waiti) - *libesp_system.a:esp_system_chip.*(.text .text.esp_get_free_heap_size .text.esp_get_free_internal_heap_size .text.esp_get_idf_version .text.esp_get_minimum_free_heap_size) - *libesp_system.a:freertos_hooks.*(.text .text.esp_deregister_freertos_idle_hook .text.esp_deregister_freertos_idle_hook_for_cpu .text.esp_deregister_freertos_idle_hook_for_cpu.part.0 .text.esp_deregister_freertos_tick_hook .text.esp_deregister_freertos_tick_hook_for_cpu .text.esp_deregister_freertos_tick_hook_for_cpu.part.0 .text.esp_register_freertos_idle_hook .text.esp_register_freertos_idle_hook_for_cpu .text.esp_register_freertos_idle_hook_for_cpu.part.0 .text.esp_register_freertos_tick_hook .text.esp_register_freertos_tick_hook_for_cpu .text.esp_register_freertos_tick_hook_for_cpu.part.0 .text.esp_vApplicationIdleHook) - .text.esp_register_freertos_idle_hook_for_cpu.part.0 - 0x42020894 0x54 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - .text.esp_register_freertos_tick_hook_for_cpu.part.0 - 0x420208e8 0x54 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - .text.esp_vApplicationIdleHook - 0x4202093c 0x36 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - 0x4202093c esp_vApplicationIdleHook - .text.esp_register_freertos_idle_hook_for_cpu - 0x42020972 0xc esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - 0x42020972 esp_register_freertos_idle_hook_for_cpu - .text.esp_register_freertos_tick_hook_for_cpu - 0x4202097e 0xc esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - 0x4202097e esp_register_freertos_tick_hook_for_cpu - .text.esp_register_freertos_tick_hook - 0x4202098a 0x4 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - 0x4202098a esp_register_freertos_tick_hook - *libesp_system.a:panic.*(.text .text.esp_panic_handler .text.esp_panic_handler_disable_timg_wdts .text.esp_panic_handler_enable_rtc_wdt .text.esp_panic_handler_feed_wdts .text.esp_panic_handler_increment_entry_count .text.esp_reset_reason_get_hint .text.esp_reset_reason_set_hint .text.print_abort_details) - .text.print_abort_details - 0x4202098e 0x2 esp-idf/esp_system/libesp_system.a(panic.c.obj) - .text.esp_panic_handler_disable_timg_wdts - 0x42020990 0x6c esp-idf/esp_system/libesp_system.a(panic.c.obj) - 0x42020990 esp_panic_handler_disable_timg_wdts - .text.esp_panic_handler_enable_rtc_wdt - 0x420209fc 0x74 esp-idf/esp_system/libesp_system.a(panic.c.obj) - 0x420209fc esp_panic_handler_enable_rtc_wdt - .text.esp_panic_handler_feed_wdts - 0x42020a70 0xc2 esp-idf/esp_system/libesp_system.a(panic.c.obj) - 0x42020a70 esp_panic_handler_feed_wdts - .text.esp_panic_handler_increment_entry_count - 0x42020b32 0x16 esp-idf/esp_system/libesp_system.a(panic.c.obj) - 0x42020b32 esp_panic_handler_increment_entry_count - .text.esp_panic_handler - 0x42020b48 0xf8 esp-idf/esp_system/libesp_system.a(panic.c.obj) - 0x42020b48 esp_panic_handler - *libesp_system.a:reset_reason.*(.text .text.esp_reset_reason .text.esp_reset_reason_get_hint .text.startup.esp_reset_reason_init) - .text.esp_reset_reason - 0x42020c40 0xa esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - 0x42020c40 esp_reset_reason - .text.esp_reset_reason_get_hint - 0x42020c4a 0x20 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - 0x42020c4a esp_reset_reason_get_hint - .text.startup.esp_reset_reason_init - 0x42020c6a 0xe8 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - *libesp_system.a:system_internal.*(.text) - *libesp_system.a:system_time.*(.text) - *libesp_timer.a:esp_timer_impl_common.*(.text) - *libesp_timer.a:esp_timer_impl_systimer.*(.text .text.esp_timer_impl_deinit .text.esp_timer_impl_early_init .text.esp_timer_impl_get_alarm_reg .text.esp_timer_impl_init) - .text.esp_timer_impl_early_init - 0x42020d52 0xbe esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - 0x42020d52 esp_timer_impl_early_init - .text.esp_timer_impl_init - 0x42020e10 0x6c esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - 0x42020e10 esp_timer_impl_init - *libfreertos.a:app_startup.*(.literal .literal.* .text .text.*) - .text.main_task - 0x42020e7c 0x44 esp-idf/freertos/libfreertos.a(app_startup.c.obj) - .text.esp_startup_start_app - 0x42020ec0 0x6e esp-idf/freertos/libfreertos.a(app_startup.c.obj) - 0x42020ec0 esp_startup_start_app - *libfreertos.a:freertos_compatibility.*(.literal .literal.* .text .text.*) - *libfreertos.a:idf_additions.*(.literal .literal.* .text .text.*) - .text.xQueueCreateWithCaps - 0x42020f2e 0x74 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - 0x42020f2e xQueueCreateWithCaps - .text.vQueueDeleteWithCaps - 0x42020fa2 0x56 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - 0x42020fa2 vQueueDeleteWithCaps - .text.xSemaphoreCreateGenericWithCaps - 0x42020ff8 0x86 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - 0x42020ff8 xSemaphoreCreateGenericWithCaps - .text.vSemaphoreDeleteWithCaps - 0x4202107e 0x4c esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - 0x4202107e vSemaphoreDeleteWithCaps - *libfreertos.a:idf_additions_event_groups.*(.literal .literal.* .text .text.*) - *libfreertos.a:tasks.*(.literal.uxTaskGetSnapshotAll .text.uxTaskGetSnapshotAll) - *libfreertos.a:tasks.*(.literal.xTaskGetNext .text.xTaskGetNext) - *libhal.a:gdma_hal_ahb_v1.*(.text .text.gdma_ahb_hal_connect_peri .text.gdma_ahb_hal_disconnect_peri .text.gdma_ahb_hal_enable_burst .text.gdma_ahb_hal_enable_etm_task .text.gdma_ahb_hal_enable_intr .text.gdma_ahb_hal_get_intr_status_reg .text.gdma_ahb_hal_init .text.gdma_ahb_hal_set_priority .text.gdma_ahb_hal_set_strategy) - .text.gdma_ahb_hal_set_priority - 0x420210ca 0x30 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) - 0x420210ca gdma_ahb_hal_set_priority - .text.gdma_ahb_hal_disconnect_peri - 0x420210fa 0x34 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) - 0x420210fa gdma_ahb_hal_disconnect_peri - .text.gdma_ahb_hal_enable_burst - 0x4202112e 0x4c esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) - 0x4202112e gdma_ahb_hal_enable_burst - .text.gdma_ahb_hal_set_strategy - 0x4202117a 0x56 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) - 0x4202117a gdma_ahb_hal_set_strategy - .text.gdma_ahb_hal_get_intr_status_reg - 0x420211d0 0x16 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) - 0x420211d0 gdma_ahb_hal_get_intr_status_reg - .text.gdma_ahb_hal_enable_etm_task - 0x420211e6 0x34 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) - 0x420211e6 gdma_ahb_hal_enable_etm_task - .text.gdma_ahb_hal_enable_intr - 0x4202121a 0x38 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) - 0x4202121a gdma_ahb_hal_enable_intr - .text.gdma_ahb_hal_connect_peri - 0x42021252 0x70 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) - 0x42021252 gdma_ahb_hal_connect_peri - .text.gdma_ahb_hal_init - 0x420212c2 0xae esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) - 0x420212c2 gdma_ahb_hal_init - *libhal.a:gdma_hal_top.*(.text .text.gdma_hal_connect_peri .text.gdma_hal_deinit .text.gdma_hal_disconnect_peri .text.gdma_hal_enable_access_encrypt_mem .text.gdma_hal_enable_burst .text.gdma_hal_enable_etm_task .text.gdma_hal_enable_intr .text.gdma_hal_get_intr_status_reg .text.gdma_hal_set_burst_size .text.gdma_hal_set_priority .text.gdma_hal_set_strategy) - .text.gdma_hal_deinit - 0x42021370 0x6 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - 0x42021370 gdma_hal_deinit - .text.gdma_hal_set_priority - 0x42021376 0x4 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - 0x42021376 gdma_hal_set_priority - .text.gdma_hal_connect_peri - 0x4202137a 0x4 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - 0x4202137a gdma_hal_connect_peri - .text.gdma_hal_disconnect_peri - 0x4202137e 0x4 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - 0x4202137e gdma_hal_disconnect_peri - .text.gdma_hal_enable_burst - 0x42021382 0x4 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - 0x42021382 gdma_hal_enable_burst - .text.gdma_hal_set_burst_size - 0x42021386 0x8 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - 0x42021386 gdma_hal_set_burst_size - .text.gdma_hal_enable_intr - 0x4202138e 0x4 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - 0x4202138e gdma_hal_enable_intr - .text.gdma_hal_enable_access_encrypt_mem - 0x42021392 0x8 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - 0x42021392 gdma_hal_enable_access_encrypt_mem - *libhal.a:gpio_hal.*(.text .text.gpio_hal_hysteresis_soft_enable .text.gpio_hal_intr_disable .text.gpio_hal_intr_enable_on_core .text.gpio_hal_iomux_in .text.gpio_hal_iomux_out) - .text.gpio_hal_intr_disable - 0x4202139a 0x26 esp-idf/hal/libhal.a(gpio_hal.c.obj) - 0x4202139a gpio_hal_intr_disable - .text.gpio_hal_iomux_in - 0x420213c0 0x62 esp-idf/hal/libhal.a(gpio_hal.c.obj) - 0x420213c0 gpio_hal_iomux_in - .text.gpio_hal_iomux_out - 0x42021422 0x56 esp-idf/hal/libhal.a(gpio_hal.c.obj) - 0x42021422 gpio_hal_iomux_out - *libhal.a:timer_hal.*(.text .text.timer_hal_deinit .text.timer_hal_init .text.timer_hal_set_counter_value) - *libheap.a:multi_heap.*(.text .text.multi_heap_reset_minimum_free_bytes .text.multi_heap_restore_minimum_free_bytes) - *libieee802154.a:esp_ieee802154.*(.text .text.esp_ieee802154_add_pending_addr .text.esp_ieee802154_cca .text.esp_ieee802154_cca_done .text.esp_ieee802154_clear_pending_addr .text.esp_ieee802154_disable .text.esp_ieee802154_ed_failed .text.esp_ieee802154_enable .text.esp_ieee802154_energy_detect .text.esp_ieee802154_energy_detect_done .text.esp_ieee802154_event_callback_list_register .text.esp_ieee802154_event_callback_list_unregister .text.esp_ieee802154_get_ack_timeout .text.esp_ieee802154_get_auto_ack_rx .text.esp_ieee802154_get_auto_ack_tx .text.esp_ieee802154_get_cca_mode .text.esp_ieee802154_get_cca_threshold .text.esp_ieee802154_get_channel .text.esp_ieee802154_get_coordinator .text.esp_ieee802154_get_panid .text.esp_ieee802154_get_pending_mode .text.esp_ieee802154_get_power_table .text.esp_ieee802154_get_power_with_channel .text.esp_ieee802154_get_promiscuous .text.esp_ieee802154_get_rx_when_idle .text.esp_ieee802154_get_short_address .text.esp_ieee802154_get_state .text.esp_ieee802154_get_txpower .text.esp_ieee802154_receive_at_done .text.esp_ieee802154_receive_done .text.esp_ieee802154_receive_failed .text.esp_ieee802154_receive_handle_done .text.esp_ieee802154_receive_sfd_done .text.esp_ieee802154_reset_pending_table .text.esp_ieee802154_set_ack_timeout .text.esp_ieee802154_set_auto_ack_rx .text.esp_ieee802154_set_auto_ack_tx .text.esp_ieee802154_set_cca_mode .text.esp_ieee802154_set_cca_threshold .text.esp_ieee802154_set_channel .text.esp_ieee802154_set_coordinator .text.esp_ieee802154_set_extended_address .text.esp_ieee802154_set_panid .text.esp_ieee802154_set_pending_mode .text.esp_ieee802154_set_power_table .text.esp_ieee802154_set_power_with_channel .text.esp_ieee802154_set_promiscuous .text.esp_ieee802154_set_rx_when_idle .text.esp_ieee802154_set_short_address .text.esp_ieee802154_set_txpower .text.esp_ieee802154_sleep .text.esp_ieee802154_transmit_done .text.esp_ieee802154_transmit_failed .text.esp_ieee802154_transmit_sfd_done) - .text.esp_ieee802154_enable - 0x42021478 0x20 esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - 0x42021478 esp_ieee802154_enable - .text.esp_ieee802154_disable - 0x42021498 0x20 esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - 0x42021498 esp_ieee802154_disable - .text.esp_ieee802154_set_channel - 0x420214b8 0x16 esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - 0x420214b8 esp_ieee802154_set_channel - .text.esp_ieee802154_get_txpower - 0x420214ce 0x4 esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - 0x420214ce esp_ieee802154_get_txpower - .text.esp_ieee802154_set_txpower - 0x420214d2 0x3a esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - 0x420214d2 esp_ieee802154_set_txpower - .text.esp_ieee802154_get_promiscuous - 0x4202150c 0x4 esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - 0x4202150c esp_ieee802154_get_promiscuous - .text.esp_ieee802154_set_promiscuous - 0x42021510 0x2e esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - 0x42021510 esp_ieee802154_set_promiscuous - .text.esp_ieee802154_get_cca_threshold - 0x4202153e 0x4 esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - 0x4202153e esp_ieee802154_get_cca_threshold - .text.esp_ieee802154_set_cca_threshold - 0x42021542 0x16 esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - 0x42021542 esp_ieee802154_set_cca_threshold - .text.esp_ieee802154_set_coordinator - 0x42021558 0x16 esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - 0x42021558 esp_ieee802154_set_coordinator - .text.esp_ieee802154_set_panid - 0x4202156e 0x2a esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - 0x4202156e esp_ieee802154_set_panid - .text.esp_ieee802154_set_short_address - 0x42021598 0x2a esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - 0x42021598 esp_ieee802154_set_short_address - .text.esp_ieee802154_set_extended_address - 0x420215c2 0x5c esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - 0x420215c2 esp_ieee802154_set_extended_address - .text.esp_ieee802154_set_pending_mode - 0x4202161e 0x16 esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - 0x4202161e esp_ieee802154_set_pending_mode - .text.esp_ieee802154_set_rx_when_idle - 0x42021634 0x16 esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - 0x42021634 esp_ieee802154_set_rx_when_idle - .text.esp_ieee802154_sleep - 0x4202164a 0x2 esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - 0x4202164a esp_ieee802154_sleep - .text.esp_ieee802154_energy_detect - 0x4202164c 0x2 esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - 0x4202164c esp_ieee802154_energy_detect - .text.esp_ieee802154_get_state - 0x4202164e 0x54 esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - 0x4202164e esp_ieee802154_get_state - .text.esp_ieee802154_add_pending_addr - 0x420216a2 0x2 esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - 0x420216a2 esp_ieee802154_add_pending_addr - .text.esp_ieee802154_clear_pending_addr - 0x420216a4 0x2 esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - 0x420216a4 esp_ieee802154_clear_pending_addr - .text.esp_ieee802154_reset_pending_table - 0x420216a6 0x14 esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - 0x420216a6 esp_ieee802154_reset_pending_table - .text.esp_ieee802154_receive_handle_done - 0x420216ba 0x2 esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - 0x420216ba esp_ieee802154_receive_handle_done - .text.esp_ieee802154_ed_failed - 0x420216bc 0x2 esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - 0x420216bc esp_ieee802154_ed_failed - *libieee802154.a:esp_ieee802154_ack.*(.text .text.ieee802154_add_pending_addr .text.ieee802154_clear_pending_addr .text.ieee802154_reset_pending_table) - .text.ieee802154_add_pending_addr - 0x420216be 0x126 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_ack.c.obj) - 0x420216be ieee802154_add_pending_addr - .text.ieee802154_clear_pending_addr - 0x420217e4 0xc2 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_ack.c.obj) - 0x420217e4 ieee802154_clear_pending_addr - .text.ieee802154_reset_pending_table - 0x420218a6 0x26 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_ack.c.obj) - 0x420218a6 ieee802154_reset_pending_table - *libieee802154.a:esp_ieee802154_dev.*(.text .text.ieee802154_cca .text.ieee802154_disable .text.ieee802154_enable .text.ieee802154_energy_detect .text.ieee802154_get_state .text.ieee802154_mac_deinit .text.ieee802154_mac_init .text.ieee802154_mac_is_inited .text.ieee802154_receive_done .text.ieee802154_receive_handle_done .text.ieee802154_rx_ack_timeout_callback .text.ieee802154_sleep .text.ieee802154_transmit_internal.isra.0 .text.tx_init) - .text.ieee802154_rx_ack_timeout_callback - 0x420218cc 0x42 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - .text.ieee802154_receive_done - 0x4202190e 0x2a esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - .text.ieee802154_receive_handle_done - 0x42021938 0x42 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - 0x42021938 ieee802154_receive_handle_done - .text.tx_init 0x4202197a 0x50 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - .text.ieee802154_transmit_internal.isra.0 - 0x420219ca 0x6c esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - .text.ieee802154_enable - 0x42021a36 0x2a esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - 0x42021a36 ieee802154_enable - .text.ieee802154_disable - 0x42021a60 0x28 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - 0x42021a60 ieee802154_disable - .text.ieee802154_mac_init - 0x42021a88 0xe8 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - 0x42021a88 ieee802154_mac_init - .text.ieee802154_mac_deinit - 0x42021b70 0x2e esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - 0x42021b70 ieee802154_mac_deinit - .text.ieee802154_sleep - 0x42021b9e 0x3c esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - 0x42021b9e ieee802154_sleep - .text.ieee802154_energy_detect - 0x42021bda 0x7e esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - 0x42021bda ieee802154_energy_detect - .text.ieee802154_get_state - 0x42021c58 0xa esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - 0x42021c58 ieee802154_get_state - *libieee802154.a:esp_ieee802154_event.*(.text .text.ieee802154_event_callback_list_register .text.ieee802154_event_callback_list_unregister) - *libieee802154.a:esp_ieee802154_frame.*(.text .text.ieee802154_frame_address_offset .text.ieee802154_frame_get_dest_panid .text.ieee802154_frame_get_dst_addr .text.ieee802154_frame_get_src_panid .text.ieee802154_frame_get_type .text.ieee802154_frame_get_version .text.ieee802154_frame_is_ack_required) - .text.ieee802154_frame_address_offset - 0x42021c62 0x1c esp-idf/ieee802154/libieee802154.a(esp_ieee802154_frame.c.obj) - .text.ieee802154_frame_get_type - 0x42021c7e 0x8 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_frame.c.obj) - 0x42021c7e ieee802154_frame_get_type - .text.ieee802154_frame_get_version - 0x42021c86 0xa esp-idf/ieee802154/libieee802154.a(esp_ieee802154_frame.c.obj) - 0x42021c86 ieee802154_frame_get_version - .text.ieee802154_frame_is_ack_required - 0x42021c90 0x14 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_frame.c.obj) - 0x42021c90 ieee802154_frame_is_ack_required - *libieee802154.a:esp_ieee802154_pib.*(.text .text.ieee802154_pib_get_auto_ack_rx .text.ieee802154_pib_get_auto_ack_tx .text.ieee802154_pib_get_cca_mode .text.ieee802154_pib_get_cca_threshold .text.ieee802154_pib_get_channel .text.ieee802154_pib_get_coordinator .text.ieee802154_pib_get_enhance_ack_tx .text.ieee802154_pib_get_power .text.ieee802154_pib_get_power_table .text.ieee802154_pib_get_power_with_channel .text.ieee802154_pib_get_promiscuous .text.ieee802154_pib_init .text.ieee802154_pib_is_pending .text.ieee802154_pib_set_auto_ack_rx .text.ieee802154_pib_set_auto_ack_tx .text.ieee802154_pib_set_cca_mode .text.ieee802154_pib_set_cca_threshold .text.ieee802154_pib_set_channel .text.ieee802154_pib_set_coordinator .text.ieee802154_pib_set_enhance_ack_tx .text.ieee802154_pib_set_pending_mode .text.ieee802154_pib_set_power .text.ieee802154_pib_set_power_table .text.ieee802154_pib_set_power_with_channel .text.ieee802154_pib_set_promiscuous .text.ieee802154_pib_set_rx_when_idle) - .text.ieee802154_pib_is_pending - 0x42021ca4 0xa esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - 0x42021ca4 ieee802154_pib_is_pending - .text.ieee802154_pib_init - 0x42021cae 0x66 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - 0x42021cae ieee802154_pib_init - .text.ieee802154_pib_set_channel - 0x42021d14 0x2e esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - 0x42021d14 ieee802154_pib_set_channel - .text.ieee802154_pib_set_power_table - 0x42021d42 0x48 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - 0x42021d42 ieee802154_pib_set_power_table - .text.ieee802154_pib_get_power_with_channel - 0x42021d8a 0x30 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - 0x42021d8a ieee802154_pib_get_power_with_channel - .text.ieee802154_pib_get_power - 0x42021dba 0x2c esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - 0x42021dba ieee802154_pib_get_power - .text.ieee802154_pib_get_promiscuous - 0x42021de6 0xa esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - 0x42021de6 ieee802154_pib_get_promiscuous - .text.ieee802154_pib_set_promiscuous - 0x42021df0 0x20 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - 0x42021df0 ieee802154_pib_set_promiscuous - .text.ieee802154_pib_get_cca_threshold - 0x42021e10 0xa esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - 0x42021e10 ieee802154_pib_get_cca_threshold - .text.ieee802154_pib_set_cca_threshold - 0x42021e1a 0x20 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - 0x42021e1a ieee802154_pib_set_cca_threshold - .text.ieee802154_pib_set_auto_ack_tx - 0x42021e3a 0x20 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - 0x42021e3a ieee802154_pib_set_auto_ack_tx - .text.ieee802154_pib_set_auto_ack_rx - 0x42021e5a 0x20 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - 0x42021e5a ieee802154_pib_set_auto_ack_rx - .text.ieee802154_pib_set_enhance_ack_tx - 0x42021e7a 0x20 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - 0x42021e7a ieee802154_pib_set_enhance_ack_tx - .text.ieee802154_pib_set_coordinator - 0x42021e9a 0x20 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - 0x42021e9a ieee802154_pib_set_coordinator - .text.ieee802154_pib_set_pending_mode - 0x42021eba 0x1c esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - 0x42021eba ieee802154_pib_set_pending_mode - .text.ieee802154_pib_set_rx_when_idle - 0x42021ed6 0xa esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - 0x42021ed6 ieee802154_pib_set_rx_when_idle - *libieee802154.a:esp_ieee802154_sec.*(.text) - *libieee802154.a:esp_ieee802154_timer.*(.text .text.ieee802154_timer0_get_value .text.ieee802154_timer1_get_value) - *libieee802154.a:esp_ieee802154_util.*(.text .text.ieee802154_etm_set_event_task .text.ieee802154_freq_to_channel) - .text.ieee802154_freq_to_channel - 0x42021ee0 0x10 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_util.c.obj) - 0x42021ee0 ieee802154_freq_to_channel - .text.ieee802154_etm_set_event_task - 0x42021ef0 0x40 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_util.c.obj) - 0x42021ef0 ieee802154_etm_set_event_task - *liblog.a:log_timestamp.*(.text) - *liblog.a:log_write.*(.text .text.esp_log_set_vprintf) - *liblog.a:tag_log_level.*(.text .text.esp_log_level_get .text.esp_log_level_set .text.log_level_get) - *liblwip.a:vfs_lwip.*(.text .text.esp_vfs_lwip_sockets_register .text.lwip_fcntl_r_wrapper .text.lwip_fstat .text.lwip_get_socket_select_semaphore .text.lwip_ioctl_r_wrapper .text.lwip_stop_socket_select) - *libnewlib.a:esp_time_impl.*(.text .text.esp_sync_timekeeping_timers .text.esp_time_impl_get_time .text.esp_time_impl_get_time_since_boot) - .text.esp_time_impl_get_time_since_boot - 0x42021f30 0x30 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - 0x42021f30 esp_time_impl_get_time_since_boot - .text.esp_sync_timekeeping_timers - 0x42021f60 0x7e esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - 0x42021f60 esp_sync_timekeeping_timers - *libriscv.a:interrupt.*(.literal.intr_handler_get .text.intr_handler_get) - .text.intr_handler_get - 0x42021fde 0x1a esp-idf/riscv/libriscv.a(interrupt.c.obj) - 0x42021fde intr_handler_get - *libriscv.a:interrupt.*(.literal.intr_handler_set .text.intr_handler_set) - .text.intr_handler_set - 0x42021ff8 0x1c esp-idf/riscv/libriscv.a(interrupt.c.obj) - 0x42021ff8 intr_handler_set - *libspi_flash.a:esp_flash_api.*(.text .text.esp_flash_app_disable_protect .text.esp_flash_get_protectable_regions .text.esp_flash_read_chip_id .text.esp_flash_read_id .text.esp_flash_read_unique_chip_id .text.esp_flash_suspend_cmd_init .text.find_region) - .text.esp_flash_read_chip_id - 0x42022014 0xa esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - 0x42022014 esp_flash_read_chip_id - *libspi_flash.a:spi_flash_os_func_app.*(.text .text.esp_flash_app_enable_os_functions .text.esp_flash_deinit_os_functions .text.esp_flash_init_main_bus_lock .text.esp_flash_init_os_functions .text.esp_flash_set_dangerous_write_protection .text.use_bus_lock) - .text.esp_flash_app_enable_os_functions - 0x4202201e 0x26 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - 0x4202201e esp_flash_app_enable_os_functions - *libspi_flash.a:spi_flash_os_func_noos.*(.text) - *libvfs.a:vfs.*(.text .text.call_end_selects .text.esp_vfs_access .text.esp_vfs_close .text.esp_vfs_closedir .text.esp_vfs_dump_fds .text.esp_vfs_dump_registered_paths .text.esp_vfs_fcntl_r .text.esp_vfs_free_fs_ops .text.esp_vfs_fstat .text.esp_vfs_fsync .text.esp_vfs_ftruncate .text.esp_vfs_ioctl .text.esp_vfs_link .text.esp_vfs_lseek .text.esp_vfs_mkdir .text.esp_vfs_open .text.esp_vfs_opendir .text.esp_vfs_pread .text.esp_vfs_pwrite .text.esp_vfs_read .text.esp_vfs_readdir .text.esp_vfs_readdir_r .text.esp_vfs_register .text.esp_vfs_register_common .text.esp_vfs_register_fd .text.esp_vfs_register_fd_range .text.esp_vfs_register_fd_with_local_fd .text.esp_vfs_register_fs .text.esp_vfs_register_fs_common .text.esp_vfs_register_fs_with_id .text.esp_vfs_register_with_id .text.esp_vfs_rename .text.esp_vfs_rewinddir .text.esp_vfs_rmdir .text.esp_vfs_safe_fd_isset .text.esp_vfs_seekdir .text.esp_vfs_select .text.esp_vfs_select_triggered .text.esp_vfs_set_readonly_flag .text.esp_vfs_stat .text.esp_vfs_telldir .text.esp_vfs_truncate .text.esp_vfs_unlink .text.esp_vfs_unregister .text.esp_vfs_unregister_fd .text.esp_vfs_unregister_with_id .text.esp_vfs_utime .text.esp_vfs_write .text.get_local_fd .text.get_vfs_for_fd .text.get_vfs_for_index .text.get_vfs_for_path .text.set_global_fd_sets .text.tcdrain .text.tcflow .text.tcflush .text.tcgetattr .text.tcgetsid .text.tcsendbreak .text.tcsetattr .text.translate_path .text.vfs_include_syscalls_impl) - .text.get_local_fd - 0x42022044 0x22 esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.esp_vfs_safe_fd_isset - 0x42022066 0x2a esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.set_global_fd_sets - 0x42022090 0xc8 esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.esp_vfs_free_fs_ops - 0x42022158 0x3a esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.esp_vfs_register_fs_common - 0x42022192 0xfe esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.translate_path - 0x42022290 0x52 esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.esp_vfs_register_fs - 0x420222e2 0x14c esp-idf/vfs/libvfs.a(vfs.c.obj) - 0x420222e2 esp_vfs_register_fs - .text.esp_vfs_register_common - 0x4202242e 0x264 esp-idf/vfs/libvfs.a(vfs.c.obj) - 0x4202242e esp_vfs_register_common - .text.esp_vfs_register_with_id - 0x42022692 0x1e esp-idf/vfs/libvfs.a(vfs.c.obj) - 0x42022692 esp_vfs_register_with_id - .text.esp_vfs_unregister_with_id - 0x420226b0 0xb6 esp-idf/vfs/libvfs.a(vfs.c.obj) - 0x420226b0 esp_vfs_unregister_with_id - 0x420226b0 esp_vfs_unregister_fs_with_id - .text.esp_vfs_register_fd_with_local_fd - 0x42022766 0xaa esp-idf/vfs/libvfs.a(vfs.c.obj) - 0x42022766 esp_vfs_register_fd_with_local_fd - .text.get_vfs_for_index - 0x42022810 0x28 esp-idf/vfs/libvfs.a(vfs.c.obj) - 0x42022810 get_vfs_for_index - .text.get_vfs_for_fd - 0x42022838 0x20 esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.call_end_selects - 0x42022858 0x4a esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.get_vfs_for_path - 0x420228a2 0x8a esp-idf/vfs/libvfs.a(vfs.c.obj) - 0x420228a2 get_vfs_for_path - .text.esp_vfs_open - 0x4202292c 0x102 esp-idf/vfs/libvfs.a(vfs.c.obj) - 0x4202292c esp_vfs_open - 0x4202292c _open_r - .text.esp_vfs_write - 0x42022a2e 0x60 esp-idf/vfs/libvfs.a(vfs.c.obj) - 0x42022a2e esp_vfs_write - 0x42022a2e _write_r - .text.esp_vfs_lseek - 0x42022a8e 0x60 esp-idf/vfs/libvfs.a(vfs.c.obj) - 0x42022a8e _lseek_r - 0x42022a8e esp_vfs_lseek - .text.esp_vfs_read - 0x42022aee 0x60 esp-idf/vfs/libvfs.a(vfs.c.obj) - 0x42022aee esp_vfs_read - 0x42022aee _read_r - .text.esp_vfs_close - 0x42022b4e 0xa6 esp-idf/vfs/libvfs.a(vfs.c.obj) - 0x42022b4e esp_vfs_close - 0x42022b4e _close_r - .text.esp_vfs_fstat - 0x42022bf4 0x58 esp-idf/vfs/libvfs.a(vfs.c.obj) - 0x42022bf4 esp_vfs_fstat - 0x42022bf4 _fstat_r - .text.esp_vfs_fcntl_r - 0x42022c4c 0x60 esp-idf/vfs/libvfs.a(vfs.c.obj) - 0x42022c4c _fcntl_r - 0x42022c4c esp_vfs_fcntl_r - .text.esp_vfs_fsync - 0x42022cac 0x5a esp-idf/vfs/libvfs.a(vfs.c.obj) - 0x42022cac esp_vfs_fsync - 0x42022cac fsync - .text.esp_vfs_stat - 0x42022d06 0x56 esp-idf/vfs/libvfs.a(vfs.c.obj) - 0x42022d06 _stat_r - 0x42022d06 esp_vfs_stat - .text.esp_vfs_link - 0x42022d5c 0x7a esp-idf/vfs/libvfs.a(vfs.c.obj) - 0x42022d5c esp_vfs_link - 0x42022d5c _link_r - .text.esp_vfs_unlink - 0x42022dd6 0x5e esp-idf/vfs/libvfs.a(vfs.c.obj) - 0x42022dd6 esp_vfs_unlink - 0x42022dd6 _unlink_r - .text.esp_vfs_rename - 0x42022e34 0x78 esp-idf/vfs/libvfs.a(vfs.c.obj) - 0x42022e34 _rename_r - 0x42022e34 esp_vfs_rename - .text.esp_vfs_access - 0x42022eac 0x5a esp-idf/vfs/libvfs.a(vfs.c.obj) - 0x42022eac access - 0x42022eac esp_vfs_access - .text.esp_vfs_select - 0x42022f06 0x3d4 esp-idf/vfs/libvfs.a(vfs.c.obj) - 0x42022f06 select - 0x42022f06 esp_vfs_select - .text.esp_vfs_select_triggered - 0x420232da 0x5c esp-idf/vfs/libvfs.a(vfs.c.obj) - 0x420232da esp_vfs_select_triggered - .text.tcgetattr - 0x42023336 0x64 esp-idf/vfs/libvfs.a(vfs.c.obj) - 0x42023336 tcgetattr - .text.tcsetattr - 0x4202339a 0x6a esp-idf/vfs/libvfs.a(vfs.c.obj) - 0x4202339a tcsetattr - .text.tcdrain 0x42023404 0x5e esp-idf/vfs/libvfs.a(vfs.c.obj) - 0x42023404 tcdrain - .text.tcflush 0x42023462 0x64 esp-idf/vfs/libvfs.a(vfs.c.obj) - 0x42023462 tcflush - .text.vfs_include_syscalls_impl - 0x420234c6 0x2 esp-idf/vfs/libvfs.a(vfs.c.obj) - 0x420234c6 vfs_include_syscalls_impl - *(.stub) - *(.gnu.linkonce.t.*) - *(.gnu.warning) - *(.irom0.text) - 0x420234d8 . = (. + 0x10) - *fill* 0x420234c8 0x10 - 0x420234d8 _text_end = ABSOLUTE (.) - 0x420234d8 _instruction_reserved_end = ABSOLUTE (.) - 0x420234d8 _etext = . - 0x00000000 _flash_cache_start = ABSOLUTE (0x0) - -.flash_rodata_dummy - 0x42000020 0x28000 - 0x42000020 _flash_rodata_dummy_start = . - 0x420234d8 . = (ALIGN (ALIGNOF (.flash.text)) + SIZEOF (.flash.text)) - *fill* 0x42000020 0x234b8 - 0x42028020 . = (ALIGN (0x8000) + 0x20) - *fill* 0x420234d8 0x4b48 - -.flash.appdesc 0x42028020 0x100 - 0x42028020 _rodata_reserved_start = ABSOLUTE (.) - 0x42028020 _rodata_start = ABSOLUTE (.) - *(.rodata_desc .rodata_desc.*) - .rodata_desc 0x42028020 0x100 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - 0x42028020 esp_app_desc - *(.rodata_custom_desc .rodata_custom_desc.*) - 0x42028120 . = ALIGN (ALIGNOF (.flash.rodata)) - 0x00000001 ASSERT ((ADDR (.flash.rodata) == (ADDR (.flash.appdesc) + SIZEOF (.flash.appdesc))), The gap between .flash.appdesc and .flash.rodata must not exist to produce the final bin image.) - -.flash.rodata 0x42028120 0x21e0 - 0x42028120 _flash_rodata_start = ABSOLUTE (.) - *(EXCLUDE_FILE(*libspi_flash.a:spi_flash_wrap.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:flash_brownout_hook.* *libsoc.a:temperature_sensor_periph.* *libsoc.a:lldesc.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:assert.* *libnewlib.a:abort.* *liblog.a:util.* *liblog.a:log_timestamp_common.* *liblog.a:log_print.* *liblog.a:log_lock.* *liblog.a:log_format_text.* *liblog.a:log.* *libhal.a:uart_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:pmu_hal.* *libhal.a:mmu_hal.* *libhal.a:ledc_hal_iram.* *libhal.a:i2c_hal_iram.* *libhal.a:cache_hal.* *libgcc.a:save-restore.* *libgcc.a:_divsf3.* *libesp_system.a:ubsan.* *libesp_system.a:image_process.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_wdt.* *libesp_rom.a:esp_rom_tlsf.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_print.* *libesp_mm.a:esp_cache_utils.* *libesp_mm.a:esp_cache_msync.* *libesp_hw_support.a:systimer.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:pmu_sleep.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:clk_utils.* *libclang_rt.builtins.a:save.* *libclang_rt.builtins.a:restore.* *libclang_rt.builtins.a:_divsf3.* *libphy.a *libgcov.a) .rodata EXCLUDE_FILE(*libspi_flash.a:spi_flash_wrap.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:flash_brownout_hook.* *libsoc.a:temperature_sensor_periph.* *libsoc.a:lldesc.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:assert.* *libnewlib.a:abort.* *liblog.a:util.* *liblog.a:log_timestamp_common.* *liblog.a:log_print.* *liblog.a:log_lock.* *liblog.a:log_format_text.* *liblog.a:log.* *libhal.a:uart_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:pmu_hal.* *libhal.a:mmu_hal.* *libhal.a:ledc_hal_iram.* *libhal.a:i2c_hal_iram.* *libhal.a:cache_hal.* *libgcc.a:save-restore.* *libgcc.a:_divsf3.* *libesp_system.a:ubsan.* *libesp_system.a:image_process.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_wdt.* *libesp_rom.a:esp_rom_tlsf.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_print.* *libesp_mm.a:esp_cache_utils.* *libesp_mm.a:esp_cache_msync.* *libesp_hw_support.a:systimer.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:pmu_sleep.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:clk_utils.* *libclang_rt.builtins.a:save.* *libclang_rt.builtins.a:restore.* *libclang_rt.builtins.a:_divsf3.* *libphy.a *libgcov.a) .rodata.* EXCLUDE_FILE(*libspi_flash.a:spi_flash_wrap.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:flash_brownout_hook.* *libsoc.a:temperature_sensor_periph.* *libsoc.a:lldesc.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:assert.* *libnewlib.a:abort.* *liblog.a:util.* *liblog.a:log_timestamp_common.* *liblog.a:log_print.* *liblog.a:log_lock.* *liblog.a:log_format_text.* *liblog.a:log.* *libhal.a:uart_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:pmu_hal.* *libhal.a:mmu_hal.* *libhal.a:ledc_hal_iram.* *libhal.a:i2c_hal_iram.* *libhal.a:cache_hal.* *libgcc.a:save-restore.* *libgcc.a:_divsf3.* *libesp_system.a:ubsan.* *libesp_system.a:image_process.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_wdt.* *libesp_rom.a:esp_rom_tlsf.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_print.* *libesp_mm.a:esp_cache_utils.* *libesp_mm.a:esp_cache_msync.* *libesp_hw_support.a:systimer.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:pmu_sleep.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:clk_utils.* *libclang_rt.builtins.a:save.* *libclang_rt.builtins.a:restore.* *libclang_rt.builtins.a:_divsf3.* *libphy.a *libgcov.a) .sdata2 EXCLUDE_FILE(*libspi_flash.a:spi_flash_wrap.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:flash_brownout_hook.* *libsoc.a:temperature_sensor_periph.* *libsoc.a:lldesc.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:assert.* *libnewlib.a:abort.* *liblog.a:util.* *liblog.a:log_timestamp_common.* *liblog.a:log_print.* *liblog.a:log_lock.* *liblog.a:log_format_text.* *liblog.a:log.* *libhal.a:uart_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:pmu_hal.* *libhal.a:mmu_hal.* *libhal.a:ledc_hal_iram.* *libhal.a:i2c_hal_iram.* *libhal.a:cache_hal.* *libgcc.a:save-restore.* *libgcc.a:_divsf3.* *libesp_system.a:ubsan.* *libesp_system.a:image_process.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_wdt.* *libesp_rom.a:esp_rom_tlsf.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_print.* *libesp_mm.a:esp_cache_utils.* *libesp_mm.a:esp_cache_msync.* *libesp_hw_support.a:systimer.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:pmu_sleep.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:clk_utils.* *libclang_rt.builtins.a:save.* *libclang_rt.builtins.a:restore.* *libclang_rt.builtins.a:_divsf3.* *libphy.a *libgcov.a) .sdata2.* EXCLUDE_FILE(*libspi_flash.a:spi_flash_wrap.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:flash_brownout_hook.* *libsoc.a:temperature_sensor_periph.* *libsoc.a:lldesc.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:assert.* *libnewlib.a:abort.* *liblog.a:util.* *liblog.a:log_timestamp_common.* *liblog.a:log_print.* *liblog.a:log_lock.* *liblog.a:log_format_text.* *liblog.a:log.* *libhal.a:uart_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:pmu_hal.* *libhal.a:mmu_hal.* *libhal.a:ledc_hal_iram.* *libhal.a:i2c_hal_iram.* *libhal.a:cache_hal.* *libgcc.a:save-restore.* *libgcc.a:_divsf3.* *libesp_system.a:ubsan.* *libesp_system.a:image_process.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_wdt.* *libesp_rom.a:esp_rom_tlsf.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_print.* *libesp_mm.a:esp_cache_utils.* *libesp_mm.a:esp_cache_msync.* *libesp_hw_support.a:systimer.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:pmu_sleep.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:clk_utils.* *libclang_rt.builtins.a:save.* *libclang_rt.builtins.a:restore.* *libclang_rt.builtins.a:_divsf3.* *libphy.a *libgcov.a) .srodata EXCLUDE_FILE(*libspi_flash.a:spi_flash_wrap.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:flash_brownout_hook.* *libsoc.a:temperature_sensor_periph.* *libsoc.a:lldesc.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:assert.* *libnewlib.a:abort.* *liblog.a:util.* *liblog.a:log_timestamp_common.* *liblog.a:log_print.* *liblog.a:log_lock.* *liblog.a:log_format_text.* *liblog.a:log.* *libhal.a:uart_hal_iram.* *libhal.a:spi_slave_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:pmu_hal.* *libhal.a:mmu_hal.* *libhal.a:ledc_hal_iram.* *libhal.a:i2c_hal_iram.* *libhal.a:cache_hal.* *libgcc.a:save-restore.* *libgcc.a:_divsf3.* *libesp_system.a:ubsan.* *libesp_system.a:image_process.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_wdt.* *libesp_rom.a:esp_rom_tlsf.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_print.* *libesp_mm.a:esp_cache_utils.* *libesp_mm.a:esp_cache_msync.* *libesp_hw_support.a:systimer.* *libesp_hw_support.a:sleep_console.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:pmu_sleep.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:clk_utils.* *libclang_rt.builtins.a:save.* *libclang_rt.builtins.a:restore.* *libclang_rt.builtins.a:_divsf3.* *libphy.a *libgcov.a) .srodata.*) - .srodata.ECDSA_FORCE_USE_HARDWARE_K - 0x42028120 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table_v0.0_v1.1.c.obj) - .rodata.s_table - 0x42028124 0x78 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - 0x42028124 s_table - .srodata.KEY5 0x4202819c 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.KEY4 0x420281a0 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.KEY3 0x420281a4 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.KEY2 0x420281a8 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.KEY1 0x420281ac 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.KEY0 0x420281b0 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.USER_DATA_MAC_CUSTOM - 0x420281b4 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.MAC_EXT - 0x420281b8 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .rodata.MAC 0x420281c0 0x18 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.KEY_PURPOSE_5 - 0x420281d8 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.KEY_PURPOSE_4 - 0x420281dc 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.KEY_PURPOSE_3 - 0x420281e0 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.KEY_PURPOSE_2 - 0x420281e4 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.KEY_PURPOSE_1 - 0x420281e8 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.KEY_PURPOSE_0 - 0x420281ec 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.RD_DIS_BLOCK_KEY5 - 0x420281f0 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.RD_DIS_BLOCK_KEY4 - 0x420281f4 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.RD_DIS_BLOCK_KEY3 - 0x420281f8 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.RD_DIS_BLOCK_KEY2 - 0x420281fc 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.RD_DIS_BLOCK_KEY1 - 0x42028200 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.RD_DIS_BLOCK_KEY0 - 0x42028204 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_BLOCK_KEY5 - 0x42028208 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_BLOCK_KEY4 - 0x4202820c 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_BLOCK_KEY3 - 0x42028210 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_BLOCK_KEY2 - 0x42028214 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_BLOCK_KEY1 - 0x42028218 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_BLOCK_KEY0 - 0x4202821c 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_KEY_PURPOSE_5 - 0x42028220 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_KEY_PURPOSE_4 - 0x42028224 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_KEY_PURPOSE_3 - 0x42028228 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_KEY_PURPOSE_2 - 0x4202822c 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_KEY_PURPOSE_1 - 0x42028230 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_KEY_PURPOSE_0 - 0x42028234 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .rodata.range_write_addr_blocks - 0x42028238 0x58 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - 0x42028238 range_write_addr_blocks - .rodata.range_read_addr_blocks - 0x42028290 0x58 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - 0x42028290 range_read_addr_blocks - .srodata.g_startup_fn - 0x420282e8 0x4 esp-idf/esp_system/libesp_system.a(startup.c.obj) - 0x420282e8 g_startup_fn - .rodata.cache_error_msg - 0x420282ec 0x13 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) - 0x420282ec cache_error_msg - *fill* 0x420282ff 0x1 - .rodata.panic_handler.str1.4 - 0x42028300 0x93d esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - 0x8 (size before relaxing) - .rodata.panic_soc_fill_info.str1.4 - 0x42028c3d 0x53 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - .rodata.panic_arch_fill_info.str1.4 - 0x42028c3d 0x19 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - .rodata.str1.4 - 0x42028c3d 0x151 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - *fill* 0x42028c3d 0x3 - .rodata.reason.0 - 0x42028c40 0x40 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - .rodata.__func__.0 - 0x42028c80 0x18 esp-idf/heap/libheap.a(heap_caps.c.obj) - .rodata.__func__.2 - 0x42028c98 0x11 esp-idf/heap/libheap.a(heap_caps.c.obj) - *fill* 0x42028ca9 0x3 - .rodata.__func__.3 - 0x42028cac 0x12 esp-idf/heap/libheap.a(heap_caps.c.obj) - *fill* 0x42028cbe 0x2 - .rodata.__func__.7 - 0x42028cc0 0x1a esp-idf/heap/libheap.a(heap_caps.c.obj) - *fill* 0x42028cda 0x2 - .rodata.__func__.8 - 0x42028cdc 0x19 esp-idf/heap/libheap.a(heap_caps.c.obj) - *fill* 0x42028cf5 0x3 - .rodata.__func__.9 - 0x42028cf8 0x11 esp-idf/heap/libheap.a(heap_caps.c.obj) - *fill* 0x42028d09 0x3 - .srodata.soc_memory_region_count - 0x42028d0c 0x4 esp-idf/heap/libheap.a(memory_layout.c.obj) - 0x42028d0c soc_memory_region_count - .rodata.soc_memory_regions - 0x42028d10 0x8c esp-idf/heap/libheap.a(memory_layout.c.obj) - 0x42028d10 soc_memory_regions - .rodata.str1.4 - 0x42028d9c 0xb esp-idf/heap/libheap.a(memory_layout.c.obj) - .rodata.soc_memory_types - 0x42028d9c 0x20 esp-idf/heap/libheap.a(memory_layout.c.obj) - 0x42028d9c soc_memory_types - .srodata 0x42028dbc 0x5 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) - *fill* 0x42028dc1 0x3 - .rodata.pcr_regs_retention.0 - 0x42028dc4 0x1b8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_clock.c.obj) - .rodata.bonding_dummy.0 - 0x42028f7c 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - .rodata.final_dummy.2 - 0x42028fa8 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - .rodata.updatefn.1 - 0x42028fd4 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - .rodata.updatefn_b.2 - 0x42028fe4 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - .rodata.stats_offset.3 - 0x42028ff4 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - .rodata.nextfn0.4 - 0x42029014 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - .rodata.nextfn1.5 - 0x42029024 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - .rodata.initfn.6 - 0x42029034 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - .rodata.initfn_b.7 - 0x42029044 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - .rodata.lp_analog.0 - 0x42029054 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - .rodata.lp_power.1 - 0x4202906c 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - .rodata.hp_retention.2 - 0x42029084 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - .rodata.hp_analog.3 - 0x4202909c 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - .rodata.hp_digital.4 - 0x420290c0 0xc esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - .rodata.hp_clock.5 - 0x420290cc 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - .rodata.hp_power.6 - 0x420290fc 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - .rodata.esp_startup_start_app.str1.4 - 0x42029120 0x5 esp-idf/freertos/libfreertos.a(app_startup.c.obj) - .rodata.vTaskStartScheduler.str1.4 - 0x42029120 0x5 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .srodata.uxTopUsedPriority - 0x42029120 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x42029120 uxTopUsedPriority - .rodata.vApplicationStackOverflowHook.str1.4 - 0x42029124 0x3c esp-idf/freertos/libfreertos.a(port.c.obj) - .rodata.__esp_system_init_fn_init_libc_stdio.str1.4 - 0x42029124 0xd esp-idf/newlib/libnewlib.a(init.c.obj) - .rodata.esp_libc_init_global_stdio.str1.4 - 0x42029124 0x6 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - .rodata.uart_access.str1.4 - 0x42029124 0xb esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .rodata.uart_vfs_dev_register.str1.4 - 0x42029124 0xa esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .rodata.s_vfs_uart - 0x42029124 0x38 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .rodata.s_vfs_uart_termios - 0x4202915c 0x1c esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .rodata.s_vfs_uart_select - 0x42029178 0x18 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .rodata.s_vfs_uart_dir - 0x42029190 0x40 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .srodata.s_ctx - 0x420291d0 0x8 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .rodata.__esp_system_init_fn_init_vfs_usj_sec.str1.4 - 0x420291d8 0xf esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .rodata.s_vfs_jtag - 0x420291d8 0x38 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .rodata.s_vfs_jtag_termios - 0x42029210 0x1c esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .rodata.s_vfs_jtag_select - 0x4202922c 0x18 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .rodata.console_access.str1.4 - 0x42029244 0xc esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - .rodata.console_open.str1.4 - 0x42029244 0xf esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - .rodata.esp_vfs_console_register.str1.4 - 0x42029244 0xd esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - .rodata.s_vfs_console - 0x42029244 0x38 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - .rodata.s_vfs_console_termios - 0x4202927c 0x1c esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - .rodata.s_vfs_console_select - 0x42029298 0x18 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - .rodata.s_vfs_console_dir - 0x420292b0 0x40 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - .rodata.esp_vfs_register_fs_common.str1.4 - 0x420292f0 0x1 esp-idf/vfs/libvfs.a(vfs.c.obj) - .rodata.translate_path.str1.4 - 0x420292f0 0x2 esp-idf/vfs/libvfs.a(vfs.c.obj) - .rodata.vfs_null_open.str1.4 - 0x420292f0 0x2 esp-idf/vfs/libvfs.a(nullfs.c.obj) - .rodata.esp_vfs_null_register.str1.4 - 0x420292f0 0xa esp-idf/vfs/libvfs.a(nullfs.c.obj) - .rodata.s_vfs_null - 0x420292f0 0x38 esp-idf/vfs/libvfs.a(nullfs.c.obj) - .rodata.s_vfs_null_dir - 0x42029328 0x40 esp-idf/vfs/libvfs.a(nullfs.c.obj) - .rodata.ot_task_worker.str1.4 - 0x42029368 0x4 esp-idf/main/libmain.a(esp_ot_rcp.c.obj) - .rodata.app_main.str1.4 - 0x42029368 0xc esp-idf/main/libmain.a(esp_ot_rcp.c.obj) - .rodata.g_mmu_mem_regions - 0x42029368 0x18 esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) - 0x42029368 g_mmu_mem_regions - .srodata.s_mspi_io_num_default - 0x42029380 0x6 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - .rodata.esp_task_wdt_print_triggered_tasks.str1.4 - 0x42029386 0x85 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .rodata.str1.4 - 0x42029386 0x59 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) - *fill* 0x42029386 0x2 - .rodata.uart_periph_signal - 0x42029388 0x28 esp-idf/soc/libsoc.a(uart_periph.c.obj) - 0x42029388 uart_periph_signal - .rodata.rtc_io_num_map - 0x420293b0 0x70 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) - 0x420293b0 rtc_io_num_map - .srodata.power_supply_periph_signal - 0x42029420 0x1 esp-idf/soc/libsoc.a(power_supply_periph.c.obj) - 0x42029420 power_supply_periph_signal - *fill* 0x42029421 0x7 - .srodata.cst8 0x42029428 0xa0 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - 0x18 (size before relaxing) - .srodata.g_spi_lock_main_flash_dev - 0x420294c8 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - 0x420294c8 g_spi_lock_main_flash_dev - .rodata.str1.4 - 0x420294cc 0x8 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) - .rodata 0x420294cc 0x14 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) - .rodata.loop_remove_handler.str1.4 - 0x420294e0 0x4 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .rodata.esp_event_loop_create.str1.4 - 0x420294e0 0x1 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .rodata.esp_event_loop_run.str1.4 - 0x420294e0 0x8 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .rodata.nvs_flash_init.str1.4 - 0x420294e0 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .srodata._ZN3nvs4Page8SEC_SIZEE - 0x420294e0 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - 0x420294e0 nvs::Page::SEC_SIZE - .rodata._ZTVN3nvs12NVSPartitionE - 0x420294e4 0x34 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - 0x420294e4 vtable for nvs::NVSPartition - .rodata._ZTVN3nvs19NVSPartitionManagerE - 0x42029518 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - 0x42029518 vtable for nvs::NVSPartitionManager - .rodata.esp_openthread_task_queue_init.str1.4 - 0x42029528 0xb esp-idf/openthread/libopenthread.a(esp_openthread_task_queue.c.obj) - .rodata.esp_openthread_alarm_init.str1.4 - 0x42029528 0x6 esp-idf/openthread/libopenthread.a(esp_openthread_alarm.c.obj) - .rodata.esp_openthread_radio_process.str1.4 - 0x42029528 0x44 esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - .rodata.esp_openthread_radio_init.str1.4 - 0x42029528 0x6 esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - .rodata.esp_openthread_host_rcp_uart_init.str1.4 - 0x42029528 0x15 esp-idf/openthread/libopenthread.a(esp_openthread_uart.c.obj) - .rodata._ZZ18otGetVersionStringE8sVersion - 0x42029528 0x48 esp-idf/openthread/libopenthread.a(instance_api.cpp.obj) - .rodata._ZN2ot10TimerMilli7StartAtENS_4TimeEm.str1.4 - 0x42029570 0x40 esp-idf/openthread/libopenthread.a(timer.cpp.obj) - .rodata._ZN2ot10TimerMicro9Scheduler14sAlarmMicroApiE - 0x42029570 0xc esp-idf/openthread/libopenthread.a(timer.cpp.obj) - 0x42029570 ot::TimerMicro::Scheduler::sAlarmMicroApi - .rodata._ZN2ot10TimerMilli9Scheduler14sAlarmMilliApiE - 0x4202957c 0xc esp-idf/openthread/libopenthread.a(timer.cpp.obj) - 0x4202957c ot::TimerMilli::Scheduler::sAlarmMilliApi - .rodata._ZNK2ot3Mac5Frame11GetSequenceEv.str1.4 - 0x42029588 0x41 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - .rodata._ZN2ot3Mac6SubMac6EnableEv.str1.4 - 0x42029588 0x3f esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - .rodata._ZN2ot5Radio4InitEv.str1.4 - 0x42029588 0x3f esp-idf/openthread/libopenthread.a(radio.cpp.obj) - .rodata._ZN2ot3Ncp7NcpBase20VendorCommandHandlerEhj.str1.4 - 0x42029588 0x25 esp-idf/openthread/libopenthread.a(esp_openthread_ncp.cpp.obj) - .rodata.otNcpHdlcInit.str1.4 - 0x42029588 0x3f esp-idf/openthread/libopenthread.a(esp_openthread_ncp_hdlc.cpp.obj) - .rodata._ZN2ot6Random7ManagerD2Ev.str1.4 - 0x42029588 0x41 esp-idf/openthread/libopenthread.a(random.cpp.obj) - .rodata._ZN2ot6Crypto6AesCcm4InitEmmhPKvh.str1.4 - 0x42029588 0x42 esp-idf/openthread/libopenthread.a(aes_ccm.cpp.obj) - .rodata._ZN2ot6Crypto6AesEcbC2Ev.str1.4 - 0x42029588 0x42 esp-idf/openthread/libopenthread.a(aes_ecb.cpp.obj) - .rodata._ZN2ot3Ncp7NcpBase13IidToInstanceEh.str1.4 - 0x42029588 0x3b esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - .rodata._ZZN2ot3Ncp7NcpBase25FindRemovePropertyHandlerEmE15sHandlerEntries - 0x42029588 0x24 esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) - .rodata._ZZN2ot3Ncp7NcpBase25FindInsertPropertyHandlerEmE15sHandlerEntries - 0x420295ac 0x24 esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) - .rodata._ZZN2ot3Ncp7NcpBase22FindSetPropertyHandlerEmE15sHandlerEntries - 0x420295d0 0x12c esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) - .rodata._ZZN2ot3Ncp7NcpBase22FindGetPropertyHandlerEmE15sHandlerEntries - 0x420296fc 0x1f8 esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) - .rodata._ZN2ot3Ncp7NcpBase19LinkRawTransmitDoneEhP12otRadioFrameS3_7otError.str1.4 - 0x420298f4 0x41 esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - .rodata._ZN2ot3Ncp7NcpHdlc13EncodeAndSendEv.str1.4 - 0x420298f4 0x3b esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) - .rodata._ZN2ot3Ncp7NcpHdlc11HandleErrorE7otErrorPht.str1.4 - 0x420298f4 0x1f esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) - .rodata._ZZN2ot4HdlcL9UpdateFcsEthE9sFcsTable - 0x420298f4 0x200 esp-idf/openthread/libopenthread.a(hdlc.cpp.obj) - .srodata._ZN2ot6Spinel6Buffer11kInvalidTagE - 0x42029af4 0x4 esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - 0x42029af4 ot::Spinel::Buffer::kInvalidTag - .rodata._ZN2ot3Ncp15ChangedPropsSet15mSupportedPropsE - 0x42029af8 0x168 esp-idf/openthread/libopenthread.a(changed_props_set.cpp.obj) - 0x42029af8 ot::Ncp::ChangedPropsSet::mSupportedProps - .srodata.memset_func - 0x42029c60 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) - .srodata.ieee802154_periph - 0x42029c64 0x8 esp-idf/soc/libsoc.a(ieee802154_periph.c.obj) - 0x42029c64 ieee802154_periph - .rodata.phy_track_pll_init.str1.4 - 0x42029c6c 0x14 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - .rodata.esp_timer_init.str1.4 - 0x42029c6c 0xa esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .srodata._ZSt7nothrow - 0x42029c6c 0x1 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_handler.o) - 0x42029c6c std::nothrow - *fill* 0x42029c6d 0x3 - .rodata._ZTSSt9exception - 0x42029c70 0xd C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_op.o) - 0x42029c70 typeinfo name for std::exception - *fill* 0x42029c7d 0x3 - .srodata._ZTISt9exception - 0x42029c80 0x8 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_op.o) - 0x42029c80 typeinfo for std::exception - .rodata._ZTSSt9bad_alloc - 0x42029c88 0xd C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_op.o) - 0x42029c88 typeinfo name for std::bad_alloc - *fill* 0x42029c95 0x3 - .rodata._ZTISt9bad_alloc - 0x42029c98 0xc C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_op.o) - 0x42029c98 typeinfo for std::bad_alloc - .rodata._ZTVN10__cxxabiv120__si_class_type_infoE - 0x42029ca4 0x2c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) - 0x42029ca4 vtable for __cxxabiv1::__si_class_type_info - .rodata._ZNKSt9bad_alloc4whatEv.str1.4 - 0x42029cd0 0xf C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(bad_alloc.o) - .rodata._ZTVSt9bad_alloc - 0x42029cd0 0x14 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(bad_alloc.o) - 0x42029cd0 vtable for std::bad_alloc - .rodata._ZTVN10__cxxabiv117__class_type_infoE - 0x42029ce4 0x2c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(class_type_info.o) - 0x42029ce4 vtable for __cxxabiv1::__class_type_info - .rodata.bt_bb_v2_version.str1.4 - 0x42029d10 0x3d C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) - .rodata.str1.4 - 0x42029d10 0x12 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf_float.o) - .srodata.cst8 0x42029d10 0x8 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf_float.o) - .rodata.str1.4 - 0x42029d10 0x25 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf_i.o) - .rodata 0x42029d10 0x58 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf_i.o) - .rodata.str1.4 - 0x42029d68 0x9 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfscanf_float.o) - .rodata 0x42029d68 0x74 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfscanf_float.o) - .srodata.cst4 0x42029ddc 0x8 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libm_a-sf_nan.o) - 0x4 (size before relaxing) - .rodata.str1.4 - 0x42029de4 0x95 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-dtoa.o) - .srodata.cst8 0x42029de4 0x48 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-dtoa.o) - .rodata.str1.4 - 0x42029de4 0x81 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-mprec.o) - .srodata.cst8 0x42029de4 0x10 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-mprec.o) - *fill* 0x42029de4 0x4 - .rodata 0x42029de8 0x128 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-mprec.o) - 0x42029df8 __mprec_tens - 0x42029ec0 __mprec_tinytens - 0x42029ee8 __mprec_bigtens - .rodata.str1.4 - 0x42029f10 0x15 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtod.o) - .rodata 0x42029f10 0x68 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtod.o) - .srodata.cst8 0x42029f78 0x48 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtod.o) - .srodata.cst4 0x42029f78 0x4 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtod.o) - .rodata 0x42029f78 0x101 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-ctype_.o) - 0x42029f78 _ctype_ - .rodata.str1.4 - 0x4202a079 0x13 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-svfprintf.o) - .rodata.str1.4 - 0x4202a079 0x12 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-locale.o) - *fill* 0x4202a079 0x3 - .rodata 0x4202a07c 0x16c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-locale.o) - 0x4202a07c __default_global_locale - .srodata.cst8 0x4202a1e8 0x8 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libm_a-s_nan.o) - .rodata.str1.4 - 0x4202a1e8 0x75 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-gdtoa-gethex.o) - *libsoc.a:temperature_sensor_periph.*(.rodata.temperature_sensor_regs_entries .rodata.temperature_sensor_regs_retention) - *(.irom1.text) - *(.gnu.linkonce.r.*) - *(.rodata1) - *(.gcc_except_table .gcc_except_table.*) - .gcc_except_table._ZnajRKSt9nothrow_t - 0x4202a1e8 0x10 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opvnt.o) - .gcc_except_table.__cxa_get_globals_fast - 0x4202a1f8 0x4 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) - .gcc_except_table.__cxa_get_globals - 0x4202a1fc 0x4 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) - .gcc_except_table._ZN10__cxxabiv111__terminateEPFvvE - 0x4202a200 0x10 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) - *(.gnu.linkonce.e.*) - 0x4202a260 . = ALIGN (0x4) - 0x4202a210 __init_priority_array_start = ABSOLUTE (.) - *(EXCLUDE_FILE(*crtbegin.* *crtend.*) .init_array.*) - 0x4202a210 __init_priority_array_end = ABSOLUTE (.) - 0x4202a260 . = ALIGN (0x4) - 0x4202a210 __init_array_start = ABSOLUTE (.) - *(EXCLUDE_FILE(*crtbegin.* *crtend.*) .init_array) - .init_array 0x4202a210 0x4 esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) - .init_array 0x4202a214 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - .init_array 0x4202a218 0x4 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - .init_array 0x4202a21c 0x4 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) - 0x4202a220 __init_array_end = ABSOLUTE (.) - 0x4202a260 . = ALIGN (0x4) - 0x4202a220 soc_reserved_memory_region_start = ABSOLUTE (.) - *(.reserved_memory_address) - .reserved_memory_address - 0x4202a220 0x20 esp-idf/heap/libheap.a(memory_layout.c.obj) - 0x4202a240 soc_reserved_memory_region_end = ABSOLUTE (.) - 0x4202a260 . = ALIGN (0x4) - 0x4202a240 _esp_system_init_fn_array_start = ABSOLUTE (.) - *(SORT_BY_INIT_PRIORITY(.esp_system_init_fn.*)) - .esp_system_init_fn.1 - 0x4202a240 0x8 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) - .esp_system_init_fn.10 - 0x4202a248 0x8 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) - .esp_system_init_fn.20 - 0x4202a250 0x8 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .esp_system_init_fn.21 - 0x4202a258 0x8 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) - .esp_system_init_fn.100 - 0x4202a260 0x8 esp-idf/heap/libheap.a(heap_caps_init.c.obj) - .esp_system_init_fn.100 - 0x4202a268 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .esp_system_init_fn.101 - 0x4202a270 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) - .esp_system_init_fn.101 - 0x4202a278 0x8 esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) - .esp_system_init_fn.102 - 0x4202a280 0x8 esp-idf/newlib/libnewlib.a(init.c.obj) - .esp_system_init_fn.102 - 0x4202a288 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) - .esp_system_init_fn.103 - 0x4202a290 0x8 esp-idf/esp_security/libesp_security.a(init.c.obj) - .esp_system_init_fn.104 - 0x4202a298 0x8 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) - .esp_system_init_fn.105 - 0x4202a2a0 0x8 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) - .esp_system_init_fn.105 - 0x4202a2a8 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) - .esp_system_init_fn.106 - 0x4202a2b0 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_clock.c.obj) - .esp_system_init_fn.110 - 0x4202a2b8 0x8 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .esp_system_init_fn.112 - 0x4202a2c0 0x8 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .esp_system_init_fn.113 - 0x4202a2c8 0x8 esp-idf/vfs/libvfs.a(nullfs.c.obj) - .esp_system_init_fn.114 - 0x4202a2d0 0x8 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - .esp_system_init_fn.115 - 0x4202a2d8 0x8 esp-idf/newlib/libnewlib.a(init.c.obj) - .esp_system_init_fn.130 - 0x4202a2e0 0x8 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) - .esp_system_init_fn.140 - 0x4202a2e8 0x8 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) - .esp_system_init_fn.230 - 0x4202a2f0 0x8 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) - .esp_system_init_fn.999 - 0x4202a2f8 0x8 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) - 0x4202a300 _esp_system_init_fn_array_end = ABSOLUTE (.) - 0x4202a300 _rodata_end = ABSOLUTE (.) - 0x4202a300 . = ALIGN (ALIGNOF (.flash.tdata)) - 0x00000001 ASSERT ((ADDR (.flash.tdata) == (ADDR (.flash.rodata) + SIZEOF (.flash.rodata))), The gap between .flash.rodata and .flash.tdata must not exist to produce the final bin image.) - -.flash.tdata 0x4202a300 0x0 - 0x4202a300 _thread_local_data_start = ABSOLUTE (.) - *(.tdata .tdata.* .gnu.linkonce.td.*) - 0x4202a300 . = ALIGN (ALIGNOF (.flash.tbss)) - 0x4202a300 _thread_local_data_end = ABSOLUTE (.) - 0x00000001 ASSERT ((ADDR (.flash.tbss) == (ADDR (.flash.tdata) + SIZEOF (.flash.tdata))), The gap between .flash.tdata and .flash.tbss must not exist to produce the final bin image.) - -.flash.tbss 0x4202a300 0x0 - 0x4202a300 _thread_local_bss_start = ABSOLUTE (.) - *(.tbss .tbss.* .gnu.linkonce.tb.*) - *(.tcommon .tcommon.*) - 0x4202a300 _thread_local_bss_end = ABSOLUTE (.) - -.flash.rodata_noload - 0x4202a300 0x0 - 0x4202a300 _rodata_reserved_end = ADDR (.flash.tbss) - -.dram0.heap_start - 0x40811160 0x0 - 0x40811160 . = ALIGN (0x10) - 0x40811160 _heap_start = ABSOLUTE (.) - -.noload 0x00000000 0x0 - 0x00000000 _noload_keep_in_elf_start = ABSOLUTE (.) - *(.noload_keep_in_elf .noload_keep_in_elf.*) - 0x00000000 _noload_keep_in_elf_end = ABSOLUTE (.) - -.debug - *(.debug) - -.line - *(.line) - -.debug_srcinfo - *(.debug_srcinfo) - -.debug_sfnames - *(.debug_sfnames) - -.debug_aranges 0x00000000 0x87a8 - *(.debug_aranges) - .debug_aranges - 0x00000000 0x30 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) - .debug_aranges - 0x00000030 0x30 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) - .debug_aranges - 0x00000060 0x68 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - .debug_aranges - 0x000000c8 0x38 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) - .debug_aranges - 0x00000100 0x38 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .debug_aranges - 0x00000138 0x38 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) - .debug_aranges - 0x00000170 0x18 esp-idf/efuse/libefuse.a(esp_efuse_table_v0.0_v1.1.c.obj) - .debug_aranges - 0x00000188 0x98 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .debug_aranges - 0x00000220 0xb0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_aranges - 0x000002d0 0xe8 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .debug_aranges - 0x000003b8 0x18 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .debug_aranges - 0x000003d0 0x40 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_aranges - 0x00000410 0x30 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) - .debug_aranges - 0x00000440 0x28 esp-idf/esp_system/libesp_system.a(startup.c.obj) - .debug_aranges - 0x00000468 0x48 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) - .debug_aranges - 0x000004b0 0xb8 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .debug_aranges - 0x00000568 0x40 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) - .debug_aranges - 0x000005a8 0x40 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) - .debug_aranges - 0x000005e8 0x48 esp-idf/esp_system/libesp_system.a(clk.c.obj) - .debug_aranges - 0x00000630 0x28 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) - .debug_aranges - 0x00000658 0x38 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) - .debug_aranges - 0x00000690 0x60 esp-idf/esp_system/libesp_system.a(panic.c.obj) - .debug_aranges - 0x000006f0 0x48 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - .debug_aranges - 0x00000738 0x70 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - .debug_aranges - 0x000007a8 0x50 esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) - .debug_aranges - 0x000007f8 0x48 esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) - .debug_aranges - 0x00000840 0x38 esp-idf/esp_rom/libesp_rom.a(esp_rom_multi_heap.c.obj) - .debug_aranges - 0x00000878 0x28 esp-idf/esp_rom/libesp_rom.a(esp_rom_systimer.c.obj) - .debug_aranges - 0x000008a0 0x28 esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) - .debug_aranges - 0x000008c8 0x58 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .debug_aranges - 0x00000920 0x60 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .debug_aranges - 0x00000980 0x88 esp-idf/hal/libhal.a(cache_hal.c.obj) - .debug_aranges - 0x00000a08 0x28 esp-idf/log/liblog.a(util.c.obj) - .debug_aranges - 0x00000a30 0x128 esp-idf/heap/libheap.a(heap_caps.c.obj) - .debug_aranges - 0x00000b58 0x50 esp-idf/heap/libheap.a(heap_caps_init.c.obj) - .debug_aranges - 0x00000ba8 0x50 esp-idf/heap/libheap.a(multi_heap.c.obj) - .debug_aranges - 0x00000bf8 0x30 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - .debug_aranges - 0x00000c28 0x18 esp-idf/heap/libheap.a(memory_layout.c.obj) - .debug_aranges - 0x00000c40 0x40 esp-idf/heap/libheap.a(heap_caps_base.c.obj) - .debug_aranges - 0x00000c80 0x28 esp-idf/esp_security/libesp_security.a(init.c.obj) - .debug_aranges - 0x00000ca8 0x30 esp-idf/esp_security/libesp_security.a(esp_dpa_protection.c.obj) - .debug_aranges - 0x00000cd8 0x68 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - .debug_aranges - 0x00000d40 0x68 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - .debug_aranges - 0x00000da8 0xd8 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .debug_aranges - 0x00000e80 0x80 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - .debug_aranges - 0x00000f00 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - .debug_aranges - 0x00000f38 0x218 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .debug_aranges - 0x00001150 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) - .debug_aranges - 0x00001190 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) - .debug_aranges - 0x000011b8 0xa0 esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) - .debug_aranges - 0x00001258 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) - .debug_aranges - 0x000012b8 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) - .debug_aranges - 0x000012f0 0x150 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .debug_aranges - 0x00001440 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) - .debug_aranges - 0x00001478 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) - .debug_aranges - 0x000014d8 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - .debug_aranges - 0x00001520 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu_asm.S.obj) - .debug_aranges - 0x00001540 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_clock.c.obj) - .debug_aranges - 0x00001570 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) - .debug_aranges - 0x00001590 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) - .debug_aranges - 0x000015c8 0x78 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - .debug_aranges - 0x00001640 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) - .debug_aranges - 0x00001680 0x120 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - .debug_aranges - 0x000017a0 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) - .debug_aranges - 0x000017f8 0x220 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - .debug_aranges - 0x00001a18 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - .debug_aranges - 0x00001a78 0x28 esp-idf/freertos/libfreertos.a(app_startup.c.obj) - .debug_aranges - 0x00001aa0 0x270 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .debug_aranges - 0x00001d10 0xa0 esp-idf/freertos/libfreertos.a(port.c.obj) - .debug_aranges - 0x00001db0 0x50 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) - .debug_aranges - 0x00001e00 0x28 esp-idf/freertos/libfreertos.a(port_common.c.obj) - .debug_aranges - 0x00001e28 0x38 esp-idf/freertos/libfreertos.a(port_systick.c.obj) - .debug_aranges - 0x00001e60 0x40 esp-idf/freertos/libfreertos.a(list.c.obj) - .debug_aranges - 0x00001ea0 0x30 esp-idf/newlib/libnewlib.a(init.c.obj) - .debug_aranges - 0x00001ed0 0x20 esp-idf/newlib/libnewlib.a(abort.c.obj) - .debug_aranges - 0x00001ef0 0x30 esp-idf/newlib/libnewlib.a(assert.c.obj) - .debug_aranges - 0x00001f20 0xa0 esp-idf/newlib/libnewlib.a(heap.c.obj) - .debug_aranges - 0x00001fc0 0xd8 esp-idf/newlib/libnewlib.a(locks.c.obj) - .debug_aranges - 0x00002098 0x38 esp-idf/newlib/libnewlib.a(pthread.c.obj) - .debug_aranges - 0x000020d0 0x28 esp-idf/newlib/libnewlib.a(getentropy.c.obj) - .debug_aranges - 0x000020f8 0x80 esp-idf/newlib/libnewlib.a(time.c.obj) - .debug_aranges - 0x00002178 0x40 esp-idf/newlib/libnewlib.a(syscalls.c.obj) - .debug_aranges - 0x000021b8 0x50 esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) - .debug_aranges - 0x00002208 0x48 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - .debug_aranges - 0x00002250 0x28 esp-idf/newlib/libnewlib.a(reent_init.c.obj) - .debug_aranges - 0x00002278 0x40 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - .debug_aranges - 0x000022b8 0x180 esp-idf/pthread/libpthread.a(pthread.c.obj) - .debug_aranges - 0x00002438 0x88 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .debug_aranges - 0x000024c0 0x58 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - .debug_aranges - 0x00002518 0x60 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - .debug_aranges - 0x00002578 0x58 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) - .debug_aranges - 0x000025d0 0x40 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - .debug_aranges - 0x00002610 0x28 esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) - .debug_aranges - 0x00002638 0x128 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .debug_aranges - 0x00002760 0x238 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .debug_aranges - 0x00002998 0x38 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) - .debug_aranges - 0x000029d0 0x108 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .debug_aranges - 0x00002ad8 0x70 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - .debug_aranges - 0x00002b48 0xa0 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - .debug_aranges - 0x00002be8 0x210 esp-idf/vfs/libvfs.a(vfs.c.obj) - .debug_aranges - 0x00002df8 0x98 esp-idf/vfs/libvfs.a(nullfs.c.obj) - .debug_aranges - 0x00002e90 0x60 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - .debug_aranges - 0x00002ef0 0x28 esp-idf/main/libmain.a(esp_ot_rcp.c.obj) - .debug_aranges - 0x00002f18 0x20 esp-idf/riscv/libriscv.a(instruction_decode.c.obj) - .debug_aranges - 0x00002f38 0x40 esp-idf/riscv/libriscv.a(interrupt.c.obj) - .debug_aranges - 0x00002f78 0x20 esp-idf/riscv/libriscv.a(rv_utils.c.obj) - .debug_aranges - 0x00002f98 0x20 esp-idf/riscv/libriscv.a(vectors.S.obj) - .debug_aranges - 0x00002fb8 0x20 esp-idf/riscv/libriscv.a(vectors_intc.S.obj) - .debug_aranges - 0x00002fd8 0x1a0 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .debug_aranges - 0x00003178 0x58 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) - .debug_aranges - 0x000031d0 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - .debug_aranges - 0x000031f0 0xb0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .debug_aranges - 0x000032a0 0x48 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) - .debug_aranges - 0x000032e8 0x48 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .debug_aranges - 0x00003330 0xa0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .debug_aranges - 0x000033d0 0x18 esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) - .debug_aranges - 0x000033e8 0x48 esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) - .debug_aranges - 0x00003430 0x20 esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) - .debug_aranges - 0x00003450 0x50 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) - .debug_aranges - 0x000034a0 0x30 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) - .debug_aranges - 0x000034d0 0x80 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - .debug_aranges - 0x00003550 0x78 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - .debug_aranges - 0x000035c8 0x58 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - .debug_aranges - 0x00003620 0x110 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .debug_aranges - 0x00003730 0x68 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .debug_aranges - 0x00003798 0xc0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .debug_aranges - 0x00003858 0x40 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) - .debug_aranges - 0x00003898 0x20 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) - .debug_aranges - 0x000038b8 0x110 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - .debug_aranges - 0x000039c8 0x48 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - .debug_aranges - 0x00003a10 0x50 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - .debug_aranges - 0x00003a60 0x80 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - .debug_aranges - 0x00003ae0 0x58 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - .debug_aranges - 0x00003b38 0x88 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - .debug_aranges - 0x00003bc0 0x30 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - .debug_aranges - 0x00003bf0 0xd8 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .debug_aranges - 0x00003cc8 0x50 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - .debug_aranges - 0x00003d18 0x20 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) - .debug_aranges - 0x00003d38 0x40 esp-idf/esp_rom/libesp_rom.a(esp_rom_regi2c_esp32h2.c.obj) - .debug_aranges - 0x00003d78 0x38 esp-idf/hal/libhal.a(lp_timer_hal.c.obj) - .debug_aranges - 0x00003db0 0x60 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .debug_aranges - 0x00003e10 0x38 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - .debug_aranges - 0x00003e48 0xb0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - .debug_aranges - 0x00003ef8 0x50 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - .debug_aranges - 0x00003f48 0x50 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) - .debug_aranges - 0x00003f98 0xe8 esp-idf/hal/libhal.a(uart_hal.c.obj) - .debug_aranges - 0x00004080 0x40 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) - .debug_aranges - 0x000040c0 0x48 esp-idf/hal/libhal.a(gpio_hal.c.obj) - .debug_aranges - 0x00004108 0x58 esp-idf/hal/libhal.a(modem_clock_hal.c.obj) - .debug_aranges - 0x00004160 0x58 esp-idf/hal/libhal.a(pau_hal.c.obj) - .debug_aranges - 0x000041b8 0x20 esp-idf/hal/libhal.a(brownout_hal.c.obj) - .debug_aranges - 0x000041d8 0x60 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - .debug_aranges - 0x00004238 0x48 esp-idf/hal/libhal.a(pmu_hal.c.obj) - .debug_aranges - 0x00004280 0xa8 esp-idf/hal/libhal.a(apm_hal.c.obj) - .debug_aranges - 0x00004328 0x18 esp-idf/soc/libsoc.a(uart_periph.c.obj) - .debug_aranges - 0x00004340 0x18 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) - .debug_aranges - 0x00004358 0x18 esp-idf/soc/libsoc.a(power_supply_periph.c.obj) - .debug_aranges - 0x00004370 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) - .debug_aranges - 0x00004390 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - .debug_aranges - 0x000043c0 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) - .debug_aranges - 0x000043f0 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) - .debug_aranges - 0x00004420 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - .debug_aranges - 0x00004460 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) - .debug_aranges - 0x00004498 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) - .debug_aranges - 0x000044c0 0xc0 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .debug_aranges - 0x00004580 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .debug_aranges - 0x000045f0 0x140 esp-idf/freertos/libfreertos.a(queue.c.obj) - .debug_aranges - 0x00004730 0x20 esp-idf/freertos/libfreertos.a(portasm.S.obj) - .debug_aranges - 0x00004750 0x68 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - .debug_aranges - 0x000047b8 0x140 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .debug_aranges - 0x000048f8 0x58 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) - .debug_aranges - 0x00004950 0xb0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .debug_aranges - 0x00004a00 0x1d8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .debug_aranges - 0x00004bd8 0x120 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - .debug_aranges - 0x00004cf8 0x100 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .debug_aranges - 0x00004df8 0x78 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - .debug_aranges - 0x00004e70 0x80 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - .debug_aranges - 0x00004ef0 0x38 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) - .debug_aranges - 0x00004f28 0x38 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) - .debug_aranges - 0x00004f60 0x58 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - .debug_aranges - 0x00004fb8 0x50 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - .debug_aranges - 0x00005008 0x28 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) - .debug_aranges - 0x00005030 0x180 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .debug_aranges - 0x000051b0 0x58 esp-idf/vfs/libvfs.a(vfs_eventfd.c.obj) - .debug_aranges - 0x00005208 0xb0 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .debug_aranges - 0x000052b8 0x58 esp-idf/openthread/libopenthread.a(esp_openthread.cpp.obj) - .debug_aranges - 0x00005310 0x48 esp-idf/openthread/libopenthread.a(esp_openthread_lock.c.obj) - .debug_aranges - 0x00005358 0x58 esp-idf/openthread/libopenthread.a(esp_openthread_platform.cpp.obj) - .debug_aranges - 0x000053b0 0x48 esp-idf/openthread/libopenthread.a(esp_openthread_task_queue.c.obj) - .debug_aranges - 0x000053f8 0x70 esp-idf/openthread/libopenthread.a(esp_openthread_alarm.c.obj) - .debug_aranges - 0x00005468 0x1d0 esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - .debug_aranges - 0x00005638 0x60 esp-idf/openthread/libopenthread.a(esp_openthread_settings.c.obj) - .debug_aranges - 0x00005698 0x48 esp-idf/openthread/libopenthread.a(esp_openthread_spi_slave.c.obj) - .debug_aranges - 0x000056e0 0x68 esp-idf/openthread/libopenthread.a(esp_openthread_uart.c.obj) - .debug_aranges - 0x00005748 0xd8 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - .debug_aranges - 0x00005820 0x58 esp-idf/openthread/libopenthread.a(instance_api.cpp.obj) - .debug_aranges - 0x00005878 0x30 esp-idf/openthread/libopenthread.a(tasklet_api.cpp.obj) - .debug_aranges - 0x000058a8 0x40 esp-idf/openthread/libopenthread.a(tasklet.cpp.obj) - .debug_aranges - 0x000058e8 0xe0 esp-idf/openthread/libopenthread.a(timer.cpp.obj) - .debug_aranges - 0x000059c8 0x50 esp-idf/openthread/libopenthread.a(instance.cpp.obj) - .debug_aranges - 0x00005a18 0x98 esp-idf/openthread/libopenthread.a(link_raw.cpp.obj) - .debug_aranges - 0x00005ab0 0x1d8 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - .debug_aranges - 0x00005c88 0x20 esp-idf/openthread/libopenthread.a(mac_header_ie.cpp.obj) - .debug_aranges - 0x00005ca8 0x98 esp-idf/openthread/libopenthread.a(mac_types.cpp.obj) - .debug_aranges - 0x00005d40 0x170 esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - .debug_aranges - 0x00005eb0 0x50 esp-idf/openthread/libopenthread.a(sub_mac_callbacks.cpp.obj) - .debug_aranges - 0x00005f00 0x48 esp-idf/openthread/libopenthread.a(radio.cpp.obj) - .debug_aranges - 0x00005f48 0xf0 esp-idf/openthread/libopenthread.a(radio_platform.cpp.obj) - .debug_aranges - 0x00006038 0x28 esp-idf/openthread/libopenthread.a(ncp.c.obj) - .debug_aranges - 0x00006060 0x48 esp-idf/openthread/libopenthread.a(esp_openthread_ncp.cpp.obj) - .debug_aranges - 0x000060a8 0x20 esp-idf/openthread/libopenthread.a(esp_openthread_ncp_hdlc.cpp.obj) - .debug_aranges - 0x000060c8 0x20 esp-idf/openthread/libopenthread.a(esp_openthread_logging.c.obj) - .debug_aranges - 0x000060e8 0x48 esp-idf/openthread/libopenthread.a(esp_openthread_misc.c.obj) - .debug_aranges - 0x00006130 0x78 esp-idf/openthread/libopenthread.a(frame_builder.cpp.obj) - .debug_aranges - 0x000061a8 0x68 esp-idf/openthread/libopenthread.a(random.cpp.obj) - .debug_aranges - 0x00006210 0x50 esp-idf/openthread/libopenthread.a(aes_ccm.cpp.obj) - .debug_aranges - 0x00006260 0x38 esp-idf/openthread/libopenthread.a(aes_ecb.cpp.obj) - .debug_aranges - 0x00006298 0x40 esp-idf/openthread/libopenthread.a(crypto_platform.cpp.obj) - .debug_aranges - 0x000062d8 0x20 esp-idf/openthread/libopenthread.a(storage.cpp.obj) - .debug_aranges - 0x000062f8 0x40 esp-idf/openthread/libopenthread.a(radio_callbacks.cpp.obj) - .debug_aranges - 0x00006338 0xe8 esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) - .debug_aranges - 0x00006420 0x328 esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - .debug_aranges - 0x00006748 0x48 esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) - .debug_aranges - 0x00006790 0xf0 esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - .debug_aranges - 0x00006880 0x78 esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) - .debug_aranges - 0x000068f8 0x128 esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - .debug_aranges - 0x00006a20 0x90 esp-idf/openthread/libopenthread.a(logging_api.cpp.obj) - .debug_aranges - 0x00006ab0 0x68 esp-idf/openthread/libopenthread.a(hdlc.cpp.obj) - .debug_aranges - 0x00006b18 0xb0 esp-idf/openthread/libopenthread.a(spinel.c.obj) - .debug_aranges - 0x00006bc8 0x128 esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - .debug_aranges - 0x00006cf0 0xa8 esp-idf/openthread/libopenthread.a(spinel_encoder.cpp.obj) - .debug_aranges - 0x00006d98 0x38 esp-idf/openthread/libopenthread.a(changed_props_set.cpp.obj) - .debug_aranges - 0x00006dd0 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) - .debug_aranges - 0x00006e08 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - .debug_aranges - 0x00006e80 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - .debug_aranges - 0x00006eb8 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) - .debug_aranges - 0x00006ee0 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) - .debug_aranges - 0x00006f08 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - .debug_aranges - 0x00006f48 0x78 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - .debug_aranges - 0x00006fc0 0x78 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - .debug_aranges - 0x00007038 0x38 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - .debug_aranges - 0x00007070 0x60 esp-idf/hal/libhal.a(aes_hal.c.obj) - .debug_aranges - 0x000070d0 0x18 esp-idf/soc/libsoc.a(temperature_sensor_periph.c.obj) - .debug_aranges - 0x000070e8 0x78 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) - .debug_aranges - 0x00007160 0x50 esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) - .debug_aranges - 0x000071b0 0x80 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - .debug_aranges - 0x00007230 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) - .debug_aranges - 0x00007260 0xd0 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .debug_aranges - 0x00007330 0x70 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) - .debug_aranges - 0x000073a0 0x208 esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - .debug_aranges - 0x000075a8 0x40 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_ack.c.obj) - .debug_aranges - 0x000075e8 0x148 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - .debug_aranges - 0x00007730 0x60 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_event.c.obj) - .debug_aranges - 0x00007790 0x80 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_frame.c.obj) - .debug_aranges - 0x00007810 0x108 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - .debug_aranges - 0x00007918 0x38 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_util.c.obj) - .debug_aranges - 0x00007950 0x28 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_sec.c.obj) - .debug_aranges - 0x00007978 0x98 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_timer.c.obj) - .debug_aranges - 0x00007a10 0x118 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .debug_aranges - 0x00007b28 0xa8 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - .debug_aranges - 0x00007bd0 0x98 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) - .debug_aranges - 0x00007c68 0x18 esp-idf/soc/libsoc.a(ieee802154_periph.c.obj) - .debug_aranges - 0x00007c80 0x40 esp-idf/esp_phy/libesp_phy.a(phy_init_esp32hxx.c.obj) - .debug_aranges - 0x00007cc0 0x28 esp-idf/esp_phy/libesp_phy.a(btbb_init.c.obj) - .debug_aranges - 0x00007ce8 0x98 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - .debug_aranges - 0x00007d80 0xc8 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .debug_aranges - 0x00007e48 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_opv.o) - .debug_aranges - 0x00007e68 0x28 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_handler.o) - .debug_aranges - 0x00007e90 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opvnt.o) - .debug_aranges - 0x00007eb0 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_op.o) - .debug_aranges - 0x00007ed0 0x40 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_catch.o) - .debug_aranges - 0x00007f10 0x40 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) - .debug_aranges - 0x00007f50 0x58 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) - .debug_aranges - 0x00007fa8 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opv.o) - .debug_aranges - 0x00007fc8 0x18 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_term_handler.o) - .debug_aranges - 0x00007fe0 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_op.o) - .debug_aranges - 0x00008000 0x48 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) - .debug_aranges - 0x00008048 0x40 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(tinfo.o) - .debug_aranges - 0x00008088 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(bad_alloc.o) - .debug_aranges - 0x000080b8 0x58 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(class_type_info.o) - .debug_aranges - 0x00008110 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_ops.o) - .debug_aranges - 0x00008130 0x78 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) - .debug_aranges - 0x000081a8 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(save-restore.o) - .debug_aranges - 0x000081c8 0xc8 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - .debug_aranges - 0x00008290 0x30 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) - .debug_aranges - 0x000082c0 0x18 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-environ.o) - .debug_aranges - 0x000082d8 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf_float.o) - .debug_aranges - 0x000082f8 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf_i.o) - .debug_aranges - 0x00008318 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfscanf_float.o) - .debug_aranges - 0x00008338 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fclose.o) - .debug_aranges - 0x00008358 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fflush.o) - .debug_aranges - 0x00008378 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-findfp.o) - .debug_aranges - 0x00008398 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fopen.o) - .debug_aranges - 0x000083b8 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fseek.o) - .debug_aranges - 0x000083d8 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fwalk.o) - .debug_aranges - 0x000083f8 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-snprintf.o) - .debug_aranges - 0x00008418 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sprintf.o) - .debug_aranges - 0x00008438 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-stdio.o) - .debug_aranges - 0x00008458 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-vsnprintf.o) - .debug_aranges - 0x00008478 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fseeko.o) - .debug_aranges - 0x00008498 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-localeconv.o) - .debug_aranges - 0x000084b8 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-reent.o) - .debug_aranges - 0x000084d8 0x18 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-impure.o) - .debug_aranges - 0x000084f0 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-errno.o) - .debug_aranges - 0x00008510 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysclose.o) - .debug_aranges - 0x00008530 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysfcntl.o) - .debug_aranges - 0x00008550 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysgettod.o) - .debug_aranges - 0x00008570 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysopen.o) - .debug_aranges - 0x00008590 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysread.o) - .debug_aranges - 0x000085b0 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-syswrite.o) - .debug_aranges - 0x000085d0 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libm_a-sf_nan.o) - .debug_aranges - 0x000085f0 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-dtoa.o) - .debug_aranges - 0x00008610 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-mprec.o) - .debug_aranges - 0x00008630 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtod.o) - .debug_aranges - 0x00008650 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtol.o) - .debug_aranges - 0x00008670 0x18 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-ctype_.o) - .debug_aranges - 0x00008688 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-svfprintf.o) - .debug_aranges - 0x000086a8 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-flags.o) - .debug_aranges - 0x000086c8 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-refill.o) - .debug_aranges - 0x000086e8 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-locale.o) - .debug_aranges - 0x00008708 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libm_a-s_nan.o) - .debug_aranges - 0x00008728 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-gdtoa-gethex.o) - .debug_aranges - 0x00008748 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-gdtoa-hexnan.o) - .debug_aranges - 0x00008768 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-mbtowc_r.o) - .debug_aranges - 0x00008788 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-wctomb_r.o) - -.debug_pubnames - *(.debug_pubnames) - -.debug_info 0x00000000 0x2dde99 - *(.debug_info .gnu.linkonce.wi.*) - .debug_info 0x00000000 0x158 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) - .debug_info 0x00000158 0x2d0 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) - .debug_info 0x00000428 0x49ce esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - .debug_info 0x00004df6 0x1de esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) - .debug_info 0x00004fd4 0x5c7 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .debug_info 0x0000559b 0x538 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) - .debug_info 0x00005ad3 0x255 esp-idf/efuse/libefuse.a(esp_efuse_table_v0.0_v1.1.c.obj) - .debug_info 0x00005d28 0x11ce esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .debug_info 0x00006ef6 0x12fa esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_info 0x000081f0 0x1424 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .debug_info 0x00009614 0x25f3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .debug_info 0x0000bc07 0x7ef esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_info 0x0000c3f6 0x196 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) - .debug_info 0x0000c58c 0x437 esp-idf/esp_system/libesp_system.a(startup.c.obj) - .debug_info 0x0000c9c3 0x1951 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) - .debug_info 0x0000e314 0xefc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .debug_info 0x0000f210 0x5844 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) - .debug_info 0x00014a54 0x1c2 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) - .debug_info 0x00014c16 0xd6ac esp-idf/esp_system/libesp_system.a(clk.c.obj) - .debug_info 0x000222c2 0x6404 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) - .debug_info 0x000286c6 0x6b4 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) - .debug_info 0x00028d7a 0x2044 esp-idf/esp_system/libesp_system.a(panic.c.obj) - .debug_info 0x0002adbe 0x87b esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - .debug_info 0x0002b639 0x924 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - .debug_info 0x0002bf5d 0x3a55 esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) - .debug_info 0x0002f9b2 0xa4c esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) - .debug_info 0x000303fe 0x5cc esp-idf/esp_rom/libesp_rom.a(esp_rom_multi_heap.c.obj) - .debug_info 0x000309ca 0xb9c esp-idf/esp_rom/libesp_rom.a(esp_rom_systimer.c.obj) - .debug_info 0x00031566 0x5096 esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) - .debug_info 0x000365fc 0x3907 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .debug_info 0x00039f03 0x3aa1 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .debug_info 0x0003d9a4 0xf09 esp-idf/hal/libhal.a(cache_hal.c.obj) - .debug_info 0x0003e8ad 0x11d esp-idf/log/liblog.a(util.c.obj) - .debug_info 0x0003e9ca 0x1d4c esp-idf/heap/libheap.a(heap_caps.c.obj) - .debug_info 0x00040716 0xce3 esp-idf/heap/libheap.a(heap_caps_init.c.obj) - .debug_info 0x000413f9 0x48c esp-idf/heap/libheap.a(multi_heap.c.obj) - .debug_info 0x00041885 0x70e esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - .debug_info 0x00041f93 0x30d esp-idf/heap/libheap.a(memory_layout.c.obj) - .debug_info 0x000422a0 0xa82 esp-idf/heap/libheap.a(heap_caps_base.c.obj) - .debug_info 0x00042d22 0x186 esp-idf/esp_security/libesp_security.a(init.c.obj) - .debug_info 0x00042ea8 0x1c3 esp-idf/esp_security/libesp_security.a(esp_dpa_protection.c.obj) - .debug_info 0x0004306b 0x7d3 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - .debug_info 0x0004383e 0x51c esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - .debug_info 0x00043d5a 0x2b5f esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .debug_info 0x000468b9 0x748 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - .debug_info 0x00047001 0x2fa esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - .debug_info 0x000472fb 0xf552 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .debug_info 0x0005684d 0xe5b esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) - .debug_info 0x000576a8 0xd5 esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) - .debug_info 0x0005777d 0x1f39 esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) - .debug_info 0x000596b6 0x366c esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) - .debug_info 0x0005cd22 0x40ad esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) - .debug_info 0x00060dcf 0x57b6 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .debug_info 0x00066585 0x4661 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) - .debug_info 0x0006abe6 0x7ef4 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) - .debug_info 0x00072ada 0x4fc8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - .debug_info 0x00077aa2 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu_asm.S.obj) - .debug_info 0x00077ae2 0x9b2 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_clock.c.obj) - .debug_info 0x00078494 0x255 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) - .debug_info 0x000786e9 0x16e esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) - .debug_info 0x00078857 0x1219 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - .debug_info 0x00079a70 0xdd3 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) - .debug_info 0x0007a843 0x3c67 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - .debug_info 0x0007e4aa 0x3f38 esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) - .debug_info 0x000823e2 0x4d93 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - .debug_info 0x00087175 0x4872 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - .debug_info 0x0008b9e7 0x484 esp-idf/freertos/libfreertos.a(app_startup.c.obj) - .debug_info 0x0008be6b 0x47b2 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .debug_info 0x0009061d 0x1adc esp-idf/freertos/libfreertos.a(port.c.obj) - .debug_info 0x000920f9 0x2e1 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) - .debug_info 0x000923da 0xc29 esp-idf/freertos/libfreertos.a(port_common.c.obj) - .debug_info 0x00093003 0x46e4 esp-idf/freertos/libfreertos.a(port_systick.c.obj) - .debug_info 0x000976e7 0x2e5 esp-idf/freertos/libfreertos.a(list.c.obj) - .debug_info 0x000979cc 0x18e esp-idf/newlib/libnewlib.a(init.c.obj) - .debug_info 0x00097b5a 0x25a esp-idf/newlib/libnewlib.a(abort.c.obj) - .debug_info 0x00097db4 0x271 esp-idf/newlib/libnewlib.a(assert.c.obj) - .debug_info 0x00098025 0xeab esp-idf/newlib/libnewlib.a(heap.c.obj) - .debug_info 0x00098ed0 0xf54 esp-idf/newlib/libnewlib.a(locks.c.obj) - .debug_info 0x00099e24 0x2d9 esp-idf/newlib/libnewlib.a(pthread.c.obj) - .debug_info 0x0009a0fd 0x14c esp-idf/newlib/libnewlib.a(getentropy.c.obj) - .debug_info 0x0009a249 0x13c1 esp-idf/newlib/libnewlib.a(time.c.obj) - .debug_info 0x0009b60a 0xc23 esp-idf/newlib/libnewlib.a(syscalls.c.obj) - .debug_info 0x0009c22d 0xe26 esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) - .debug_info 0x0009d053 0x604 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - .debug_info 0x0009d657 0xa29 esp-idf/newlib/libnewlib.a(reent_init.c.obj) - .debug_info 0x0009e080 0x165b esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - .debug_info 0x0009f6db 0x2440 esp-idf/pthread/libpthread.a(pthread.c.obj) - .debug_info 0x000a1b1b 0xf18 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .debug_info 0x000a2a33 0x8bb esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - .debug_info 0x000a32ee 0xa41 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - .debug_info 0x000a3d2f 0x597 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) - .debug_info 0x000a42c6 0x1240 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - .debug_info 0x000a5506 0x975 esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) - .debug_info 0x000a5e7b 0x5183 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .debug_info 0x000aaffe 0xa919 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .debug_info 0x000b5917 0x15df esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) - .debug_info 0x000b6ef6 0x41a5 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .debug_info 0x000bb09b 0x55c3 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - .debug_info 0x000c065e 0x213a esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - .debug_info 0x000c2798 0x65e4 esp-idf/vfs/libvfs.a(vfs.c.obj) - .debug_info 0x000c8d7c 0x20c1 esp-idf/vfs/libvfs.a(nullfs.c.obj) - .debug_info 0x000cae3d 0x4f3 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - .debug_info 0x000cb330 0xfa1 esp-idf/main/libmain.a(esp_ot_rcp.c.obj) - .debug_info 0x000cc2d1 0x179 esp-idf/riscv/libriscv.a(instruction_decode.c.obj) - .debug_info 0x000cc44a 0x49a esp-idf/riscv/libriscv.a(interrupt.c.obj) - .debug_info 0x000cc8e4 0xd1 esp-idf/riscv/libriscv.a(rv_utils.c.obj) - .debug_info 0x000cc9b5 0x3e esp-idf/riscv/libriscv.a(vectors.S.obj) - .debug_info 0x000cc9f3 0x32 esp-idf/riscv/libriscv.a(vectors_intc.S.obj) - .debug_info 0x000cca25 0x74b8 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .debug_info 0x000d3edd 0x32e2 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) - .debug_info 0x000d71bf 0xcb esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - .debug_info 0x000d728a 0x5c33 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .debug_info 0x000dcebd 0x3b47 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) - .debug_info 0x000e0a04 0x9dd esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .debug_info 0x000e13e1 0x29af esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .debug_info 0x000e3d90 0x1c1 esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) - .debug_info 0x000e3f51 0x3b7 esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) - .debug_info 0x000e4308 0x184 esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) - .debug_info 0x000e448c 0x98b esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) - .debug_info 0x000e4e17 0x1dd esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) - .debug_info 0x000e4ff4 0x426 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - .debug_info 0x000e541a 0x1570 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - .debug_info 0x000e698a 0x4a4 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - .debug_info 0x000e6e2e 0x4555 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .debug_info 0x000eb383 0x71c7 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .debug_info 0x000f254a 0x134c esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .debug_info 0x000f3896 0x9a3 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) - .debug_info 0x000f4239 0xd8f esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) - .debug_info 0x000f4fc8 0x2b41 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - .debug_info 0x000f7b09 0x1178 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - .debug_info 0x000f8c81 0x1623 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - .debug_info 0x000fa2a4 0x6b0e esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - .debug_info 0x00100db2 0x754 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - .debug_info 0x00101506 0x77f esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - .debug_info 0x00101c85 0x4fa4 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - .debug_info 0x00106c29 0x1662 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .debug_info 0x0010828b 0x5246 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - .debug_info 0x0010d4d1 0x540 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) - .debug_info 0x0010da11 0x8f1 esp-idf/esp_rom/libesp_rom.a(esp_rom_regi2c_esp32h2.c.obj) - .debug_info 0x0010e302 0x999 esp-idf/hal/libhal.a(lp_timer_hal.c.obj) - .debug_info 0x0010ec9b 0x4588 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .debug_info 0x00113223 0x6186 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - .debug_info 0x001193a9 0xa962 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - .debug_info 0x00123d0b 0x550 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - .debug_info 0x0012425b 0x3f8b esp-idf/hal/libhal.a(clk_tree_hal.c.obj) - .debug_info 0x001281e6 0x63f2 esp-idf/hal/libhal.a(uart_hal.c.obj) - .debug_info 0x0012e5d8 0x1f6b esp-idf/hal/libhal.a(uart_hal_iram.c.obj) - .debug_info 0x00130543 0x119d esp-idf/hal/libhal.a(gpio_hal.c.obj) - .debug_info 0x001316e0 0x1c3f esp-idf/hal/libhal.a(modem_clock_hal.c.obj) - .debug_info 0x0013331f 0x3fab esp-idf/hal/libhal.a(pau_hal.c.obj) - .debug_info 0x001372ca 0xc63 esp-idf/hal/libhal.a(brownout_hal.c.obj) - .debug_info 0x00137f2d 0x68ab esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - .debug_info 0x0013e7d8 0x2987 esp-idf/hal/libhal.a(pmu_hal.c.obj) - .debug_info 0x0014115f 0x14b7 esp-idf/hal/libhal.a(apm_hal.c.obj) - .debug_info 0x00142616 0x784 esp-idf/soc/libsoc.a(uart_periph.c.obj) - .debug_info 0x00142d9a 0xa6 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) - .debug_info 0x00142e40 0x27d esp-idf/soc/libsoc.a(power_supply_periph.c.obj) - .debug_info 0x001430bd 0x502 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) - .debug_info 0x001435bf 0x27e esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - .debug_info 0x0014383d 0x1154 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) - .debug_info 0x00144991 0x1c4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) - .debug_info 0x00144b55 0x492f esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - .debug_info 0x00149484 0x4371 esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) - .debug_info 0x0014d7f5 0x286 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) - .debug_info 0x0014da7b 0x1cd0 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .debug_info 0x0014f74b 0x398b esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .debug_info 0x001530d6 0x27f3 esp-idf/freertos/libfreertos.a(queue.c.obj) - .debug_info 0x001558c9 0x31 esp-idf/freertos/libfreertos.a(portasm.S.obj) - .debug_info 0x001558fa 0x1ae8 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - .debug_info 0x001573e2 0x1686 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .debug_info 0x00158a68 0x770 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) - .debug_info 0x001591d8 0x2c6c esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .debug_info 0x0015be44 0xeed1 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .debug_info 0x0016ad15 0x8b9b esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - .debug_info 0x001738b0 0xd943 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .debug_info 0x001811f3 0x17fd esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - .debug_info 0x001829f0 0xac49 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - .debug_info 0x0018d639 0x4e16 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) - .debug_info 0x0019244f 0xa20 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) - .debug_info 0x00192e6f 0x57a0 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - .debug_info 0x0019860f 0x8709 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - .debug_info 0x001a0d18 0x1610 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) - .debug_info 0x001a2328 0x291c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .debug_info 0x001a4c44 0x1e6d esp-idf/vfs/libvfs.a(vfs_eventfd.c.obj) - .debug_info 0x001a6ab1 0x414d esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .debug_info 0x001aabfe 0x25c3 esp-idf/openthread/libopenthread.a(esp_openthread.cpp.obj) - .debug_info 0x001ad1c1 0x470 esp-idf/openthread/libopenthread.a(esp_openthread_lock.c.obj) - .debug_info 0x001ad631 0x761d esp-idf/openthread/libopenthread.a(esp_openthread_platform.cpp.obj) - .debug_info 0x001b4c4e 0x1323 esp-idf/openthread/libopenthread.a(esp_openthread_task_queue.c.obj) - .debug_info 0x001b5f71 0x892 esp-idf/openthread/libopenthread.a(esp_openthread_alarm.c.obj) - .debug_info 0x001b6803 0x32b2 esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - .debug_info 0x001b9ab5 0xfdd esp-idf/openthread/libopenthread.a(esp_openthread_settings.c.obj) - .debug_info 0x001baa92 0x15b1 esp-idf/openthread/libopenthread.a(esp_openthread_spi_slave.c.obj) - .debug_info 0x001bc043 0x15f4 esp-idf/openthread/libopenthread.a(esp_openthread_uart.c.obj) - .debug_info 0x001bd637 0x4369 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - .debug_info 0x001c19a0 0x652c esp-idf/openthread/libopenthread.a(instance_api.cpp.obj) - .debug_info 0x001c7ecc 0x63ab esp-idf/openthread/libopenthread.a(tasklet_api.cpp.obj) - .debug_info 0x001ce277 0x64d4 esp-idf/openthread/libopenthread.a(tasklet.cpp.obj) - .debug_info 0x001d474b 0x8540 esp-idf/openthread/libopenthread.a(timer.cpp.obj) - .debug_info 0x001dcc8b 0x6916 esp-idf/openthread/libopenthread.a(instance.cpp.obj) - .debug_info 0x001e35a1 0x6e68 esp-idf/openthread/libopenthread.a(link_raw.cpp.obj) - .debug_info 0x001ea409 0x78ad esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - .debug_info 0x001f1cb6 0x10c4 esp-idf/openthread/libopenthread.a(mac_header_ie.cpp.obj) - .debug_info 0x001f2d7a 0x289c esp-idf/openthread/libopenthread.a(mac_types.cpp.obj) - .debug_info 0x001f5616 0x9c10 esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - .debug_info 0x001ff226 0x6560 esp-idf/openthread/libopenthread.a(sub_mac_callbacks.cpp.obj) - .debug_info 0x00205786 0x70f5 esp-idf/openthread/libopenthread.a(radio.cpp.obj) - .debug_info 0x0020c87b 0x6bdf esp-idf/openthread/libopenthread.a(radio_platform.cpp.obj) - .debug_info 0x0021345a 0x152 esp-idf/openthread/libopenthread.a(ncp.c.obj) - .debug_info 0x002135ac 0x9866 esp-idf/openthread/libopenthread.a(esp_openthread_ncp.cpp.obj) - .debug_info 0x0021ce12 0x9171 esp-idf/openthread/libopenthread.a(esp_openthread_ncp_hdlc.cpp.obj) - .debug_info 0x00225f83 0x1e5 esp-idf/openthread/libopenthread.a(esp_openthread_logging.c.obj) - .debug_info 0x00226168 0x5a5 esp-idf/openthread/libopenthread.a(esp_openthread_misc.c.obj) - .debug_info 0x0022670d 0x1f8a esp-idf/openthread/libopenthread.a(frame_builder.cpp.obj) - .debug_info 0x00228697 0x1411 esp-idf/openthread/libopenthread.a(random.cpp.obj) - .debug_info 0x00229aa8 0x220e esp-idf/openthread/libopenthread.a(aes_ccm.cpp.obj) - .debug_info 0x0022bcb6 0x117c esp-idf/openthread/libopenthread.a(aes_ecb.cpp.obj) - .debug_info 0x0022ce32 0x16f7 esp-idf/openthread/libopenthread.a(crypto_platform.cpp.obj) - .debug_info 0x0022e529 0xf6a esp-idf/openthread/libopenthread.a(storage.cpp.obj) - .debug_info 0x0022f493 0x6440 esp-idf/openthread/libopenthread.a(radio_callbacks.cpp.obj) - .debug_info 0x002358d3 0x238e esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) - .debug_info 0x00237c61 0xe87a esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - .debug_info 0x002464db 0xa2fc esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) - .debug_info 0x002507d7 0xb41e esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - .debug_info 0x0025bbf5 0x9cb5 esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) - .debug_info 0x002658aa 0x7a89 esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - .debug_info 0x0026d333 0x6b33 esp-idf/openthread/libopenthread.a(logging_api.cpp.obj) - .debug_info 0x00273e66 0x1305 esp-idf/openthread/libopenthread.a(hdlc.cpp.obj) - .debug_info 0x0027516b 0x24e7 esp-idf/openthread/libopenthread.a(spinel.c.obj) - .debug_info 0x00277652 0x253c esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - .debug_info 0x00279b8e 0x2f42 esp-idf/openthread/libopenthread.a(spinel_encoder.cpp.obj) - .debug_info 0x0027cad0 0x1fbe esp-idf/openthread/libopenthread.a(changed_props_set.cpp.obj) - .debug_info 0x0027ea8e 0x29f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) - .debug_info 0x0027ed2d 0x10c8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - .debug_info 0x0027fdf5 0x1496 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - .debug_info 0x0028128b 0x1e6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) - .debug_info 0x00281471 0x2a2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) - .debug_info 0x00281713 0x20da esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - .debug_info 0x002837ed 0x1e9f esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - .debug_info 0x0028568c 0x1425 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - .debug_info 0x00286ab1 0x43c esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - .debug_info 0x00286eed 0x8e1 esp-idf/hal/libhal.a(aes_hal.c.obj) - .debug_info 0x002877ce 0x527 esp-idf/soc/libsoc.a(temperature_sensor_periph.c.obj) - .debug_info 0x00287cf5 0x36d esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) - .debug_info 0x00288062 0x3526 esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) - .debug_info 0x0028b588 0xcc9 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - .debug_info 0x0028c251 0x350f esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) - .debug_info 0x0028f760 0x7583 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .debug_info 0x00296ce3 0x7240 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) - .debug_info 0x0029df23 0x2f5d esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - .debug_info 0x002a0e80 0x1c0e esp-idf/ieee802154/libieee802154.a(esp_ieee802154_ack.c.obj) - .debug_info 0x002a2a8e 0x3e5a esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - .debug_info 0x002a68e8 0x735 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_event.c.obj) - .debug_info 0x002a701d 0xc65 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_frame.c.obj) - .debug_info 0x002a7c82 0x20cb esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - .debug_info 0x002a9d4d 0x181 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_util.c.obj) - .debug_info 0x002a9ece 0x179d esp-idf/ieee802154/libieee802154.a(esp_ieee802154_sec.c.obj) - .debug_info 0x002ab66b 0x1cc3 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_timer.c.obj) - .debug_info 0x002ad32e 0x3180 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .debug_info 0x002b04ae 0x23a0 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - .debug_info 0x002b284e 0x2dbd esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) - .debug_info 0x002b560b 0x37c esp-idf/soc/libsoc.a(ieee802154_periph.c.obj) - .debug_info 0x002b5987 0x66f esp-idf/esp_phy/libesp_phy.a(phy_init_esp32hxx.c.obj) - .debug_info 0x002b5ff6 0x20c esp-idf/esp_phy/libesp_phy.a(btbb_init.c.obj) - .debug_info 0x002b6202 0xe33 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - .debug_info 0x002b7035 0x1e28 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .debug_info 0x002b8e5d 0x92 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_opv.o) - .debug_info 0x002b8eef 0x132 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_handler.o) - .debug_info 0x002b9021 0x11a C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opvnt.o) - .debug_info 0x002b913b 0x5af C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_op.o) - .debug_info 0x002b96ea 0xd9b C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_catch.o) - .debug_info 0x002ba485 0xfd6 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) - .debug_info 0x002bb45b 0xadc C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) - .debug_info 0x002bbf37 0xab C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opv.o) - .debug_info 0x002bbfe2 0x8b0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_term_handler.o) - .debug_info 0x002bc892 0x87e C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_op.o) - .debug_info 0x002bd110 0xa57 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) - .debug_info 0x002bdb67 0x553 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(tinfo.o) - .debug_info 0x002be0ba 0x28b C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(bad_alloc.o) - .debug_info 0x002be345 0xa8f C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(class_type_info.o) - .debug_info 0x002bedd4 0xab C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_ops.o) - .debug_info 0x002bee7f 0x8c2 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) - .debug_info 0x002bf741 0x15e C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(save-restore.o) - .debug_info 0x002bf89f 0x1a55 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - .debug_info 0x002c12f4 0x397 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) - .debug_info 0x002c168b 0x6b C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-environ.o) - .debug_info 0x002c16f6 0x141b C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf_float.o) - .debug_info 0x002c2b11 0xec0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf_i.o) - .debug_info 0x002c39d1 0xed5 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfscanf_float.o) - .debug_info 0x002c48a6 0xa02 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fclose.o) - .debug_info 0x002c52a8 0xac8 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fflush.o) - .debug_info 0x002c5d70 0x1038 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-findfp.o) - .debug_info 0x002c6da8 0xb08 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fopen.o) - .debug_info 0x002c78b0 0x9b3 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fseek.o) - .debug_info 0x002c8263 0x8b8 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fwalk.o) - .debug_info 0x002c8b1b 0x9c1 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-snprintf.o) - .debug_info 0x002c94dc 0x9a1 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sprintf.o) - .debug_info 0x002c9e7d 0xb63 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-stdio.o) - .debug_info 0x002ca9e0 0x9aa C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-vsnprintf.o) - .debug_info 0x002cb38a 0xe46 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fseeko.o) - .debug_info 0x002cc1d0 0xbe9 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-localeconv.o) - .debug_info 0x002ccdb9 0x986 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-reent.o) - .debug_info 0x002cd73f 0x84c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-impure.o) - .debug_info 0x002cdf8b 0x840 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-errno.o) - .debug_info 0x002ce7cb 0x872 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysclose.o) - .debug_info 0x002cf03d 0x8b4 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysfcntl.o) - .debug_info 0x002cf8f1 0x8f5 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysgettod.o) - .debug_info 0x002d01e6 0x8c9 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysopen.o) - .debug_info 0x002d0aaf 0x8bf C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysread.o) - .debug_info 0x002d136e 0x8c5 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-syswrite.o) - .debug_info 0x002d1c33 0xcb C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libm_a-sf_nan.o) - .debug_info 0x002d1cfe 0x1867 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-dtoa.o) - .debug_info 0x002d3565 0x1c96 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-mprec.o) - .debug_info 0x002d51fb 0x1e15 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtod.o) - .debug_info 0x002d7010 0xe5f C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtol.o) - .debug_info 0x002d7e6f 0xb9 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-ctype_.o) - .debug_info 0x002d7f28 0x1185 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-svfprintf.o) - .debug_info 0x002d90ad 0x87e C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-flags.o) - .debug_info 0x002d992b 0xa71 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-refill.o) - .debug_info 0x002da39c 0xcbe C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-locale.o) - .debug_info 0x002db05a 0xcf C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libm_a-s_nan.o) - .debug_info 0x002db129 0x126a C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-gdtoa-gethex.o) - .debug_info 0x002dc393 0x347 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-gdtoa-hexnan.o) - .debug_info 0x002dc6da 0xc00 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-mbtowc_r.o) - .debug_info 0x002dd2da 0xbbf C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-wctomb_r.o) - -.debug_abbrev 0x00000000 0x4ebb0 - *(.debug_abbrev) - .debug_abbrev 0x00000000 0x110 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) - .debug_abbrev 0x00000110 0x194 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) - .debug_abbrev 0x000002a4 0x4ee esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - .debug_abbrev 0x00000792 0x138 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) - .debug_abbrev 0x000008ca 0x2ca esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .debug_abbrev 0x00000b94 0x26e esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) - .debug_abbrev 0x00000e02 0xe4 esp-idf/efuse/libefuse.a(esp_efuse_table_v0.0_v1.1.c.obj) - .debug_abbrev 0x00000ee6 0x426 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .debug_abbrev 0x0000130c 0x48a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_abbrev 0x00001796 0x3c5 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .debug_abbrev 0x00001b5b 0x106 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .debug_abbrev 0x00001c61 0x297 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_abbrev 0x00001ef8 0x136 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) - .debug_abbrev 0x0000202e 0x241 esp-idf/esp_system/libesp_system.a(startup.c.obj) - .debug_abbrev 0x0000226f 0x344 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) - .debug_abbrev 0x000025b3 0x2d2 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .debug_abbrev 0x00002885 0x52e esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) - .debug_abbrev 0x00002db3 0x12a esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) - .debug_abbrev 0x00002edd 0x5c2 esp-idf/esp_system/libesp_system.a(clk.c.obj) - .debug_abbrev 0x0000349f 0x3c9 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) - .debug_abbrev 0x00003868 0x28d esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) - .debug_abbrev 0x00003af5 0x4fc esp-idf/esp_system/libesp_system.a(panic.c.obj) - .debug_abbrev 0x00003ff1 0x300 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - .debug_abbrev 0x000042f1 0x38f esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - .debug_abbrev 0x00004680 0x3bd esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) - .debug_abbrev 0x00004a3d 0x26e esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) - .debug_abbrev 0x00004cab 0x266 esp-idf/esp_rom/libesp_rom.a(esp_rom_multi_heap.c.obj) - .debug_abbrev 0x00004f11 0x23e esp-idf/esp_rom/libesp_rom.a(esp_rom_systimer.c.obj) - .debug_abbrev 0x0000514f 0x3a9 esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) - .debug_abbrev 0x000054f8 0x2ca esp-idf/hal/libhal.a(efuse_hal.c.obj) - .debug_abbrev 0x000057c2 0x38f esp-idf/hal/libhal.a(efuse_hal.c.obj) - .debug_abbrev 0x00005b51 0x38c esp-idf/hal/libhal.a(cache_hal.c.obj) - .debug_abbrev 0x00005edd 0xda esp-idf/log/liblog.a(util.c.obj) - .debug_abbrev 0x00005fb7 0x4c5 esp-idf/heap/libheap.a(heap_caps.c.obj) - .debug_abbrev 0x0000647c 0x434 esp-idf/heap/libheap.a(heap_caps_init.c.obj) - .debug_abbrev 0x000068b0 0x24d esp-idf/heap/libheap.a(multi_heap.c.obj) - .debug_abbrev 0x00006afd 0x312 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - .debug_abbrev 0x00006e0f 0xed esp-idf/heap/libheap.a(memory_layout.c.obj) - .debug_abbrev 0x00006efc 0x389 esp-idf/heap/libheap.a(heap_caps_base.c.obj) - .debug_abbrev 0x00007285 0x119 esp-idf/esp_security/libesp_security.a(init.c.obj) - .debug_abbrev 0x0000739e 0x12d esp-idf/esp_security/libesp_security.a(esp_dpa_protection.c.obj) - .debug_abbrev 0x000074cb 0x305 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - .debug_abbrev 0x000077d0 0x298 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - .debug_abbrev 0x00007a68 0x661 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .debug_abbrev 0x000080c9 0x23a esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - .debug_abbrev 0x00008303 0x188 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - .debug_abbrev 0x0000848b 0x85b esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .debug_abbrev 0x00008ce6 0x3a8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) - .debug_abbrev 0x0000908e 0x95 esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) - .debug_abbrev 0x00009123 0x4db esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) - .debug_abbrev 0x000095fe 0x3d0 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) - .debug_abbrev 0x000099ce 0x46e esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) - .debug_abbrev 0x00009e3c 0x65b esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .debug_abbrev 0x0000a497 0x474 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) - .debug_abbrev 0x0000a90b 0x55e esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) - .debug_abbrev 0x0000ae69 0x4be esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - .debug_abbrev 0x0000b327 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu_asm.S.obj) - .debug_abbrev 0x0000b34f 0x266 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_clock.c.obj) - .debug_abbrev 0x0000b5b5 0x190 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) - .debug_abbrev 0x0000b745 0xdb esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) - .debug_abbrev 0x0000b820 0x31c esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - .debug_abbrev 0x0000bb3c 0x367 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) - .debug_abbrev 0x0000bea3 0x6a6 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - .debug_abbrev 0x0000c549 0x318 esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) - .debug_abbrev 0x0000c861 0x654 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - .debug_abbrev 0x0000ceb5 0x309 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - .debug_abbrev 0x0000d1be 0x225 esp-idf/freertos/libfreertos.a(app_startup.c.obj) - .debug_abbrev 0x0000d3e3 0x61b esp-idf/freertos/libfreertos.a(tasks.c.obj) - .debug_abbrev 0x0000d9fe 0x628 esp-idf/freertos/libfreertos.a(port.c.obj) - .debug_abbrev 0x0000e026 0x195 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) - .debug_abbrev 0x0000e1bb 0x22f esp-idf/freertos/libfreertos.a(port_common.c.obj) - .debug_abbrev 0x0000e3ea 0x464 esp-idf/freertos/libfreertos.a(port_systick.c.obj) - .debug_abbrev 0x0000e84e 0x111 esp-idf/freertos/libfreertos.a(list.c.obj) - .debug_abbrev 0x0000e95f 0x135 esp-idf/newlib/libnewlib.a(init.c.obj) - .debug_abbrev 0x0000ea94 0x134 esp-idf/newlib/libnewlib.a(abort.c.obj) - .debug_abbrev 0x0000ebc8 0x15f esp-idf/newlib/libnewlib.a(assert.c.obj) - .debug_abbrev 0x0000ed27 0x296 esp-idf/newlib/libnewlib.a(heap.c.obj) - .debug_abbrev 0x0000efbd 0x3ac esp-idf/newlib/libnewlib.a(locks.c.obj) - .debug_abbrev 0x0000f369 0x182 esp-idf/newlib/libnewlib.a(pthread.c.obj) - .debug_abbrev 0x0000f4eb 0xf6 esp-idf/newlib/libnewlib.a(getentropy.c.obj) - .debug_abbrev 0x0000f5e1 0x48d esp-idf/newlib/libnewlib.a(time.c.obj) - .debug_abbrev 0x0000fa6e 0x243 esp-idf/newlib/libnewlib.a(syscalls.c.obj) - .debug_abbrev 0x0000fcb1 0x34c esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) - .debug_abbrev 0x0000fffd 0x202 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - .debug_abbrev 0x000101ff 0x25d esp-idf/newlib/libnewlib.a(reent_init.c.obj) - .debug_abbrev 0x0001045c 0x31a esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - .debug_abbrev 0x00010776 0x661 esp-idf/pthread/libpthread.a(pthread.c.obj) - .debug_abbrev 0x00010dd7 0x3c9 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .debug_abbrev 0x000111a0 0x31d esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - .debug_abbrev 0x000114bd 0x2fe esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - .debug_abbrev 0x000117bb 0x1c0 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) - .debug_abbrev 0x0001197b 0x548 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - .debug_abbrev 0x00011ec3 0x263 esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) - .debug_abbrev 0x00012126 0x6ed esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .debug_abbrev 0x00012813 0x719 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .debug_abbrev 0x00012f2c 0x317 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) - .debug_abbrev 0x00013243 0x737 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .debug_abbrev 0x0001397a 0x5ef esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - .debug_abbrev 0x00013f69 0x3c1 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - .debug_abbrev 0x0001432a 0x659 esp-idf/vfs/libvfs.a(vfs.c.obj) - .debug_abbrev 0x00014983 0x426 esp-idf/vfs/libvfs.a(nullfs.c.obj) - .debug_abbrev 0x00014da9 0x162 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - .debug_abbrev 0x00014f0b 0x2e4 esp-idf/main/libmain.a(esp_ot_rcp.c.obj) - .debug_abbrev 0x000151ef 0x10f esp-idf/riscv/libriscv.a(instruction_decode.c.obj) - .debug_abbrev 0x000152fe 0x241 esp-idf/riscv/libriscv.a(interrupt.c.obj) - .debug_abbrev 0x0001553f 0x7b esp-idf/riscv/libriscv.a(rv_utils.c.obj) - .debug_abbrev 0x000155ba 0x28 esp-idf/riscv/libriscv.a(vectors.S.obj) - .debug_abbrev 0x000155e2 0x28 esp-idf/riscv/libriscv.a(vectors_intc.S.obj) - .debug_abbrev 0x0001560a 0x6c2 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .debug_abbrev 0x00015ccc 0x37a esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) - .debug_abbrev 0x00016046 0x97 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - .debug_abbrev 0x000160dd 0x5d6 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .debug_abbrev 0x000166b3 0x45a esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) - .debug_abbrev 0x00016b0d 0x370 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .debug_abbrev 0x00016e7d 0x580 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .debug_abbrev 0x000173fd 0xbd esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) - .debug_abbrev 0x000174ba 0x1ad esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) - .debug_abbrev 0x00017667 0xd7 esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) - .debug_abbrev 0x0001773e 0x2fe esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) - .debug_abbrev 0x00017a3c 0x12a esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) - .debug_abbrev 0x00017b66 0x20b esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - .debug_abbrev 0x00017d71 0x404 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - .debug_abbrev 0x00018175 0x2a3 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - .debug_abbrev 0x00018418 0x5bc esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .debug_abbrev 0x000189d4 0x599 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .debug_abbrev 0x00018f6d 0x46a esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .debug_abbrev 0x000193d7 0x1eb esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) - .debug_abbrev 0x000195c2 0x1b3 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) - .debug_abbrev 0x00019775 0x5c8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - .debug_abbrev 0x00019d3d 0x31d esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - .debug_abbrev 0x0001a05a 0x338 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - .debug_abbrev 0x0001a392 0x48f esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - .debug_abbrev 0x0001a821 0x2a8 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - .debug_abbrev 0x0001aac9 0x287 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - .debug_abbrev 0x0001ad50 0x3be esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - .debug_abbrev 0x0001b10e 0x511 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .debug_abbrev 0x0001b61f 0x3e3 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - .debug_abbrev 0x0001ba02 0x1a6 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) - .debug_abbrev 0x0001bba8 0x1e3 esp-idf/esp_rom/libesp_rom.a(esp_rom_regi2c_esp32h2.c.obj) - .debug_abbrev 0x0001bd8b 0x2b1 esp-idf/hal/libhal.a(lp_timer_hal.c.obj) - .debug_abbrev 0x0001c03c 0x408 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .debug_abbrev 0x0001c444 0x444 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - .debug_abbrev 0x0001c888 0x59d esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - .debug_abbrev 0x0001ce25 0x22c esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - .debug_abbrev 0x0001d051 0x382 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) - .debug_abbrev 0x0001d3d3 0x44c esp-idf/hal/libhal.a(uart_hal.c.obj) - .debug_abbrev 0x0001d81f 0x2f8 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) - .debug_abbrev 0x0001db17 0x2c9 esp-idf/hal/libhal.a(gpio_hal.c.obj) - .debug_abbrev 0x0001dde0 0x292 esp-idf/hal/libhal.a(modem_clock_hal.c.obj) - .debug_abbrev 0x0001e072 0x2f5 esp-idf/hal/libhal.a(pau_hal.c.obj) - .debug_abbrev 0x0001e367 0x27c esp-idf/hal/libhal.a(brownout_hal.c.obj) - .debug_abbrev 0x0001e5e3 0x503 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - .debug_abbrev 0x0001eae6 0x340 esp-idf/hal/libhal.a(pmu_hal.c.obj) - .debug_abbrev 0x0001ee26 0x3d4 esp-idf/hal/libhal.a(apm_hal.c.obj) - .debug_abbrev 0x0001f1fa 0x172 esp-idf/soc/libsoc.a(uart_periph.c.obj) - .debug_abbrev 0x0001f36c 0x61 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) - .debug_abbrev 0x0001f3cd 0x9a esp-idf/soc/libsoc.a(power_supply_periph.c.obj) - .debug_abbrev 0x0001f467 0x154 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) - .debug_abbrev 0x0001f5bb 0x17b esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - .debug_abbrev 0x0001f736 0x39c esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) - .debug_abbrev 0x0001fad2 0xd0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) - .debug_abbrev 0x0001fba2 0x403 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - .debug_abbrev 0x0001ffa5 0x363 esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) - .debug_abbrev 0x00020308 0x103 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) - .debug_abbrev 0x0002040b 0x480 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .debug_abbrev 0x0002088b 0x404 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .debug_abbrev 0x00020c8f 0x424 esp-idf/freertos/libfreertos.a(queue.c.obj) - .debug_abbrev 0x000210b3 0x26 esp-idf/freertos/libfreertos.a(portasm.S.obj) - .debug_abbrev 0x000210d9 0x412 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - .debug_abbrev 0x000214eb 0x23f esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .debug_abbrev 0x0002172a 0x161 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) - .debug_abbrev 0x0002188b 0x56f esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .debug_abbrev 0x00021dfa 0x1150 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .debug_abbrev 0x00022f4a 0xe51 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - .debug_abbrev 0x00023d9b 0xff4 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .debug_abbrev 0x00024d8f 0x54f esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - .debug_abbrev 0x000252de 0xf0e esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - .debug_abbrev 0x000261ec 0x8a8 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) - .debug_abbrev 0x00026a94 0x2dc esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) - .debug_abbrev 0x00026d70 0xa5e esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - .debug_abbrev 0x000277ce 0xe68 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - .debug_abbrev 0x00028636 0x536 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) - .debug_abbrev 0x00028b6c 0x450 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .debug_abbrev 0x00028fbc 0x489 esp-idf/vfs/libvfs.a(vfs_eventfd.c.obj) - .debug_abbrev 0x00029445 0x5a1 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .debug_abbrev 0x000299e6 0x45b esp-idf/openthread/libopenthread.a(esp_openthread.cpp.obj) - .debug_abbrev 0x00029e41 0x1e5 esp-idf/openthread/libopenthread.a(esp_openthread_lock.c.obj) - .debug_abbrev 0x0002a026 0xae7 esp-idf/openthread/libopenthread.a(esp_openthread_platform.cpp.obj) - .debug_abbrev 0x0002ab0d 0x322 esp-idf/openthread/libopenthread.a(esp_openthread_task_queue.c.obj) - .debug_abbrev 0x0002ae2f 0x311 esp-idf/openthread/libopenthread.a(esp_openthread_alarm.c.obj) - .debug_abbrev 0x0002b140 0x5c2 esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - .debug_abbrev 0x0002b702 0x33b esp-idf/openthread/libopenthread.a(esp_openthread_settings.c.obj) - .debug_abbrev 0x0002ba3d 0x2ee esp-idf/openthread/libopenthread.a(esp_openthread_spi_slave.c.obj) - .debug_abbrev 0x0002bd2b 0x396 esp-idf/openthread/libopenthread.a(esp_openthread_uart.c.obj) - .debug_abbrev 0x0002c0c1 0x795 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - .debug_abbrev 0x0002c856 0x9b5 esp-idf/openthread/libopenthread.a(instance_api.cpp.obj) - .debug_abbrev 0x0002d20b 0x979 esp-idf/openthread/libopenthread.a(tasklet_api.cpp.obj) - .debug_abbrev 0x0002db84 0x9bc esp-idf/openthread/libopenthread.a(tasklet.cpp.obj) - .debug_abbrev 0x0002e540 0xd11 esp-idf/openthread/libopenthread.a(timer.cpp.obj) - .debug_abbrev 0x0002f251 0xb25 esp-idf/openthread/libopenthread.a(instance.cpp.obj) - .debug_abbrev 0x0002fd76 0xab6 esp-idf/openthread/libopenthread.a(link_raw.cpp.obj) - .debug_abbrev 0x0003082c 0x9c2 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - .debug_abbrev 0x000311ee 0x417 esp-idf/openthread/libopenthread.a(mac_header_ie.cpp.obj) - .debug_abbrev 0x00031605 0x78c esp-idf/openthread/libopenthread.a(mac_types.cpp.obj) - .debug_abbrev 0x00031d91 0xd5f esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - .debug_abbrev 0x00032af0 0x96a esp-idf/openthread/libopenthread.a(sub_mac_callbacks.cpp.obj) - .debug_abbrev 0x0003345a 0xa78 esp-idf/openthread/libopenthread.a(radio.cpp.obj) - .debug_abbrev 0x00033ed2 0xaa4 esp-idf/openthread/libopenthread.a(radio_platform.cpp.obj) - .debug_abbrev 0x00034976 0xe7 esp-idf/openthread/libopenthread.a(ncp.c.obj) - .debug_abbrev 0x00034a5d 0xb72 esp-idf/openthread/libopenthread.a(esp_openthread_ncp.cpp.obj) - .debug_abbrev 0x000355cf 0xb26 esp-idf/openthread/libopenthread.a(esp_openthread_ncp_hdlc.cpp.obj) - .debug_abbrev 0x000360f5 0xc4 esp-idf/openthread/libopenthread.a(esp_openthread_logging.c.obj) - .debug_abbrev 0x000361b9 0x1f1 esp-idf/openthread/libopenthread.a(esp_openthread_misc.c.obj) - .debug_abbrev 0x000363aa 0x56a esp-idf/openthread/libopenthread.a(frame_builder.cpp.obj) - .debug_abbrev 0x00036914 0x51b esp-idf/openthread/libopenthread.a(random.cpp.obj) - .debug_abbrev 0x00036e2f 0x5bd esp-idf/openthread/libopenthread.a(aes_ccm.cpp.obj) - .debug_abbrev 0x000373ec 0x390 esp-idf/openthread/libopenthread.a(aes_ecb.cpp.obj) - .debug_abbrev 0x0003777c 0x4b3 esp-idf/openthread/libopenthread.a(crypto_platform.cpp.obj) - .debug_abbrev 0x00037c2f 0x3f8 esp-idf/openthread/libopenthread.a(storage.cpp.obj) - .debug_abbrev 0x00038027 0x8f5 esp-idf/openthread/libopenthread.a(radio_callbacks.cpp.obj) - .debug_abbrev 0x0003891c 0x576 esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) - .debug_abbrev 0x00038e92 0xedd esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - .debug_abbrev 0x00039d6f 0xb51 esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) - .debug_abbrev 0x0003a8c0 0xd62 esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - .debug_abbrev 0x0003b622 0xcf7 esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) - .debug_abbrev 0x0003c319 0xa94 esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - .debug_abbrev 0x0003cdad 0xa8b esp-idf/openthread/libopenthread.a(logging_api.cpp.obj) - .debug_abbrev 0x0003d838 0x4df esp-idf/openthread/libopenthread.a(hdlc.cpp.obj) - .debug_abbrev 0x0003dd17 0x41d esp-idf/openthread/libopenthread.a(spinel.c.obj) - .debug_abbrev 0x0003e134 0x5f5 esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - .debug_abbrev 0x0003e729 0x5dd esp-idf/openthread/libopenthread.a(spinel_encoder.cpp.obj) - .debug_abbrev 0x0003ed06 0x43e esp-idf/openthread/libopenthread.a(changed_props_set.cpp.obj) - .debug_abbrev 0x0003f144 0x18b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) - .debug_abbrev 0x0003f2cf 0x339 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - .debug_abbrev 0x0003f608 0x540 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - .debug_abbrev 0x0003fb48 0x14e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) - .debug_abbrev 0x0003fc96 0x15d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) - .debug_abbrev 0x0003fdf3 0x3e4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - .debug_abbrev 0x000401d7 0x42b esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - .debug_abbrev 0x00040602 0x31b esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - .debug_abbrev 0x0004091d 0x1eb esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - .debug_abbrev 0x00040b08 0x2bc esp-idf/hal/libhal.a(aes_hal.c.obj) - .debug_abbrev 0x00040dc4 0x15f esp-idf/soc/libsoc.a(temperature_sensor_periph.c.obj) - .debug_abbrev 0x00040f23 0x116 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) - .debug_abbrev 0x00041039 0x212 esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) - .debug_abbrev 0x0004124b 0x3f1 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - .debug_abbrev 0x0004163c 0x2dd esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) - .debug_abbrev 0x00041919 0x671 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .debug_abbrev 0x00041f8a 0x5f9 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) - .debug_abbrev 0x00042583 0x510 esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - .debug_abbrev 0x00042a93 0x354 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_ack.c.obj) - .debug_abbrev 0x00042de7 0x6c1 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - .debug_abbrev 0x000434a8 0x213 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_event.c.obj) - .debug_abbrev 0x000436bb 0x290 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_frame.c.obj) - .debug_abbrev 0x0004394b 0x3d3 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - .debug_abbrev 0x00043d1e 0xb7 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_util.c.obj) - .debug_abbrev 0x00043dd5 0x271 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_sec.c.obj) - .debug_abbrev 0x00044046 0x3ad esp-idf/ieee802154/libieee802154.a(esp_ieee802154_timer.c.obj) - .debug_abbrev 0x000443f3 0x538 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .debug_abbrev 0x0004492b 0x279 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - .debug_abbrev 0x00044ba4 0x3c3 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) - .debug_abbrev 0x00044f67 0x9a esp-idf/soc/libsoc.a(ieee802154_periph.c.obj) - .debug_abbrev 0x00045001 0x1e2 esp-idf/esp_phy/libesp_phy.a(phy_init_esp32hxx.c.obj) - .debug_abbrev 0x000451e3 0x119 esp-idf/esp_phy/libesp_phy.a(btbb_init.c.obj) - .debug_abbrev 0x000452fc 0x423 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - .debug_abbrev 0x0004571f 0x5ae esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .debug_abbrev 0x00045ccd 0x8f C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_opv.o) - .debug_abbrev 0x00045d5c 0x151 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_handler.o) - .debug_abbrev 0x00045ead 0x122 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opvnt.o) - .debug_abbrev 0x00045fcf 0x199 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_op.o) - .debug_abbrev 0x00046168 0x509 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_catch.o) - .debug_abbrev 0x00046671 0x57b C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) - .debug_abbrev 0x00046bec 0x41e C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) - .debug_abbrev 0x0004700a 0xa4 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opv.o) - .debug_abbrev 0x000470ae 0x342 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_term_handler.o) - .debug_abbrev 0x000473f0 0x2ef C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_op.o) - .debug_abbrev 0x000476df 0x478 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) - .debug_abbrev 0x00047b57 0x2ff C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(tinfo.o) - .debug_abbrev 0x00047e56 0x1f6 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(bad_alloc.o) - .debug_abbrev 0x0004804c 0x46a C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(class_type_info.o) - .debug_abbrev 0x000484b6 0xa9 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_ops.o) - .debug_abbrev 0x0004855f 0x3f2 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) - .debug_abbrev 0x00048951 0x28 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(save-restore.o) - .debug_abbrev 0x00048979 0x4d4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - .debug_abbrev 0x00048e4d 0x1dd esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) - .debug_abbrev 0x0004902a 0x5b C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-environ.o) - .debug_abbrev 0x00049085 0x2d6 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf_float.o) - .debug_abbrev 0x0004935b 0x275 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf_i.o) - .debug_abbrev 0x000495d0 0x2af C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfscanf_float.o) - .debug_abbrev 0x0004987f 0x289 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fclose.o) - .debug_abbrev 0x00049b08 0x2e7 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fflush.o) - .debug_abbrev 0x00049def 0x424 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-findfp.o) - .debug_abbrev 0x0004a213 0x289 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fopen.o) - .debug_abbrev 0x0004a49c 0x247 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fseek.o) - .debug_abbrev 0x0004a6e3 0x1bd C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fwalk.o) - .debug_abbrev 0x0004a8a0 0x237 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-snprintf.o) - .debug_abbrev 0x0004aad7 0x213 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sprintf.o) - .debug_abbrev 0x0004acea 0x255 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-stdio.o) - .debug_abbrev 0x0004af3f 0x22d C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-vsnprintf.o) - .debug_abbrev 0x0004b16c 0x2de C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fseeko.o) - .debug_abbrev 0x0004b44a 0x260 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-localeconv.o) - .debug_abbrev 0x0004b6aa 0x212 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-reent.o) - .debug_abbrev 0x0004b8bc 0x174 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-impure.o) - .debug_abbrev 0x0004ba30 0x196 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-errno.o) - .debug_abbrev 0x0004bbc6 0x1d1 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysclose.o) - .debug_abbrev 0x0004bd97 0x1e3 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysfcntl.o) - .debug_abbrev 0x0004bf7a 0x1d1 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysgettod.o) - .debug_abbrev 0x0004c14b 0x1ef C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysopen.o) - .debug_abbrev 0x0004c33a 0x1d2 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysread.o) - .debug_abbrev 0x0004c50c 0x1d7 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-syswrite.o) - .debug_abbrev 0x0004c6e3 0x77 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libm_a-sf_nan.o) - .debug_abbrev 0x0004c75a 0x326 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-dtoa.o) - .debug_abbrev 0x0004ca80 0x46e C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-mprec.o) - .debug_abbrev 0x0004ceee 0x50d C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtod.o) - .debug_abbrev 0x0004d3fb 0x2f4 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtol.o) - .debug_abbrev 0x0004d6ef 0x62 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-ctype_.o) - .debug_abbrev 0x0004d751 0x2fc C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-svfprintf.o) - .debug_abbrev 0x0004da4d 0x1be C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-flags.o) - .debug_abbrev 0x0004dc0b 0x2bd C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-refill.o) - .debug_abbrev 0x0004dec8 0x285 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-locale.o) - .debug_abbrev 0x0004e14d 0x77 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libm_a-s_nan.o) - .debug_abbrev 0x0004e1c4 0x3c1 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-gdtoa-gethex.o) - .debug_abbrev 0x0004e585 0x187 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-gdtoa-hexnan.o) - .debug_abbrev 0x0004e70c 0x25d C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-mbtowc_r.o) - .debug_abbrev 0x0004e969 0x247 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-wctomb_r.o) - -.debug_line 0x00000000 0x10eb65 - *(.debug_line) - .debug_line 0x00000000 0x2e1 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) - .debug_line 0x000002e1 0x593 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) - .debug_line 0x00000874 0xcbb esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - .debug_line 0x0000152f 0x33d esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) - .debug_line 0x0000186c 0x6c5 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .debug_line 0x00001f31 0x536 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) - .debug_line 0x00002467 0x295 esp-idf/efuse/libefuse.a(esp_efuse_table_v0.0_v1.1.c.obj) - .debug_line 0x000026fc 0x12ec esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .debug_line 0x000039e8 0x1563 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_line 0x00004f4b 0x14a8 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .debug_line 0x000063f3 0x281 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .debug_line 0x00006674 0xa65 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_line 0x000070d9 0x3ad esp-idf/esp_system/libesp_system.a(esp_system.c.obj) - .debug_line 0x00007486 0x63c esp-idf/esp_system/libesp_system.a(startup.c.obj) - .debug_line 0x00007ac2 0x8c2 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) - .debug_line 0x00008384 0x707 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .debug_line 0x00008a8b 0xecb esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) - .debug_line 0x00009956 0x36c esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) - .debug_line 0x00009cc2 0x1765 esp-idf/esp_system/libesp_system.a(clk.c.obj) - .debug_line 0x0000b427 0xb4b esp-idf/esp_system/libesp_system.a(system_internal.c.obj) - .debug_line 0x0000bf72 0x5c6 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) - .debug_line 0x0000c538 0xd00 esp-idf/esp_system/libesp_system.a(panic.c.obj) - .debug_line 0x0000d238 0x6ad esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - .debug_line 0x0000d8e5 0x9a4 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - .debug_line 0x0000e289 0x7d9 esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) - .debug_line 0x0000ea62 0x63c esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) - .debug_line 0x0000f09e 0x3bb esp-idf/esp_rom/libesp_rom.a(esp_rom_multi_heap.c.obj) - .debug_line 0x0000f459 0x36a esp-idf/esp_rom/libesp_rom.a(esp_rom_systimer.c.obj) - .debug_line 0x0000f7c3 0xce0 esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) - .debug_line 0x000104a3 0x533 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .debug_line 0x000109d6 0x790 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .debug_line 0x00011166 0xb5a esp-idf/hal/libhal.a(cache_hal.c.obj) - .debug_line 0x00011cc0 0x22b esp-idf/log/liblog.a(util.c.obj) - .debug_line 0x00011eeb 0x1d8a esp-idf/heap/libheap.a(heap_caps.c.obj) - .debug_line 0x00013c75 0xfde esp-idf/heap/libheap.a(heap_caps_init.c.obj) - .debug_line 0x00014c53 0x3d6 esp-idf/heap/libheap.a(multi_heap.c.obj) - .debug_line 0x00015029 0x9ec esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - .debug_line 0x00015a15 0x258 esp-idf/heap/libheap.a(memory_layout.c.obj) - .debug_line 0x00015c6d 0xb3d esp-idf/heap/libheap.a(heap_caps_base.c.obj) - .debug_line 0x000167aa 0x307 esp-idf/esp_security/libesp_security.a(init.c.obj) - .debug_line 0x00016ab1 0x356 esp-idf/esp_security/libesp_security.a(esp_dpa_protection.c.obj) - .debug_line 0x00016e07 0x9c7 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - .debug_line 0x000177ce 0x80f esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - .debug_line 0x00017fdd 0x2c52 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .debug_line 0x0001ac2f 0xf0a esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - .debug_line 0x0001bb39 0x41d esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - .debug_line 0x0001bf56 0x45e9 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .debug_line 0x0002053f 0x8e1 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) - .debug_line 0x00020e20 0x1d6 esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) - .debug_line 0x00020ff6 0x141e esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) - .debug_line 0x00022414 0x611 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) - .debug_line 0x00022a25 0xa56 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) - .debug_line 0x0002347b 0x1e11 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .debug_line 0x0002528c 0x1344 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) - .debug_line 0x000265d0 0x1729 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) - .debug_line 0x00027cf9 0x116c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - .debug_line 0x00028e65 0x32f esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu_asm.S.obj) - .debug_line 0x00029194 0x599 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_clock.c.obj) - .debug_line 0x0002972d 0x393 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) - .debug_line 0x00029ac0 0x29f esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) - .debug_line 0x00029d5f 0xe24 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - .debug_line 0x0002ab83 0x8de esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) - .debug_line 0x0002b461 0x2cf1 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - .debug_line 0x0002e152 0x690 esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) - .debug_line 0x0002e7e2 0x3a2f esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - .debug_line 0x00032211 0x7fd esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - .debug_line 0x00032a0e 0x6ff esp-idf/freertos/libfreertos.a(app_startup.c.obj) - .debug_line 0x0003310d 0x5bda esp-idf/freertos/libfreertos.a(tasks.c.obj) - .debug_line 0x00038ce7 0x10c9 esp-idf/freertos/libfreertos.a(port.c.obj) - .debug_line 0x00039db0 0x3e0 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) - .debug_line 0x0003a190 0x558 esp-idf/freertos/libfreertos.a(port_common.c.obj) - .debug_line 0x0003a6e8 0xa90 esp-idf/freertos/libfreertos.a(port_systick.c.obj) - .debug_line 0x0003b178 0x61f esp-idf/freertos/libfreertos.a(list.c.obj) - .debug_line 0x0003b797 0x2df esp-idf/newlib/libnewlib.a(init.c.obj) - .debug_line 0x0003ba76 0x48f esp-idf/newlib/libnewlib.a(abort.c.obj) - .debug_line 0x0003bf05 0x33c esp-idf/newlib/libnewlib.a(assert.c.obj) - .debug_line 0x0003c241 0x5f2 esp-idf/newlib/libnewlib.a(heap.c.obj) - .debug_line 0x0003c833 0xcfc esp-idf/newlib/libnewlib.a(locks.c.obj) - .debug_line 0x0003d52f 0x375 esp-idf/newlib/libnewlib.a(pthread.c.obj) - .debug_line 0x0003d8a4 0x2a3 esp-idf/newlib/libnewlib.a(getentropy.c.obj) - .debug_line 0x0003db47 0x1030 esp-idf/newlib/libnewlib.a(time.c.obj) - .debug_line 0x0003eb77 0x430 esp-idf/newlib/libnewlib.a(syscalls.c.obj) - .debug_line 0x0003efa7 0x6fe esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) - .debug_line 0x0003f6a5 0x643 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - .debug_line 0x0003fce8 0x4bf esp-idf/newlib/libnewlib.a(reent_init.c.obj) - .debug_line 0x000401a7 0x64f esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - .debug_line 0x000407f6 0x261e esp-idf/pthread/libpthread.a(pthread.c.obj) - .debug_line 0x00042e14 0xcd2 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .debug_line 0x00043ae6 0xb90 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - .debug_line 0x00044676 0xb6b esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - .debug_line 0x000451e1 0x863 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) - .debug_line 0x00045a44 0xca1 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - .debug_line 0x000466e5 0x519 esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) - .debug_line 0x00046bfe 0x2ab1 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .debug_line 0x000496af 0x716a esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .debug_line 0x00050819 0x63e esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) - .debug_line 0x00050e57 0x1e11 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .debug_line 0x00052c68 0x1422 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - .debug_line 0x0005408a 0xa44 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - .debug_line 0x00054ace 0x5227 esp-idf/vfs/libvfs.a(vfs.c.obj) - .debug_line 0x00059cf5 0xcf3 esp-idf/vfs/libvfs.a(nullfs.c.obj) - .debug_line 0x0005a9e8 0x4aa esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - .debug_line 0x0005ae92 0x9ba esp-idf/main/libmain.a(esp_ot_rcp.c.obj) - .debug_line 0x0005b84c 0x2b5 esp-idf/riscv/libriscv.a(instruction_decode.c.obj) - .debug_line 0x0005bb01 0x44b esp-idf/riscv/libriscv.a(interrupt.c.obj) - .debug_line 0x0005bf4c 0x1ff esp-idf/riscv/libriscv.a(rv_utils.c.obj) - .debug_line 0x0005c14b 0x1e0 esp-idf/riscv/libriscv.a(vectors.S.obj) - .debug_line 0x0005c32b 0x12f esp-idf/riscv/libriscv.a(vectors_intc.S.obj) - .debug_line 0x0005c45a 0x3e8a esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .debug_line 0x000602e4 0xa1a esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) - .debug_line 0x00060cfe 0x140 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - .debug_line 0x00060e3e 0x164f esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .debug_line 0x0006248d 0xb53 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) - .debug_line 0x00062fe0 0xdf3 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .debug_line 0x00063dd3 0x2326 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .debug_line 0x000660f9 0x2b0 esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) - .debug_line 0x000663a9 0x4d5 esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) - .debug_line 0x0006687e 0x45c esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) - .debug_line 0x00066cda 0xca7 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) - .debug_line 0x00067981 0x283 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) - .debug_line 0x00067c04 0x4fd esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - .debug_line 0x00068101 0x1120 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - .debug_line 0x00069221 0x58c esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - .debug_line 0x000697ad 0x35e9 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .debug_line 0x0006cd96 0x11a0 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .debug_line 0x0006df36 0xeb0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .debug_line 0x0006ede6 0x43c esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) - .debug_line 0x0006f222 0x3d1 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) - .debug_line 0x0006f5f3 0x245f esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - .debug_line 0x00071a52 0x657 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - .debug_line 0x000720a9 0xd57 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - .debug_line 0x00072e00 0xe3a esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - .debug_line 0x00073c3a 0x7c6 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - .debug_line 0x00074400 0xa73 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - .debug_line 0x00074e73 0x86f esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - .debug_line 0x000756e2 0x1f44 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .debug_line 0x00077626 0xaa1 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - .debug_line 0x000780c7 0x6aa esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) - .debug_line 0x00078771 0x83f esp-idf/esp_rom/libesp_rom.a(esp_rom_regi2c_esp32h2.c.obj) - .debug_line 0x00078fb0 0x456 esp-idf/hal/libhal.a(lp_timer_hal.c.obj) - .debug_line 0x00079406 0x149a esp-idf/hal/libhal.a(mmu_hal.c.obj) - .debug_line 0x0007a8a0 0x84a esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - .debug_line 0x0007b0ea 0x2069 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - .debug_line 0x0007d153 0x703 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - .debug_line 0x0007d856 0x847 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) - .debug_line 0x0007e09d 0x1c10 esp-idf/hal/libhal.a(uart_hal.c.obj) - .debug_line 0x0007fcad 0x7d1 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) - .debug_line 0x0008047e 0x6eb esp-idf/hal/libhal.a(gpio_hal.c.obj) - .debug_line 0x00080b69 0x918 esp-idf/hal/libhal.a(modem_clock_hal.c.obj) - .debug_line 0x00081481 0x71c esp-idf/hal/libhal.a(pau_hal.c.obj) - .debug_line 0x00081b9d 0x4e9 esp-idf/hal/libhal.a(brownout_hal.c.obj) - .debug_line 0x00082086 0x12b8 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - .debug_line 0x0008333e 0x4f7 esp-idf/hal/libhal.a(pmu_hal.c.obj) - .debug_line 0x00083835 0x1101 esp-idf/hal/libhal.a(apm_hal.c.obj) - .debug_line 0x00084936 0x241 esp-idf/soc/libsoc.a(uart_periph.c.obj) - .debug_line 0x00084b77 0xbe esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) - .debug_line 0x00084c35 0x22a esp-idf/soc/libsoc.a(power_supply_periph.c.obj) - .debug_line 0x00084e5f 0x98b esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) - .debug_line 0x000857ea 0x54e esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - .debug_line 0x00085d38 0x8d0 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) - .debug_line 0x00086608 0x242 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) - .debug_line 0x0008684a 0xb61 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - .debug_line 0x000873ab 0x8f0 esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) - .debug_line 0x00087c9b 0x548 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) - .debug_line 0x000881e3 0x18b9 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .debug_line 0x00089a9c 0xbb4 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .debug_line 0x0008a650 0x30f5 esp-idf/freertos/libfreertos.a(queue.c.obj) - .debug_line 0x0008d745 0x19b esp-idf/freertos/libfreertos.a(portasm.S.obj) - .debug_line 0x0008d8e0 0xe62 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - .debug_line 0x0008e742 0xea0 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .debug_line 0x0008f5e2 0x683 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) - .debug_line 0x0008fc65 0x2979 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .debug_line 0x000925de 0x304c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .debug_line 0x0009562a 0x39d8 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - .debug_line 0x00099002 0x371d esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .debug_line 0x0009c71f 0x8d0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - .debug_line 0x0009cfef 0x189d esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - .debug_line 0x0009e88c 0xce2 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) - .debug_line 0x0009f56e 0x52a esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) - .debug_line 0x0009fa98 0xfeb esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - .debug_line 0x000a0a83 0x1870 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - .debug_line 0x000a22f3 0x8d8 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) - .debug_line 0x000a2bcb 0x3457 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .debug_line 0x000a6022 0x18f7 esp-idf/vfs/libvfs.a(vfs_eventfd.c.obj) - .debug_line 0x000a7919 0x2106 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .debug_line 0x000a9a1f 0x1368 esp-idf/openthread/libopenthread.a(esp_openthread.cpp.obj) - .debug_line 0x000aad87 0x71b esp-idf/openthread/libopenthread.a(esp_openthread_lock.c.obj) - .debug_line 0x000ab4a2 0x15d2 esp-idf/openthread/libopenthread.a(esp_openthread_platform.cpp.obj) - .debug_line 0x000aca74 0xcd4 esp-idf/openthread/libopenthread.a(esp_openthread_task_queue.c.obj) - .debug_line 0x000ad748 0xa67 esp-idf/openthread/libopenthread.a(esp_openthread_alarm.c.obj) - .debug_line 0x000ae1af 0x204f esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - .debug_line 0x000b01fe 0xcdf esp-idf/openthread/libopenthread.a(esp_openthread_settings.c.obj) - .debug_line 0x000b0edd 0xf42 esp-idf/openthread/libopenthread.a(esp_openthread_spi_slave.c.obj) - .debug_line 0x000b1e1f 0xc2c esp-idf/openthread/libopenthread.a(esp_openthread_uart.c.obj) - .debug_line 0x000b2a4b 0x1563 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - .debug_line 0x000b3fae 0xb9c esp-idf/openthread/libopenthread.a(instance_api.cpp.obj) - .debug_line 0x000b4b4a 0xb33 esp-idf/openthread/libopenthread.a(tasklet_api.cpp.obj) - .debug_line 0x000b567d 0xc84 esp-idf/openthread/libopenthread.a(tasklet.cpp.obj) - .debug_line 0x000b6301 0x18a2 esp-idf/openthread/libopenthread.a(timer.cpp.obj) - .debug_line 0x000b7ba3 0xceb esp-idf/openthread/libopenthread.a(instance.cpp.obj) - .debug_line 0x000b888e 0x13cf esp-idf/openthread/libopenthread.a(link_raw.cpp.obj) - .debug_line 0x000b9c5d 0x3a4f esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - .debug_line 0x000bd6ac 0x729 esp-idf/openthread/libopenthread.a(mac_header_ie.cpp.obj) - .debug_line 0x000bddd5 0xd75 esp-idf/openthread/libopenthread.a(mac_types.cpp.obj) - .debug_line 0x000beb4a 0x2e6e esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - .debug_line 0x000c19b8 0xaa5 esp-idf/openthread/libopenthread.a(sub_mac_callbacks.cpp.obj) - .debug_line 0x000c245d 0xfcf esp-idf/openthread/libopenthread.a(radio.cpp.obj) - .debug_line 0x000c342c 0x10f9 esp-idf/openthread/libopenthread.a(radio_platform.cpp.obj) - .debug_line 0x000c4525 0x21c esp-idf/openthread/libopenthread.a(ncp.c.obj) - .debug_line 0x000c4741 0xf3e esp-idf/openthread/libopenthread.a(esp_openthread_ncp.cpp.obj) - .debug_line 0x000c567f 0xd27 esp-idf/openthread/libopenthread.a(esp_openthread_ncp_hdlc.cpp.obj) - .debug_line 0x000c63a6 0x2a8 esp-idf/openthread/libopenthread.a(esp_openthread_logging.c.obj) - .debug_line 0x000c664e 0x5c9 esp-idf/openthread/libopenthread.a(esp_openthread_misc.c.obj) - .debug_line 0x000c6c17 0xd3b esp-idf/openthread/libopenthread.a(frame_builder.cpp.obj) - .debug_line 0x000c7952 0xb9d esp-idf/openthread/libopenthread.a(random.cpp.obj) - .debug_line 0x000c84ef 0x123c esp-idf/openthread/libopenthread.a(aes_ccm.cpp.obj) - .debug_line 0x000c972b 0x7c6 esp-idf/openthread/libopenthread.a(aes_ecb.cpp.obj) - .debug_line 0x000c9ef1 0xc47 esp-idf/openthread/libopenthread.a(crypto_platform.cpp.obj) - .debug_line 0x000cab38 0x64b esp-idf/openthread/libopenthread.a(storage.cpp.obj) - .debug_line 0x000cb183 0xa5d esp-idf/openthread/libopenthread.a(radio_callbacks.cpp.obj) - .debug_line 0x000cbbe0 0x15ff esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) - .debug_line 0x000cd1df 0x4e2f esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - .debug_line 0x000d200e 0xd7c esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) - .debug_line 0x000d2d8a 0x2568 esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - .debug_line 0x000d52f2 0x152d esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) - .debug_line 0x000d681f 0x1611 esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - .debug_line 0x000d7e30 0xe29 esp-idf/openthread/libopenthread.a(logging_api.cpp.obj) - .debug_line 0x000d8c59 0xe2c esp-idf/openthread/libopenthread.a(hdlc.cpp.obj) - .debug_line 0x000d9a85 0x20ef esp-idf/openthread/libopenthread.a(spinel.c.obj) - .debug_line 0x000dbb74 0x1fde esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - .debug_line 0x000ddb52 0x11af esp-idf/openthread/libopenthread.a(spinel_encoder.cpp.obj) - .debug_line 0x000ded01 0x9d7 esp-idf/openthread/libopenthread.a(changed_props_set.cpp.obj) - .debug_line 0x000df6d8 0x3ea esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) - .debug_line 0x000dfac2 0x133f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - .debug_line 0x000e0e01 0x11f7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - .debug_line 0x000e1ff8 0x268 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) - .debug_line 0x000e2260 0x2f1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) - .debug_line 0x000e2551 0xb5b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - .debug_line 0x000e30ac 0x1781 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - .debug_line 0x000e482d 0xcbc esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - .debug_line 0x000e54e9 0x603 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - .debug_line 0x000e5aec 0xa97 esp-idf/hal/libhal.a(aes_hal.c.obj) - .debug_line 0x000e6583 0x24d esp-idf/soc/libsoc.a(temperature_sensor_periph.c.obj) - .debug_line 0x000e67d0 0x2f9 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) - .debug_line 0x000e6ac9 0x750 esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) - .debug_line 0x000e7219 0xd59 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - .debug_line 0x000e7f72 0x5ec esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) - .debug_line 0x000e855e 0x35b2 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .debug_line 0x000ebb10 0x1f71 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) - .debug_line 0x000eda81 0x10db esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - .debug_line 0x000eeb5c 0x9e5 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_ack.c.obj) - .debug_line 0x000ef541 0x3198 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - .debug_line 0x000f26d9 0x699 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_event.c.obj) - .debug_line 0x000f2d72 0xfab esp-idf/ieee802154/libieee802154.a(esp_ieee802154_frame.c.obj) - .debug_line 0x000f3d1d 0x1014 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - .debug_line 0x000f4d31 0x2b9 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_util.c.obj) - .debug_line 0x000f4fea 0x3e0 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_sec.c.obj) - .debug_line 0x000f53ca 0x90c esp-idf/ieee802154/libieee802154.a(esp_ieee802154_timer.c.obj) - .debug_line 0x000f5cd6 0x2cd6 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .debug_line 0x000f89ac 0x45d esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - .debug_line 0x000f8e09 0xf24 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) - .debug_line 0x000f9d2d 0x12e esp-idf/soc/libsoc.a(ieee802154_periph.c.obj) - .debug_line 0x000f9e5b 0x60c esp-idf/esp_phy/libesp_phy.a(phy_init_esp32hxx.c.obj) - .debug_line 0x000fa467 0x342 esp-idf/esp_phy/libesp_phy.a(btbb_init.c.obj) - .debug_line 0x000fa7a9 0xd95 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - .debug_line 0x000fb53e 0x1d7c esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .debug_line 0x000fd2ba 0x6b C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_opv.o) - .debug_line 0x000fd325 0xbe C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_handler.o) - .debug_line 0x000fd3e3 0xa9 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opvnt.o) - .debug_line 0x000fd48c 0x81 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_op.o) - .debug_line 0x000fd50d 0x45a C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_catch.o) - .debug_line 0x000fd967 0x3e2 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) - .debug_line 0x000fdd49 0x2a9 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) - .debug_line 0x000fdff2 0x6b C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opv.o) - .debug_line 0x000fe05d 0x8a C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_term_handler.o) - .debug_line 0x000fe0e7 0x145 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_op.o) - .debug_line 0x000fe22c 0x43a C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) - .debug_line 0x000fe666 0x1b1 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(tinfo.o) - .debug_line 0x000fe817 0xee C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(bad_alloc.o) - .debug_line 0x000fe905 0x493 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(class_type_info.o) - .debug_line 0x000fed98 0x6b C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_ops.o) - .debug_line 0x000fee03 0x1e7 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) - .debug_line 0x000fefea 0x15f C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(save-restore.o) - .debug_line 0x000ff149 0x6bd esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - .debug_line 0x000ff806 0x45d esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) - .debug_line 0x000ffc63 0x3a C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-environ.o) - .debug_line 0x000ffc9d 0xe65 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf_float.o) - .debug_line 0x00100b02 0x96c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf_i.o) - .debug_line 0x0010146e 0xa00 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfscanf_float.o) - .debug_line 0x00101e6e 0x2e4 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fclose.o) - .debug_line 0x00102152 0x580 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fflush.o) - .debug_line 0x001026d2 0x856 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-findfp.o) - .debug_line 0x00102f28 0x295 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fopen.o) - .debug_line 0x001031bd 0xed C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fseek.o) - .debug_line 0x001032aa 0x14b C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fwalk.o) - .debug_line 0x001033f5 0x34c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-snprintf.o) - .debug_line 0x00103741 0x247 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sprintf.o) - .debug_line 0x00103988 0x28d C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-stdio.o) - .debug_line 0x00103c15 0x21e C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-vsnprintf.o) - .debug_line 0x00103e33 0x8c6 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fseeko.o) - .debug_line 0x001046f9 0x134 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-localeconv.o) - .debug_line 0x0010482d 0x2c4 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-reent.o) - .debug_line 0x00104af1 0x51 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-impure.o) - .debug_line 0x00104b42 0x8e C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-errno.o) - .debug_line 0x00104bd0 0xb1 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysclose.o) - .debug_line 0x00104c81 0xd6 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysfcntl.o) - .debug_line 0x00104d57 0xd5 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysgettod.o) - .debug_line 0x00104e2c 0xe8 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysopen.o) - .debug_line 0x00104f14 0xdb C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysread.o) - .debug_line 0x00104fef 0xdb C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-syswrite.o) - .debug_line 0x001050ca 0x70 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libm_a-sf_nan.o) - .debug_line 0x0010513a 0x212a C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-dtoa.o) - .debug_line 0x00107264 0x2217 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-mprec.o) - .debug_line 0x0010947b 0x22b1 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtod.o) - .debug_line 0x0010b72c 0x5d0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtol.o) - .debug_line 0x0010bcfc 0x3e C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-ctype_.o) - .debug_line 0x0010bd3a 0xd9d C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-svfprintf.o) - .debug_line 0x0010cad7 0x189 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-flags.o) - .debug_line 0x0010cc60 0x3fa C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-refill.o) - .debug_line 0x0010d05a 0x1ae C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-locale.o) - .debug_line 0x0010d208 0x72 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libm_a-s_nan.o) - .debug_line 0x0010d27a 0x1014 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-gdtoa-gethex.o) - .debug_line 0x0010e28e 0x5f5 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-gdtoa-hexnan.o) - .debug_line 0x0010e883 0x1a7 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-mbtowc_r.o) - .debug_line 0x0010ea2a 0x13b C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-wctomb_r.o) - -.debug_frame 0x00000000 0x196bc - *(.debug_frame) - .debug_frame 0x00000000 0x58 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) - .debug_frame 0x00000058 0x5c esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) - .debug_frame 0x000000b4 0x144 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - .debug_frame 0x000001f8 0x50 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) - .debug_frame 0x00000248 0x70 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .debug_frame 0x000002b8 0x68 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) - .debug_frame 0x00000320 0x264 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .debug_frame 0x00000584 0x284 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_frame 0x00000808 0x308 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .debug_frame 0x00000b10 0xc4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_frame 0x00000bd4 0x4c esp-idf/esp_system/libesp_system.a(esp_system.c.obj) - .debug_frame 0x00000c20 0x50 esp-idf/esp_system/libesp_system.a(startup.c.obj) - .debug_frame 0x00000c70 0xb0 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) - .debug_frame 0x00000d20 0x1f4 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .debug_frame 0x00000f14 0x9c esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) - .debug_frame 0x00000fb0 0x60 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) - .debug_frame 0x00001010 0xc4 esp-idf/esp_system/libesp_system.a(clk.c.obj) - .debug_frame 0x000010d4 0x4c esp-idf/esp_system/libesp_system.a(system_internal.c.obj) - .debug_frame 0x00001120 0x5c esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) - .debug_frame 0x0000117c 0xf4 esp-idf/esp_system/libesp_system.a(panic.c.obj) - .debug_frame 0x00001270 0xc0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - .debug_frame 0x00001330 0x104 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - .debug_frame 0x00001434 0x8c esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) - .debug_frame 0x000014c0 0xcc esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) - .debug_frame 0x0000158c 0x74 esp-idf/esp_rom/libesp_rom.a(esp_rom_multi_heap.c.obj) - .debug_frame 0x00001600 0x30 esp-idf/esp_rom/libesp_rom.a(esp_rom_systimer.c.obj) - .debug_frame 0x00001630 0x50 esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) - .debug_frame 0x00001680 0x9c esp-idf/hal/libhal.a(efuse_hal.c.obj) - .debug_frame 0x0000171c 0xc8 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .debug_frame 0x000017e4 0x178 esp-idf/hal/libhal.a(cache_hal.c.obj) - .debug_frame 0x0000195c 0x3c esp-idf/log/liblog.a(util.c.obj) - .debug_frame 0x00001998 0x458 esp-idf/heap/libheap.a(heap_caps.c.obj) - .debug_frame 0x00001df0 0x110 esp-idf/heap/libheap.a(heap_caps_init.c.obj) - .debug_frame 0x00001f00 0xb8 esp-idf/heap/libheap.a(multi_heap.c.obj) - .debug_frame 0x00001fb8 0x80 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - .debug_frame 0x00002038 0xbc esp-idf/heap/libheap.a(heap_caps_base.c.obj) - .debug_frame 0x000020f4 0x3c esp-idf/esp_security/libesp_security.a(init.c.obj) - .debug_frame 0x00002130 0x4c esp-idf/esp_security/libesp_security.a(esp_dpa_protection.c.obj) - .debug_frame 0x0000217c 0x134 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - .debug_frame 0x000022b0 0xf0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - .debug_frame 0x000023a0 0x318 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .debug_frame 0x000026b8 0x154 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - .debug_frame 0x0000280c 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - .debug_frame 0x0000285c 0x71c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .debug_frame 0x00002f78 0xa0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) - .debug_frame 0x00003018 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) - .debug_frame 0x00003048 0x1b8 esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) - .debug_frame 0x00003200 0xb0 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) - .debug_frame 0x000032b0 0x80 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) - .debug_frame 0x00003330 0x38c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .debug_frame 0x000036bc 0x94 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) - .debug_frame 0x00003750 0x164 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) - .debug_frame 0x000038b4 0xd0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - .debug_frame 0x00003984 0x64 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_clock.c.obj) - .debug_frame 0x000039e8 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) - .debug_frame 0x00003a18 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) - .debug_frame 0x00003a68 0x198 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - .debug_frame 0x00003c00 0xb0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) - .debug_frame 0x00003cb0 0x4e8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - .debug_frame 0x00004198 0xf8 esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) - .debug_frame 0x00004290 0x8b4 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - .debug_frame 0x00004b44 0x10c esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - .debug_frame 0x00004c50 0x4c esp-idf/freertos/libfreertos.a(app_startup.c.obj) - .debug_frame 0x00004c9c 0x93c esp-idf/freertos/libfreertos.a(tasks.c.obj) - .debug_frame 0x000055d8 0x190 esp-idf/freertos/libfreertos.a(port.c.obj) - .debug_frame 0x00005768 0x80 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) - .debug_frame 0x000057e8 0x60 esp-idf/freertos/libfreertos.a(port_common.c.obj) - .debug_frame 0x00005848 0x90 esp-idf/freertos/libfreertos.a(port_systick.c.obj) - .debug_frame 0x000058d8 0x60 esp-idf/freertos/libfreertos.a(list.c.obj) - .debug_frame 0x00005938 0x58 esp-idf/newlib/libnewlib.a(init.c.obj) - .debug_frame 0x00005990 0x30 esp-idf/newlib/libnewlib.a(abort.c.obj) - .debug_frame 0x000059c0 0x54 esp-idf/newlib/libnewlib.a(assert.c.obj) - .debug_frame 0x00005a14 0x150 esp-idf/newlib/libnewlib.a(heap.c.obj) - .debug_frame 0x00005b64 0x29c esp-idf/newlib/libnewlib.a(locks.c.obj) - .debug_frame 0x00005e00 0x50 esp-idf/newlib/libnewlib.a(pthread.c.obj) - .debug_frame 0x00005e50 0x3c esp-idf/newlib/libnewlib.a(getentropy.c.obj) - .debug_frame 0x00005e8c 0x1d0 esp-idf/newlib/libnewlib.a(time.c.obj) - .debug_frame 0x0000605c 0x94 esp-idf/newlib/libnewlib.a(syscalls.c.obj) - .debug_frame 0x000060f0 0xdc esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) - .debug_frame 0x000061cc 0xd4 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - .debug_frame 0x000062a0 0x54 esp-idf/newlib/libnewlib.a(reent_init.c.obj) - .debug_frame 0x000062f4 0x90 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - .debug_frame 0x00006384 0x504 esp-idf/pthread/libpthread.a(pthread.c.obj) - .debug_frame 0x00006888 0x170 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .debug_frame 0x000069f8 0x114 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - .debug_frame 0x00006b0c 0x164 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - .debug_frame 0x00006c70 0xf8 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) - .debug_frame 0x00006d68 0xb0 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - .debug_frame 0x00006e18 0x30 esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) - .debug_frame 0x00006e48 0x444 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .debug_frame 0x0000728c 0x9cc esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .debug_frame 0x00007c58 0x70 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) - .debug_frame 0x00007cc8 0x390 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .debug_frame 0x00008058 0x18c esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - .debug_frame 0x000081e4 0x18c esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - .debug_frame 0x00008370 0x9f8 esp-idf/vfs/libvfs.a(vfs.c.obj) - .debug_frame 0x00008d68 0x1a0 esp-idf/vfs/libvfs.a(nullfs.c.obj) - .debug_frame 0x00008f08 0xd0 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - .debug_frame 0x00008fd8 0x54 esp-idf/main/libmain.a(esp_ot_rcp.c.obj) - .debug_frame 0x0000902c 0x20 esp-idf/riscv/libriscv.a(instruction_decode.c.obj) - .debug_frame 0x0000904c 0x74 esp-idf/riscv/libriscv.a(interrupt.c.obj) - .debug_frame 0x000090c0 0x20 esp-idf/riscv/libriscv.a(rv_utils.c.obj) - .debug_frame 0x000090e0 0x6bc esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .debug_frame 0x0000979c 0xf8 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) - .debug_frame 0x00009894 0x2c esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - .debug_frame 0x000098c0 0x21c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .debug_frame 0x00009adc 0x9c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) - .debug_frame 0x00009b78 0xb8 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .debug_frame 0x00009c30 0x25c esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .debug_frame 0x00009e8c 0x88 esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) - .debug_frame 0x00009f14 0x44 esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) - .debug_frame 0x00009f58 0x12c esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) - .debug_frame 0x0000a084 0x40 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) - .debug_frame 0x0000a0c4 0x110 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - .debug_frame 0x0000a1d4 0x1dc esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - .debug_frame 0x0000a3b0 0xb8 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - .debug_frame 0x0000a468 0x52c esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .debug_frame 0x0000a994 0x164 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .debug_frame 0x0000aaf8 0x21c esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .debug_frame 0x0000ad14 0x84 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) - .debug_frame 0x0000ad98 0x20 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) - .debug_frame 0x0000adb8 0x444 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - .debug_frame 0x0000b1fc 0x94 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - .debug_frame 0x0000b290 0x118 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - .debug_frame 0x0000b3a8 0x1b8 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - .debug_frame 0x0000b560 0xc0 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - .debug_frame 0x0000b620 0x16c esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - .debug_frame 0x0000b78c 0x6c esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - .debug_frame 0x0000b7f8 0x348 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .debug_frame 0x0000bb40 0xe4 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - .debug_frame 0x0000bc24 0x34 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) - .debug_frame 0x0000bc58 0xc4 esp-idf/esp_rom/libesp_rom.a(esp_rom_regi2c_esp32h2.c.obj) - .debug_frame 0x0000bd1c 0x60 esp-idf/hal/libhal.a(lp_timer_hal.c.obj) - .debug_frame 0x0000bd7c 0x124 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .debug_frame 0x0000bea0 0x84 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - .debug_frame 0x0000bf24 0x22c esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - .debug_frame 0x0000c150 0xa4 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - .debug_frame 0x0000c1f4 0xb8 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) - .debug_frame 0x0000c2ac 0x210 esp-idf/hal/libhal.a(uart_hal.c.obj) - .debug_frame 0x0000c4bc 0x80 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) - .debug_frame 0x0000c53c 0x70 esp-idf/hal/libhal.a(gpio_hal.c.obj) - .debug_frame 0x0000c5ac 0xa8 esp-idf/hal/libhal.a(modem_clock_hal.c.obj) - .debug_frame 0x0000c654 0x98 esp-idf/hal/libhal.a(pau_hal.c.obj) - .debug_frame 0x0000c6ec 0x38 esp-idf/hal/libhal.a(brownout_hal.c.obj) - .debug_frame 0x0000c724 0x124 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - .debug_frame 0x0000c848 0x70 esp-idf/hal/libhal.a(pmu_hal.c.obj) - .debug_frame 0x0000c8b8 0x164 esp-idf/hal/libhal.a(apm_hal.c.obj) - .debug_frame 0x0000ca1c 0x3c esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) - .debug_frame 0x0000ca58 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - .debug_frame 0x0000cab4 0x84 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) - .debug_frame 0x0000cb38 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) - .debug_frame 0x0000cb88 0xa8 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - .debug_frame 0x0000cc30 0x8c esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) - .debug_frame 0x0000ccbc 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) - .debug_frame 0x0000cd04 0x290 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .debug_frame 0x0000cf94 0x128 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .debug_frame 0x0000d0bc 0x548 esp-idf/freertos/libfreertos.a(queue.c.obj) - .debug_frame 0x0000d604 0x1a8 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - .debug_frame 0x0000d7ac 0x594 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .debug_frame 0x0000dd40 0xb0 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) - .debug_frame 0x0000ddf0 0x328 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .debug_frame 0x0000e118 0x7e4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .debug_frame 0x0000e8fc 0x514 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - .debug_frame 0x0000ee10 0x510 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .debug_frame 0x0000f320 0xd0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - .debug_frame 0x0000f3f0 0x1a8 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - .debug_frame 0x0000f598 0x80 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) - .debug_frame 0x0000f618 0x50 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) - .debug_frame 0x0000f668 0xf4 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - .debug_frame 0x0000f75c 0x10c esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - .debug_frame 0x0000f868 0x60 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) - .debug_frame 0x0000f8c8 0x5d0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .debug_frame 0x0000fe98 0x1a8 esp-idf/vfs/libvfs.a(vfs_eventfd.c.obj) - .debug_frame 0x00010040 0x254 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .debug_frame 0x00010294 0x110 esp-idf/openthread/libopenthread.a(esp_openthread.cpp.obj) - .debug_frame 0x000103a4 0xc8 esp-idf/openthread/libopenthread.a(esp_openthread_lock.c.obj) - .debug_frame 0x0001046c 0x120 esp-idf/openthread/libopenthread.a(esp_openthread_platform.cpp.obj) - .debug_frame 0x0001058c 0xcc esp-idf/openthread/libopenthread.a(esp_openthread_task_queue.c.obj) - .debug_frame 0x00010658 0xfc esp-idf/openthread/libopenthread.a(esp_openthread_alarm.c.obj) - .debug_frame 0x00010754 0x530 esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - .debug_frame 0x00010c84 0x14c esp-idf/openthread/libopenthread.a(esp_openthread_settings.c.obj) - .debug_frame 0x00010dd0 0xd0 esp-idf/openthread/libopenthread.a(esp_openthread_spi_slave.c.obj) - .debug_frame 0x00010ea0 0x104 esp-idf/openthread/libopenthread.a(esp_openthread_uart.c.obj) - .debug_frame 0x00010fa4 0x288 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - .debug_frame 0x0001122c 0x90 esp-idf/openthread/libopenthread.a(instance_api.cpp.obj) - .debug_frame 0x000112bc 0x58 esp-idf/openthread/libopenthread.a(tasklet_api.cpp.obj) - .debug_frame 0x00011314 0x70 esp-idf/openthread/libopenthread.a(tasklet.cpp.obj) - .debug_frame 0x00011384 0x270 esp-idf/openthread/libopenthread.a(timer.cpp.obj) - .debug_frame 0x000115f4 0xb4 esp-idf/openthread/libopenthread.a(instance.cpp.obj) - .debug_frame 0x000116a8 0x1d4 esp-idf/openthread/libopenthread.a(link_raw.cpp.obj) - .debug_frame 0x0001187c 0x724 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - .debug_frame 0x00011fa0 0x20 esp-idf/openthread/libopenthread.a(mac_header_ie.cpp.obj) - .debug_frame 0x00011fc0 0x170 esp-idf/openthread/libopenthread.a(mac_types.cpp.obj) - .debug_frame 0x00012130 0x46c esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - .debug_frame 0x0001259c 0x80 esp-idf/openthread/libopenthread.a(sub_mac_callbacks.cpp.obj) - .debug_frame 0x0001261c 0xb8 esp-idf/openthread/libopenthread.a(radio.cpp.obj) - .debug_frame 0x000126d4 0x1fc esp-idf/openthread/libopenthread.a(radio_platform.cpp.obj) - .debug_frame 0x000128d0 0x30 esp-idf/openthread/libopenthread.a(ncp.c.obj) - .debug_frame 0x00012900 0xac esp-idf/openthread/libopenthread.a(esp_openthread_ncp.cpp.obj) - .debug_frame 0x000129ac 0x30 esp-idf/openthread/libopenthread.a(esp_openthread_ncp_hdlc.cpp.obj) - .debug_frame 0x000129dc 0x28 esp-idf/openthread/libopenthread.a(esp_openthread_logging.c.obj) - .debug_frame 0x00012a04 0x84 esp-idf/openthread/libopenthread.a(esp_openthread_misc.c.obj) - .debug_frame 0x00012a88 0x168 esp-idf/openthread/libopenthread.a(frame_builder.cpp.obj) - .debug_frame 0x00012bf0 0x130 esp-idf/openthread/libopenthread.a(random.cpp.obj) - .debug_frame 0x00012d20 0x140 esp-idf/openthread/libopenthread.a(aes_ccm.cpp.obj) - .debug_frame 0x00012e60 0x80 esp-idf/openthread/libopenthread.a(aes_ecb.cpp.obj) - .debug_frame 0x00012ee0 0x98 esp-idf/openthread/libopenthread.a(crypto_platform.cpp.obj) - .debug_frame 0x00012f78 0x20 esp-idf/openthread/libopenthread.a(storage.cpp.obj) - .debug_frame 0x00012f98 0x60 esp-idf/openthread/libopenthread.a(radio_callbacks.cpp.obj) - .debug_frame 0x00012ff8 0x2dc esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) - .debug_frame 0x000132d4 0xb68 esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - .debug_frame 0x00013e3c 0xcc esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) - .debug_frame 0x00013f08 0x3cc esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - .debug_frame 0x000142d4 0x174 esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) - .debug_frame 0x00014448 0x26c esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - .debug_frame 0x000146b4 0x15c esp-idf/openthread/libopenthread.a(logging_api.cpp.obj) - .debug_frame 0x00014810 0x120 esp-idf/openthread/libopenthread.a(hdlc.cpp.obj) - .debug_frame 0x00014930 0x218 esp-idf/openthread/libopenthread.a(spinel.c.obj) - .debug_frame 0x00014b48 0x430 esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - .debug_frame 0x00014f78 0x25c esp-idf/openthread/libopenthread.a(spinel_encoder.cpp.obj) - .debug_frame 0x000151d4 0x9c esp-idf/openthread/libopenthread.a(changed_props_set.cpp.obj) - .debug_frame 0x00015270 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) - .debug_frame 0x000152d8 0x20c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - .debug_frame 0x000154e4 0xa8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - .debug_frame 0x0001558c 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) - .debug_frame 0x000155d4 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) - .debug_frame 0x00015604 0xec esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - .debug_frame 0x000156f0 0x1fc esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - .debug_frame 0x000158ec 0x16c esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - .debug_frame 0x00015a58 0x6c esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - .debug_frame 0x00015ac4 0x124 esp-idf/hal/libhal.a(aes_hal.c.obj) - .debug_frame 0x00015be8 0x118 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) - .debug_frame 0x00015d00 0x80 esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) - .debug_frame 0x00015d80 0x1a8 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - .debug_frame 0x00015f28 0x68 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) - .debug_frame 0x00015f90 0x3c4 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .debug_frame 0x00016354 0x1a4 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) - .debug_frame 0x000164f8 0x4c8 esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - .debug_frame 0x000169c0 0xe0 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_ack.c.obj) - .debug_frame 0x00016aa0 0x440 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - .debug_frame 0x00016ee0 0x114 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_event.c.obj) - .debug_frame 0x00016ff4 0x19c esp-idf/ieee802154/libieee802154.a(esp_ieee802154_frame.c.obj) - .debug_frame 0x00017190 0x244 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - .debug_frame 0x000173d4 0x64 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_util.c.obj) - .debug_frame 0x00017438 0x40 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_sec.c.obj) - .debug_frame 0x00017478 0x128 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_timer.c.obj) - .debug_frame 0x000175a0 0x4a4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .debug_frame 0x00017a44 0x130 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - .debug_frame 0x00017b74 0x110 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) - .debug_frame 0x00017c84 0xa4 esp-idf/esp_phy/libesp_phy.a(phy_init_esp32hxx.c.obj) - .debug_frame 0x00017d28 0x4c esp-idf/esp_phy/libesp_phy.a(btbb_init.c.obj) - .debug_frame 0x00017d74 0x1bc esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - .debug_frame 0x00017f30 0x308 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .debug_frame 0x00018238 0x170 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - .debug_frame 0x000183a8 0x68 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) - .debug_frame 0x00018410 0xd0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf_float.o) - .debug_frame 0x000184e0 0x8c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf_i.o) - .debug_frame 0x0001856c 0x64 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfscanf_float.o) - .debug_frame 0x000185d0 0x58 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fclose.o) - .debug_frame 0x00018628 0x84 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fflush.o) - .debug_frame 0x000186ac 0x17c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-findfp.o) - .debug_frame 0x00018828 0x60 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fopen.o) - .debug_frame 0x00018888 0x44 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fseek.o) - .debug_frame 0x000188cc 0x50 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fwalk.o) - .debug_frame 0x0001891c 0x68 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-snprintf.o) - .debug_frame 0x00018984 0x54 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sprintf.o) - .debug_frame 0x000189d8 0xa4 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-stdio.o) - .debug_frame 0x00018a7c 0x64 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-vsnprintf.o) - .debug_frame 0x00018ae0 0x78 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fseeko.o) - .debug_frame 0x00018b58 0x40 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-localeconv.o) - .debug_frame 0x00018b98 0x4c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-reent.o) - .debug_frame 0x00018be4 0x2c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-errno.o) - .debug_frame 0x00018c10 0x2c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysclose.o) - .debug_frame 0x00018c3c 0x34 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysfcntl.o) - .debug_frame 0x00018c70 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysgettod.o) - .debug_frame 0x00018ca0 0x34 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysopen.o) - .debug_frame 0x00018cd4 0x34 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysread.o) - .debug_frame 0x00018d08 0x34 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-syswrite.o) - .debug_frame 0x00018d3c 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libm_a-sf_nan.o) - .debug_frame 0x00018d5c 0x9c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-dtoa.o) - .debug_frame 0x00018df8 0x320 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-mprec.o) - .debug_frame 0x00019118 0x1c8 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtod.o) - .debug_frame 0x000192e0 0x8c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtol.o) - .debug_frame 0x0001936c 0xe0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-svfprintf.o) - .debug_frame 0x0001944c 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-flags.o) - .debug_frame 0x0001946c 0x58 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-refill.o) - .debug_frame 0x000194c4 0x68 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-locale.o) - .debug_frame 0x0001952c 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libm_a-s_nan.o) - .debug_frame 0x0001954c 0x84 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-gdtoa-gethex.o) - .debug_frame 0x000195d0 0x84 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-gdtoa-hexnan.o) - .debug_frame 0x00019654 0x38 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-mbtowc_r.o) - .debug_frame 0x0001968c 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-wctomb_r.o) - -.debug_str 0x00000000 0x6cbda - *(.debug_str) - .debug_str 0x00000000 0x6cbda esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) - 0x320 (size before relaxing) - .debug_str 0x0006cbda 0x44d esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) - .debug_str 0x0006cbda 0x34fb esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - .debug_str 0x0006cbda 0x34c esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) - .debug_str 0x0006cbda 0x4ff esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .debug_str 0x0006cbda 0x86f esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) - .debug_str 0x0006cbda 0x4bf esp-idf/efuse/libefuse.a(esp_efuse_table_v0.0_v1.1.c.obj) - .debug_str 0x0006cbda 0x9d9 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .debug_str 0x0006cbda 0xae1 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_str 0x0006cbda 0x1124 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .debug_str 0x0006cbda 0x28e5 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .debug_str 0x0006cbda 0x82f esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_str 0x0006cbda 0x2c5 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) - .debug_str 0x0006cbda 0x4ea esp-idf/esp_system/libesp_system.a(startup.c.obj) - .debug_str 0x0006cbda 0x10b4 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) - .debug_str 0x0006cbda 0x716 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .debug_str 0x0006cbda 0x3a6d esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) - .debug_str 0x0006cbda 0x30f esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) - .debug_str 0x0006cbda 0x8880 esp-idf/esp_system/libesp_system.a(clk.c.obj) - .debug_str 0x0006cbda 0x3686 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) - .debug_str 0x0006cbda 0xc1a esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) - .debug_str 0x0006cbda 0x1b78 esp-idf/esp_system/libesp_system.a(panic.c.obj) - .debug_str 0x0006cbda 0xf4c esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - .debug_str 0x0006cbda 0x63c esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - .debug_str 0x0006cbda 0x2a83 esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) - .debug_str 0x0006cbda 0x5da esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) - .debug_str 0x0006cbda 0x464 esp-idf/esp_rom/libesp_rom.a(esp_rom_multi_heap.c.obj) - .debug_str 0x0006cbda 0x802 esp-idf/esp_rom/libesp_rom.a(esp_rom_systimer.c.obj) - .debug_str 0x0006cbda 0x2e2f esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) - .debug_str 0x0006cbda 0x29d6 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .debug_str 0x0006cbda 0x2ada esp-idf/hal/libhal.a(efuse_hal.c.obj) - .debug_str 0x0006cbda 0x722 esp-idf/hal/libhal.a(cache_hal.c.obj) - .debug_str 0x0006cbda 0x2c2 esp-idf/log/liblog.a(util.c.obj) - .debug_str 0x0006cbda 0xc03 esp-idf/heap/libheap.a(heap_caps.c.obj) - .debug_str 0x0006cbda 0x7ff esp-idf/heap/libheap.a(heap_caps_init.c.obj) - .debug_str 0x0006cbda 0x48b esp-idf/heap/libheap.a(multi_heap.c.obj) - .debug_str 0x0006cbda 0x617 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - .debug_str 0x0006cbda 0x43d esp-idf/heap/libheap.a(memory_layout.c.obj) - .debug_str 0x0006cbda 0x633 esp-idf/heap/libheap.a(heap_caps_base.c.obj) - .debug_str 0x0006cbda 0x322 esp-idf/esp_security/libesp_security.a(init.c.obj) - .debug_str 0x0006cbda 0x364 esp-idf/esp_security/libesp_security.a(esp_dpa_protection.c.obj) - .debug_str 0x0006cbda 0x517 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - .debug_str 0x0006cbda 0x518 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - .debug_str 0x0006cbda 0x1089 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .debug_str 0x0006cbda 0x79a esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - .debug_str 0x0006cbda 0x3e4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - .debug_str 0x0006cbda 0x9a66 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .debug_str 0x0006cbda 0xc8a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) - .debug_str 0x0006cbda 0x25f esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) - .debug_str 0x0006cbda 0x18e2 esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) - .debug_str 0x0006cbda 0x23ef esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) - .debug_str 0x0006cbda 0x2aba esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) - .debug_str 0x0006cbda 0x39ab esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .debug_str 0x0006cbda 0x260d esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) - .debug_str 0x0006cbda 0x4bd1 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) - .debug_str 0x0006cbda 0x33a7 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - .debug_str 0x0006cbda 0xf2 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu_asm.S.obj) - .debug_str 0x0006cbda 0xd9b esp-idf/esp_hw_support/libesp_hw_support.a(sleep_clock.c.obj) - .debug_str 0x0006cbda 0x395 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) - .debug_str 0x0006cbda 0x299 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) - .debug_str 0x0006cbda 0xd2c esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - .debug_str 0x0006cbda 0xc40 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) - .debug_str 0x0006cbda 0x1c20 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - .debug_str 0x0006cbda 0x2752 esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) - .debug_str 0x0006cbda 0x164e esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - .debug_str 0x0006cbda 0x3383 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - .debug_str 0x0006cbda 0x4d4 esp-idf/freertos/libfreertos.a(app_startup.c.obj) - .debug_str 0x0006cbda 0x1e34 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .debug_str 0x0006cbda 0x163d esp-idf/freertos/libfreertos.a(port.c.obj) - .debug_str 0x0006cbda 0x375 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) - .debug_str 0x0006cbda 0x806 esp-idf/freertos/libfreertos.a(port_common.c.obj) - .debug_str 0x0006cbda 0x33e6 esp-idf/freertos/libfreertos.a(port_systick.c.obj) - .debug_str 0x0006cbda 0x37e esp-idf/freertos/libfreertos.a(list.c.obj) - .debug_str 0x0006cbda 0x317 esp-idf/newlib/libnewlib.a(init.c.obj) - .debug_str 0x0006cbda 0x2ae esp-idf/newlib/libnewlib.a(abort.c.obj) - .debug_str 0x0006cbda 0x2c8 esp-idf/newlib/libnewlib.a(assert.c.obj) - .debug_str 0x0006cbda 0x7cf esp-idf/newlib/libnewlib.a(heap.c.obj) - .debug_str 0x0006cbda 0x914 esp-idf/newlib/libnewlib.a(locks.c.obj) - .debug_str 0x0006cbda 0x398 esp-idf/newlib/libnewlib.a(pthread.c.obj) - .debug_str 0x0006cbda 0x281 esp-idf/newlib/libnewlib.a(getentropy.c.obj) - .debug_str 0x0006cbda 0xb08 esp-idf/newlib/libnewlib.a(time.c.obj) - .debug_str 0x0006cbda 0x79c esp-idf/newlib/libnewlib.a(syscalls.c.obj) - .debug_str 0x0006cbda 0x887 esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) - .debug_str 0x0006cbda 0x98c esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - .debug_str 0x0006cbda 0x67c esp-idf/newlib/libnewlib.a(reent_init.c.obj) - .debug_str 0x0006cbda 0xbfc esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - .debug_str 0x0006cbda 0xf47 esp-idf/pthread/libpthread.a(pthread.c.obj) - .debug_str 0x0006cbda 0x8e1 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .debug_str 0x0006cbda 0x59c esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - .debug_str 0x0006cbda 0x64b esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - .debug_str 0x0006cbda 0x441 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) - .debug_str 0x0006cbda 0xb6d esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - .debug_str 0x0006cbda 0x564 esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) - .debug_str 0x0006cbda 0x25ec esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .debug_str 0x0006cbda 0x4d2d esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .debug_str 0x0006cbda 0x14b7 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) - .debug_str 0x0006cbda 0x27d5 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .debug_str 0x0006cbda 0x3e58 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - .debug_str 0x0006cbda 0x11ad esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - .debug_str 0x0006cbda 0x1c85 esp-idf/vfs/libvfs.a(vfs.c.obj) - .debug_str 0x0006cbda 0x1136 esp-idf/vfs/libvfs.a(nullfs.c.obj) - .debug_str 0x0006cbda 0xc2e esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - .debug_str 0x0006cbda 0x10cf esp-idf/main/libmain.a(esp_ot_rcp.c.obj) - .debug_str 0x0006cbda 0x2b9 esp-idf/riscv/libriscv.a(instruction_decode.c.obj) - .debug_str 0x0006cbda 0x343 esp-idf/riscv/libriscv.a(interrupt.c.obj) - .debug_str 0x0006cbda 0x26d esp-idf/riscv/libriscv.a(rv_utils.c.obj) - .debug_str 0x0006cbda 0xb6 esp-idf/riscv/libriscv.a(vectors.S.obj) - .debug_str 0x0006cbda 0xa7 esp-idf/riscv/libriscv.a(vectors_intc.S.obj) - .debug_str 0x0006cbda 0x3fdb esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .debug_str 0x0006cbda 0x205f esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) - .debug_str 0x0006cbda 0x28a esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - .debug_str 0x0006cbda 0x371c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .debug_str 0x0006cbda 0x29c8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) - .debug_str 0x0006cbda 0xbe0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .debug_str 0x0006cbda 0x1078 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .debug_str 0x0006cbda 0x380 esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) - .debug_str 0x0006cbda 0x47f esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) - .debug_str 0x0006cbda 0x2c3 esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) - .debug_str 0x0006cbda 0x631 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) - .debug_str 0x0006cbda 0x375 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) - .debug_str 0x0006cbda 0x509 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - .debug_str 0x0006cbda 0xbb4 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - .debug_str 0x0006cbda 0x695 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - .debug_str 0x0006cbda 0x25c0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .debug_str 0x0006cbda 0x4667 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .debug_str 0x0006cbda 0xce0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .debug_str 0x0006cbda 0x793 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) - .debug_str 0x0006cbda 0xa3a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) - .debug_str 0x0006cbda 0x1d29 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - .debug_str 0x0006cbda 0xd4f esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - .debug_str 0x0006cbda 0xe11 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - .debug_str 0x0006cbda 0x4ac8 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - .debug_str 0x0006cbda 0xbee esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - .debug_str 0x0006cbda 0x4e1 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - .debug_str 0x0006cbda 0x3921 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - .debug_str 0x0006cbda 0xc53 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .debug_str 0x0006cbda 0x396e esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - .debug_str 0x0006cbda 0x441 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) - .debug_str 0x0006cbda 0x69a esp-idf/esp_rom/libesp_rom.a(esp_rom_regi2c_esp32h2.c.obj) - .debug_str 0x0006cbda 0x5bd esp-idf/hal/libhal.a(lp_timer_hal.c.obj) - .debug_str 0x0006cbda 0x2b38 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .debug_str 0x0006cbda 0x3ec0 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - .debug_str 0x0006cbda 0x5fe5 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - .debug_str 0x0006cbda 0x675 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - .debug_str 0x0006cbda 0x2913 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) - .debug_str 0x0006cbda 0x350e esp-idf/hal/libhal.a(uart_hal.c.obj) - .debug_str 0x0006cbda 0xf2c esp-idf/hal/libhal.a(uart_hal_iram.c.obj) - .debug_str 0x0006cbda 0x994 esp-idf/hal/libhal.a(gpio_hal.c.obj) - .debug_str 0x0006cbda 0x13b1 esp-idf/hal/libhal.a(modem_clock_hal.c.obj) - .debug_str 0x0006cbda 0x2698 esp-idf/hal/libhal.a(pau_hal.c.obj) - .debug_str 0x0006cbda 0xb5c esp-idf/hal/libhal.a(brownout_hal.c.obj) - .debug_str 0x0006cbda 0x3f50 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - .debug_str 0x0006cbda 0x1c00 esp-idf/hal/libhal.a(pmu_hal.c.obj) - .debug_str 0x0006cbda 0x1353 esp-idf/hal/libhal.a(apm_hal.c.obj) - .debug_str 0x0006cbda 0x103a esp-idf/soc/libsoc.a(uart_periph.c.obj) - .debug_str 0x0006cbda 0x230 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) - .debug_str 0x0006cbda 0x96e esp-idf/soc/libsoc.a(power_supply_periph.c.obj) - .debug_str 0x0006cbda 0x38c esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) - .debug_str 0x0006cbda 0x43c esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - .debug_str 0x0006cbda 0xa31 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) - .debug_str 0x0006cbda 0x2f2 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) - .debug_str 0x0006cbda 0x33c4 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - .debug_str 0x0006cbda 0x28cd esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) - .debug_str 0x0006cbda 0x505 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) - .debug_str 0x0006cbda 0x1299 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .debug_str 0x0006cbda 0x247f esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .debug_str 0x0006cbda 0xe31 esp-idf/freertos/libfreertos.a(queue.c.obj) - .debug_str 0x0006cbda 0xc7 esp-idf/freertos/libfreertos.a(portasm.S.obj) - .debug_str 0x0006cbda 0xefa esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - .debug_str 0x0006cbda 0x633 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .debug_str 0x0006cbda 0x5a2 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) - .debug_str 0x0006cbda 0x118e esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .debug_str 0x0006cbda 0xb464 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .debug_str 0x0006cbda 0x5d6f esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - .debug_str 0x0006cbda 0xa9e6 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .debug_str 0x0006cbda 0x1379 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - .debug_str 0x0006cbda 0xa9c1 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - .debug_str 0x0006cbda 0x3a0b esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) - .debug_str 0x0006cbda 0x526 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) - .debug_str 0x0006cbda 0x4711 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - .debug_str 0x0006cbda 0x77e8 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - .debug_str 0x0006cbda 0x1502 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) - .debug_str 0x0006cbda 0xe64 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .debug_str 0x0006cbda 0xc57 esp-idf/vfs/libvfs.a(vfs_eventfd.c.obj) - .debug_str 0x0006cbda 0x2864 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .debug_str 0x0006cbda 0x2267 esp-idf/openthread/libopenthread.a(esp_openthread.cpp.obj) - .debug_str 0x0006cbda 0x532 esp-idf/openthread/libopenthread.a(esp_openthread_lock.c.obj) - .debug_str 0x0006cbda 0x8cb5 esp-idf/openthread/libopenthread.a(esp_openthread_platform.cpp.obj) - .debug_str 0x0006cbda 0x137b esp-idf/openthread/libopenthread.a(esp_openthread_task_queue.c.obj) - .debug_str 0x0006cbda 0x78e esp-idf/openthread/libopenthread.a(esp_openthread_alarm.c.obj) - .debug_str 0x0006cbda 0x2bc2 esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - .debug_str 0x0006cbda 0xa3c esp-idf/openthread/libopenthread.a(esp_openthread_settings.c.obj) - .debug_str 0x0006cbda 0x194d esp-idf/openthread/libopenthread.a(esp_openthread_spi_slave.c.obj) - .debug_str 0x0006cbda 0x17b6 esp-idf/openthread/libopenthread.a(esp_openthread_uart.c.obj) - .debug_str 0x0006cbda 0x3c5b esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - .debug_str 0x0006cbda 0x7986 esp-idf/openthread/libopenthread.a(instance_api.cpp.obj) - .debug_str 0x0006cbda 0x7914 esp-idf/openthread/libopenthread.a(tasklet_api.cpp.obj) - .debug_str 0x0006cbda 0x78cf esp-idf/openthread/libopenthread.a(tasklet.cpp.obj) - .debug_str 0x0006cbda 0x81b1 esp-idf/openthread/libopenthread.a(timer.cpp.obj) - .debug_str 0x0006cbda 0x7aa9 esp-idf/openthread/libopenthread.a(instance.cpp.obj) - .debug_str 0x0006cbda 0x79fc esp-idf/openthread/libopenthread.a(link_raw.cpp.obj) - .debug_str 0x0006cbda 0x5301 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - .debug_str 0x0006cbda 0xd2c esp-idf/openthread/libopenthread.a(mac_header_ie.cpp.obj) - .debug_str 0x0006cbda 0x1f55 esp-idf/openthread/libopenthread.a(mac_types.cpp.obj) - .debug_str 0x0006cbda 0x8514 esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - .debug_str 0x0006cbda 0x7936 esp-idf/openthread/libopenthread.a(sub_mac_callbacks.cpp.obj) - .debug_str 0x0006cbda 0x7b33 esp-idf/openthread/libopenthread.a(radio.cpp.obj) - .debug_str 0x0006cbda 0x7cca esp-idf/openthread/libopenthread.a(radio_platform.cpp.obj) - .debug_str 0x0006cbda 0x2b8 esp-idf/openthread/libopenthread.a(ncp.c.obj) - .debug_str 0x0006cbda 0xe919 esp-idf/openthread/libopenthread.a(esp_openthread_ncp.cpp.obj) - .debug_str 0x0006cbda 0xb9e0 esp-idf/openthread/libopenthread.a(esp_openthread_ncp_hdlc.cpp.obj) - .debug_str 0x0006cbda 0x4b7 esp-idf/openthread/libopenthread.a(esp_openthread_logging.c.obj) - .debug_str 0x0006cbda 0xacf esp-idf/openthread/libopenthread.a(esp_openthread_misc.c.obj) - .debug_str 0x0006cbda 0x17f9 esp-idf/openthread/libopenthread.a(frame_builder.cpp.obj) - .debug_str 0x0006cbda 0xe80 esp-idf/openthread/libopenthread.a(random.cpp.obj) - .debug_str 0x0006cbda 0x1ab6 esp-idf/openthread/libopenthread.a(aes_ccm.cpp.obj) - .debug_str 0x0006cbda 0xd2e esp-idf/openthread/libopenthread.a(aes_ecb.cpp.obj) - .debug_str 0x0006cbda 0x1241 esp-idf/openthread/libopenthread.a(crypto_platform.cpp.obj) - .debug_str 0x0006cbda 0xcb5 esp-idf/openthread/libopenthread.a(storage.cpp.obj) - .debug_str 0x0006cbda 0x78af esp-idf/openthread/libopenthread.a(radio_callbacks.cpp.obj) - .debug_str 0x0006cbda 0x1625 esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) - .debug_str 0x0006cbda 0x1155f esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - .debug_str 0x0006cbda 0xf839 esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) - .debug_str 0x0006cbda 0xf14a esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - .debug_str 0x0006cbda 0xbbff esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) - .debug_str 0x0006cbda 0x7fb0 esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - .debug_str 0x0006cbda 0x7ddf esp-idf/openthread/libopenthread.a(logging_api.cpp.obj) - .debug_str 0x0006cbda 0xc12 esp-idf/openthread/libopenthread.a(hdlc.cpp.obj) - .debug_str 0x0006cbda 0x4c21 esp-idf/openthread/libopenthread.a(spinel.c.obj) - .debug_str 0x0006cbda 0x153e esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - .debug_str 0x0006cbda 0x4d5c esp-idf/openthread/libopenthread.a(spinel_encoder.cpp.obj) - .debug_str 0x0006cbda 0x4ff8 esp-idf/openthread/libopenthread.a(changed_props_set.cpp.obj) - .debug_str 0x0006cbda 0x2f8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) - .debug_str 0x0006cbda 0x67c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - .debug_str 0x0006cbda 0x1183 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - .debug_str 0x0006cbda 0x286 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) - .debug_str 0x0006cbda 0x469 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) - .debug_str 0x0006cbda 0x166f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - .debug_str 0x0006cbda 0x149e esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - .debug_str 0x0006cbda 0x1105 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - .debug_str 0x0006cbda 0x81f esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - .debug_str 0x0006cbda 0x67e esp-idf/hal/libhal.a(aes_hal.c.obj) - .debug_str 0x0006cbda 0x92f esp-idf/soc/libsoc.a(temperature_sensor_periph.c.obj) - .debug_str 0x0006cbda 0x3aa esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) - .debug_str 0x0006cbda 0x2171 esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) - .debug_str 0x0006cbda 0x7d0 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - .debug_str 0x0006cbda 0x2148 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) - .debug_str 0x0006cbda 0x44e2 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .debug_str 0x0006cbda 0x4373 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) - .debug_str 0x0006cbda 0x24f9 esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - .debug_str 0x0006cbda 0x102a esp-idf/ieee802154/libieee802154.a(esp_ieee802154_ack.c.obj) - .debug_str 0x0006cbda 0x3195 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - .debug_str 0x0006cbda 0x838 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_event.c.obj) - .debug_str 0x0006cbda 0x61f esp-idf/ieee802154/libieee802154.a(esp_ieee802154_frame.c.obj) - .debug_str 0x0006cbda 0x14b8 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - .debug_str 0x0006cbda 0x2e2 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_util.c.obj) - .debug_str 0x0006cbda 0xe47 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_sec.c.obj) - .debug_str 0x0006cbda 0x1212 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_timer.c.obj) - .debug_str 0x0006cbda 0x2483 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .debug_str 0x0006cbda 0x150b esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - .debug_str 0x0006cbda 0x197a esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) - .debug_str 0x0006cbda 0xc86 esp-idf/soc/libsoc.a(ieee802154_periph.c.obj) - .debug_str 0x0006cbda 0x894 esp-idf/esp_phy/libesp_phy.a(phy_init_esp32hxx.c.obj) - .debug_str 0x0006cbda 0x32a esp-idf/esp_phy/libesp_phy.a(btbb_init.c.obj) - .debug_str 0x0006cbda 0xbb0 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - .debug_str 0x0006cbda 0xde5 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .debug_str 0x0006cbda 0x112 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_opv.o) - .debug_str 0x0006cbda 0x182 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_handler.o) - .debug_str 0x0006cbda 0x154 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opvnt.o) - .debug_str 0x0006cbda 0x292 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_op.o) - .debug_str 0x0006cbda 0xb0b C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_catch.o) - .debug_str 0x0006cbda 0xccf C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) - .debug_str 0x0006cbda 0x910 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) - .debug_str 0x0006cbda 0x111 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opv.o) - .debug_str 0x0006cbda 0x776 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_term_handler.o) - .debug_str 0x0006cbda 0x41c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_op.o) - .debug_str 0x0006cbda 0x94e C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) - .debug_str 0x0006cbda 0x48a C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(tinfo.o) - .debug_str 0x0006cbda 0x20d C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(bad_alloc.o) - .debug_str 0x0006cbda 0x8c9 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(class_type_info.o) - .debug_str 0x0006cbda 0x107 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_ops.o) - .debug_str 0x0006cbda 0x98a C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) - .debug_str 0x0006cbda 0x2a2 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(save-restore.o) - .debug_str 0x0006cbda 0x1039 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - .debug_str 0x0006cbda 0x376 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) - .debug_str 0x0006cbda 0x96 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-environ.o) - .debug_str 0x0006cbda 0x873 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf_float.o) - .debug_str 0x0006cbda 0x7bc C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf_i.o) - .debug_str 0x0006cbda 0x7e8 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfscanf_float.o) - .debug_str 0x0006cbda 0x5a5 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fclose.o) - .debug_str 0x0006cbda 0x59a C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fflush.o) - .debug_str 0x0006cbda 0x753 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-findfp.o) - .debug_str 0x0006cbda 0x5cc C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fopen.o) - .debug_str 0x0006cbda 0x501 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fseek.o) - .debug_str 0x0006cbda 0x4e1 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fwalk.o) - .debug_str 0x0006cbda 0x531 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-snprintf.o) - .debug_str 0x0006cbda 0x523 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sprintf.o) - .debug_str 0x0006cbda 0x548 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-stdio.o) - .debug_str 0x0006cbda 0x533 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-vsnprintf.o) - .debug_str 0x0006cbda 0x706 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fseeko.o) - .debug_str 0x0006cbda 0x728 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-localeconv.o) - .debug_str 0x0006cbda 0x503 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-reent.o) - .debug_str 0x0006cbda 0x4e3 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-impure.o) - .debug_str 0x0006cbda 0x4dd C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-errno.o) - .debug_str 0x0006cbda 0x4e4 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysclose.o) - .debug_str 0x0006cbda 0x4e9 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysfcntl.o) - .debug_str 0x0006cbda 0x54d C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysgettod.o) - .debug_str 0x0006cbda 0x516 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysopen.o) - .debug_str 0x0006cbda 0x4e9 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysread.o) - .debug_str 0x0006cbda 0x4eb C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-syswrite.o) - .debug_str 0x0006cbda 0x12b C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libm_a-sf_nan.o) - .debug_str 0x0006cbda 0x89d C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-dtoa.o) - .debug_str 0x0006cbda 0x7f8 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-mprec.o) - .debug_str 0x0006cbda 0xa79 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtod.o) - .debug_str 0x0006cbda 0x766 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtol.o) - .debug_str 0x0006cbda 0x10d C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-ctype_.o) - .debug_str 0x0006cbda 0x827 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-svfprintf.o) - .debug_str 0x0006cbda 0x4dd C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-flags.o) - .debug_str 0x0006cbda 0x55c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-refill.o) - .debug_str 0x0006cbda 0x77c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-locale.o) - .debug_str 0x0006cbda 0x126 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libm_a-s_nan.o) - .debug_str 0x0006cbda 0x8da C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-gdtoa-gethex.o) - .debug_str 0x0006cbda 0x24c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-gdtoa-hexnan.o) - .debug_str 0x0006cbda 0x70a C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-mbtowc_r.o) - .debug_str 0x0006cbda 0x711 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-wctomb_r.o) - -.debug_loc 0x00000000 0x7aefa - *(.debug_loc) - .debug_loc 0x00000000 0x35a esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - .debug_loc 0x0000035a 0x28 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) - .debug_loc 0x00000382 0x138 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .debug_loc 0x000004ba 0x2b esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) - .debug_loc 0x000004e5 0x86a esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .debug_loc 0x00000d4f 0xfff esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_loc 0x00001d4e 0xb48 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .debug_loc 0x00002896 0x357 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_loc 0x00002bed 0x10b esp-idf/esp_system/libesp_system.a(esp_system.c.obj) - .debug_loc 0x00002cf8 0x9f esp-idf/esp_system/libesp_system.a(startup.c.obj) - .debug_loc 0x00002d97 0x1e esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) - .debug_loc 0x00002db5 0x868 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .debug_loc 0x0000361d 0x158 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) - .debug_loc 0x00003775 0x27 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) - .debug_loc 0x0000379c 0x4e3 esp-idf/esp_system/libesp_system.a(clk.c.obj) - .debug_loc 0x00003c7f 0x8f esp-idf/esp_system/libesp_system.a(system_internal.c.obj) - .debug_loc 0x00003d0e 0xc2 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) - .debug_loc 0x00003dd0 0xe4 esp-idf/esp_system/libesp_system.a(panic.c.obj) - .debug_loc 0x00003eb4 0x193 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - .debug_loc 0x00004047 0x2af esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - .debug_loc 0x000042f6 0x185 esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) - .debug_loc 0x0000447b 0x43e esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) - .debug_loc 0x000048b9 0x2ba esp-idf/esp_rom/libesp_rom.a(esp_rom_multi_heap.c.obj) - .debug_loc 0x00004b73 0x63 esp-idf/esp_rom/libesp_rom.a(esp_rom_systimer.c.obj) - .debug_loc 0x00004bd6 0x4a7 esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) - .debug_loc 0x0000507d 0x9b esp-idf/hal/libhal.a(efuse_hal.c.obj) - .debug_loc 0x00005118 0x182 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .debug_loc 0x0000529a 0xcc3 esp-idf/hal/libhal.a(cache_hal.c.obj) - .debug_loc 0x00005f5d 0x121d esp-idf/heap/libheap.a(heap_caps.c.obj) - .debug_loc 0x0000717a 0x7a1 esp-idf/heap/libheap.a(heap_caps_init.c.obj) - .debug_loc 0x0000791b 0x1f6 esp-idf/heap/libheap.a(multi_heap.c.obj) - .debug_loc 0x00007b11 0x499 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - .debug_loc 0x00007faa 0x4cd esp-idf/heap/libheap.a(heap_caps_base.c.obj) - .debug_loc 0x00008477 0xee esp-idf/esp_security/libesp_security.a(esp_dpa_protection.c.obj) - .debug_loc 0x00008565 0x563 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - .debug_loc 0x00008ac8 0xe8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - .debug_loc 0x00008bb0 0x1a01 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .debug_loc 0x0000a5b1 0x33f esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - .debug_loc 0x0000a8f0 0x4e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - .debug_loc 0x0000a93e 0x17b0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .debug_loc 0x0000c0ee 0xef esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) - .debug_loc 0x0000c1dd 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) - .debug_loc 0x0000c22d 0x859 esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) - .debug_loc 0x0000ca86 0x95 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) - .debug_loc 0x0000cb1b 0xe9 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) - .debug_loc 0x0000cc04 0xbeb esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .debug_loc 0x0000d7ef 0x1205 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) - .debug_loc 0x0000e9f4 0x26b4 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) - .debug_loc 0x000110a8 0x5b7 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - .debug_loc 0x0001165f 0xab esp-idf/esp_hw_support/libesp_hw_support.a(sleep_clock.c.obj) - .debug_loc 0x0001170a 0xde esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) - .debug_loc 0x000117e8 0x173 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) - .debug_loc 0x0001195b 0x4d2 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - .debug_loc 0x00011e2d 0x299 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) - .debug_loc 0x000120c6 0x18b7 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - .debug_loc 0x0001397d 0xc7 esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) - .debug_loc 0x00013a44 0x425d esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - .debug_loc 0x00017ca1 0x268 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - .debug_loc 0x00017f09 0x63 esp-idf/freertos/libfreertos.a(app_startup.c.obj) - .debug_loc 0x00017f6c 0x296e esp-idf/freertos/libfreertos.a(tasks.c.obj) - .debug_loc 0x0001a8da 0x45a esp-idf/freertos/libfreertos.a(port.c.obj) - .debug_loc 0x0001ad34 0x94 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) - .debug_loc 0x0001adc8 0xf0 esp-idf/freertos/libfreertos.a(port_common.c.obj) - .debug_loc 0x0001aeb8 0x1af esp-idf/freertos/libfreertos.a(port_systick.c.obj) - .debug_loc 0x0001b067 0x76 esp-idf/freertos/libfreertos.a(list.c.obj) - .debug_loc 0x0001b0dd 0x14 esp-idf/newlib/libnewlib.a(abort.c.obj) - .debug_loc 0x0001b0f1 0x131 esp-idf/newlib/libnewlib.a(assert.c.obj) - .debug_loc 0x0001b222 0x47d esp-idf/newlib/libnewlib.a(heap.c.obj) - .debug_loc 0x0001b69f 0x4a0 esp-idf/newlib/libnewlib.a(locks.c.obj) - .debug_loc 0x0001bb3f 0x75 esp-idf/newlib/libnewlib.a(pthread.c.obj) - .debug_loc 0x0001bbb4 0xea esp-idf/newlib/libnewlib.a(getentropy.c.obj) - .debug_loc 0x0001bc9e 0x75b esp-idf/newlib/libnewlib.a(time.c.obj) - .debug_loc 0x0001c3f9 0xc6 esp-idf/newlib/libnewlib.a(syscalls.c.obj) - .debug_loc 0x0001c4bf 0x415 esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) - .debug_loc 0x0001c8d4 0x7e esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - .debug_loc 0x0001c952 0xb0 esp-idf/newlib/libnewlib.a(reent_init.c.obj) - .debug_loc 0x0001ca02 0x63 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - .debug_loc 0x0001ca65 0x15c4 esp-idf/pthread/libpthread.a(pthread.c.obj) - .debug_loc 0x0001e029 0x66d esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .debug_loc 0x0001e696 0x412 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - .debug_loc 0x0001eaa8 0x3fd esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - .debug_loc 0x0001eea5 0x469 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) - .debug_loc 0x0001f30e 0x1dd esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - .debug_loc 0x0001f4eb 0x166e esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .debug_loc 0x00020b59 0x3e84 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .debug_loc 0x000249dd 0x26 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) - .debug_loc 0x00024a03 0xfb6 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .debug_loc 0x000259b9 0x494 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - .debug_loc 0x00025e4d 0x5e8 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - .debug_loc 0x00026435 0x3c3d esp-idf/vfs/libvfs.a(vfs.c.obj) - .debug_loc 0x0002a072 0x7ee esp-idf/vfs/libvfs.a(nullfs.c.obj) - .debug_loc 0x0002a860 0x11a esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - .debug_loc 0x0002a97a 0xfd esp-idf/main/libmain.a(esp_ot_rcp.c.obj) - .debug_loc 0x0002aa77 0x8c esp-idf/riscv/libriscv.a(instruction_decode.c.obj) - .debug_loc 0x0002ab03 0x41c esp-idf/riscv/libriscv.a(interrupt.c.obj) - .debug_loc 0x0002af1f 0x26ff esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .debug_loc 0x0002d61e 0x286 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) - .debug_loc 0x0002d8a4 0xf30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .debug_loc 0x0002e7d4 0xab esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) - .debug_loc 0x0002e87f 0x18b esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .debug_loc 0x0002ea0a 0x1b14 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .debug_loc 0x0003051e 0x24 esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) - .debug_loc 0x00030542 0x167 esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) - .debug_loc 0x000306a9 0x8b7 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) - .debug_loc 0x00030f60 0xc3 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - .debug_loc 0x00031023 0xae6 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - .debug_loc 0x00031b09 0xb4 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - .debug_loc 0x00031bbd 0x1841 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .debug_loc 0x000333fe 0x56e esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .debug_loc 0x0003396c 0x6d3 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .debug_loc 0x0003403f 0xea esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) - .debug_loc 0x00034129 0x164a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - .debug_loc 0x00035773 0x243 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - .debug_loc 0x000359b6 0x552 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - .debug_loc 0x00035f08 0x7ff esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - .debug_loc 0x00036707 0x218 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - .debug_loc 0x0003691f 0x475 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - .debug_loc 0x00036d94 0xab esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - .debug_loc 0x00036e3f 0xc48 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .debug_loc 0x00037a87 0x43d esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - .debug_loc 0x00037ec4 0x4d esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) - .debug_loc 0x00037f11 0x6c6 esp-idf/esp_rom/libesp_rom.a(esp_rom_regi2c_esp32h2.c.obj) - .debug_loc 0x000385d7 0x175 esp-idf/hal/libhal.a(lp_timer_hal.c.obj) - .debug_loc 0x0003874c 0xf37 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .debug_loc 0x00039683 0x2c2 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - .debug_loc 0x00039945 0x16a3 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - .debug_loc 0x0003afe8 0x379 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - .debug_loc 0x0003b361 0x2a9 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) - .debug_loc 0x0003b60a 0xd16 esp-idf/hal/libhal.a(uart_hal.c.obj) - .debug_loc 0x0003c320 0x249 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) - .debug_loc 0x0003c569 0x60f esp-idf/hal/libhal.a(gpio_hal.c.obj) - .debug_loc 0x0003cb78 0x55a esp-idf/hal/libhal.a(modem_clock_hal.c.obj) - .debug_loc 0x0003d0d2 0x38c esp-idf/hal/libhal.a(pau_hal.c.obj) - .debug_loc 0x0003d45e 0xb7 esp-idf/hal/libhal.a(brownout_hal.c.obj) - .debug_loc 0x0003d515 0xc9a esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - .debug_loc 0x0003e1af 0x27a esp-idf/hal/libhal.a(pmu_hal.c.obj) - .debug_loc 0x0003e429 0xc54 esp-idf/hal/libhal.a(apm_hal.c.obj) - .debug_loc 0x0003f07d 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) - .debug_loc 0x0003f095 0x12e esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) - .debug_loc 0x0003f1c3 0x90 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) - .debug_loc 0x0003f253 0x11c esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - .debug_loc 0x0003f36f 0x188 esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) - .debug_loc 0x0003f4f7 0x31f esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) - .debug_loc 0x0003f816 0x130a esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .debug_loc 0x00040b20 0x321 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .debug_loc 0x00040e41 0x204c esp-idf/freertos/libfreertos.a(queue.c.obj) - .debug_loc 0x00042e8d 0x5cf esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - .debug_loc 0x0004345c 0x176f esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .debug_loc 0x00044bcb 0x608 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) - .debug_loc 0x000451d3 0x2323 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .debug_loc 0x000474f6 0x3103 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .debug_loc 0x0004a5f9 0x2bf7 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - .debug_loc 0x0004d1f0 0x3221 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .debug_loc 0x00050411 0x5b2 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - .debug_loc 0x000509c3 0xb3d esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - .debug_loc 0x00051500 0x20c esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) - .debug_loc 0x0005170c 0x4e esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) - .debug_loc 0x0005175a 0x44d esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - .debug_loc 0x00051ba7 0x948 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - .debug_loc 0x000524ef 0x17d esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) - .debug_loc 0x0005266c 0x2cb9 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .debug_loc 0x00055325 0xa67 esp-idf/vfs/libvfs.a(vfs_eventfd.c.obj) - .debug_loc 0x00055d8c 0xba8 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .debug_loc 0x00056934 0x32c esp-idf/openthread/libopenthread.a(esp_openthread.cpp.obj) - .debug_loc 0x00056c60 0xa6 esp-idf/openthread/libopenthread.a(esp_openthread_lock.c.obj) - .debug_loc 0x00056d06 0x322 esp-idf/openthread/libopenthread.a(esp_openthread_platform.cpp.obj) - .debug_loc 0x00057028 0x1b6 esp-idf/openthread/libopenthread.a(esp_openthread_task_queue.c.obj) - .debug_loc 0x000571de 0x212 esp-idf/openthread/libopenthread.a(esp_openthread_alarm.c.obj) - .debug_loc 0x000573f0 0x11ac esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - .debug_loc 0x0005859c 0x8c0 esp-idf/openthread/libopenthread.a(esp_openthread_settings.c.obj) - .debug_loc 0x00058e5c 0x211 esp-idf/openthread/libopenthread.a(esp_openthread_spi_slave.c.obj) - .debug_loc 0x0005906d 0x1d5 esp-idf/openthread/libopenthread.a(esp_openthread_uart.c.obj) - .debug_loc 0x00059242 0xbce esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - .debug_loc 0x00059e10 0x115 esp-idf/openthread/libopenthread.a(instance_api.cpp.obj) - .debug_loc 0x00059f25 0x70 esp-idf/openthread/libopenthread.a(tasklet_api.cpp.obj) - .debug_loc 0x00059f95 0x1c0 esp-idf/openthread/libopenthread.a(tasklet.cpp.obj) - .debug_loc 0x0005a155 0xe55 esp-idf/openthread/libopenthread.a(timer.cpp.obj) - .debug_loc 0x0005afaa 0x11c esp-idf/openthread/libopenthread.a(instance.cpp.obj) - .debug_loc 0x0005b0c6 0xa16 esp-idf/openthread/libopenthread.a(link_raw.cpp.obj) - .debug_loc 0x0005badc 0x1b77 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - .debug_loc 0x0005d653 0xd6 esp-idf/openthread/libopenthread.a(mac_header_ie.cpp.obj) - .debug_loc 0x0005d729 0x66d esp-idf/openthread/libopenthread.a(mac_types.cpp.obj) - .debug_loc 0x0005dd96 0x1619 esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - .debug_loc 0x0005f3af 0x15f esp-idf/openthread/libopenthread.a(sub_mac_callbacks.cpp.obj) - .debug_loc 0x0005f50e 0x4bf esp-idf/openthread/libopenthread.a(radio.cpp.obj) - .debug_loc 0x0005f9cd 0x6be esp-idf/openthread/libopenthread.a(radio_platform.cpp.obj) - .debug_loc 0x0006008b 0x4e esp-idf/openthread/libopenthread.a(ncp.c.obj) - .debug_loc 0x000600d9 0x1e8 esp-idf/openthread/libopenthread.a(esp_openthread_ncp.cpp.obj) - .debug_loc 0x000602c1 0xba esp-idf/openthread/libopenthread.a(esp_openthread_ncp_hdlc.cpp.obj) - .debug_loc 0x0006037b 0xea esp-idf/openthread/libopenthread.a(esp_openthread_misc.c.obj) - .debug_loc 0x00060465 0x818 esp-idf/openthread/libopenthread.a(frame_builder.cpp.obj) - .debug_loc 0x00060c7d 0x423 esp-idf/openthread/libopenthread.a(random.cpp.obj) - .debug_loc 0x000610a0 0xa80 esp-idf/openthread/libopenthread.a(aes_ccm.cpp.obj) - .debug_loc 0x00061b20 0x149 esp-idf/openthread/libopenthread.a(aes_ecb.cpp.obj) - .debug_loc 0x00061c69 0x22e esp-idf/openthread/libopenthread.a(crypto_platform.cpp.obj) - .debug_loc 0x00061e97 0x1ad esp-idf/openthread/libopenthread.a(radio_callbacks.cpp.obj) - .debug_loc 0x00062044 0xc48 esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) - .debug_loc 0x00062c8c 0x3254 esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - .debug_loc 0x00065ee0 0x3e7 esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) - .debug_loc 0x000662c7 0x108a esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - .debug_loc 0x00067351 0x63b esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) - .debug_loc 0x0006798c 0x1144 esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - .debug_loc 0x00068ad0 0x224 esp-idf/openthread/libopenthread.a(logging_api.cpp.obj) - .debug_loc 0x00068cf4 0x3ba esp-idf/openthread/libopenthread.a(hdlc.cpp.obj) - .debug_loc 0x000690ae 0xfad esp-idf/openthread/libopenthread.a(spinel.c.obj) - .debug_loc 0x0006a05b 0x1428 esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - .debug_loc 0x0006b483 0x9c2 esp-idf/openthread/libopenthread.a(spinel_encoder.cpp.obj) - .debug_loc 0x0006be45 0x420 esp-idf/openthread/libopenthread.a(changed_props_set.cpp.obj) - .debug_loc 0x0006c265 0x188 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) - .debug_loc 0x0006c3ed 0x1001 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - .debug_loc 0x0006d3ee 0x10ba esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - .debug_loc 0x0006e4a8 0xf0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) - .debug_loc 0x0006e598 0x75 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) - .debug_loc 0x0006e60d 0x2b5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - .debug_loc 0x0006e8c2 0xda1 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - .debug_loc 0x0006f663 0xbb6 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - .debug_loc 0x00070219 0xdc esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - .debug_loc 0x000702f5 0x467 esp-idf/hal/libhal.a(aes_hal.c.obj) - .debug_loc 0x0007075c 0x85 esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) - .debug_loc 0x000707e1 0x653 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - .debug_loc 0x00070e34 0x26e esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) - .debug_loc 0x000710a2 0x19fe esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .debug_loc 0x00072aa0 0x9ef esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) - .debug_loc 0x0007348f 0x775 esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - .debug_loc 0x00073c04 0x48d esp-idf/ieee802154/libieee802154.a(esp_ieee802154_ack.c.obj) - .debug_loc 0x00074091 0xf50 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - .debug_loc 0x00074fe1 0x380 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_event.c.obj) - .debug_loc 0x00075361 0xb0b esp-idf/ieee802154/libieee802154.a(esp_ieee802154_frame.c.obj) - .debug_loc 0x00075e6c 0x251 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - .debug_loc 0x000760bd 0xdc esp-idf/ieee802154/libieee802154.a(esp_ieee802154_util.c.obj) - .debug_loc 0x00076199 0xc5 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_sec.c.obj) - .debug_loc 0x0007625e 0x306 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_timer.c.obj) - .debug_loc 0x00076564 0x154f esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .debug_loc 0x00077ab3 0xab4 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - .debug_loc 0x00078567 0x1409 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) - .debug_loc 0x00079970 0x63 esp-idf/esp_phy/libesp_phy.a(phy_init_esp32hxx.c.obj) - .debug_loc 0x000799d3 0x3eb esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - .debug_loc 0x00079dbe 0xc94 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .debug_loc 0x0007aa52 0x3f6 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - .debug_loc 0x0007ae48 0xb2 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) - -.debug_macinfo - *(.debug_macinfo) - -.debug_pubtypes - *(.debug_pubtypes) - -.debug_ranges 0x00000000 0x12938 - *(.debug_ranges) - .debug_ranges 0x00000000 0x20 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) - .debug_ranges 0x00000020 0x20 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) - .debug_ranges 0x00000040 0xa0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - .debug_ranges 0x000000e0 0x28 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) - .debug_ranges 0x00000108 0x98 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .debug_ranges 0x000001a0 0x60 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) - .debug_ranges 0x00000200 0xe8 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .debug_ranges 0x000002e8 0x260 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_ranges 0x00000548 0x168 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .debug_ranges 0x000006b0 0x128 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_ranges 0x000007d8 0x38 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) - .debug_ranges 0x00000810 0x50 esp-idf/esp_system/libesp_system.a(startup.c.obj) - .debug_ranges 0x00000860 0x38 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) - .debug_ranges 0x00000898 0xa8 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .debug_ranges 0x00000940 0xa0 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) - .debug_ranges 0x000009e0 0x30 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) - .debug_ranges 0x00000a10 0x110 esp-idf/esp_system/libesp_system.a(clk.c.obj) - .debug_ranges 0x00000b20 0x70 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) - .debug_ranges 0x00000b90 0x58 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) - .debug_ranges 0x00000be8 0x80 esp-idf/esp_system/libesp_system.a(panic.c.obj) - .debug_ranges 0x00000c68 0x70 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - .debug_ranges 0x00000cd8 0x60 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - .debug_ranges 0x00000d38 0x88 esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) - .debug_ranges 0x00000dc0 0x98 esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) - .debug_ranges 0x00000e58 0x78 esp-idf/esp_rom/libesp_rom.a(esp_rom_multi_heap.c.obj) - .debug_ranges 0x00000ed0 0x30 esp-idf/esp_rom/libesp_rom.a(esp_rom_systimer.c.obj) - .debug_ranges 0x00000f00 0x298 esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) - .debug_ranges 0x00001198 0x98 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .debug_ranges 0x00001230 0xa0 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .debug_ranges 0x000012d0 0x170 esp-idf/hal/libhal.a(cache_hal.c.obj) - .debug_ranges 0x00001440 0x18 esp-idf/log/liblog.a(util.c.obj) - .debug_ranges 0x00001458 0x1f0 esp-idf/heap/libheap.a(heap_caps.c.obj) - .debug_ranges 0x00001648 0x140 esp-idf/heap/libheap.a(heap_caps_init.c.obj) - .debug_ranges 0x00001788 0x40 esp-idf/heap/libheap.a(multi_heap.c.obj) - .debug_ranges 0x000017c8 0xd8 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - .debug_ranges 0x000018a0 0xd8 esp-idf/heap/libheap.a(heap_caps_base.c.obj) - .debug_ranges 0x00001978 0x18 esp-idf/esp_security/libesp_security.a(init.c.obj) - .debug_ranges 0x00001990 0x38 esp-idf/esp_security/libesp_security.a(esp_dpa_protection.c.obj) - .debug_ranges 0x000019c8 0xc8 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - .debug_ranges 0x00001a90 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - .debug_ranges 0x00001b00 0x280 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .debug_ranges 0x00001d80 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - .debug_ranges 0x00001df0 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - .debug_ranges 0x00001e18 0x678 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .debug_ranges 0x00002490 0x120 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) - .debug_ranges 0x000025b0 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) - .debug_ranges 0x000025c8 0x1f0 esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) - .debug_ranges 0x000027b8 0x80 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) - .debug_ranges 0x00002838 0xa8 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) - .debug_ranges 0x000028e0 0x4b0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .debug_ranges 0x00002d90 0x3d0 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) - .debug_ranges 0x00003160 0x2c8 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) - .debug_ranges 0x00003428 0x168 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - .debug_ranges 0x00003590 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_clock.c.obj) - .debug_ranges 0x000035b0 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) - .debug_ranges 0x000035e8 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) - .debug_ranges 0x00003610 0xe8 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - .debug_ranges 0x000036f8 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) - .debug_ranges 0x00003750 0x6c8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - .debug_ranges 0x00003e18 0x68 esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) - .debug_ranges 0x00003e80 0x4e0 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - .debug_ranges 0x00004360 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - .debug_ranges 0x000043b0 0x30 esp-idf/freertos/libfreertos.a(app_startup.c.obj) - .debug_ranges 0x000043e0 0x738 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .debug_ranges 0x00004b18 0x130 esp-idf/freertos/libfreertos.a(port.c.obj) - .debug_ranges 0x00004c48 0x40 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) - .debug_ranges 0x00004c88 0x18 esp-idf/freertos/libfreertos.a(port_common.c.obj) - .debug_ranges 0x00004ca0 0xf0 esp-idf/freertos/libfreertos.a(port_systick.c.obj) - .debug_ranges 0x00004d90 0x30 esp-idf/freertos/libfreertos.a(list.c.obj) - .debug_ranges 0x00004dc0 0x20 esp-idf/newlib/libnewlib.a(init.c.obj) - .debug_ranges 0x00004de0 0x28 esp-idf/newlib/libnewlib.a(abort.c.obj) - .debug_ranges 0x00004e08 0x40 esp-idf/newlib/libnewlib.a(assert.c.obj) - .debug_ranges 0x00004e48 0x90 esp-idf/newlib/libnewlib.a(heap.c.obj) - .debug_ranges 0x00004ed8 0xc8 esp-idf/newlib/libnewlib.a(locks.c.obj) - .debug_ranges 0x00004fa0 0x28 esp-idf/newlib/libnewlib.a(pthread.c.obj) - .debug_ranges 0x00004fc8 0x18 esp-idf/newlib/libnewlib.a(getentropy.c.obj) - .debug_ranges 0x00004fe0 0x100 esp-idf/newlib/libnewlib.a(time.c.obj) - .debug_ranges 0x000050e0 0x30 esp-idf/newlib/libnewlib.a(syscalls.c.obj) - .debug_ranges 0x00005110 0xa8 esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) - .debug_ranges 0x000051b8 0x38 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - .debug_ranges 0x000051f0 0x88 esp-idf/newlib/libnewlib.a(reent_init.c.obj) - .debug_ranges 0x00005278 0x30 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - .debug_ranges 0x000052a8 0x240 esp-idf/pthread/libpthread.a(pthread.c.obj) - .debug_ranges 0x000054e8 0xa8 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .debug_ranges 0x00005590 0xc8 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - .debug_ranges 0x00005658 0x88 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - .debug_ranges 0x000056e0 0x48 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) - .debug_ranges 0x00005728 0x60 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - .debug_ranges 0x00005788 0x18 esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) - .debug_ranges 0x000057a0 0x320 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .debug_ranges 0x00005ac0 0x850 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .debug_ranges 0x00006310 0x40 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) - .debug_ranges 0x00006350 0x268 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .debug_ranges 0x000065b8 0x1e0 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - .debug_ranges 0x00006798 0xa8 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - .debug_ranges 0x00006840 0x518 esp-idf/vfs/libvfs.a(vfs.c.obj) - .debug_ranges 0x00006d58 0x88 esp-idf/vfs/libvfs.a(nullfs.c.obj) - .debug_ranges 0x00006de0 0x50 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - .debug_ranges 0x00006e30 0x30 esp-idf/main/libmain.a(esp_ot_rcp.c.obj) - .debug_ranges 0x00006e60 0x10 esp-idf/riscv/libriscv.a(instruction_decode.c.obj) - .debug_ranges 0x00006e70 0x30 esp-idf/riscv/libriscv.a(interrupt.c.obj) - .debug_ranges 0x00006ea0 0x10 esp-idf/riscv/libriscv.a(rv_utils.c.obj) - .debug_ranges 0x00006eb0 0x450 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .debug_ranges 0x00007300 0x190 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) - .debug_ranges 0x00007490 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - .debug_ranges 0x000074a0 0x218 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .debug_ranges 0x000076b8 0x98 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) - .debug_ranges 0x00007750 0x68 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .debug_ranges 0x000077b8 0x3e0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .debug_ranges 0x00007b98 0x38 esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) - .debug_ranges 0x00007bd0 0x10 esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) - .debug_ranges 0x00007be0 0x70 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) - .debug_ranges 0x00007c50 0x20 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) - .debug_ranges 0x00007c70 0x70 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - .debug_ranges 0x00007ce0 0x148 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - .debug_ranges 0x00007e28 0x60 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - .debug_ranges 0x00007e88 0x2d8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .debug_ranges 0x00008160 0xd0 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .debug_ranges 0x00008230 0xc8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .debug_ranges 0x000082f8 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) - .debug_ranges 0x00008328 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) - .debug_ranges 0x00008338 0x1d0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - .debug_ranges 0x00008508 0x50 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - .debug_ranges 0x00008558 0x58 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - .debug_ranges 0x000085b0 0x88 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - .debug_ranges 0x00008638 0x60 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - .debug_ranges 0x00008698 0xc0 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - .debug_ranges 0x00008758 0x50 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - .debug_ranges 0x000087a8 0x1c8 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .debug_ranges 0x00008970 0x70 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - .debug_ranges 0x000089e0 0x10 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) - .debug_ranges 0x000089f0 0x30 esp-idf/esp_rom/libesp_rom.a(esp_rom_regi2c_esp32h2.c.obj) - .debug_ranges 0x00008a20 0x88 esp-idf/hal/libhal.a(lp_timer_hal.c.obj) - .debug_ranges 0x00008aa8 0x3d0 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .debug_ranges 0x00008e78 0x68 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - .debug_ranges 0x00008ee0 0x6d8 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - .debug_ranges 0x000095b8 0xa0 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - .debug_ranges 0x00009658 0x198 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) - .debug_ranges 0x000097f0 0x478 esp-idf/hal/libhal.a(uart_hal.c.obj) - .debug_ranges 0x00009c68 0x108 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) - .debug_ranges 0x00009d70 0x98 esp-idf/hal/libhal.a(gpio_hal.c.obj) - .debug_ranges 0x00009e08 0x108 esp-idf/hal/libhal.a(modem_clock_hal.c.obj) - .debug_ranges 0x00009f10 0xe0 esp-idf/hal/libhal.a(pau_hal.c.obj) - .debug_ranges 0x00009ff0 0xe8 esp-idf/hal/libhal.a(brownout_hal.c.obj) - .debug_ranges 0x0000a0d8 0x280 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - .debug_ranges 0x0000a358 0x118 esp-idf/hal/libhal.a(pmu_hal.c.obj) - .debug_ranges 0x0000a470 0x2b8 esp-idf/hal/libhal.a(apm_hal.c.obj) - .debug_ranges 0x0000a728 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) - .debug_ranges 0x0000a750 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - .debug_ranges 0x0000a770 0x90 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) - .debug_ranges 0x0000a800 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) - .debug_ranges 0x0000a840 0xe0 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - .debug_ranges 0x0000a920 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) - .debug_ranges 0x0000a960 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) - .debug_ranges 0x0000a978 0x2c0 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .debug_ranges 0x0000ac38 0xc0 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .debug_ranges 0x0000acf8 0x2b0 esp-idf/freertos/libfreertos.a(queue.c.obj) - .debug_ranges 0x0000afa8 0x58 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - .debug_ranges 0x0000b000 0x130 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .debug_ranges 0x0000b130 0x48 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) - .debug_ranges 0x0000b178 0x390 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .debug_ranges 0x0000b508 0x4c0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .debug_ranges 0x0000b9c8 0x750 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - .debug_ranges 0x0000c118 0x7c8 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .debug_ranges 0x0000c8e0 0x68 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - .debug_ranges 0x0000c948 0x168 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - .debug_ranges 0x0000cab0 0x70 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) - .debug_ranges 0x0000cb20 0x28 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) - .debug_ranges 0x0000cb48 0x150 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - .debug_ranges 0x0000cc98 0x220 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - .debug_ranges 0x0000ceb8 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) - .debug_ranges 0x0000ced0 0x1e0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .debug_ranges 0x0000d0b0 0x198 esp-idf/vfs/libvfs.a(vfs_eventfd.c.obj) - .debug_ranges 0x0000d248 0x110 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .debug_ranges 0x0000d358 0x80 esp-idf/openthread/libopenthread.a(esp_openthread.cpp.obj) - .debug_ranges 0x0000d3d8 0x38 esp-idf/openthread/libopenthread.a(esp_openthread_lock.c.obj) - .debug_ranges 0x0000d410 0x98 esp-idf/openthread/libopenthread.a(esp_openthread_platform.cpp.obj) - .debug_ranges 0x0000d4a8 0x58 esp-idf/openthread/libopenthread.a(esp_openthread_task_queue.c.obj) - .debug_ranges 0x0000d500 0xa8 esp-idf/openthread/libopenthread.a(esp_openthread_alarm.c.obj) - .debug_ranges 0x0000d5a8 0x270 esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - .debug_ranges 0x0000d818 0x128 esp-idf/openthread/libopenthread.a(esp_openthread_settings.c.obj) - .debug_ranges 0x0000d940 0x50 esp-idf/openthread/libopenthread.a(esp_openthread_spi_slave.c.obj) - .debug_ranges 0x0000d990 0x88 esp-idf/openthread/libopenthread.a(esp_openthread_uart.c.obj) - .debug_ranges 0x0000da18 0x118 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - .debug_ranges 0x0000db30 0x48 esp-idf/openthread/libopenthread.a(instance_api.cpp.obj) - .debug_ranges 0x0000db78 0x20 esp-idf/openthread/libopenthread.a(tasklet_api.cpp.obj) - .debug_ranges 0x0000db98 0x48 esp-idf/openthread/libopenthread.a(tasklet.cpp.obj) - .debug_ranges 0x0000dbe0 0x2c8 esp-idf/openthread/libopenthread.a(timer.cpp.obj) - .debug_ranges 0x0000dea8 0x40 esp-idf/openthread/libopenthread.a(instance.cpp.obj) - .debug_ranges 0x0000dee8 0x88 esp-idf/openthread/libopenthread.a(link_raw.cpp.obj) - .debug_ranges 0x0000df70 0x490 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - .debug_ranges 0x0000e400 0x50 esp-idf/openthread/libopenthread.a(mac_header_ie.cpp.obj) - .debug_ranges 0x0000e450 0xd0 esp-idf/openthread/libopenthread.a(mac_types.cpp.obj) - .debug_ranges 0x0000e520 0x3c8 esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - .debug_ranges 0x0000e8e8 0x40 esp-idf/openthread/libopenthread.a(sub_mac_callbacks.cpp.obj) - .debug_ranges 0x0000e928 0x138 esp-idf/openthread/libopenthread.a(radio.cpp.obj) - .debug_ranges 0x0000ea60 0xe0 esp-idf/openthread/libopenthread.a(radio_platform.cpp.obj) - .debug_ranges 0x0000eb40 0x18 esp-idf/openthread/libopenthread.a(ncp.c.obj) - .debug_ranges 0x0000eb58 0x38 esp-idf/openthread/libopenthread.a(esp_openthread_ncp.cpp.obj) - .debug_ranges 0x0000eb90 0x10 esp-idf/openthread/libopenthread.a(esp_openthread_ncp_hdlc.cpp.obj) - .debug_ranges 0x0000eba0 0x10 esp-idf/openthread/libopenthread.a(esp_openthread_logging.c.obj) - .debug_ranges 0x0000ebb0 0x38 esp-idf/openthread/libopenthread.a(esp_openthread_misc.c.obj) - .debug_ranges 0x0000ebe8 0x128 esp-idf/openthread/libopenthread.a(frame_builder.cpp.obj) - .debug_ranges 0x0000ed10 0xc0 esp-idf/openthread/libopenthread.a(random.cpp.obj) - .debug_ranges 0x0000edd0 0xd8 esp-idf/openthread/libopenthread.a(aes_ccm.cpp.obj) - .debug_ranges 0x0000eea8 0x28 esp-idf/openthread/libopenthread.a(aes_ecb.cpp.obj) - .debug_ranges 0x0000eed0 0x30 esp-idf/openthread/libopenthread.a(crypto_platform.cpp.obj) - .debug_ranges 0x0000ef00 0x10 esp-idf/openthread/libopenthread.a(storage.cpp.obj) - .debug_ranges 0x0000ef10 0x30 esp-idf/openthread/libopenthread.a(radio_callbacks.cpp.obj) - .debug_ranges 0x0000ef40 0xd8 esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) - .debug_ranges 0x0000f018 0x618 esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - .debug_ranges 0x0000f630 0xb8 esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) - .debug_ranges 0x0000f6e8 0x220 esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - .debug_ranges 0x0000f908 0x178 esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) - .debug_ranges 0x0000fa80 0x118 esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - .debug_ranges 0x0000fb98 0x98 esp-idf/openthread/libopenthread.a(logging_api.cpp.obj) - .debug_ranges 0x0000fc30 0xc8 esp-idf/openthread/libopenthread.a(hdlc.cpp.obj) - .debug_ranges 0x0000fcf8 0x2c0 esp-idf/openthread/libopenthread.a(spinel.c.obj) - .debug_ranges 0x0000ffb8 0x1a0 esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - .debug_ranges 0x00010158 0xc8 esp-idf/openthread/libopenthread.a(spinel_encoder.cpp.obj) - .debug_ranges 0x00010220 0xf0 esp-idf/openthread/libopenthread.a(changed_props_set.cpp.obj) - .debug_ranges 0x00010310 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) - .debug_ranges 0x00010338 0x1b0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - .debug_ranges 0x000104e8 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - .debug_ranges 0x000105a8 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) - .debug_ranges 0x000105c0 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) - .debug_ranges 0x000105d8 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - .debug_ranges 0x00010638 0x1a0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - .debug_ranges 0x000107d8 0x80 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - .debug_ranges 0x00010858 0x48 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - .debug_ranges 0x000108a0 0x158 esp-idf/hal/libhal.a(aes_hal.c.obj) - .debug_ranges 0x000109f8 0x68 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) - .debug_ranges 0x00010a60 0xa0 esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) - .debug_ranges 0x00010b00 0xd8 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - .debug_ranges 0x00010bd8 0xb0 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) - .debug_ranges 0x00010c88 0x260 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .debug_ranges 0x00010ee8 0x1b0 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) - .debug_ranges 0x00011098 0x240 esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - .debug_ranges 0x000112d8 0x90 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_ack.c.obj) - .debug_ranges 0x00011368 0x500 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - .debug_ranges 0x00011868 0x50 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_event.c.obj) - .debug_ranges 0x000118b8 0x210 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_frame.c.obj) - .debug_ranges 0x00011ac8 0x1d0 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - .debug_ranges 0x00011c98 0x28 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_util.c.obj) - .debug_ranges 0x00011cc0 0x38 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_sec.c.obj) - .debug_ranges 0x00011cf8 0xb8 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_timer.c.obj) - .debug_ranges 0x00011db0 0x320 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .debug_ranges 0x000120d0 0x98 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - .debug_ranges 0x00012168 0x310 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) - .debug_ranges 0x00012478 0x30 esp-idf/esp_phy/libesp_phy.a(phy_init_esp32hxx.c.obj) - .debug_ranges 0x000124a8 0x18 esp-idf/esp_phy/libesp_phy.a(btbb_init.c.obj) - .debug_ranges 0x000124c0 0xd8 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - .debug_ranges 0x00012598 0x2c8 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .debug_ranges 0x00012860 0xb8 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - .debug_ranges 0x00012918 0x20 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) - -.debug_weaknames - *(.debug_weaknames) - -.debug_funcnames - *(.debug_funcnames) - -.debug_typenames - *(.debug_typenames) - -.debug_varnames - *(.debug_varnames) - -.debug_gnu_pubnames - *(.debug_gnu_pubnames) - -.debug_gnu_pubtypes - *(.debug_gnu_pubtypes) - -.debug_types - *(.debug_types) - -.debug_addr - *(.debug_addr) - -.debug_line_str - 0x00000000 0x1f65 - *(.debug_line_str) - .debug_line_str - 0x00000000 0x1f65 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_opv.o) - 0x2a4 (size before relaxing) - .debug_line_str - 0x00001f65 0x2b0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_handler.o) - .debug_line_str - 0x00001f65 0x2aa C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opvnt.o) - .debug_line_str - 0x00001f65 0x3f5 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_op.o) - .debug_line_str - 0x00001f65 0x4ea C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_catch.o) - .debug_line_str - 0x00001f65 0x5d5 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) - .debug_line_str - 0x00001f65 0x4f6 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) - .debug_line_str - 0x00001f65 0x2a4 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opv.o) - .debug_line_str - 0x00001f65 0x4ff C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_term_handler.o) - .debug_line_str - 0x00001f65 0x49e C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_op.o) - .debug_line_str - 0x00001f65 0x3e2 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) - .debug_line_str - 0x00001f65 0x3bb C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(tinfo.o) - .debug_line_str - 0x00001f65 0x34f C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(bad_alloc.o) - .debug_line_str - 0x00001f65 0x3d9 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(class_type_info.o) - .debug_line_str - 0x00001f65 0x2a4 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_ops.o) - .debug_line_str - 0x00001f65 0x434 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) - .debug_line_str - 0x00001f65 0xe1 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(save-restore.o) - .debug_line_str - 0x00001f65 0x1c0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-environ.o) - .debug_line_str - 0x00001f65 0x428 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf_float.o) - .debug_line_str - 0x00001f65 0x3ab C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf_i.o) - .debug_line_str - 0x00001f65 0x3b2 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfscanf_float.o) - .debug_line_str - 0x00001f65 0x2f3 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fclose.o) - .debug_line_str - 0x00001f65 0x2f3 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fflush.o) - .debug_line_str - 0x00001f65 0x2fc C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-findfp.o) - .debug_line_str - 0x00001f65 0x2ef C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fopen.o) - .debug_line_str - 0x00001f65 0x2df C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fseek.o) - .debug_line_str - 0x00001f65 0x2df C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fwalk.o) - .debug_line_str - 0x00001f65 0x2f9 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-snprintf.o) - .debug_line_str - 0x00001f65 0x2f6 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sprintf.o) - .debug_line_str - 0x00001f65 0x2e7 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-stdio.o) - .debug_line_str - 0x00001f65 0x2fc C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-vsnprintf.o) - .debug_line_str - 0x00001f65 0x38f C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fseeko.o) - .debug_line_str - 0x00001f65 0x305 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-localeconv.o) - .debug_line_str - 0x00001f65 0x2e0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-reent.o) - .debug_line_str - 0x00001f65 0x285 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-impure.o) - .debug_line_str - 0x00001f65 0x293 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-errno.o) - .debug_line_str - 0x00001f65 0x2f7 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysclose.o) - .debug_line_str - 0x00001f65 0x2ee C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysfcntl.o) - .debug_line_str - 0x00001f65 0x368 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysgettod.o) - .debug_line_str - 0x00001f65 0x305 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysopen.o) - .debug_line_str - 0x00001f65 0x2f4 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysread.o) - .debug_line_str - 0x00001f65 0x2f7 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-syswrite.o) - .debug_line_str - 0x00001f65 0x210 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libm_a-sf_nan.o) - .debug_line_str - 0x00001f65 0x3d3 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-dtoa.o) - .debug_line_str - 0x00001f65 0x3d6 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-mprec.o) - .debug_line_str - 0x00001f65 0x3f1 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtod.o) - .debug_line_str - 0x00001f65 0x374 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtol.o) - .debug_line_str - 0x00001f65 0x206 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-ctype_.o) - .debug_line_str - 0x00001f65 0x3b2 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-svfprintf.o) - .debug_line_str - 0x00001f65 0x28b C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-flags.o) - .debug_line_str - 0x00001f65 0x2f3 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-refill.o) - .debug_line_str - 0x00001f65 0x373 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-locale.o) - .debug_line_str - 0x00001f65 0x20d C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libm_a-s_nan.o) - .debug_line_str - 0x00001f65 0x3f4 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-gdtoa-gethex.o) - .debug_line_str - 0x00001f65 0x237 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-gdtoa-hexnan.o) - .debug_line_str - 0x00001f65 0x360 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-mbtowc_r.o) - .debug_line_str - 0x00001f65 0x360 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-wctomb_r.o) - -.debug_loclists - 0x00000000 0x745b - *(.debug_loclists) - .debug_loclists - 0x00000000 0x25 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_opv.o) - .debug_loclists - 0x00000025 0x1d C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_handler.o) - .debug_loclists - 0x00000042 0x25 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opvnt.o) - .debug_loclists - 0x00000067 0x25 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_op.o) - .debug_loclists - 0x0000008c 0x13f C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_catch.o) - .debug_loclists - 0x000001cb 0x12c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) - .debug_loclists - 0x000002f7 0x86 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) - .debug_loclists - 0x0000037d 0x25 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opv.o) - .debug_loclists - 0x000003a2 0x43 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_op.o) - .debug_loclists - 0x000003e5 0x42e C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) - .debug_loclists - 0x00000813 0xea C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(tinfo.o) - .debug_loclists - 0x000008fd 0x61 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(bad_alloc.o) - .debug_loclists - 0x0000095e 0x33a C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(class_type_info.o) - .debug_loclists - 0x00000c98 0x25 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_ops.o) - .debug_loclists - 0x00000cbd 0xa2 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) - .debug_loclists - 0x00000d5f 0x4ed C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf_float.o) - .debug_loclists - 0x0000124c 0x3ac C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf_i.o) - .debug_loclists - 0x000015f8 0x373 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfscanf_float.o) - .debug_loclists - 0x0000196b 0x7f C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fclose.o) - .debug_loclists - 0x000019ea 0x16a C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fflush.o) - .debug_loclists - 0x00001b54 0x280 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-findfp.o) - .debug_loclists - 0x00001dd4 0xd2 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fopen.o) - .debug_loclists - 0x00001ea6 0xf4 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fseek.o) - .debug_loclists - 0x00001f9a 0x8c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fwalk.o) - .debug_loclists - 0x00002026 0x13d C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-snprintf.o) - .debug_loclists - 0x00002163 0x7f C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sprintf.o) - .debug_loclists - 0x000021e2 0x211 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-stdio.o) - .debug_loclists - 0x000023f3 0x153 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-vsnprintf.o) - .debug_loclists - 0x00002546 0x200 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fseeko.o) - .debug_loclists - 0x00002746 0x3c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-localeconv.o) - .debug_loclists - 0x00002782 0x69 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-reent.o) - .debug_loclists - 0x000027eb 0x1e C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysclose.o) - .debug_loclists - 0x00002809 0x5a C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysfcntl.o) - .debug_loclists - 0x00002863 0x3c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysgettod.o) - .debug_loclists - 0x0000289f 0x3e C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysopen.o) - .debug_loclists - 0x000028dd 0x5a C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysread.o) - .debug_loclists - 0x00002937 0x5a C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-syswrite.o) - .debug_loclists - 0x00002991 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libm_a-sf_nan.o) - .debug_loclists - 0x000029b1 0x1100 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-dtoa.o) - .debug_loclists - 0x00003ab1 0x1348 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-mprec.o) - .debug_loclists - 0x00004df9 0x106a C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtod.o) - .debug_loclists - 0x00005e63 0x334 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtol.o) - .debug_loclists - 0x00006197 0x47e C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-svfprintf.o) - .debug_loclists - 0x00006615 0x85 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-flags.o) - .debug_loclists - 0x0000669a 0xdd C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-refill.o) - .debug_loclists - 0x00006777 0x88 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-locale.o) - .debug_loclists - 0x000067ff 0x20 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libm_a-s_nan.o) - .debug_loclists - 0x0000681f 0x878 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-gdtoa-gethex.o) - .debug_loclists - 0x00007097 0x28c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-gdtoa-hexnan.o) - .debug_loclists - 0x00007323 0xa2 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-mbtowc_r.o) - .debug_loclists - 0x000073c5 0x96 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-wctomb_r.o) - -.debug_macro - *(.debug_macro) - -.debug_names - *(.debug_names) - -.debug_rnglists - 0x00000000 0x66d - *(.debug_rnglists) - .debug_rnglists - 0x00000000 0x13 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_opv.o) - .debug_rnglists - 0x00000013 0x19 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_handler.o) - .debug_rnglists - 0x0000002c 0x13 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opvnt.o) - .debug_rnglists - 0x0000003f 0x13 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_op.o) - .debug_rnglists - 0x00000052 0x43 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_catch.o) - .debug_rnglists - 0x00000095 0x9d C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) - .debug_rnglists - 0x00000132 0x3d C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) - .debug_rnglists - 0x0000016f 0x13 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opv.o) - .debug_rnglists - 0x00000182 0x1f C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_op.o) - .debug_rnglists - 0x000001a1 0x50 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) - .debug_rnglists - 0x000001f1 0x4c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(tinfo.o) - .debug_rnglists - 0x0000023d 0x1f C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(bad_alloc.o) - .debug_rnglists - 0x0000025c 0x67 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(class_type_info.o) - .debug_rnglists - 0x000002c3 0x13 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_ops.o) - .debug_rnglists - 0x000002d6 0x55 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) - .debug_rnglists - 0x0000032b 0x6c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf_float.o) - .debug_rnglists - 0x00000397 0x4e C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf_i.o) - .debug_rnglists - 0x000003e5 0x21 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fflush.o) - .debug_rnglists - 0x00000406 0x57 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-findfp.o) - .debug_rnglists - 0x0000045d 0x19 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fseek.o) - .debug_rnglists - 0x00000476 0x1e C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fseeko.o) - .debug_rnglists - 0x00000494 0x28 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-localeconv.o) - .debug_rnglists - 0x000004bc 0x1e C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-reent.o) - .debug_rnglists - 0x000004da 0x36 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-dtoa.o) - .debug_rnglists - 0x00000510 0x77 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-mprec.o) - .debug_rnglists - 0x00000587 0x47 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtod.o) - .debug_rnglists - 0x000005ce 0x18 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtol.o) - .debug_rnglists - 0x000005e6 0x2b C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-svfprintf.o) - .debug_rnglists - 0x00000611 0x1a C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-refill.o) - .debug_rnglists - 0x0000062b 0x42 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-gdtoa-gethex.o) - -.debug_str_offsets - *(.debug_str_offsets) - -.comment 0x00000000 0x60 - *(.comment) - .comment 0x00000000 0x60 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) - 0x30 (size before relaxing) - .comment 0x00000060 0x30 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .comment 0x00000060 0x30 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) - .comment 0x00000060 0x30 esp-idf/efuse/libefuse.a(esp_efuse_table_v0.0_v1.1.c.obj) - .comment 0x00000060 0x30 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .comment 0x00000060 0x30 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .comment 0x00000060 0x30 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .comment 0x00000060 0x30 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .comment 0x00000060 0x30 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_system/libesp_system.a(startup.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_system/libesp_system.a(clk.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_system/libesp_system.a(panic.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_rom/libesp_rom.a(esp_rom_multi_heap.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_rom/libesp_rom.a(esp_rom_systimer.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) - .comment 0x00000060 0x30 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .comment 0x00000060 0x30 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .comment 0x00000060 0x30 esp-idf/hal/libhal.a(cache_hal.c.obj) - .comment 0x00000060 0x30 esp-idf/log/liblog.a(util.c.obj) - .comment 0x00000060 0x30 esp-idf/heap/libheap.a(heap_caps.c.obj) - .comment 0x00000060 0x30 esp-idf/heap/libheap.a(heap_caps_init.c.obj) - .comment 0x00000060 0x30 esp-idf/heap/libheap.a(multi_heap.c.obj) - .comment 0x00000060 0x30 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - .comment 0x00000060 0x30 esp-idf/heap/libheap.a(memory_layout.c.obj) - .comment 0x00000060 0x30 esp-idf/heap/libheap.a(heap_caps_base.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_security/libesp_security.a(init.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_security/libesp_security.a(esp_dpa_protection.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_clock.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - .comment 0x00000060 0x30 esp-idf/freertos/libfreertos.a(app_startup.c.obj) - .comment 0x00000060 0x30 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .comment 0x00000060 0x30 esp-idf/freertos/libfreertos.a(port.c.obj) - .comment 0x00000060 0x30 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) - .comment 0x00000060 0x30 esp-idf/freertos/libfreertos.a(port_common.c.obj) - .comment 0x00000060 0x30 esp-idf/freertos/libfreertos.a(port_systick.c.obj) - .comment 0x00000060 0x30 esp-idf/freertos/libfreertos.a(list.c.obj) - .comment 0x00000060 0x30 esp-idf/newlib/libnewlib.a(init.c.obj) - .comment 0x00000060 0x30 esp-idf/newlib/libnewlib.a(abort.c.obj) - .comment 0x00000060 0x30 esp-idf/newlib/libnewlib.a(assert.c.obj) - .comment 0x00000060 0x30 esp-idf/newlib/libnewlib.a(heap.c.obj) - .comment 0x00000060 0x30 esp-idf/newlib/libnewlib.a(locks.c.obj) - .comment 0x00000060 0x30 esp-idf/newlib/libnewlib.a(pthread.c.obj) - .comment 0x00000060 0x30 esp-idf/newlib/libnewlib.a(getentropy.c.obj) - .comment 0x00000060 0x30 esp-idf/newlib/libnewlib.a(time.c.obj) - .comment 0x00000060 0x30 esp-idf/newlib/libnewlib.a(syscalls.c.obj) - .comment 0x00000060 0x30 esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) - .comment 0x00000060 0x30 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - .comment 0x00000060 0x30 esp-idf/newlib/libnewlib.a(reent_init.c.obj) - .comment 0x00000060 0x30 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - .comment 0x00000060 0x30 esp-idf/pthread/libpthread.a(pthread.c.obj) - .comment 0x00000060 0x30 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .comment 0x00000060 0x30 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - .comment 0x00000060 0x30 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - .comment 0x00000060 0x30 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) - .comment 0x00000060 0x30 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - .comment 0x00000060 0x30 esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) - .comment 0x00000060 0x30 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - .comment 0x00000060 0x30 esp-idf/vfs/libvfs.a(vfs.c.obj) - .comment 0x00000060 0x30 esp-idf/vfs/libvfs.a(nullfs.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - .comment 0x00000060 0x30 esp-idf/main/libmain.a(esp_ot_rcp.c.obj) - .comment 0x00000060 0x30 esp-idf/riscv/libriscv.a(instruction_decode.c.obj) - .comment 0x00000060 0x30 esp-idf/riscv/libriscv.a(interrupt.c.obj) - .comment 0x00000060 0x30 esp-idf/riscv/libriscv.a(rv_utils.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) - .comment 0x00000060 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - .comment 0x00000060 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .comment 0x00000060 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) - .comment 0x00000060 0x30 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) - .comment 0x00000060 0x30 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) - .comment 0x00000060 0x30 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - .comment 0x00000060 0x30 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - .comment 0x00000060 0x30 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - .comment 0x00000060 0x30 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .comment 0x00000060 0x30 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .comment 0x00000060 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .comment 0x00000060 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) - .comment 0x00000060 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) - .comment 0x00000060 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - .comment 0x00000060 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - .comment 0x00000060 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - .comment 0x00000060 0x30 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_rom/libesp_rom.a(esp_rom_regi2c_esp32h2.c.obj) - .comment 0x00000060 0x30 esp-idf/hal/libhal.a(lp_timer_hal.c.obj) - .comment 0x00000060 0x30 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .comment 0x00000060 0x30 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - .comment 0x00000060 0x30 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - .comment 0x00000060 0x30 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - .comment 0x00000060 0x30 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) - .comment 0x00000060 0x30 esp-idf/hal/libhal.a(uart_hal.c.obj) - .comment 0x00000060 0x30 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) - .comment 0x00000060 0x30 esp-idf/hal/libhal.a(gpio_hal.c.obj) - .comment 0x00000060 0x30 esp-idf/hal/libhal.a(modem_clock_hal.c.obj) - .comment 0x00000060 0x30 esp-idf/hal/libhal.a(pau_hal.c.obj) - .comment 0x00000060 0x30 esp-idf/hal/libhal.a(brownout_hal.c.obj) - .comment 0x00000060 0x30 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - .comment 0x00000060 0x30 esp-idf/hal/libhal.a(pmu_hal.c.obj) - .comment 0x00000060 0x30 esp-idf/hal/libhal.a(apm_hal.c.obj) - .comment 0x00000060 0x30 esp-idf/soc/libsoc.a(uart_periph.c.obj) - .comment 0x00000060 0x30 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) - .comment 0x00000060 0x30 esp-idf/soc/libsoc.a(power_supply_periph.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .comment 0x00000060 0x30 esp-idf/freertos/libfreertos.a(queue.c.obj) - .comment 0x00000060 0x30 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - .comment 0x00000060 0x30 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .comment 0x00000060 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .comment 0x00000060 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - .comment 0x00000060 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .comment 0x00000060 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - .comment 0x00000060 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - .comment 0x00000060 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) - .comment 0x00000060 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) - .comment 0x00000060 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - .comment 0x00000060 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - .comment 0x00000060 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) - .comment 0x00000060 0x30 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .comment 0x00000060 0x30 esp-idf/vfs/libvfs.a(vfs_eventfd.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .comment 0x00000060 0x30 esp-idf/openthread/libopenthread.a(esp_openthread.cpp.obj) - .comment 0x00000060 0x30 esp-idf/openthread/libopenthread.a(esp_openthread_lock.c.obj) - .comment 0x00000060 0x30 esp-idf/openthread/libopenthread.a(esp_openthread_platform.cpp.obj) - .comment 0x00000060 0x30 esp-idf/openthread/libopenthread.a(esp_openthread_task_queue.c.obj) - .comment 0x00000060 0x30 esp-idf/openthread/libopenthread.a(esp_openthread_alarm.c.obj) - .comment 0x00000060 0x30 esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - .comment 0x00000060 0x30 esp-idf/openthread/libopenthread.a(esp_openthread_settings.c.obj) - .comment 0x00000060 0x30 esp-idf/openthread/libopenthread.a(esp_openthread_spi_slave.c.obj) - .comment 0x00000060 0x30 esp-idf/openthread/libopenthread.a(esp_openthread_uart.c.obj) - .comment 0x00000060 0x30 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - .comment 0x00000060 0x30 esp-idf/openthread/libopenthread.a(instance_api.cpp.obj) - .comment 0x00000060 0x30 esp-idf/openthread/libopenthread.a(tasklet_api.cpp.obj) - .comment 0x00000060 0x30 esp-idf/openthread/libopenthread.a(tasklet.cpp.obj) - .comment 0x00000060 0x30 esp-idf/openthread/libopenthread.a(timer.cpp.obj) - .comment 0x00000060 0x30 esp-idf/openthread/libopenthread.a(instance.cpp.obj) - .comment 0x00000060 0x30 esp-idf/openthread/libopenthread.a(link_raw.cpp.obj) - .comment 0x00000060 0x30 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - .comment 0x00000060 0x30 esp-idf/openthread/libopenthread.a(mac_header_ie.cpp.obj) - .comment 0x00000060 0x30 esp-idf/openthread/libopenthread.a(mac_types.cpp.obj) - .comment 0x00000060 0x30 esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - .comment 0x00000060 0x30 esp-idf/openthread/libopenthread.a(sub_mac_callbacks.cpp.obj) - .comment 0x00000060 0x30 esp-idf/openthread/libopenthread.a(radio.cpp.obj) - .comment 0x00000060 0x30 esp-idf/openthread/libopenthread.a(radio_platform.cpp.obj) - .comment 0x00000060 0x30 esp-idf/openthread/libopenthread.a(ncp.c.obj) - .comment 0x00000060 0x30 esp-idf/openthread/libopenthread.a(esp_openthread_ncp.cpp.obj) - .comment 0x00000060 0x30 esp-idf/openthread/libopenthread.a(esp_openthread_ncp_hdlc.cpp.obj) - .comment 0x00000060 0x30 esp-idf/openthread/libopenthread.a(esp_openthread_logging.c.obj) - .comment 0x00000060 0x30 esp-idf/openthread/libopenthread.a(esp_openthread_misc.c.obj) - .comment 0x00000060 0x30 esp-idf/openthread/libopenthread.a(frame_builder.cpp.obj) - .comment 0x00000060 0x30 esp-idf/openthread/libopenthread.a(random.cpp.obj) - .comment 0x00000060 0x30 esp-idf/openthread/libopenthread.a(aes_ccm.cpp.obj) - .comment 0x00000060 0x30 esp-idf/openthread/libopenthread.a(aes_ecb.cpp.obj) - .comment 0x00000060 0x30 esp-idf/openthread/libopenthread.a(crypto_platform.cpp.obj) - .comment 0x00000060 0x30 esp-idf/openthread/libopenthread.a(storage.cpp.obj) - .comment 0x00000060 0x30 esp-idf/openthread/libopenthread.a(radio_callbacks.cpp.obj) - .comment 0x00000060 0x30 esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) - .comment 0x00000060 0x30 esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - .comment 0x00000060 0x30 esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) - .comment 0x00000060 0x30 esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - .comment 0x00000060 0x30 esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) - .comment 0x00000060 0x30 esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - .comment 0x00000060 0x30 esp-idf/openthread/libopenthread.a(logging_api.cpp.obj) - .comment 0x00000060 0x30 esp-idf/openthread/libopenthread.a(hdlc.cpp.obj) - .comment 0x00000060 0x30 esp-idf/openthread/libopenthread.a(spinel.c.obj) - .comment 0x00000060 0x30 esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - .comment 0x00000060 0x30 esp-idf/openthread/libopenthread.a(spinel_encoder.cpp.obj) - .comment 0x00000060 0x30 esp-idf/openthread/libopenthread.a(changed_props_set.cpp.obj) - .comment 0x00000060 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) - .comment 0x00000060 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - .comment 0x00000060 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - .comment 0x00000060 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) - .comment 0x00000060 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) - .comment 0x00000060 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - .comment 0x00000060 0x30 esp-idf/hal/libhal.a(aes_hal.c.obj) - .comment 0x00000060 0x30 esp-idf/soc/libsoc.a(temperature_sensor_periph.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) - .comment 0x00000060 0x30 esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - .comment 0x00000060 0x30 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_ack.c.obj) - .comment 0x00000060 0x30 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - .comment 0x00000060 0x30 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_event.c.obj) - .comment 0x00000060 0x30 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_frame.c.obj) - .comment 0x00000060 0x30 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - .comment 0x00000060 0x30 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_util.c.obj) - .comment 0x00000060 0x30 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_sec.c.obj) - .comment 0x00000060 0x30 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_timer.c.obj) - .comment 0x00000060 0x30 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .comment 0x00000060 0x30 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - .comment 0x00000060 0x30 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) - .comment 0x00000060 0x30 esp-idf/soc/libsoc.a(ieee802154_periph.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_phy/libesp_phy.a(phy_init_esp32hxx.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_phy/libesp_phy.a(btbb_init.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - .comment 0x00000060 0x30 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .comment 0x00000060 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_opv.o) - .comment 0x00000060 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_handler.o) - .comment 0x00000060 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opvnt.o) - .comment 0x00000060 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_op.o) - .comment 0x00000060 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_catch.o) - .comment 0x00000060 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) - .comment 0x00000060 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) - .comment 0x00000060 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opv.o) - .comment 0x00000060 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_term_handler.o) - .comment 0x00000060 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_op.o) - .comment 0x00000060 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) - .comment 0x00000060 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(tinfo.o) - .comment 0x00000060 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(bad_alloc.o) - .comment 0x00000060 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(class_type_info.o) - .comment 0x00000060 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_ops.o) - .comment 0x00000060 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) - .comment 0x00000060 0x30 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - .comment 0x00000060 0x32 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_track.o) - .comment 0x00000060 0x32 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_api.o) - .comment 0x00000060 0x32 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) - .comment 0x00000060 0x32 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pbus.o) - .comment 0x00000060 0x32 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_hw_freq.o) - .comment 0x00000060 0x32 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rfpll.o) - .comment 0x00000060 0x32 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tsens.o) - .comment 0x00000060 0x32 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_basic.o) - .comment 0x00000060 0x32 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_analog_cal.o) - .comment 0x00000060 0x32 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pwdet.o) - .comment 0x00000060 0x32 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_gain.o) - .comment 0x00000060 0x32 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_debug.o) - .comment 0x00000060 0x32 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_gain.o) - .comment 0x00000060 0x32 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - .comment 0x00000060 0x32 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_cal.o) - .comment 0x00000060 0x32 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_i2c.o) - .comment 0x00000060 0x32 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_cal.o) - .comment 0x00000060 0x32 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) - .comment 0x00000060 0x30 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) - .comment 0x00000060 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-environ.o) - .comment 0x00000060 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf_float.o) - .comment 0x00000060 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf_i.o) - .comment 0x00000060 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfscanf_float.o) - .comment 0x00000060 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fclose.o) - .comment 0x00000060 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fflush.o) - .comment 0x00000060 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-findfp.o) - .comment 0x00000060 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fopen.o) - .comment 0x00000060 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fseek.o) - .comment 0x00000060 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fwalk.o) - .comment 0x00000060 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-snprintf.o) - .comment 0x00000060 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sprintf.o) - .comment 0x00000060 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-stdio.o) - .comment 0x00000060 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-vsnprintf.o) - .comment 0x00000060 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fseeko.o) - .comment 0x00000060 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-localeconv.o) - .comment 0x00000060 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-reent.o) - .comment 0x00000060 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-impure.o) - .comment 0x00000060 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-errno.o) - .comment 0x00000060 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysclose.o) - .comment 0x00000060 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysfcntl.o) - .comment 0x00000060 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysgettod.o) - .comment 0x00000060 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysopen.o) - .comment 0x00000060 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysread.o) - .comment 0x00000060 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-syswrite.o) - .comment 0x00000060 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libm_a-sf_nan.o) - .comment 0x00000060 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-dtoa.o) - .comment 0x00000060 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-mprec.o) - .comment 0x00000060 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtod.o) - .comment 0x00000060 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtol.o) - .comment 0x00000060 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-ctype_.o) - .comment 0x00000060 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-svfprintf.o) - .comment 0x00000060 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-flags.o) - .comment 0x00000060 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-refill.o) - .comment 0x00000060 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-locale.o) - .comment 0x00000060 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libm_a-s_nan.o) - .comment 0x00000060 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-gdtoa-gethex.o) - .comment 0x00000060 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-gdtoa-hexnan.o) - .comment 0x00000060 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-mbtowc_r.o) - .comment 0x00000060 0x30 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-wctomb_r.o) - -.note.GNU-stack - 0x00000000 0x0 - *(.note.GNU-stack) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table_v0.0_v1.1.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(startup.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(clk.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_multi_heap.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_systimer.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/hal/libhal.a(cache_hal.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/log/liblog.a(util.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/heap/libheap.a(heap_caps.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/heap/libheap.a(memory_layout.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/heap/libheap.a(heap_caps_base.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_security/libesp_security.a(init.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_security/libesp_security.a(esp_dpa_protection.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_clock.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/freertos/libfreertos.a(app_startup.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/freertos/libfreertos.a(port_common.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/freertos/libfreertos.a(port_systick.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/freertos/libfreertos.a(list.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/newlib/libnewlib.a(init.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/newlib/libnewlib.a(abort.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/newlib/libnewlib.a(assert.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/newlib/libnewlib.a(pthread.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/newlib/libnewlib.a(getentropy.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/newlib/libnewlib.a(time.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/newlib/libnewlib.a(syscalls.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/newlib/libnewlib.a(reent_init.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/vfs/libvfs.a(nullfs.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/main/libmain.a(esp_ot_rcp.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/riscv/libriscv.a(instruction_decode.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/riscv/libriscv.a(interrupt.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/riscv/libriscv.a(rv_utils.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_regi2c_esp32h2.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/hal/libhal.a(lp_timer_hal.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/hal/libhal.a(uart_hal.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/hal/libhal.a(gpio_hal.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/hal/libhal.a(modem_clock_hal.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/hal/libhal.a(pau_hal.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/hal/libhal.a(brownout_hal.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/hal/libhal.a(pmu_hal.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/hal/libhal.a(apm_hal.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/soc/libsoc.a(uart_periph.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/soc/libsoc.a(power_supply_periph.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/vfs/libvfs.a(vfs_eventfd.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/openthread/libopenthread.a(esp_openthread.cpp.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/openthread/libopenthread.a(esp_openthread_lock.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/openthread/libopenthread.a(esp_openthread_platform.cpp.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/openthread/libopenthread.a(esp_openthread_task_queue.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/openthread/libopenthread.a(esp_openthread_alarm.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/openthread/libopenthread.a(esp_openthread_settings.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/openthread/libopenthread.a(esp_openthread_spi_slave.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/openthread/libopenthread.a(esp_openthread_uart.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/openthread/libopenthread.a(instance_api.cpp.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/openthread/libopenthread.a(tasklet_api.cpp.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/openthread/libopenthread.a(tasklet.cpp.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/openthread/libopenthread.a(timer.cpp.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/openthread/libopenthread.a(instance.cpp.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/openthread/libopenthread.a(link_raw.cpp.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/openthread/libopenthread.a(mac_header_ie.cpp.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/openthread/libopenthread.a(mac_types.cpp.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/openthread/libopenthread.a(sub_mac_callbacks.cpp.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/openthread/libopenthread.a(radio.cpp.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/openthread/libopenthread.a(radio_platform.cpp.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/openthread/libopenthread.a(ncp.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/openthread/libopenthread.a(esp_openthread_ncp.cpp.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/openthread/libopenthread.a(esp_openthread_ncp_hdlc.cpp.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/openthread/libopenthread.a(esp_openthread_logging.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/openthread/libopenthread.a(esp_openthread_misc.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/openthread/libopenthread.a(frame_builder.cpp.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/openthread/libopenthread.a(random.cpp.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/openthread/libopenthread.a(aes_ccm.cpp.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/openthread/libopenthread.a(aes_ecb.cpp.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/openthread/libopenthread.a(crypto_platform.cpp.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/openthread/libopenthread.a(storage.cpp.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/openthread/libopenthread.a(radio_callbacks.cpp.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/openthread/libopenthread.a(logging_api.cpp.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/openthread/libopenthread.a(hdlc.cpp.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/openthread/libopenthread.a(spinel.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/openthread/libopenthread.a(spinel_encoder.cpp.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/openthread/libopenthread.a(changed_props_set.cpp.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/hal/libhal.a(aes_hal.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/soc/libsoc.a(temperature_sensor_periph.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_ack.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_event.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_frame.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_util.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_sec.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_timer.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/soc/libsoc.a(ieee802154_periph.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_init_esp32hxx.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(btbb_init.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_opv.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_handler.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opvnt.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_op.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_catch.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opv.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_term_handler.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_op.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(tinfo.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(bad_alloc.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(class_type_info.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_ops.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) - .note.GNU-stack - 0x00000000 0x0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - .note.GNU-stack - 0x00000000 0x0 esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-environ.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf_float.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf_i.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfscanf_float.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fclose.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fflush.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-findfp.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fopen.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fseek.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fwalk.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-snprintf.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sprintf.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-stdio.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-vsnprintf.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fseeko.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-localeconv.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-reent.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-impure.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-errno.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysclose.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysfcntl.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysgettod.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysopen.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysread.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-syswrite.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libm_a-sf_nan.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-dtoa.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-mprec.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtod.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtol.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-ctype_.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-svfprintf.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-flags.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-refill.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-locale.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libm_a-s_nan.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-gdtoa-gethex.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-gdtoa-hexnan.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-mbtowc_r.o) - .note.GNU-stack - 0x00000000 0x0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-wctomb_r.o) - -.riscv.attributes - 0x00000000 0x6a - *(.riscv.attributes) - .riscv.attributes - 0x00000000 0x5c esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) - .riscv.attributes - 0x0000005c 0x5c esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) - .riscv.attributes - 0x000000b8 0x5c esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - .riscv.attributes - 0x00000114 0x5c esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) - .riscv.attributes - 0x00000170 0x5c esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .riscv.attributes - 0x000001cc 0x5c esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) - .riscv.attributes - 0x00000228 0x5c esp-idf/efuse/libefuse.a(esp_efuse_table_v0.0_v1.1.c.obj) - .riscv.attributes - 0x00000284 0x5c esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .riscv.attributes - 0x000002e0 0x5c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .riscv.attributes - 0x0000033c 0x5c esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .riscv.attributes - 0x00000398 0x5c esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .riscv.attributes - 0x000003f4 0x5c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .riscv.attributes - 0x00000450 0x5c esp-idf/esp_system/libesp_system.a(esp_system.c.obj) - .riscv.attributes - 0x000004ac 0x5c esp-idf/esp_system/libesp_system.a(startup.c.obj) - .riscv.attributes - 0x00000508 0x5c esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) - .riscv.attributes - 0x00000564 0x5c esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .riscv.attributes - 0x000005c0 0x60 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) - .riscv.attributes - 0x00000620 0x5c esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) - .riscv.attributes - 0x0000067c 0x60 esp-idf/esp_system/libesp_system.a(clk.c.obj) - .riscv.attributes - 0x000006dc 0x60 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) - .riscv.attributes - 0x0000073c 0x5c esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) - .riscv.attributes - 0x00000798 0x5c esp-idf/esp_system/libesp_system.a(panic.c.obj) - .riscv.attributes - 0x000007f4 0x5c esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - .riscv.attributes - 0x00000850 0x60 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - .riscv.attributes - 0x000008b0 0x5c esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) - .riscv.attributes - 0x0000090c 0x5c esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) - .riscv.attributes - 0x00000968 0x5c esp-idf/esp_rom/libesp_rom.a(esp_rom_multi_heap.c.obj) - .riscv.attributes - 0x000009c4 0x5c esp-idf/esp_rom/libesp_rom.a(esp_rom_systimer.c.obj) - .riscv.attributes - 0x00000a20 0x5c esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) - .riscv.attributes - 0x00000a7c 0x5c esp-idf/hal/libhal.a(efuse_hal.c.obj) - .riscv.attributes - 0x00000ad8 0x5c esp-idf/hal/libhal.a(efuse_hal.c.obj) - .riscv.attributes - 0x00000b34 0x5c esp-idf/hal/libhal.a(cache_hal.c.obj) - .riscv.attributes - 0x00000b90 0x5c esp-idf/log/liblog.a(util.c.obj) - .riscv.attributes - 0x00000bec 0x5c esp-idf/heap/libheap.a(heap_caps.c.obj) - .riscv.attributes - 0x00000c48 0x5c esp-idf/heap/libheap.a(heap_caps_init.c.obj) - .riscv.attributes - 0x00000ca4 0x5c esp-idf/heap/libheap.a(multi_heap.c.obj) - .riscv.attributes - 0x00000d00 0x5c esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - .riscv.attributes - 0x00000d5c 0x5c esp-idf/heap/libheap.a(memory_layout.c.obj) - .riscv.attributes - 0x00000db8 0x5c esp-idf/heap/libheap.a(heap_caps_base.c.obj) - .riscv.attributes - 0x00000e14 0x5c esp-idf/esp_security/libesp_security.a(init.c.obj) - .riscv.attributes - 0x00000e70 0x5c esp-idf/esp_security/libesp_security.a(esp_dpa_protection.c.obj) - .riscv.attributes - 0x00000ecc 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - .riscv.attributes - 0x00000f2c 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - .riscv.attributes - 0x00000f88 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .riscv.attributes - 0x00000fe8 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - .riscv.attributes - 0x00001044 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - .riscv.attributes - 0x000010a0 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - .riscv.attributes - 0x00001100 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) - .riscv.attributes - 0x0000115c 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) - .riscv.attributes - 0x000011b8 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) - .riscv.attributes - 0x00001214 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) - .riscv.attributes - 0x00001270 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) - .riscv.attributes - 0x000012cc 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .riscv.attributes - 0x00001328 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) - .riscv.attributes - 0x00001384 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) - .riscv.attributes - 0x000013e0 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - .riscv.attributes - 0x0000143c 0x68 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu_asm.S.obj) - .riscv.attributes - 0x000014a4 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_clock.c.obj) - .riscv.attributes - 0x00001500 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) - .riscv.attributes - 0x0000155c 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) - .riscv.attributes - 0x000015b8 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - .riscv.attributes - 0x00001614 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) - .riscv.attributes - 0x00001670 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - .riscv.attributes - 0x000016cc 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) - .riscv.attributes - 0x00001728 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - .riscv.attributes - 0x00001784 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - .riscv.attributes - 0x000017e0 0x5c esp-idf/freertos/libfreertos.a(app_startup.c.obj) - .riscv.attributes - 0x0000183c 0x5c esp-idf/freertos/libfreertos.a(tasks.c.obj) - .riscv.attributes - 0x00001898 0x60 esp-idf/freertos/libfreertos.a(port.c.obj) - .riscv.attributes - 0x000018f8 0x5c esp-idf/freertos/libfreertos.a(heap_idf.c.obj) - .riscv.attributes - 0x00001954 0x5c esp-idf/freertos/libfreertos.a(port_common.c.obj) - .riscv.attributes - 0x000019b0 0x5c esp-idf/freertos/libfreertos.a(port_systick.c.obj) - .riscv.attributes - 0x00001a0c 0x5c esp-idf/freertos/libfreertos.a(list.c.obj) - .riscv.attributes - 0x00001a68 0x5c esp-idf/newlib/libnewlib.a(init.c.obj) - .riscv.attributes - 0x00001ac4 0x5c esp-idf/newlib/libnewlib.a(abort.c.obj) - .riscv.attributes - 0x00001b20 0x5c esp-idf/newlib/libnewlib.a(assert.c.obj) - .riscv.attributes - 0x00001b7c 0x5c esp-idf/newlib/libnewlib.a(heap.c.obj) - .riscv.attributes - 0x00001bd8 0x5c esp-idf/newlib/libnewlib.a(locks.c.obj) - .riscv.attributes - 0x00001c34 0x5c esp-idf/newlib/libnewlib.a(pthread.c.obj) - .riscv.attributes - 0x00001c90 0x5c esp-idf/newlib/libnewlib.a(getentropy.c.obj) - .riscv.attributes - 0x00001cec 0x5c esp-idf/newlib/libnewlib.a(time.c.obj) - .riscv.attributes - 0x00001d48 0x5c esp-idf/newlib/libnewlib.a(syscalls.c.obj) - .riscv.attributes - 0x00001da4 0x5c esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) - .riscv.attributes - 0x00001e00 0x5c esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - .riscv.attributes - 0x00001e5c 0x5c esp-idf/newlib/libnewlib.a(reent_init.c.obj) - .riscv.attributes - 0x00001eb8 0x5c esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - .riscv.attributes - 0x00001f14 0x5c esp-idf/pthread/libpthread.a(pthread.c.obj) - .riscv.attributes - 0x00001f70 0x5c esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .riscv.attributes - 0x00001fcc 0x5c esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - .riscv.attributes - 0x00002028 0x5c esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - .riscv.attributes - 0x00002084 0x5c esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) - .riscv.attributes - 0x000020e0 0x5c esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - .riscv.attributes - 0x0000213c 0x5c esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) - .riscv.attributes - 0x00002198 0x5c esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - .riscv.attributes - 0x000021f4 0x5c esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - .riscv.attributes - 0x00002250 0x5c esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) - .riscv.attributes - 0x000022ac 0x5c esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - .riscv.attributes - 0x00002308 0x5c esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - .riscv.attributes - 0x00002364 0x5c esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - .riscv.attributes - 0x000023c0 0x5c esp-idf/vfs/libvfs.a(vfs.c.obj) - .riscv.attributes - 0x0000241c 0x5c esp-idf/vfs/libvfs.a(nullfs.c.obj) - .riscv.attributes - 0x00002478 0x5c esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - .riscv.attributes - 0x000024d4 0x5c esp-idf/main/libmain.a(esp_ot_rcp.c.obj) - .riscv.attributes - 0x00002530 0x5c esp-idf/riscv/libriscv.a(instruction_decode.c.obj) - .riscv.attributes - 0x0000258c 0x5c esp-idf/riscv/libriscv.a(interrupt.c.obj) - .riscv.attributes - 0x000025e8 0x5c esp-idf/riscv/libriscv.a(rv_utils.c.obj) - .riscv.attributes - 0x00002644 0x68 esp-idf/riscv/libriscv.a(vectors.S.obj) - .riscv.attributes - 0x000026ac 0x64 esp-idf/riscv/libriscv.a(vectors_intc.S.obj) - .riscv.attributes - 0x00002710 0x5c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - .riscv.attributes - 0x0000276c 0x5c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) - .riscv.attributes - 0x000027c8 0x5c esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - .riscv.attributes - 0x00002824 0x5c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .riscv.attributes - 0x00002880 0x5c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) - .riscv.attributes - 0x000028dc 0x5c esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .riscv.attributes - 0x00002938 0x5c esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - .riscv.attributes - 0x00002994 0x5c esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) - .riscv.attributes - 0x000029f0 0x5c esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) - .riscv.attributes - 0x00002a4c 0x5c esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) - .riscv.attributes - 0x00002aa8 0x5c esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) - .riscv.attributes - 0x00002b04 0x5c esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) - .riscv.attributes - 0x00002b60 0x5c esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - .riscv.attributes - 0x00002bbc 0x5c esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - .riscv.attributes - 0x00002c18 0x5c esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - .riscv.attributes - 0x00002c74 0x5c esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .riscv.attributes - 0x00002cd0 0x5c esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .riscv.attributes - 0x00002d2c 0x5c esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .riscv.attributes - 0x00002d88 0x5c esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) - .riscv.attributes - 0x00002de4 0x5c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) - .riscv.attributes - 0x00002e40 0x5c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - .riscv.attributes - 0x00002e9c 0x5c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - .riscv.attributes - 0x00002ef8 0x5c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - .riscv.attributes - 0x00002f54 0x5c esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - .riscv.attributes - 0x00002fb0 0x5c esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - .riscv.attributes - 0x0000300c 0x5c esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - .riscv.attributes - 0x00003068 0x5c esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - .riscv.attributes - 0x000030c4 0x5c esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .riscv.attributes - 0x00003120 0x5c esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - .riscv.attributes - 0x0000317c 0x5c esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) - .riscv.attributes - 0x000031d8 0x5c esp-idf/esp_rom/libesp_rom.a(esp_rom_regi2c_esp32h2.c.obj) - .riscv.attributes - 0x00003234 0x5c esp-idf/hal/libhal.a(lp_timer_hal.c.obj) - .riscv.attributes - 0x00003290 0x5c esp-idf/hal/libhal.a(mmu_hal.c.obj) - .riscv.attributes - 0x000032ec 0x5c esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - .riscv.attributes - 0x00003348 0x5c esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - .riscv.attributes - 0x000033a4 0x5c esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - .riscv.attributes - 0x00003400 0x5c esp-idf/hal/libhal.a(clk_tree_hal.c.obj) - .riscv.attributes - 0x0000345c 0x5c esp-idf/hal/libhal.a(uart_hal.c.obj) - .riscv.attributes - 0x000034b8 0x5c esp-idf/hal/libhal.a(uart_hal_iram.c.obj) - .riscv.attributes - 0x00003514 0x5c esp-idf/hal/libhal.a(gpio_hal.c.obj) - .riscv.attributes - 0x00003570 0x5c esp-idf/hal/libhal.a(modem_clock_hal.c.obj) - .riscv.attributes - 0x000035cc 0x5c esp-idf/hal/libhal.a(pau_hal.c.obj) - .riscv.attributes - 0x00003628 0x5c esp-idf/hal/libhal.a(brownout_hal.c.obj) - .riscv.attributes - 0x00003684 0x5c esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - .riscv.attributes - 0x000036e0 0x5c esp-idf/hal/libhal.a(pmu_hal.c.obj) - .riscv.attributes - 0x0000373c 0x5c esp-idf/hal/libhal.a(apm_hal.c.obj) - .riscv.attributes - 0x00003798 0x5c esp-idf/soc/libsoc.a(uart_periph.c.obj) - .riscv.attributes - 0x000037f4 0x5c esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) - .riscv.attributes - 0x00003850 0x5c esp-idf/soc/libsoc.a(power_supply_periph.c.obj) - .riscv.attributes - 0x000038ac 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) - .riscv.attributes - 0x0000390c 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - .riscv.attributes - 0x00003968 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) - .riscv.attributes - 0x000039c8 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) - .riscv.attributes - 0x00003a24 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - .riscv.attributes - 0x00003a80 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) - .riscv.attributes - 0x00003adc 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) - .riscv.attributes - 0x00003b38 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - .riscv.attributes - 0x00003b94 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .riscv.attributes - 0x00003bf0 0x5c esp-idf/freertos/libfreertos.a(queue.c.obj) - .riscv.attributes - 0x00003c4c 0x64 esp-idf/freertos/libfreertos.a(portasm.S.obj) - .riscv.attributes - 0x00003cb0 0x5c esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - .riscv.attributes - 0x00003d0c 0x5c esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .riscv.attributes - 0x00003d68 0x5c esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) - .riscv.attributes - 0x00003dc4 0x5c esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - .riscv.attributes - 0x00003e20 0x5c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - .riscv.attributes - 0x00003e7c 0x5c esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - .riscv.attributes - 0x00003ed8 0x5c esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - .riscv.attributes - 0x00003f34 0x5c esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - .riscv.attributes - 0x00003f90 0x5c esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - .riscv.attributes - 0x00003fec 0x5c esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) - .riscv.attributes - 0x00004048 0x5c esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) - .riscv.attributes - 0x000040a4 0x5c esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - .riscv.attributes - 0x00004100 0x5c esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - .riscv.attributes - 0x0000415c 0x5c esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) - .riscv.attributes - 0x000041b8 0x5c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .riscv.attributes - 0x00004214 0x5c esp-idf/vfs/libvfs.a(vfs_eventfd.c.obj) - .riscv.attributes - 0x00004270 0x5c esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - .riscv.attributes - 0x000042cc 0x5c esp-idf/openthread/libopenthread.a(esp_openthread.cpp.obj) - .riscv.attributes - 0x00004328 0x5c esp-idf/openthread/libopenthread.a(esp_openthread_lock.c.obj) - .riscv.attributes - 0x00004384 0x5c esp-idf/openthread/libopenthread.a(esp_openthread_platform.cpp.obj) - .riscv.attributes - 0x000043e0 0x5c esp-idf/openthread/libopenthread.a(esp_openthread_task_queue.c.obj) - .riscv.attributes - 0x0000443c 0x5c esp-idf/openthread/libopenthread.a(esp_openthread_alarm.c.obj) - .riscv.attributes - 0x00004498 0x5c esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - .riscv.attributes - 0x000044f4 0x5c esp-idf/openthread/libopenthread.a(esp_openthread_settings.c.obj) - .riscv.attributes - 0x00004550 0x5c esp-idf/openthread/libopenthread.a(esp_openthread_spi_slave.c.obj) - .riscv.attributes - 0x000045ac 0x5c esp-idf/openthread/libopenthread.a(esp_openthread_uart.c.obj) - .riscv.attributes - 0x00004608 0x5c esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - .riscv.attributes - 0x00004664 0x5c esp-idf/openthread/libopenthread.a(instance_api.cpp.obj) - .riscv.attributes - 0x000046c0 0x5c esp-idf/openthread/libopenthread.a(tasklet_api.cpp.obj) - .riscv.attributes - 0x0000471c 0x5c esp-idf/openthread/libopenthread.a(tasklet.cpp.obj) - .riscv.attributes - 0x00004778 0x5c esp-idf/openthread/libopenthread.a(timer.cpp.obj) - .riscv.attributes - 0x000047d4 0x5c esp-idf/openthread/libopenthread.a(instance.cpp.obj) - .riscv.attributes - 0x00004830 0x5c esp-idf/openthread/libopenthread.a(link_raw.cpp.obj) - .riscv.attributes - 0x0000488c 0x5c esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - .riscv.attributes - 0x000048e8 0x5c esp-idf/openthread/libopenthread.a(mac_header_ie.cpp.obj) - .riscv.attributes - 0x00004944 0x5c esp-idf/openthread/libopenthread.a(mac_types.cpp.obj) - .riscv.attributes - 0x000049a0 0x5c esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - .riscv.attributes - 0x000049fc 0x5c esp-idf/openthread/libopenthread.a(sub_mac_callbacks.cpp.obj) - .riscv.attributes - 0x00004a58 0x5c esp-idf/openthread/libopenthread.a(radio.cpp.obj) - .riscv.attributes - 0x00004ab4 0x5c esp-idf/openthread/libopenthread.a(radio_platform.cpp.obj) - .riscv.attributes - 0x00004b10 0x5c esp-idf/openthread/libopenthread.a(ncp.c.obj) - .riscv.attributes - 0x00004b6c 0x5c esp-idf/openthread/libopenthread.a(esp_openthread_ncp.cpp.obj) - .riscv.attributes - 0x00004bc8 0x5c esp-idf/openthread/libopenthread.a(esp_openthread_ncp_hdlc.cpp.obj) - .riscv.attributes - 0x00004c24 0x5c esp-idf/openthread/libopenthread.a(esp_openthread_logging.c.obj) - .riscv.attributes - 0x00004c80 0x5c esp-idf/openthread/libopenthread.a(esp_openthread_misc.c.obj) - .riscv.attributes - 0x00004cdc 0x5c esp-idf/openthread/libopenthread.a(frame_builder.cpp.obj) - .riscv.attributes - 0x00004d38 0x5c esp-idf/openthread/libopenthread.a(random.cpp.obj) - .riscv.attributes - 0x00004d94 0x5c esp-idf/openthread/libopenthread.a(aes_ccm.cpp.obj) - .riscv.attributes - 0x00004df0 0x5c esp-idf/openthread/libopenthread.a(aes_ecb.cpp.obj) - .riscv.attributes - 0x00004e4c 0x5c esp-idf/openthread/libopenthread.a(crypto_platform.cpp.obj) - .riscv.attributes - 0x00004ea8 0x5c esp-idf/openthread/libopenthread.a(storage.cpp.obj) - .riscv.attributes - 0x00004f04 0x5c esp-idf/openthread/libopenthread.a(radio_callbacks.cpp.obj) - .riscv.attributes - 0x00004f60 0x5c esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) - .riscv.attributes - 0x00004fbc 0x5c esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - .riscv.attributes - 0x00005018 0x5c esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) - .riscv.attributes - 0x00005074 0x5c esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - .riscv.attributes - 0x000050d0 0x5c esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) - .riscv.attributes - 0x0000512c 0x5c esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - .riscv.attributes - 0x00005188 0x5c esp-idf/openthread/libopenthread.a(logging_api.cpp.obj) - .riscv.attributes - 0x000051e4 0x5c esp-idf/openthread/libopenthread.a(hdlc.cpp.obj) - .riscv.attributes - 0x00005240 0x5c esp-idf/openthread/libopenthread.a(spinel.c.obj) - .riscv.attributes - 0x0000529c 0x5c esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - .riscv.attributes - 0x000052f8 0x5c esp-idf/openthread/libopenthread.a(spinel_encoder.cpp.obj) - .riscv.attributes - 0x00005354 0x5c esp-idf/openthread/libopenthread.a(changed_props_set.cpp.obj) - .riscv.attributes - 0x000053b0 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) - .riscv.attributes - 0x0000540c 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - .riscv.attributes - 0x00005468 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - .riscv.attributes - 0x000054c4 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) - .riscv.attributes - 0x00005520 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) - .riscv.attributes - 0x0000557c 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - .riscv.attributes - 0x000055d8 0x5c esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - .riscv.attributes - 0x00005634 0x5c esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - .riscv.attributes - 0x00005690 0x5c esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - .riscv.attributes - 0x000056ec 0x5c esp-idf/hal/libhal.a(aes_hal.c.obj) - .riscv.attributes - 0x00005748 0x5c esp-idf/soc/libsoc.a(temperature_sensor_periph.c.obj) - .riscv.attributes - 0x000057a4 0x5c esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) - .riscv.attributes - 0x00005800 0x5c esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) - .riscv.attributes - 0x0000585c 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - .riscv.attributes - 0x000058b8 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) - .riscv.attributes - 0x00005914 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .riscv.attributes - 0x00005970 0x5c esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) - .riscv.attributes - 0x000059cc 0x5c esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - .riscv.attributes - 0x00005a28 0x5c esp-idf/ieee802154/libieee802154.a(esp_ieee802154_ack.c.obj) - .riscv.attributes - 0x00005a84 0x5c esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - .riscv.attributes - 0x00005ae0 0x5c esp-idf/ieee802154/libieee802154.a(esp_ieee802154_event.c.obj) - .riscv.attributes - 0x00005b3c 0x5c esp-idf/ieee802154/libieee802154.a(esp_ieee802154_frame.c.obj) - .riscv.attributes - 0x00005b98 0x5c esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - .riscv.attributes - 0x00005bf4 0x5c esp-idf/ieee802154/libieee802154.a(esp_ieee802154_util.c.obj) - .riscv.attributes - 0x00005c50 0x5c esp-idf/ieee802154/libieee802154.a(esp_ieee802154_sec.c.obj) - .riscv.attributes - 0x00005cac 0x5c esp-idf/ieee802154/libieee802154.a(esp_ieee802154_timer.c.obj) - .riscv.attributes - 0x00005d08 0x5c esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .riscv.attributes - 0x00005d64 0x5c esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - .riscv.attributes - 0x00005dc0 0x5c esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) - .riscv.attributes - 0x00005e1c 0x5c esp-idf/soc/libsoc.a(ieee802154_periph.c.obj) - .riscv.attributes - 0x00005e78 0x5c esp-idf/esp_phy/libesp_phy.a(phy_init_esp32hxx.c.obj) - .riscv.attributes - 0x00005ed4 0x5c esp-idf/esp_phy/libesp_phy.a(btbb_init.c.obj) - .riscv.attributes - 0x00005f30 0x5c esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - .riscv.attributes - 0x00005f8c 0x5c esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .riscv.attributes - 0x00005fe8 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_opv.o) - .riscv.attributes - 0x00006044 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_handler.o) - .riscv.attributes - 0x000060a0 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opvnt.o) - .riscv.attributes - 0x000060fc 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_op.o) - .riscv.attributes - 0x00006158 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_catch.o) - .riscv.attributes - 0x000061b4 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) - .riscv.attributes - 0x00006210 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) - .riscv.attributes - 0x0000626c 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opv.o) - .riscv.attributes - 0x000062c8 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_term_handler.o) - .riscv.attributes - 0x00006324 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_op.o) - .riscv.attributes - 0x00006380 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) - .riscv.attributes - 0x000063dc 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(tinfo.o) - .riscv.attributes - 0x00006438 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(bad_alloc.o) - .riscv.attributes - 0x00006494 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(class_type_info.o) - .riscv.attributes - 0x000064f0 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_ops.o) - .riscv.attributes - 0x0000654c 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) - .riscv.attributes - 0x000065a8 0x5a C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(save-restore.o) - .riscv.attributes - 0x00006602 0x5c esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - .riscv.attributes - 0x0000665e 0x5c esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) - .riscv.attributes - 0x000066ba 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-environ.o) - .riscv.attributes - 0x00006716 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf_float.o) - .riscv.attributes - 0x00006772 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf_i.o) - .riscv.attributes - 0x000067ce 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfscanf_float.o) - .riscv.attributes - 0x0000682a 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fclose.o) - .riscv.attributes - 0x00006886 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fflush.o) - .riscv.attributes - 0x000068e2 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-findfp.o) - .riscv.attributes - 0x0000693e 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fopen.o) - .riscv.attributes - 0x0000699a 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fseek.o) - .riscv.attributes - 0x000069f6 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fwalk.o) - .riscv.attributes - 0x00006a52 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-snprintf.o) - .riscv.attributes - 0x00006aae 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sprintf.o) - .riscv.attributes - 0x00006b0a 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-stdio.o) - .riscv.attributes - 0x00006b66 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-vsnprintf.o) - .riscv.attributes - 0x00006bc2 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fseeko.o) - .riscv.attributes - 0x00006c1e 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-localeconv.o) - .riscv.attributes - 0x00006c7a 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-reent.o) - .riscv.attributes - 0x00006cd6 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-impure.o) - .riscv.attributes - 0x00006d32 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-errno.o) - .riscv.attributes - 0x00006d8e 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysclose.o) - .riscv.attributes - 0x00006dea 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysfcntl.o) - .riscv.attributes - 0x00006e46 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysgettod.o) - .riscv.attributes - 0x00006ea2 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysopen.o) - .riscv.attributes - 0x00006efe 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysread.o) - .riscv.attributes - 0x00006f5a 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-syswrite.o) - .riscv.attributes - 0x00006fb6 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libm_a-sf_nan.o) - .riscv.attributes - 0x00007012 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-dtoa.o) - .riscv.attributes - 0x0000706e 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-mprec.o) - .riscv.attributes - 0x000070ca 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtod.o) - .riscv.attributes - 0x00007126 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtol.o) - .riscv.attributes - 0x00007182 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-ctype_.o) - .riscv.attributes - 0x000071de 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-svfprintf.o) - .riscv.attributes - 0x0000723a 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-flags.o) - .riscv.attributes - 0x00007296 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-refill.o) - .riscv.attributes - 0x000072f2 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-locale.o) - .riscv.attributes - 0x0000734e 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libm_a-s_nan.o) - .riscv.attributes - 0x000073aa 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-gdtoa-gethex.o) - .riscv.attributes - 0x00007406 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-gdtoa-hexnan.o) - .riscv.attributes - 0x00007462 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-mbtowc_r.o) - .riscv.attributes - 0x000074be 0x5c C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-wctomb_r.o) - -/DISCARD/ - *(.rela.*) - *(.got .got.plt) - *(.eh_frame_hdr) - *(.eh_frame) -OUTPUT(open-thread-rcp.elf elf32-littleriscv) - -Cross Reference Table - -Symbol File -APB_SARADC esp-idf/hal/libhal.a(adc_hal_common.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) -BLE_RSSI_COMP C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) -Cache_Disable_ICache esp-idf/hal/libhal.a(cache_hal.c.obj) - esp-idf/esp_system/libesp_system.a(system_internal.c.obj) -Cache_Enable_ICache esp-idf/hal/libhal.a(cache_hal.c.obj) -Cache_Freeze_ICache_Disable esp-idf/hal/libhal.a(cache_hal.c.obj) -Cache_Freeze_ICache_Enable esp-idf/hal/libhal.a(cache_hal.c.obj) -Cache_Get_ICache_Line_Size esp-idf/hal/libhal.a(cache_hal.c.obj) -Cache_Invalidate_Addr esp-idf/hal/libhal.a(cache_hal.c.obj) -Cache_Resume_ICache esp-idf/hal/libhal.a(cache_hal.c.obj) -Cache_Set_IDROM_MMU_Size esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -Cache_Suspend_ICache esp-idf/hal/libhal.a(cache_hal.c.obj) -CompressedEnumTable::set(unsigned int, bool) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) -CompressedEnumTable::get(unsigned int, nvs::Page::EntryState*) const esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) -CompressedEnumTable::set(unsigned int, nvs::Page::EntryState) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) -DW.ref.__gxx_personality_v0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opvnt.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) -EFUSE esp-idf/hal/libhal.a(mmu_hal.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) - esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/hal/libhal.a(efuse_hal.c.obj) -ESP_EFUSE_ACTIVE_HP_DBIAS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_ACTIVE_LP_DBIAS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_ADC1_AVE_INITCODE_ATTEN0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) -ESP_EFUSE_ADC1_AVE_INITCODE_ATTEN1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) -ESP_EFUSE_ADC1_AVE_INITCODE_ATTEN2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) -ESP_EFUSE_ADC1_AVE_INITCODE_ATTEN3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) -ESP_EFUSE_ADC1_CH0_ATTEN0_INITCODE_DIFF esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) -ESP_EFUSE_ADC1_CH1_ATTEN0_INITCODE_DIFF esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) -ESP_EFUSE_ADC1_CH2_ATTEN0_INITCODE_DIFF esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) -ESP_EFUSE_ADC1_CH3_ATTEN0_INITCODE_DIFF esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) -ESP_EFUSE_ADC1_CH4_ATTEN0_INITCODE_DIFF esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) -ESP_EFUSE_ADC1_HI_DOUT_ATTEN0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) -ESP_EFUSE_ADC1_HI_DOUT_ATTEN1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) -ESP_EFUSE_ADC1_HI_DOUT_ATTEN2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) -ESP_EFUSE_ADC1_HI_DOUT_ATTEN3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) -ESP_EFUSE_BLK_VERSION_MAJOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_BLK_VERSION_MINOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_CRYPT_DPA_ENABLE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_DBIAS_VOL_GAP esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_DISABLE_BLK_VERSION_MAJOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_DISABLE_WAFER_VERSION_MAJOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_DIS_DIRECT_BOOT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -ESP_EFUSE_DIS_DOWNLOAD_MANUAL_ENCRYPT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -ESP_EFUSE_DIS_DOWNLOAD_MODE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) -ESP_EFUSE_DIS_FORCE_DOWNLOAD esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_DIS_ICACHE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_DIS_PAD_JTAG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -ESP_EFUSE_DIS_TWAI esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_DIS_USB_JTAG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -ESP_EFUSE_DIS_USB_SERIAL_JTAG_DOWNLOAD_MODE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_DIS_USB_SERIAL_JTAG_ROM_PRINT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_DSLP_DBIAS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_ECC_FORCE_CONST_TIME esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_ECDSA_CURVE_MODE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_ECDSA_FORCE_USE_HARDWARE_K esp-idf/efuse/libefuse.a(esp_efuse_table_v0.0_v1.1.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) -ESP_EFUSE_ENABLE_SECURITY_DOWNLOAD esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) -ESP_EFUSE_FLASH_CAP esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_FLASH_TEMP esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_FLASH_TPUW esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_FLASH_VENDOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_FORCE_SEND_RESUME esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_HYS_EN_PAD0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_HYS_EN_PAD1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_JTAG_SEL_ENABLE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_KEY0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_KEY1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_KEY2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_KEY3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_KEY4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_KEY5 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_KEY_PURPOSE_0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_KEY_PURPOSE_1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_KEY_PURPOSE_2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_KEY_PURPOSE_3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_KEY_PURPOSE_4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_KEY_PURPOSE_5 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_MAC esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) -ESP_EFUSE_MAC_EXT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) -ESP_EFUSE_OPTIONAL_UNIQUE_ID esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_PKG_VERSION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) -ESP_EFUSE_POWERGLITCH_EN esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_POWERGLITCH_EN1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_RD_DIS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_RD_DIS_BLOCK_KEY0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_RD_DIS_BLOCK_KEY1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_RD_DIS_BLOCK_KEY2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_RD_DIS_BLOCK_KEY3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_RD_DIS_BLOCK_KEY4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_RD_DIS_BLOCK_KEY5 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_RD_DIS_BLOCK_SYS_DATA2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_RXIQ_0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_RXIQ_1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_RXIQ_VERSION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_SECURE_BOOT_AGGRESSIVE_REVOKE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_SECURE_BOOT_DISABLE_FAST_WAKE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_SECURE_BOOT_EN esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_SECURE_BOOT_KEY_REVOKE0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_SECURE_BOOT_KEY_REVOKE1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_SECURE_BOOT_KEY_REVOKE2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_SECURE_VERSION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_SEC_DPA_LEVEL esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_SOFT_DIS_JTAG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -ESP_EFUSE_SPI_BOOT_CRYPT_CNT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -ESP_EFUSE_SPI_DOWNLOAD_MSPI_DIS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_SYS_DATA_PART2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_TEMP_CALIB esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) -ESP_EFUSE_UART_PRINT_CONTROL esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) -ESP_EFUSE_USB_EXCHG_PINS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_USER_DATA esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_USER_DATA_MAC_CUSTOM esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) -ESP_EFUSE_VDD_SPI_AS_GPIO esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WAFER_VERSION_MAJOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WAFER_VERSION_MINOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WDT_DELAY_SEL esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_ACTIVE_HP_DBIAS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_ACTIVE_LP_DBIAS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_ADC1_AVE_INITCODE_ATTEN0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_ADC1_AVE_INITCODE_ATTEN1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_ADC1_AVE_INITCODE_ATTEN2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_ADC1_AVE_INITCODE_ATTEN3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_ADC1_CH0_ATTEN0_INITCODE_DIFF esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_ADC1_CH1_ATTEN0_INITCODE_DIFF esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_ADC1_CH2_ATTEN0_INITCODE_DIFF esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_ADC1_CH3_ATTEN0_INITCODE_DIFF esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_ADC1_CH4_ATTEN0_INITCODE_DIFF esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_ADC1_HI_DOUT_ATTEN0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_ADC1_HI_DOUT_ATTEN1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_ADC1_HI_DOUT_ATTEN2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_ADC1_HI_DOUT_ATTEN3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_BLK1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_BLK_VERSION_MAJOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_BLK_VERSION_MINOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_BLOCK_KEY0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_BLOCK_KEY1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_BLOCK_KEY2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_BLOCK_KEY3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_BLOCK_KEY4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_BLOCK_KEY5 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_BLOCK_SYS_DATA2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_BLOCK_USR_DATA esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_CRYPT_DPA_ENABLE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_CUSTOM_MAC esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_DBIAS_VOL_GAP esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_DISABLE_BLK_VERSION_MAJOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_DISABLE_WAFER_VERSION_MAJOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_DIS_DIRECT_BOOT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_DIS_DOWNLOAD_MANUAL_ENCRYPT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_DIS_DOWNLOAD_MODE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_DIS_FORCE_DOWNLOAD esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_DIS_ICACHE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -ESP_EFUSE_WR_DIS_DIS_PAD_JTAG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_DIS_TWAI esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_DIS_USB_JTAG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_DIS_USB_SERIAL_JTAG_DOWNLOAD_MODE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_DIS_USB_SERIAL_JTAG_ROM_PRINT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_DSLP_DBIAS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_ECC_FORCE_CONST_TIME esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_ECDSA_CURVE_MODE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_ECDSA_FORCE_USE_HARDWARE_K esp-idf/efuse/libefuse.a(esp_efuse_table_v0.0_v1.1.c.obj) -ESP_EFUSE_WR_DIS_ENABLE_SECURITY_DOWNLOAD esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_FLASH_CAP esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_FLASH_TEMP esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_FLASH_TPUW esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_FLASH_VENDOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_FORCE_SEND_RESUME esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_HYS_EN_PAD0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_HYS_EN_PAD1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_JTAG_SEL_ENABLE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_KEY_PURPOSE_0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_KEY_PURPOSE_1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_KEY_PURPOSE_2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_KEY_PURPOSE_3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_KEY_PURPOSE_4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_KEY_PURPOSE_5 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_MAC esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_MAC_EXT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_OPTIONAL_UNIQUE_ID esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_PKG_VERSION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_POWERGLITCH_EN esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_POWERGLITCH_EN1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_RD_DIS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -ESP_EFUSE_WR_DIS_RXIQ_0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_RXIQ_1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_RXIQ_VERSION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_SECURE_BOOT_AGGRESSIVE_REVOKE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_SECURE_BOOT_DISABLE_FAST_WAKE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_SECURE_BOOT_EN esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_SECURE_BOOT_KEY_REVOKE0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_SECURE_BOOT_KEY_REVOKE1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_SECURE_BOOT_KEY_REVOKE2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_SECURE_VERSION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_SEC_DPA_LEVEL esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_SOFT_DIS_JTAG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_SPI_BOOT_CRYPT_CNT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -ESP_EFUSE_WR_DIS_SPI_DOWNLOAD_MSPI_DIS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_SYS_DATA_PART1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_TEMP_CALIB esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_UART_PRINT_CONTROL esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_USB_EXCHG_PINS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_VDD_SPI_AS_GPIO esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_WAFER_VERSION_MAJOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_WAFER_VERSION_MINOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_WDT_DELAY_SEL esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_XTS_DPA_PSEUDO_LEVEL esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_XTS_DPA_PSEUDO_LEVEL esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -FreeRTOS_openocd_params esp-idf/freertos/libfreertos.a(tasks.c.obj) -GDMA esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) -GPIO esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - esp-idf/hal/libhal.a(gpio_hal.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) -GPIO_HOLD_MASK esp-idf/soc/libsoc.a(gpio_periph.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) -GPIO_PIN_MUX_REG esp-idf/soc/libsoc.a(gpio_periph.c.obj) -GPSPI2 esp-idf/hal/libhal.a(spi_slave_hal.c.obj) - esp-idf/soc/libsoc.a(spi_periph.c.obj) - esp-idf/hal/libhal.a(spi_flash_hal.c.obj) -I2C0 esp-idf/esp_system/libesp_system.a(clk.c.obj) -I2C1 esp-idf/esp_system/libesp_system.a(clk.c.obj) -IEEE802154 esp-idf/ieee802154/libieee802154.a(esp_ieee802154_timer.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_sec.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_ack.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) -LPPERI esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) -LP_ANA_PERI esp-idf/hal/libhal.a(brownout_hal.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -LP_AON esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -LP_CLKRST esp-idf/hal/libhal.a(modem_clock_hal.c.obj) - esp-idf/hal/libhal.a(clk_tree_hal.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) -LP_TIMER esp-idf/hal/libhal.a(lp_timer_hal.c.obj) -LP_WDT esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) - esp-idf/esp_system/libesp_system.a(panic.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) - esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) -MODEM_CLOCK_instance esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) -MODEM_LPCON esp-idf/esp_rom/libesp_rom.a(esp_rom_regi2c_esp32h2.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) -MODEM_SYSCON esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) -NVSHandleEntry::s_nvs_next_handle esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -PAU esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) -PAU_instance esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) -PCR esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) - esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - esp-idf/hal/libhal.a(pau_hal.c.obj) - esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/hal/libhal.a(clk_tree_hal.c.obj) - esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/freertos/libfreertos.a(port_systick.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) - esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) - esp-idf/esp_system/libesp_system.a(system_internal.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) -PMU esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -PMU_instance esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) -RFChannelSel C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_api.o) -ROM_Boot_Cache_Init esp-idf/hal/libhal.a(mmu_hal.c.obj) -SPIMEM0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) -SPIMEM1 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) -SYSTIMER esp-idf/esp_rom/libesp_rom.a(esp_rom_systimer.c.obj) -SysTickIsrHandler esp-idf/freertos/libfreertos.a(port_systick.c.obj) -TIMERG0 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) - esp-idf/esp_system/libesp_system.a(panic.c.obj) - esp-idf/esp_system/libesp_system.a(system_internal.c.obj) -TIMERG1 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) - esp-idf/esp_system/libesp_system.a(panic.c.obj) - esp-idf/esp_system/libesp_system.a(system_internal.c.obj) -UART0 esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -UART1 esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -USB_SERIAL_JTAG esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) -_Balloc C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-mprec.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-gdtoa-gethex.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtod.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-dtoa.o) -_Bfree C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-mprec.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-gdtoa-gethex.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtod.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-dtoa.o) -_PathLocale C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-locale.o) -__adddf3 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(adddf3.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtod.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-dtoa.o) -__any_on C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-mprec.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-gdtoa-gethex.o) -__ascii_mbtowc C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-mbtowc_r.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-locale.o) -__ascii_wctomb C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-wctomb_r.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-locale.o) -__ashldi3 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ashldi3.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatdidf.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(fixdfdi.o) - esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - esp-idf/openthread/libopenthread.a(changed_props_set.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -__assert esp-idf/newlib/libnewlib.a(assert.c.obj) -__assert_func esp-idf/newlib/libnewlib.a(assert.c.obj) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-gdtoa-gethex.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-mprec.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-dtoa.o) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_ack.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_misc.c.obj) - esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_settings.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_task_queue.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_lock.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - esp-idf/esp_rom/libesp_rom.a(esp_rom_regi2c_esp32h2.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/riscv/libriscv.a(interrupt_plic.c.obj) - esp-idf/riscv/libriscv.a(interrupt.c.obj) - esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - esp-idf/newlib/libnewlib.a(locks.c.obj) - esp-idf/freertos/libfreertos.a(port_common.c.obj) - esp-idf/freertos/libfreertos.a(port.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/freertos/libfreertos.a(app_startup.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - esp-idf/esp_security/libesp_security.a(esp_dpa_protection.c.obj) - esp-idf/heap/libheap.a(heap_caps_base.c.obj) - esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - esp-idf/heap/libheap.a(heap_caps_init.c.obj) - esp-idf/heap/libheap.a(heap_caps.c.obj) - esp-idf/esp_rom/libesp_rom.a(esp_rom_multi_heap.c.obj) - esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) - esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) -__atomic_add_fetch_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_always_lock_free esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_and_fetch_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_compare_exchange esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_compare_exchange_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_exchange_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_fetch_add_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_fetch_and_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) -__atomic_fetch_nand_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_fetch_or_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) -__atomic_fetch_sub_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_fetch_xor_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_is_lock_free esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_load esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_load_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) -__atomic_nand_fetch_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_or_fetch_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_store esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_store_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_sub_fetch_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_xor_fetch_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__b2d C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-mprec.o) -__bswapdi2 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_bswapdi2.o) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) -__clz_tab C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clz.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_umoddi3.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_udivdi3.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_moddi3.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_divdi3.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ctzdi2.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ctzsi2.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clzsi2.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ffsdi2.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ffssi2.o) -__clzsi2 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_clzsi2.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(extenddftf2.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatdidf.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatunsidf.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(divdf3.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(adddf3.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pwdet.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatsisf.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatsidf.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(subdf3.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(muldf3.o) - esp-idf/freertos/libfreertos.a(tasks.c.obj) -__copybits C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-mprec.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtod.o) -__ctzdi2 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ctzdi2.o) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -__ctzsi2 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ctzsi2.o) - esp-idf/hal/libhal.a(apm_hal.c.obj) -__cvt C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf_float.o) -__cxa_begin_catch C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_catch.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opvnt.o) -__cxa_end_catch C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_catch.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opvnt.o) -__cxa_get_exception_ptr C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_catch.o) -__cxa_get_globals C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_catch.o) -__cxa_get_globals_fast C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_catch.o) -__cxa_guard_abort esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) -__cxa_guard_acquire esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) -__cxa_guard_dummy esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) -__cxa_guard_release esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) -__cxa_pure_virtual C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) -__cxx_eh_arena_size_get esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) -__cxx_init_dummy esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) -__cxxabiv1::__class_type_info::__do_catch(std::type_info const*, void**, unsigned int) const C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(class_type_info.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) -__cxxabiv1::__class_type_info::__do_dyncast(int, __cxxabiv1::__class_type_info::__sub_kind, __cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info::__dyncast_result&) const C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(class_type_info.o) -__cxxabiv1::__class_type_info::__do_find_public_src(int, void const*, __cxxabiv1::__class_type_info const*, void const*) const C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(class_type_info.o) -__cxxabiv1::__class_type_info::__do_upcast(__cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info::__upcast_result&) const C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(class_type_info.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) -__cxxabiv1::__class_type_info::__do_upcast(__cxxabiv1::__class_type_info const*, void**) const C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(class_type_info.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) -__cxxabiv1::__class_type_info::~__class_type_info() C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(class_type_info.o) -__cxxabiv1::__class_type_info::~__class_type_info() C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(class_type_info.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) -__cxxabiv1::__class_type_info::~__class_type_info() C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(class_type_info.o) -__cxxabiv1::__forced_unwind::~__forced_unwind() C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) -__cxxabiv1::__forced_unwind::~__forced_unwind() C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) -__cxxabiv1::__forced_unwind::~__forced_unwind() C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) -__cxxabiv1::__foreign_exception::~__foreign_exception() C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) -__cxxabiv1::__foreign_exception::~__foreign_exception() C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) -__cxxabiv1::__foreign_exception::~__foreign_exception() C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) -__cxxabiv1::__si_class_type_info::__do_dyncast(int, __cxxabiv1::__class_type_info::__sub_kind, __cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info::__dyncast_result&) const C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) -__cxxabiv1::__si_class_type_info::__do_find_public_src(int, void const*, __cxxabiv1::__class_type_info const*, void const*) const C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) -__cxxabiv1::__si_class_type_info::__do_upcast(__cxxabiv1::__class_type_info const*, void const*, __cxxabiv1::__class_type_info::__upcast_result&) const C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) -__cxxabiv1::__si_class_type_info::~__si_class_type_info() C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) -__cxxabiv1::__si_class_type_info::~__si_class_type_info() C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) -__cxxabiv1::__si_class_type_info::~__si_class_type_info() C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) -__cxxabiv1::__terminate(void (*)()) C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) -__cxxabiv1::__terminate_handler C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_term_handler.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) -__cxxabiv1::__unexpected(void (*)()) C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) -__cxxabiv1::__unexpected_handler C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_unex_handler.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) -__d2b C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-mprec.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtod.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-dtoa.o) -__default_global_locale C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-locale.o) -__divdf3 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(divdf3.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtod.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-mprec.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-dtoa.o) -__divdi3 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_divdi3.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_cal.o) - esp-idf/openthread/libopenthread.a(esp_openthread_alarm.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) - esp-idf/newlib/libnewlib.a(time.c.obj) -__dso_handle esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) -__eh_globals_init::_S_init C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) -__eqdf2 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(eqdf2.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtod.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-dtoa.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf_float.o) -__errno C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-errno.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtol.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtod.o) - esp-idf/openthread/libopenthread.a(spinel.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_uart.c.obj) - esp-idf/vfs/libvfs.a(vfs_eventfd.c.obj) - esp-idf/vfs/libvfs.a(nullfs.c.obj) - esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) - esp-idf/newlib/libnewlib.a(random.c.obj) - esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) - esp-idf/newlib/libnewlib.a(time.c.obj) - esp-idf/newlib/libnewlib.a(getentropy.c.obj) -__exponent C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf_float.o) -__extenddftf2 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(extenddftf2.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfscanf_float.o) -__ffsdi2 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ffsdi2.o) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) -__ffssi2 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_ffssi2.o) - esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) -__fixdfdi C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(fixdfdi.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtod.o) -__fixdfsi C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(fixdfsi.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-dtoa.o) - esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) -__fixunsdfsi C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(fixunsdfsi.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtod.o) -__floatdidf C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatdidf.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtod.o) -__floatsidf C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatsidf.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-dtoa.o) - esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) -__floatsisf C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatsisf.o) - esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) -__floatunsidf C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatunsidf.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtod.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-dtoa.o) -__fp_lock_all C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-findfp.o) -__fp_unlock_all C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-findfp.o) -__frame_state_for(void*, frame_state*) esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) -__gedf2 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(gedf2.o) -__gethex C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-gdtoa-gethex.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtod.o) -__getreent esp-idf/freertos/libfreertos.a(tasks.c.obj) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-locale.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-refill.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtol.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtod.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-syswrite.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysread.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysopen.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysgettod.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysfcntl.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysclose.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-errno.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fseeko.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-wsetup.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-wbuf.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-vsnprintf.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sprintf.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-snprintf.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-puts.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-putc.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-printf.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fseek.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fputs.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fputc.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fprintf.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fopen.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fflush.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fclose.o) - esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - esp-idf/newlib/libnewlib.a(reent_init.c.obj) - esp-idf/newlib/libnewlib.a(syscalls.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) -__global_locale_ptr C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-locale.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-wctomb_r.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-mbtowc_r.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtod.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-localeconv.o) -__global_pointer$ esp-idf/freertos/libfreertos.a(port.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -__gtdf2 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(gedf2.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtod.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-dtoa.o) -__hexdig_fun C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-gdtoa-gethex.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-gdtoa-hexnan.o) -__hexnan C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-gdtoa-hexnan.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtod.o) -__hi0bits C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-mprec.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-gdtoa-gethex.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-dtoa.o) -__i2b C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-mprec.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtod.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-dtoa.o) -__init_array_end esp-idf/esp_system/libesp_system.a(startup.c.obj) -__init_array_start esp-idf/esp_system/libesp_system.a(startup.c.obj) -__init_priority_array_end esp-idf/esp_system/libesp_system.a(startup.c.obj) -__init_priority_array_start esp-idf/esp_system/libesp_system.a(startup.c.obj) -__itoa C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-itoa.o) -__ledf2 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(ledf2.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtod.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-dtoa.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf_float.o) -__lesf2 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(lesf2.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtod.o) -__lo0bits C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-mprec.o) -__locale_mb_cur_max C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-locale.o) -__localeconv_l C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-localeconv.o) -__lock___arc4random_mutex esp-idf/newlib/libnewlib.a(locks.c.obj) -__lock___at_quick_exit_mutex esp-idf/newlib/libnewlib.a(locks.c.obj) -__lock___atexit_recursive_mutex esp-idf/newlib/libnewlib.a(locks.c.obj) -__lock___dd_hash_mutex esp-idf/newlib/libnewlib.a(locks.c.obj) -__lock___env_recursive_mutex esp-idf/newlib/libnewlib.a(locks.c.obj) -__lock___malloc_recursive_mutex esp-idf/newlib/libnewlib.a(locks.c.obj) -__lock___sfp_recursive_mutex esp-idf/newlib/libnewlib.a(locks.c.obj) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-findfp.o) -__lock___sinit_recursive_mutex esp-idf/newlib/libnewlib.a(locks.c.obj) -__lock___tz_mutex esp-idf/newlib/libnewlib.a(locks.c.obj) -__lshift C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-mprec.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-gdtoa-gethex.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtod.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-dtoa.o) -__lshrdi3 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_lshrdi3.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(floatdidf.o) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - esp-idf/openthread/libopenthread.a(changed_props_set.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -__ltdf2 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(ledf2.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtod.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-dtoa.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf_float.o) -__ltsf2 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(lesf2.o) -__match C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-gdtoa-hexnan.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtod.o) -__mcmp C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-mprec.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtod.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-dtoa.o) -__mdiff C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-mprec.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtod.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-dtoa.o) -__moddi3 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_moddi3.o) - esp-idf/openthread/libopenthread.a(esp_openthread_alarm.c.obj) - esp-idf/newlib/libnewlib.a(time.c.obj) -__mprec_bigtens C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-mprec.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtod.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-dtoa.o) -__mprec_tens C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-mprec.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtod.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-dtoa.o) -__mprec_tinytens C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-mprec.o) -__muldf3 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(muldf3.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtod.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-mprec.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-dtoa.o) - esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) -__multadd C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-mprec.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-dtoa.o) -__multiply C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-mprec.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtod.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-dtoa.o) -__nedf2 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(eqdf2.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-dtoa.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf_float.o) -__popcountsi2 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_popcountsi2.o) - esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -__pow5mult C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-mprec.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtod.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-dtoa.o) -__ratio C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-mprec.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtod.o) -__retarget_lock_acquire esp-idf/newlib/libnewlib.a(locks.c.obj) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -__retarget_lock_acquire_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fseeko.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-puts.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-putc.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fputs.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fputc.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fopen.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-findfp.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fflush.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fclose.o) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -__retarget_lock_close esp-idf/newlib/libnewlib.a(locks.c.obj) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -__retarget_lock_close_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fopen.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fclose.o) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -__retarget_lock_init esp-idf/newlib/libnewlib.a(locks.c.obj) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -__retarget_lock_init_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-findfp.o) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -__retarget_lock_release esp-idf/newlib/libnewlib.a(locks.c.obj) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -__retarget_lock_release_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fseeko.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-puts.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-putc.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fputs.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fputc.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fopen.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-findfp.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fflush.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fclose.o) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -__retarget_lock_try_acquire esp-idf/newlib/libnewlib.a(locks.c.obj) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -__retarget_lock_try_acquire_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -__riscv_restore_0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(save-restore.o) - esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_init_esp32hxx.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_event.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) - esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) - esp-idf/openthread/libopenthread.a(changed_props_set.cpp.obj) - esp-idf/openthread/libopenthread.a(spinel_encoder.cpp.obj) - esp-idf/openthread/libopenthread.a(spinel.c.obj) - esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) - esp-idf/openthread/libopenthread.a(crypto_platform.cpp.obj) - esp-idf/openthread/libopenthread.a(aes_ecb.cpp.obj) - esp-idf/openthread/libopenthread.a(aes_ccm.cpp.obj) - esp-idf/openthread/libopenthread.a(string.cpp.obj) - esp-idf/openthread/libopenthread.a(random.cpp.obj) - esp-idf/openthread/libopenthread.a(frame_builder.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_misc.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_ncp.cpp.obj) - esp-idf/openthread/libopenthread.a(radio_platform.cpp.obj) - esp-idf/openthread/libopenthread.a(radio.cpp.obj) - esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - esp-idf/openthread/libopenthread.a(mac_types.cpp.obj) - esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - esp-idf/openthread/libopenthread.a(link_raw.cpp.obj) - esp-idf/openthread/libopenthread.a(timer.cpp.obj) - esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_settings.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_alarm.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_task_queue.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_platform.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_lock.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread.cpp.obj) - esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - esp-idf/hal/libhal.a(modem_clock_hal.c.obj) - esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/hal/libhal.a(clk_tree_hal.c.obj) - esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - esp-idf/hal/libhal.a(mmu_hal.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/riscv/libriscv.a(interrupt.c.obj) - esp-idf/main/libmain.a(esp_ot_rcp.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - esp-idf/vfs/libvfs.a(nullfs.c.obj) - esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) - esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) - esp-idf/newlib/libnewlib.a(syscalls.c.obj) - esp-idf/newlib/libnewlib.a(time.c.obj) - esp-idf/newlib/libnewlib.a(getentropy.c.obj) - esp-idf/newlib/libnewlib.a(locks.c.obj) - esp-idf/newlib/libnewlib.a(init.c.obj) - esp-idf/freertos/libfreertos.a(port.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/freertos/libfreertos.a(app_startup.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_clock.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - esp-idf/esp_security/libesp_security.a(init.c.obj) - esp-idf/heap/libheap.a(heap_caps_base.c.obj) - esp-idf/heap/libheap.a(multi_heap.c.obj) - esp-idf/heap/libheap.a(heap_caps_init.c.obj) - esp-idf/heap/libheap.a(heap_caps.c.obj) - esp-idf/log/liblog.a(util.c.obj) - esp-idf/hal/libhal.a(cache_hal.c.obj) - esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/esp_rom/libesp_rom.a(esp_rom_multi_heap.c.obj) - esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) - esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) - esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - esp-idf/esp_system/libesp_system.a(panic.c.obj) - esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) - esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) - esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) -__riscv_restore_1 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(save-restore.o) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - esp-idf/esp_phy/libesp_phy.a(btbb_init.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_timer.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_sec.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - esp-idf/log/liblog.a(log_timestamp.c.obj) - esp-idf/hal/libhal.a(adc_hal_common.c.obj) - esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - esp-idf/openthread/libopenthread.a(changed_props_set.cpp.obj) - esp-idf/openthread/libopenthread.a(spinel_encoder.cpp.obj) - esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) - esp-idf/openthread/libopenthread.a(crypto_platform.cpp.obj) - esp-idf/openthread/libopenthread.a(aes_ccm.cpp.obj) - esp-idf/openthread/libopenthread.a(string.cpp.obj) - esp-idf/openthread/libopenthread.a(random.cpp.obj) - esp-idf/openthread/libopenthread.a(frame_builder.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_ncp_hdlc.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_ncp.cpp.obj) - esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - esp-idf/openthread/libopenthread.a(mac_types.cpp.obj) - esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - esp-idf/openthread/libopenthread.a(link_raw.cpp.obj) - esp-idf/openthread/libopenthread.a(instance.cpp.obj) - esp-idf/openthread/libopenthread.a(timer.cpp.obj) - esp-idf/openthread/libopenthread.a(tasklet.cpp.obj) - esp-idf/openthread/libopenthread.a(tasklet_api.cpp.obj) - esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_uart.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_task_queue.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_lock.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread.cpp.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) - esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - esp-idf/hal/libhal.a(clk_tree_hal.c.obj) - esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - esp-idf/esp_rom/libesp_rom.a(esp_rom_usb_serial.c.obj) - esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - esp-idf/esp_system/libesp_system.a(esp_system_console.c.obj) - esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/vfs/libvfs.a(nullfs.c.obj) - esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) - esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) - esp-idf/newlib/libnewlib.a(random.c.obj) - esp-idf/newlib/libnewlib.a(reent_init.c.obj) - esp-idf/newlib/libnewlib.a(syscalls.c.obj) - esp-idf/newlib/libnewlib.a(time.c.obj) - esp-idf/newlib/libnewlib.a(locks.c.obj) - esp-idf/newlib/libnewlib.a(heap.c.obj) - esp-idf/freertos/libfreertos.a(port.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - esp-idf/heap/libheap.a(heap_caps_init.c.obj) - esp-idf/heap/libheap.a(heap_caps.c.obj) - esp-idf/hal/libhal.a(cache_hal.c.obj) - esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/esp_rom/libesp_rom.a(esp_rom_multi_heap.c.obj) - esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - esp-idf/esp_system/libesp_system.a(panic.c.obj) - esp-idf/esp_system/libesp_system.a(system_internal.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) -__riscv_restore_10 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(save-restore.o) - esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -__riscv_restore_11 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(save-restore.o) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) -__riscv_restore_12 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(save-restore.o) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - esp-idf/openthread/libopenthread.a(spinel.c.obj) - esp-idf/openthread/libopenthread.a(aes_ccm.cpp.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - esp-idf/vfs/libvfs.a(vfs_eventfd.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -__riscv_restore_2 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(save-restore.o) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - esp-idf/esp_phy/libesp_phy.a(btbb_init.c.obj) - esp-idf/hal/libhal.a(sha_hal.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_frame.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_ack.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - esp-idf/openthread/libopenthread.a(spinel_encoder.cpp.obj) - esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - esp-idf/openthread/libopenthread.a(hdlc.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) - esp-idf/openthread/libopenthread.a(aes_ccm.cpp.obj) - esp-idf/openthread/libopenthread.a(string.cpp.obj) - esp-idf/openthread/libopenthread.a(random.cpp.obj) - esp-idf/openthread/libopenthread.a(frame_builder.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_ncp.cpp.obj) - esp-idf/openthread/libopenthread.a(radio.cpp.obj) - esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - esp-idf/openthread/libopenthread.a(mac_types.cpp.obj) - esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - esp-idf/openthread/libopenthread.a(link_raw.cpp.obj) - esp-idf/openthread/libopenthread.a(instance.cpp.obj) - esp-idf/openthread/libopenthread.a(timer.cpp.obj) - esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_uart.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_spi_slave.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_task_queue.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_platform.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_lock.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) - esp-idf/hal/libhal.a(brownout_hal.c.obj) - esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - esp-idf/esp_rom/libesp_rom.a(esp_rom_regi2c_esp32h2.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/vfs/libvfs.a(nullfs.c.obj) - esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) - esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - esp-idf/newlib/libnewlib.a(locks.c.obj) - esp-idf/freertos/libfreertos.a(port_systick.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - esp-idf/heap/libheap.a(heap_caps_base.c.obj) - esp-idf/heap/libheap.a(multi_heap.c.obj) - esp-idf/heap/libheap.a(heap_caps.c.obj) - esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) - esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - esp-idf/esp_system/libesp_system.a(panic.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) -__riscv_restore_3 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(save-restore.o) - esp-idf/esp_phy/libesp_phy.a(phy_init_esp32hxx.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_util.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_frame.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - esp-idf/hal/libhal.a(aes_hal.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - esp-idf/openthread/libopenthread.a(spinel_encoder.cpp.obj) - esp-idf/openthread/libopenthread.a(spinel.c.obj) - esp-idf/openthread/libopenthread.a(hdlc.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(string.cpp.obj) - esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - esp-idf/openthread/libopenthread.a(timer.cpp.obj) - esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_spi_slave.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_settings.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_alarm.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_platform.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread.cpp.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - esp-idf/vfs/libvfs.a(vfs_eventfd.c.obj) - esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - esp-idf/hal/libhal.a(apm_hal.c.obj) - esp-idf/esp_rom/libesp_rom.a(esp_rom_regi2c_esp32h2.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - esp-idf/newlib/libnewlib.a(reent_init.c.obj) - esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - esp-idf/newlib/libnewlib.a(time.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_clock.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - esp-idf/heap/libheap.a(heap_caps_base.c.obj) - esp-idf/heap/libheap.a(heap_caps.c.obj) - esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) - esp-idf/esp_system/libesp_system.a(startup.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) -__riscv_restore_4 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(save-restore.o) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - esp-idf/hal/libhal.a(spi_slave_hal_iram.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_frame.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - esp-idf/hal/libhal.a(aes_hal.c.obj) - esp-idf/hal/libhal.a(adc_hal_common.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - esp-idf/openthread/libopenthread.a(hdlc.cpp.obj) - esp-idf/openthread/libopenthread.a(log.cpp.obj) - esp-idf/openthread/libopenthread.a(logging_api.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) - esp-idf/openthread/libopenthread.a(string.cpp.obj) - esp-idf/openthread/libopenthread.a(frame_builder.cpp.obj) - esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_settings.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_platform.cpp.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - esp-idf/vfs/libvfs.a(vfs_eventfd.c.obj) - esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) - esp-idf/hal/libhal.a(apm_hal.c.obj) - esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - esp-idf/hal/libhal.a(mmu_hal.c.obj) - esp-idf/esp_rom/libesp_rom.a(esp_rom_regi2c_esp32h2.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) - esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) - esp-idf/newlib/libnewlib.a(time.c.obj) - esp-idf/newlib/libnewlib.a(locks.c.obj) - esp-idf/freertos/libfreertos.a(port_systick.c.obj) - esp-idf/freertos/libfreertos.a(port_common.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - esp-idf/heap/libheap.a(heap_caps.c.obj) - esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -__riscv_restore_5 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(save-restore.o) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - esp-idf/openthread/libopenthread.a(log.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(string.cpp.obj) - esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_alarm.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_platform.cpp.obj) - esp-idf/vfs/libvfs.a(vfs_eventfd.c.obj) - esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - esp-idf/heap/libheap.a(heap_caps_init.c.obj) - esp-idf/heap/libheap.a(heap_caps.c.obj) - esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -__riscv_restore_6 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(save-restore.o) - esp-idf/hal/libhal.a(spi_slave_hal_iram.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_frame.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_ack.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(aes_ccm.cpp.obj) - esp-idf/openthread/libopenthread.a(string.cpp.obj) - esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_spi_slave.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread.cpp.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - esp-idf/vfs/libvfs.a(vfs_eventfd.c.obj) - esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - esp-idf/hal/libhal.a(mmu_hal.c.obj) - esp-idf/esp_rom/libesp_rom.a(esp_rom_regi2c_esp32h2.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) - esp-idf/freertos/libfreertos.a(port.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/heap/libheap.a(heap_caps_base.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -__riscv_restore_7 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(save-restore.o) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_ack.c.obj) - esp-idf/hal/libhal.a(adc_hal_common.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - esp-idf/openthread/libopenthread.a(hdlc.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - esp-idf/openthread/libopenthread.a(timer.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_platform.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread.cpp.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - esp-idf/vfs/libvfs.a(vfs_eventfd.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) - esp-idf/newlib/libnewlib.a(time.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -__riscv_restore_8 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(save-restore.o) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_ack.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - esp-idf/openthread/libopenthread.a(aes_ccm.cpp.obj) - esp-idf/openthread/libopenthread.a(link_raw.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_settings.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - esp-idf/vfs/libvfs.a(vfs_eventfd.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) - esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -__riscv_restore_9 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(save-restore.o) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - esp-idf/openthread/libopenthread.a(changed_props_set.cpp.obj) - esp-idf/openthread/libopenthread.a(log.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) -__riscv_save_0 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(save-restore.o) - esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_init_esp32hxx.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_event.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) - esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) - esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) - esp-idf/openthread/libopenthread.a(changed_props_set.cpp.obj) - esp-idf/openthread/libopenthread.a(spinel_encoder.cpp.obj) - esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - esp-idf/openthread/libopenthread.a(spinel.c.obj) - esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) - esp-idf/openthread/libopenthread.a(crypto_platform.cpp.obj) - esp-idf/openthread/libopenthread.a(aes_ecb.cpp.obj) - esp-idf/openthread/libopenthread.a(aes_ccm.cpp.obj) - esp-idf/openthread/libopenthread.a(string.cpp.obj) - esp-idf/openthread/libopenthread.a(random.cpp.obj) - esp-idf/openthread/libopenthread.a(frame_builder.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_misc.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_ncp.cpp.obj) - esp-idf/openthread/libopenthread.a(radio_platform.cpp.obj) - esp-idf/openthread/libopenthread.a(radio.cpp.obj) - esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - esp-idf/openthread/libopenthread.a(mac_types.cpp.obj) - esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - esp-idf/openthread/libopenthread.a(link_raw.cpp.obj) - esp-idf/openthread/libopenthread.a(timer.cpp.obj) - esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_settings.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_alarm.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_task_queue.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_platform.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_lock.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread.cpp.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - esp-idf/hal/libhal.a(modem_clock_hal.c.obj) - esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/hal/libhal.a(clk_tree_hal.c.obj) - esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - esp-idf/hal/libhal.a(mmu_hal.c.obj) - esp-idf/esp_rom/libesp_rom.a(esp_rom_regi2c_esp32h2.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/riscv/libriscv.a(interrupt_plic.c.obj) - esp-idf/riscv/libriscv.a(interrupt.c.obj) - esp-idf/main/libmain.a(esp_ot_rcp.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - esp-idf/vfs/libvfs.a(nullfs.c.obj) - esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) - esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) - esp-idf/newlib/libnewlib.a(syscalls.c.obj) - esp-idf/newlib/libnewlib.a(time.c.obj) - esp-idf/newlib/libnewlib.a(getentropy.c.obj) - esp-idf/newlib/libnewlib.a(locks.c.obj) - esp-idf/newlib/libnewlib.a(assert.c.obj) - esp-idf/newlib/libnewlib.a(init.c.obj) - esp-idf/freertos/libfreertos.a(port.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/freertos/libfreertos.a(app_startup.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_clock.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - esp-idf/esp_security/libesp_security.a(esp_dpa_protection.c.obj) - esp-idf/esp_security/libesp_security.a(init.c.obj) - esp-idf/heap/libheap.a(heap_caps_base.c.obj) - esp-idf/heap/libheap.a(multi_heap.c.obj) - esp-idf/heap/libheap.a(heap_caps_init.c.obj) - esp-idf/heap/libheap.a(heap_caps.c.obj) - esp-idf/log/liblog.a(util.c.obj) - esp-idf/hal/libhal.a(cache_hal.c.obj) - esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/esp_rom/libesp_rom.a(esp_rom_multi_heap.c.obj) - esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) - esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) - esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - esp-idf/esp_system/libesp_system.a(panic.c.obj) - esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) - esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) - esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) -__riscv_save_1 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(save-restore.o) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - esp-idf/esp_phy/libesp_phy.a(btbb_init.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_timer.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_sec.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - esp-idf/log/liblog.a(log_timestamp.c.obj) - esp-idf/hal/libhal.a(adc_hal_common.c.obj) - esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - esp-idf/openthread/libopenthread.a(changed_props_set.cpp.obj) - esp-idf/openthread/libopenthread.a(spinel_encoder.cpp.obj) - esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) - esp-idf/openthread/libopenthread.a(crypto_platform.cpp.obj) - esp-idf/openthread/libopenthread.a(aes_ccm.cpp.obj) - esp-idf/openthread/libopenthread.a(string.cpp.obj) - esp-idf/openthread/libopenthread.a(random.cpp.obj) - esp-idf/openthread/libopenthread.a(frame_builder.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_ncp_hdlc.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_ncp.cpp.obj) - esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - esp-idf/openthread/libopenthread.a(mac_types.cpp.obj) - esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - esp-idf/openthread/libopenthread.a(link_raw.cpp.obj) - esp-idf/openthread/libopenthread.a(instance.cpp.obj) - esp-idf/openthread/libopenthread.a(timer.cpp.obj) - esp-idf/openthread/libopenthread.a(tasklet.cpp.obj) - esp-idf/openthread/libopenthread.a(tasklet_api.cpp.obj) - esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_uart.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_task_queue.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_lock.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread.cpp.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) - esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - esp-idf/hal/libhal.a(clk_tree_hal.c.obj) - esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - esp-idf/esp_rom/libesp_rom.a(esp_rom_usb_serial.c.obj) - esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - esp-idf/esp_system/libesp_system.a(esp_system_console.c.obj) - esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/vfs/libvfs.a(nullfs.c.obj) - esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) - esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) - esp-idf/newlib/libnewlib.a(random.c.obj) - esp-idf/newlib/libnewlib.a(reent_init.c.obj) - esp-idf/newlib/libnewlib.a(syscalls.c.obj) - esp-idf/newlib/libnewlib.a(time.c.obj) - esp-idf/newlib/libnewlib.a(locks.c.obj) - esp-idf/newlib/libnewlib.a(heap.c.obj) - esp-idf/newlib/libnewlib.a(assert.c.obj) - esp-idf/freertos/libfreertos.a(port.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - esp-idf/heap/libheap.a(heap_caps_init.c.obj) - esp-idf/heap/libheap.a(heap_caps.c.obj) - esp-idf/hal/libhal.a(cache_hal.c.obj) - esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/esp_rom/libesp_rom.a(esp_rom_multi_heap.c.obj) - esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - esp-idf/esp_system/libesp_system.a(panic.c.obj) - esp-idf/esp_system/libesp_system.a(system_internal.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) - esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) -__riscv_save_10 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(save-restore.o) - esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -__riscv_save_11 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(save-restore.o) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) -__riscv_save_12 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(save-restore.o) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - esp-idf/openthread/libopenthread.a(spinel.c.obj) - esp-idf/openthread/libopenthread.a(aes_ccm.cpp.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - esp-idf/vfs/libvfs.a(vfs_eventfd.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -__riscv_save_2 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(save-restore.o) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - esp-idf/esp_phy/libesp_phy.a(btbb_init.c.obj) - esp-idf/hal/libhal.a(sha_hal.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_frame.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_ack.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - esp-idf/openthread/libopenthread.a(spinel_encoder.cpp.obj) - esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - esp-idf/openthread/libopenthread.a(hdlc.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) - esp-idf/openthread/libopenthread.a(aes_ccm.cpp.obj) - esp-idf/openthread/libopenthread.a(string.cpp.obj) - esp-idf/openthread/libopenthread.a(random.cpp.obj) - esp-idf/openthread/libopenthread.a(frame_builder.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_ncp.cpp.obj) - esp-idf/openthread/libopenthread.a(radio.cpp.obj) - esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - esp-idf/openthread/libopenthread.a(mac_types.cpp.obj) - esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - esp-idf/openthread/libopenthread.a(link_raw.cpp.obj) - esp-idf/openthread/libopenthread.a(instance.cpp.obj) - esp-idf/openthread/libopenthread.a(timer.cpp.obj) - esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_uart.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_spi_slave.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_task_queue.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_platform.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_lock.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) - esp-idf/hal/libhal.a(brownout_hal.c.obj) - esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - esp-idf/esp_rom/libesp_rom.a(esp_rom_regi2c_esp32h2.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/vfs/libvfs.a(nullfs.c.obj) - esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) - esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - esp-idf/newlib/libnewlib.a(locks.c.obj) - esp-idf/freertos/libfreertos.a(port_systick.c.obj) - esp-idf/freertos/libfreertos.a(port.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - esp-idf/heap/libheap.a(heap_caps_base.c.obj) - esp-idf/heap/libheap.a(multi_heap.c.obj) - esp-idf/heap/libheap.a(heap_caps.c.obj) - esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) - esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - esp-idf/esp_system/libesp_system.a(panic.c.obj) - esp-idf/esp_system/libesp_system.a(startup.c.obj) - esp-idf/esp_system/libesp_system.a(esp_system.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) -__riscv_save_3 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(save-restore.o) - esp-idf/esp_phy/libesp_phy.a(phy_init_esp32hxx.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_util.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_frame.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - esp-idf/hal/libhal.a(aes_hal.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - esp-idf/openthread/libopenthread.a(spinel_encoder.cpp.obj) - esp-idf/openthread/libopenthread.a(spinel.c.obj) - esp-idf/openthread/libopenthread.a(hdlc.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(string.cpp.obj) - esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - esp-idf/openthread/libopenthread.a(timer.cpp.obj) - esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_spi_slave.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_settings.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_alarm.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_platform.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread.cpp.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - esp-idf/vfs/libvfs.a(vfs_eventfd.c.obj) - esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - esp-idf/hal/libhal.a(apm_hal.c.obj) - esp-idf/esp_rom/libesp_rom.a(esp_rom_regi2c_esp32h2.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - esp-idf/newlib/libnewlib.a(reent_init.c.obj) - esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - esp-idf/newlib/libnewlib.a(time.c.obj) - esp-idf/newlib/libnewlib.a(abort.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_clock.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - esp-idf/heap/libheap.a(heap_caps_base.c.obj) - esp-idf/heap/libheap.a(heap_caps.c.obj) - esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) - esp-idf/esp_system/libesp_system.a(startup.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) -__riscv_save_4 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(save-restore.o) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - esp-idf/hal/libhal.a(spi_slave_hal_iram.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_frame.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - esp-idf/hal/libhal.a(aes_hal.c.obj) - esp-idf/hal/libhal.a(adc_hal_common.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - esp-idf/openthread/libopenthread.a(hdlc.cpp.obj) - esp-idf/openthread/libopenthread.a(log.cpp.obj) - esp-idf/openthread/libopenthread.a(logging_api.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) - esp-idf/openthread/libopenthread.a(string.cpp.obj) - esp-idf/openthread/libopenthread.a(frame_builder.cpp.obj) - esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_settings.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_platform.cpp.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - esp-idf/vfs/libvfs.a(vfs_eventfd.c.obj) - esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) - esp-idf/hal/libhal.a(apm_hal.c.obj) - esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - esp-idf/hal/libhal.a(mmu_hal.c.obj) - esp-idf/esp_rom/libesp_rom.a(esp_rom_regi2c_esp32h2.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) - esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) - esp-idf/newlib/libnewlib.a(time.c.obj) - esp-idf/newlib/libnewlib.a(locks.c.obj) - esp-idf/freertos/libfreertos.a(port_systick.c.obj) - esp-idf/freertos/libfreertos.a(port_common.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - esp-idf/heap/libheap.a(heap_caps.c.obj) - esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -__riscv_save_5 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(save-restore.o) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - esp-idf/openthread/libopenthread.a(log.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(string.cpp.obj) - esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_alarm.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_platform.cpp.obj) - esp-idf/vfs/libvfs.a(vfs_eventfd.c.obj) - esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - esp-idf/heap/libheap.a(heap_caps_init.c.obj) - esp-idf/heap/libheap.a(heap_caps.c.obj) - esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -__riscv_save_6 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(save-restore.o) - esp-idf/hal/libhal.a(spi_slave_hal_iram.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_frame.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_ack.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(aes_ccm.cpp.obj) - esp-idf/openthread/libopenthread.a(string.cpp.obj) - esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_spi_slave.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread.cpp.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - esp-idf/vfs/libvfs.a(vfs_eventfd.c.obj) - esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - esp-idf/hal/libhal.a(mmu_hal.c.obj) - esp-idf/esp_rom/libesp_rom.a(esp_rom_regi2c_esp32h2.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) - esp-idf/freertos/libfreertos.a(port.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/heap/libheap.a(heap_caps_base.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -__riscv_save_7 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(save-restore.o) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_ack.c.obj) - esp-idf/hal/libhal.a(adc_hal_common.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - esp-idf/openthread/libopenthread.a(hdlc.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - esp-idf/openthread/libopenthread.a(timer.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_platform.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread.cpp.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - esp-idf/vfs/libvfs.a(vfs_eventfd.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) - esp-idf/newlib/libnewlib.a(time.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -__riscv_save_8 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(save-restore.o) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_ack.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - esp-idf/openthread/libopenthread.a(aes_ccm.cpp.obj) - esp-idf/openthread/libopenthread.a(link_raw.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_settings.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - esp-idf/vfs/libvfs.a(vfs_eventfd.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) - esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -__riscv_save_9 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(save-restore.o) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - esp-idf/openthread/libopenthread.a(changed_props_set.cpp.obj) - esp-idf/openthread/libopenthread.a(log.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) -__s2b C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-mprec.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtod.o) -__sclose C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-stdio.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fopen.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-findfp.o) -__seofread C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-stdio.o) -__sf C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-findfp.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-impure.o) -__sflags C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-flags.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fopen.o) -__sflush_r C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fflush.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-refill.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fclose.o) -__sfp C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-findfp.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fopen.o) -__sfp_lock_acquire C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-findfp.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fopen.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fclose.o) -__sfp_lock_release C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-findfp.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fopen.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fclose.o) -__sfputs_r C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf.o) -__sfvwrite_r C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fvwrite.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-puts.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fputs.o) -__sglue C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-findfp.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-refill.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fflush.o) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - esp-idf/newlib/libnewlib.a(reent_init.c.obj) -__sinit C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-findfp.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-refill.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fseeko.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-wsetup.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-wbuf.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-puts.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-putc.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fputs.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fputc.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fflush.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fclose.o) -__smakebuf_r C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-makebuf.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-refill.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fseeko.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-wsetup.o) -__sprint_r C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf.o) -__sread C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-stdio.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fopen.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-findfp.o) -__srefill_r C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-refill.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fseeko.o) -__sseek C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-stdio.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fseeko.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fopen.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-findfp.o) -__ssprint_r C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-svfprintf.o) -__ssputs_r C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-svfprintf.o) -__stdio_exit_handler C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-findfp.o) -__subdf3 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(subdf3.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtod.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-dtoa.o) - esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) -__swbuf C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-wbuf.o) -__swbuf_r C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-wbuf.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-putc.o) -__swhatbuf_r C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-makebuf.o) -__swrite C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-stdio.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fopen.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-findfp.o) -__swsetup_r C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-wsetup.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-wbuf.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fvwrite.o) -__sync_add_and_fetch_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_and_and_fetch_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_bool_compare_and_swap_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_fetch_and_add_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_fetch_and_and_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_fetch_and_nand_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_fetch_and_or_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_fetch_and_sub_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_fetch_and_xor_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_lock_release_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_lock_test_and_set_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_nand_and_fetch_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_or_and_fetch_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_sub_and_fetch_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_val_compare_and_swap_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_xor_and_fetch_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__truncdfsf2 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(truncdfsf2.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtod.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfscanf_float.o) -__trunctfdf2 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(trunctfdf2.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf_float.o) -__ubsan_handle_add_overflow esp-idf/esp_system/libesp_system.a(ubsan.c.obj) -__ubsan_handle_builtin_unreachable esp-idf/esp_system/libesp_system.a(ubsan.c.obj) -__ubsan_handle_divrem_overflow esp-idf/esp_system/libesp_system.a(ubsan.c.obj) -__ubsan_handle_invalid_builtin esp-idf/esp_system/libesp_system.a(ubsan.c.obj) -__ubsan_handle_load_invalid_value esp-idf/esp_system/libesp_system.a(ubsan.c.obj) -__ubsan_handle_missing_return esp-idf/esp_system/libesp_system.a(ubsan.c.obj) -__ubsan_handle_mul_overflow esp-idf/esp_system/libesp_system.a(ubsan.c.obj) -__ubsan_handle_negate_overflow esp-idf/esp_system/libesp_system.a(ubsan.c.obj) -__ubsan_handle_nonnull_arg esp-idf/esp_system/libesp_system.a(ubsan.c.obj) -__ubsan_handle_nonnull_return esp-idf/esp_system/libesp_system.a(ubsan.c.obj) -__ubsan_handle_out_of_bounds esp-idf/esp_system/libesp_system.a(ubsan.c.obj) -__ubsan_handle_pointer_overflow esp-idf/esp_system/libesp_system.a(ubsan.c.obj) -__ubsan_handle_shift_out_of_bounds esp-idf/esp_system/libesp_system.a(ubsan.c.obj) -__ubsan_handle_sub_overflow esp-idf/esp_system/libesp_system.a(ubsan.c.obj) -__ubsan_handle_type_mismatch esp-idf/esp_system/libesp_system.a(ubsan.c.obj) -__ubsan_handle_type_mismatch_v1 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) -__ubsan_handle_vla_bound_not_positive esp-idf/esp_system/libesp_system.a(ubsan.c.obj) -__ubsan_include esp-idf/esp_system/libesp_system.a(ubsan.c.obj) -__udivdi3 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_udivdi3.o) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_alarm.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/newlib/libnewlib.a(time.c.obj) - esp-idf/freertos/libfreertos.a(port_systick.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -__ulp C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-mprec.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtod.o) -__umoddi3 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(_umoddi3.o) - esp-idf/newlib/libnewlib.a(time.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) -__unorddf2 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(unorddf2.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtod.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfscanf_float.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf_float.o) -__unordsf2 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/rv32imac_zicsr_zifencei/ilp32/no-rtti\libgcc.a(unordsf2.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtod.o) -__utoa C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-utoa.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-itoa.o) -__wrap__Unwind_Backtrace esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) -__wrap__Unwind_DeleteException esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_catch.o) -__wrap__Unwind_FindEnclosingFunction esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) -__wrap__Unwind_Find_FDE esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) -__wrap__Unwind_ForcedUnwind esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) -__wrap__Unwind_GetCFA esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) -__wrap__Unwind_GetDataRelBase esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) -__wrap__Unwind_GetGR esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) -__wrap__Unwind_GetIP esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) -__wrap__Unwind_GetIPInfo esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) -__wrap__Unwind_GetLanguageSpecificData esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) -__wrap__Unwind_GetRegionStart esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) -__wrap__Unwind_GetTextRelBase esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) -__wrap__Unwind_RaiseException esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) -__wrap__Unwind_Resume esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) -__wrap__Unwind_Resume_or_Rethrow esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) -__wrap__Unwind_SetGR esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) -__wrap__Unwind_SetIP esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) -__wrap___cxa_allocate_exception esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_op.o) -__wrap___cxa_call_unexpected esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) -__wrap___cxa_throw esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_op.o) -__wrap___deregister_frame esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) -__wrap___deregister_frame_info esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) -__wrap___deregister_frame_info_bases esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) -__wrap___gxx_personality_v0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opvnt.o) -__wrap___register_frame esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) -__wrap___register_frame_info esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) -__wrap___register_frame_info_bases esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) -__wrap___register_frame_info_table esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) -__wrap___register_frame_info_table_bases esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) -__wrap___register_frame_table esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) -_bss_end esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -_bss_start esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -_calloc_r esp-idf/newlib/libnewlib.a(heap.c.obj) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-mprec.o) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -_close_r esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysclose.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-stdio.o) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -_ctype_ C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-ctype_.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-locale.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtol.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-isprint.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-iscntrl.o) -_data_start esp-idf/heap/libheap.a(memory_layout.c.obj) -_dtoa_r C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-dtoa.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf_float.o) -_esp_system_init_fn_array_end esp-idf/esp_system/libesp_system.a(startup.c.obj) -_esp_system_init_fn_array_start esp-idf/esp_system/libesp_system.a(startup.c.obj) -_exit esp-idf/newlib/libnewlib.a(syscalls.c.obj) -_fclose_r C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fclose.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-findfp.o) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -_fcntl_r esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysfcntl.o) -_fflush_r C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fflush.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-refill.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fseeko.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-wbuf.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fvwrite.o) -_fiprintf_r C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fprintf.o) -_fopen_r C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fopen.o) -_fprintf_r C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fprintf.o) -_fputc_r C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fputc.o) -_fputs_r C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fputs.o) -_free_r esp-idf/newlib/libnewlib.a(heap.c.obj) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-refill.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-svfprintf.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-reent.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fseeko.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-wsetup.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fvwrite.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fflush.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fclose.o) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -_fseek_r C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fseek.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fopen.o) -_fseeko_r C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fseeko.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fseek.o) -_fstat_r esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-makebuf.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fseeko.o) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - esp-idf/newlib/libnewlib.a(syscalls.c.obj) -_fwalk_sglue C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fwalk.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-refill.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-findfp.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fflush.o) -_getpid_r esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -_gettimeofday_r esp-idf/newlib/libnewlib.a(time.c.obj) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysgettod.o) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -_global_impure_ptr esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -_global_interrupt_handler esp-idf/riscv/libriscv.a(interrupt.c.obj) - esp-idf/riscv/libriscv.a(vectors.S.obj) -_heap_start esp-idf/heap/libheap.a(memory_layout.c.obj) -_impure_data C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-impure.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-refill.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-findfp.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fflush.o) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - esp-idf/newlib/libnewlib.a(reent_init.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) -_impure_ptr C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-impure.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-reent.o) -_instruction_reserved_end esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -_instruction_reserved_start esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -_interrupt_handler esp-idf/riscv/libriscv.a(vectors.S.obj) - esp-idf/riscv/libriscv.a(vectors_intc.S.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) -_iprintf_r C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-printf.o) -_iram_end esp-idf/heap/libheap.a(memory_layout.c.obj) -_iram_start esp-idf/heap/libheap.a(memory_layout.c.obj) -_iram_text_end esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) -_isatty_r esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-makebuf.o) -_kill_r esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -_link_r esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -_localeconv_r C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-localeconv.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf_float.o) -_lock_acquire esp-idf/newlib/libnewlib.a(locks.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - esp-idf/esp_phy/libesp_phy.a(btbb_init.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_init_esp32hxx.c.obj) - esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) - esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - esp-idf/newlib/libnewlib.a(time.c.obj) -_lock_acquire_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) - esp-idf/vfs/libvfs.a(vfs_eventfd.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -_lock_close esp-idf/newlib/libnewlib.a(locks.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) -_lock_close_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) - esp-idf/vfs/libvfs.a(vfs_eventfd.c.obj) - esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) -_lock_init esp-idf/newlib/libnewlib.a(locks.c.obj) -_lock_init_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) - esp-idf/vfs/libvfs.a(vfs_eventfd.c.obj) - esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) -_lock_release esp-idf/newlib/libnewlib.a(locks.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - esp-idf/esp_phy/libesp_phy.a(btbb_init.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_init_esp32hxx.c.obj) - esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) - esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - esp-idf/newlib/libnewlib.a(time.c.obj) -_lock_release_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) - esp-idf/vfs/libvfs.a(vfs_eventfd.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -_lock_try_acquire esp-idf/newlib/libnewlib.a(locks.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) -_lock_try_acquire_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) -_lseek_r esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-stdio.o) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -_malloc_r esp-idf/newlib/libnewlib.a(heap.c.obj) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-makebuf.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-svfprintf.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fvwrite.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-findfp.o) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -_mbtowc_r C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-mbtowc_r.o) -_mprec_log10 C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-mprec.o) -_multi_heap_lock esp-idf/heap/libheap.a(multi_heap.c.obj) -_multi_heap_unlock esp-idf/heap/libheap.a(multi_heap.c.obj) -_open_r esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysopen.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fopen.o) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -_panic_handler esp-idf/riscv/libriscv.a(vectors.S.obj) - esp-idf/riscv/libriscv.a(vectors_intc.S.obj) -_printf_common C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf_i.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf_float.o) -_printf_float C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf_float.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-svfprintf.o) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -_printf_i C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf_i.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-svfprintf.o) -_printf_r C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-printf.o) -_putc_r C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-putc.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fputc.o) -_puts_r C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-puts.o) -_raise_r esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - esp-idf/newlib/libnewlib.a(syscalls.c.obj) -_read_r esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysread.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-stdio.o) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -_read_r_console esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) -_realloc_r esp-idf/newlib/libnewlib.a(heap.c.obj) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-svfprintf.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fvwrite.o) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -_reclaim_reent C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-reent.o) - esp-idf/newlib/libnewlib.a(reent_init.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) -_rename_r esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -_rodata_reserved_end esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) -_rodata_reserved_start esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -_rtc_bss_end esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -_rtc_bss_start esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -_rtc_force_fast_end esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -_rtc_force_slow_end esp-idf/heap/libheap.a(memory_layout.c.obj) -_rtc_reserved_end esp-idf/heap/libheap.a(memory_layout.c.obj) -_rtc_reserved_start esp-idf/heap/libheap.a(memory_layout.c.obj) -_rtc_text_end esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) -_rtc_text_start esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -_rv_core_critical_regs_restore esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu_asm.S.obj) -_sbrk_r esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -_scanf_float C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfscanf_float.o) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -_setlocale_r C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-locale.o) -_siprintf_r C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sprintf.o) -_sniprintf_r C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-snprintf.o) -_snprintf_r C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-snprintf.o) -_sprintf_r C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sprintf.o) -_stat_r esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -_strtod_l C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtod.o) -_strtod_r C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtod.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfscanf_float.o) -_strtol_r C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtol.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfscanf_float.o) -_svfiprintf_r C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-svfprintf.o) -_svfprintf_r C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-svfprintf.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-vsnprintf.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sprintf.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-snprintf.o) -_system_r esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - esp-idf/newlib/libnewlib.a(syscalls.c.obj) -_tee_interrupt_handler esp-idf/riscv/libriscv.a(vectors.S.obj) -_thread_local_bss_end esp-idf/freertos/libfreertos.a(port.c.obj) -_thread_local_bss_start esp-idf/freertos/libfreertos.a(port.c.obj) -_thread_local_data_end esp-idf/freertos/libfreertos.a(port.c.obj) -_thread_local_data_start esp-idf/freertos/libfreertos.a(port.c.obj) -_times_r esp-idf/newlib/libnewlib.a(time.c.obj) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -_unlink_r esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -_vector_table esp-idf/riscv/libriscv.a(vectors_intc.S.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -_vfiprintf_r C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf.o) -_vfprintf_r C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-printf.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fprintf.o) -_vsniprintf_r C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-vsnprintf.o) -_vsnprintf_r C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-vsnprintf.o) -_wctomb_r C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-wctomb_r.o) -_write_r esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-syswrite.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-stdio.o) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -_write_r_console esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) -abort esp-idf/newlib/libnewlib.a(abort.c.obj) - esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_term_handler.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) - esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - esp-idf/hal/libhal.a(sha_hal.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) - esp-idf/hal/libhal.a(adc_hal_common.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - esp-idf/hal/libhal.a(apm_hal.c.obj) - esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - esp-idf/hal/libhal.a(pau_hal.c.obj) - esp-idf/hal/libhal.a(modem_clock_hal.c.obj) - esp-idf/hal/libhal.a(gpio_hal.c.obj) - esp-idf/hal/libhal.a(clk_tree_hal.c.obj) - esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - esp-idf/hal/libhal.a(mmu_hal.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - esp-idf/riscv/libriscv.a(instruction_decode.c.obj) - esp-idf/main/libmain.a(esp_ot_rcp.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) - esp-idf/newlib/libnewlib.a(syscalls.c.obj) - esp-idf/newlib/libnewlib.a(locks.c.obj) - esp-idf/freertos/libfreertos.a(port_systick.c.obj) - esp-idf/freertos/libfreertos.a(port.c.obj) - esp-idf/freertos/libfreertos.a(app_startup.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - esp-idf/hal/libhal.a(cache_hal.c.obj) - esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) - esp-idf/esp_system/libesp_system.a(startup.c.obj) -abort_expect_void esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) -abort_expect_void_and_return esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) -abs_temp C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_basic.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_cal.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_cal.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_track.o) -access esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) -adc2_wifi_acquire esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) -adc2_wifi_release esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) -adc_apb_periph_claim esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) -adc_apb_periph_free esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) -adc_cal_set C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) -adc_calc_hw_calibration_code esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) -adc_get_hw_calibration_chan_compens esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) -adc_hal_calibration_init esp-idf/hal/libhal.a(adc_hal_common.c.obj) -adc_hal_self_calibration esp-idf/hal/libhal.a(adc_hal_common.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) -adc_hal_set_calibration_param esp-idf/hal/libhal.a(adc_hal_common.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) -adc_hal_set_controller esp-idf/hal/libhal.a(adc_hal_common.c.obj) -adc_load_hw_calibration_chan_compens esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) -adc_lock_acquire esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) -adc_lock_release esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) -adc_lock_try_acquire esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) -adc_set_hw_calibration_code esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) -adjtime esp-idf/newlib/libnewlib.a(time.c.obj) -aes_hal_enable_pseudo_rounds esp-idf/hal/libhal.a(aes_hal.c.obj) -aes_hal_mode_init esp-idf/hal/libhal.a(aes_hal.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) -aes_hal_read_iv esp-idf/hal/libhal.a(aes_hal.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) -aes_hal_set_iv esp-idf/hal/libhal.a(aes_hal.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) -aes_hal_setkey esp-idf/hal/libhal.a(aes_hal.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) -aes_hal_transform_block esp-idf/hal/libhal.a(aes_hal.c.obj) -aes_hal_transform_dma_finish esp-idf/hal/libhal.a(aes_hal.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) -aes_hal_transform_dma_start esp-idf/hal/libhal.a(aes_hal.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) -aes_hal_wait_done esp-idf/hal/libhal.a(aes_hal.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) -agc_reg_init C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) -aligned_alloc esp-idf/newlib/libnewlib.a(heap.c.obj) -ant_btrx_cfg C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_api.o) -ant_bttx_cfg_rom C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_api.o) -ant_dft_cfg C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_api.o) - esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) -ant_rx_cfg C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_api.o) - esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) -ant_tx_cfg C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_api.o) - esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) -ant_wifirx_cfg_rom C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_api.o) -ant_wifitx_cfg C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_api.o) -apm_hal_clear_exception_status esp-idf/hal/libhal.a(apm_hal.c.obj) -apm_hal_enable_ctrl_clk_gating esp-idf/hal/libhal.a(apm_hal.c.obj) -apm_hal_enable_ctrl_filter esp-idf/hal/libhal.a(apm_hal.c.obj) -apm_hal_enable_ctrl_filter_all esp-idf/hal/libhal.a(apm_hal.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) -apm_hal_enable_intr esp-idf/hal/libhal.a(apm_hal.c.obj) -apm_hal_enable_region_filter esp-idf/hal/libhal.a(apm_hal.c.obj) -apm_hal_enable_reset_event_bypass esp-idf/hal/libhal.a(apm_hal.c.obj) -apm_hal_get_exception_info esp-idf/hal/libhal.a(apm_hal.c.obj) -apm_hal_get_exception_type esp-idf/hal/libhal.a(apm_hal.c.obj) -apm_hal_get_intr_src_num esp-idf/hal/libhal.a(apm_hal.c.obj) -apm_hal_set_ctrl_sec_mode_cfg esp-idf/hal/libhal.a(apm_hal.c.obj) -apm_hal_set_master_sec_mode esp-idf/hal/libhal.a(apm_hal.c.obj) -apm_hal_set_master_sec_mode_all esp-idf/hal/libhal.a(apm_hal.c.obj) -apm_hal_set_region_end_addr esp-idf/hal/libhal.a(apm_hal.c.obj) -apm_hal_set_region_filter_cfg esp-idf/hal/libhal.a(apm_hal.c.obj) -apm_hal_set_region_start_addr esp-idf/hal/libhal.a(apm_hal.c.obj) -apm_hal_set_sec_mode_region_attr esp-idf/hal/libhal.a(apm_hal.c.obj) -apm_hal_tee_enable_clk_gating esp-idf/hal/libhal.a(apm_hal.c.obj) -app_elf_sha256_str esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) -app_main esp-idf/main/libmain.a(esp_ot_rcp.c.obj) - esp-idf/freertos/libfreertos.a(app_startup.c.obj) -bb_bss_cbw40 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_basic.o) -bb_bss_cbw40_ana C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_basic.o) -bb_bss_cbw40_dig C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_basic.o) -bb_init C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) -bb_reg_init C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) -bb_wdg_cfg C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) -bb_wdg_test_en C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) -bb_wdt_get_status C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_api.o) -bb_wdt_int_enable C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_api.o) -bb_wdt_rst_enable C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_api.o) -bb_wdt_timeout_clear C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_api.o) -bias_reg_set C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_i2c.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) -ble_tx_config_check C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) -bootloader_atexit esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_common_check_chip_revision_validity esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) -bootloader_common_check_chip_validity esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) -bootloader_common_check_efuse_blk_validity esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) -bootloader_common_check_long_hold_gpio esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) -bootloader_common_check_long_hold_gpio_level esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) -bootloader_common_erase_part_type_data esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) -bootloader_common_get_active_otadata esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_common_get_partition_description esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_common_get_sha256_of_partition esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) -bootloader_common_label_search esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) -bootloader_common_ota_select_crc esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_common_ota_select_invalid esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_common_ota_select_valid esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) -bootloader_common_read_otadata esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_common_select_otadata esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) -bootloader_common_vddsdio_configure esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) -bootloader_configure_spi_pins esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) -bootloader_debug_buffer esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) -bootloader_enable_wp esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) -bootloader_execute_flash_command esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) -bootloader_flash_clock_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) -bootloader_flash_cs_timing_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) -bootloader_flash_erase_range esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) -bootloader_flash_erase_sector esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) -bootloader_flash_execute_command_common esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) -bootloader_flash_get_spi_mode esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) -bootloader_flash_is_octal_mode_enabled esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) -bootloader_flash_read esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) -bootloader_flash_read_sfdp esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) -bootloader_flash_reset_chip esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) -bootloader_flash_unlock esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) -bootloader_flash_unlock_default esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) -bootloader_flash_update_id esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -bootloader_flash_update_size esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) -bootloader_flash_write esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) -bootloader_flash_xmc_startup esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) -bootloader_image_hdr esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) -bootloader_init_mem esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -bootloader_init_spi_flash esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) -bootloader_load_image esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) -bootloader_load_image_no_verify esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) -bootloader_mmap esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) -bootloader_mmap_get_free_pages esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_munmap esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) -bootloader_read_flash_id esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) -bootloader_reset esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_sha256_data esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_sha256_finish esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_sha256_flash_contents esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) -bootloader_sha256_hex_to_str esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_sha256_start esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_spi_flash_reset esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) -bootloader_utility_get_selected_boot_partition esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_utility_load_boot_image esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_utility_load_partition_table esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -brownout_hal_config esp-idf/hal/libhal.a(brownout_hal.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) -bt_agc_detect_set C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) -bt_agc_gain_max C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) -bt_agc_gain_set C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) -bt_agc_recorrect_set C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) -bt_agc_restart_set C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) -bt_agc_rssi_thresh C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) -bt_agc_target_set C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) -bt_agc_v2_set C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) -bt_bb_ble_diag C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) -bt_bb_cca_en C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) -bt_bb_coex_config C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) -bt_bb_get_cur_rx_info C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) -bt_bb_get_le_tx_on_delay C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) -bt_bb_get_rssi_comp C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) -bt_bb_get_zb_tx_on_delay C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) -bt_bb_rx_correlator_set C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) -bt_bb_rx_dpo_set C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) -bt_bb_rx_filter_sel C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) -bt_bb_rx_set C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) -bt_bb_set_corr_thresh_le C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) -bt_bb_set_le_tx_on_delay C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) -bt_bb_set_max_gain C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) -bt_bb_set_rx_sense C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) -bt_bb_set_zb_tx_on_delay C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) -bt_bb_tx_cca_en C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) -bt_bb_tx_cca_fifo_count C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) -bt_bb_tx_cca_fifo_empty C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) -bt_bb_tx_cca_fifo_full C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) -bt_bb_tx_cca_fifo_read C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) -bt_bb_tx_cca_fifo_reset C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) -bt_bb_tx_cca_free_timer_cnt C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) -bt_bb_tx_cca_free_timer_is_sw_start C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) -bt_bb_tx_cca_free_timer_last_chan C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) -bt_bb_tx_cca_free_timer_set C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) -bt_bb_tx_cca_free_timer_sw_start C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) -bt_bb_tx_cca_free_timer_sw_start_value C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) -bt_bb_tx_cca_period C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) -bt_bb_tx_cca_set C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) -bt_bb_v2_init_cmplx C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) - esp-idf/esp_phy/libesp_phy.a(btbb_init.c.obj) -bt_bb_v2_rx_set C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) -bt_bb_v2_tx_set C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) -bt_bb_v2_version C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) -bt_bb_wdt_init C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) -bt_chan_pwr_interp C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_hw_freq.o) -bt_eco_reg_set C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) -bt_filter_reg C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) -bt_gain_offset C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) -bt_get_channel_pwr C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) -bt_get_channel_pwr_set C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) -bt_get_channel_pwr_unset C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) -bt_get_tx_gain C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_gain.o) -bt_get_tx_gain_level C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_gain.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pbus.o) -bt_rx_force C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_debug.o) -bt_set_chn C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) -bt_set_rx_comp C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) -bt_set_tx_gain C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_gain.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_cal.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_debug.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_hw_freq.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pbus.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_track.o) -bt_track_pbus_update C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_track.o) -bt_track_pll_cap C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_track.o) -bt_track_tx_power C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_track.o) -bt_tx_dig_gain C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) -bt_tx_pwctrl_init C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_cal.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) -bt_txpwr_freq C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_hw_freq.o) -cache_error_msg esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) -cache_hal_disable esp-idf/hal/libhal.a(cache_hal.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) -cache_hal_enable esp-idf/hal/libhal.a(cache_hal.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) -cache_hal_freeze esp-idf/hal/libhal.a(cache_hal.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) -cache_hal_get_cache_line_size esp-idf/hal/libhal.a(cache_hal.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) -cache_hal_init esp-idf/hal/libhal.a(cache_hal.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -cache_hal_invalidate_addr esp-idf/hal/libhal.a(cache_hal.c.obj) - esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) -cache_hal_is_cache_enabled esp-idf/hal/libhal.a(cache_hal.c.obj) - esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) -cache_hal_resume esp-idf/hal/libhal.a(cache_hal.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) -cache_hal_suspend esp-idf/hal/libhal.a(cache_hal.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) -cache_hal_unfreeze esp-idf/hal/libhal.a(cache_hal.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) -cache_hal_vaddr_to_cache_level_id esp-idf/hal/libhal.a(cache_hal.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) -call_start_cpu0 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -calloc esp-idf/newlib/libnewlib.a(heap.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - esp-idf/vfs/libvfs.a(vfs_eventfd.c.obj) - esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) -cbw2040_cfg C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_basic.o) -cfree esp-idf/newlib/libnewlib.a(heap.c.obj) -chan_to_freq C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rfpll.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_hw_freq.o) -chip_i2c_readReg C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_i2c.o) -chip_i2c_readReg_org C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_i2c.o) -chip_i2c_writeReg C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_i2c.o) -chip_v7_set_chan C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rfpll.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_debug.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_api.o) -chip_v7_set_chan_ana C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rfpll.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_cal.o) -chip_v7_set_chan_misc C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rfpll.o) -chip_v7_set_chan_offset C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rfpll.o) -chip_version_print C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_debug.o) -clk_hal_apb_get_freq_hz esp-idf/hal/libhal.a(clk_tree_hal.c.obj) -clk_hal_clock_output_setup esp-idf/hal/libhal.a(clk_tree_hal.c.obj) -clk_hal_clock_output_teardown esp-idf/hal/libhal.a(clk_tree_hal.c.obj) -clk_hal_cpu_get_freq_hz esp-idf/hal/libhal.a(clk_tree_hal.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) -clk_hal_lp_slow_get_freq_hz esp-idf/hal/libhal.a(clk_tree_hal.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) -clk_hal_soc_root_get_freq_mhz esp-idf/hal/libhal.a(clk_tree_hal.c.obj) -clk_hal_xtal_get_freq_mhz esp-idf/hal/libhal.a(clk_tree_hal.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) -clock_domain_pd_allowed esp-idf/esp_hw_support/libesp_hw_support.a(sleep_clock.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -clock_getres esp-idf/newlib/libnewlib.a(time.c.obj) -clock_gettime esp-idf/newlib/libnewlib.a(time.c.obj) - esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) -clock_settime esp-idf/newlib/libnewlib.a(time.c.obj) -close C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysclose.o) - esp-idf/openthread/libopenthread.a(esp_openthread_uart.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_task_queue.c.obj) - esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) -closedir esp-idf/vfs/libvfs.a(vfs.c.obj) -code_to_temp C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tsens.o) -coex_pti_v2 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) -console_access esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) -console_close esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) -console_end_select esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) -console_fcntl esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) -console_fstat esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) -console_fsync esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) -console_open esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) -console_read esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) -console_tcdrain esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) -console_tcflush esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) -console_tcgetattr esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) -console_tcsetattr esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) -console_write esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) -cpu_domain_pd_allowed esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -dc_iq_est C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_cal.o) -debug_print_line C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_debug.o) -disable_agc C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) -disable_wifi_agc C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) -div C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-div.o) - esp-idf/hal/libhal.a(spi_flash_hal.c.obj) -eTaskGetState esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/freertos/libfreertos.a(idf_additions.c.obj) -efuse_hal_blk_version esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) -efuse_hal_chip_revision esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/hal/libhal.a(aes_hal.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) -efuse_hal_clear_program_registers esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -efuse_hal_flash_encryption_enabled esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -efuse_hal_get_chip_ver_pkg esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) -efuse_hal_get_disable_blk_version_major esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) -efuse_hal_get_disable_wafer_version_major esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) -efuse_hal_get_ecdsa_curve_mode esp-idf/hal/libhal.a(efuse_hal.c.obj) -efuse_hal_get_mac esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) -efuse_hal_get_major_chip_version esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/hal/libhal.a(efuse_hal.c.obj) -efuse_hal_get_minor_chip_version esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/hal/libhal.a(efuse_hal.c.obj) -efuse_hal_is_coding_error_in_block esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -efuse_hal_program esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -efuse_hal_read esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -efuse_hal_rs_calculate esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -efuse_hal_set_ecdsa_key esp-idf/hal/libhal.a(efuse_hal.c.obj) -efuse_hal_set_timing esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -en_pwdet C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pwdet.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pbus.o) -enable_agc C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) -enable_wifi_agc C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) -enter_critical_phy C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_basic.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rfpll.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_track.o) -environ C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-environ.o) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -errno C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-reent.o) -esp_aes_acquire_hardware esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) -esp_aes_crypt_cbc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) -esp_aes_crypt_cfb128 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) -esp_aes_crypt_cfb8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) -esp_aes_crypt_ctr esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) -esp_aes_crypt_ecb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - esp-idf/openthread/libopenthread.a(crypto_platform.cpp.obj) -esp_aes_crypt_ofb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) -esp_aes_crypt_xts esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) -esp_aes_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) -esp_aes_dma_done esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) -esp_aes_dma_start esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) -esp_aes_encrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) -esp_aes_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - esp-idf/openthread/libopenthread.a(crypto_platform.cpp.obj) -esp_aes_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - esp-idf/openthread/libopenthread.a(crypto_platform.cpp.obj) -esp_aes_intr_alloc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) -esp_aes_process_dma esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) -esp_aes_release_hardware esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) -esp_aes_setkey esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - esp-idf/openthread/libopenthread.a(crypto_platform.cpp.obj) -esp_aes_xts_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) -esp_aes_xts_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) -esp_aes_xts_setkey_dec esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) -esp_aes_xts_setkey_enc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) -esp_app_desc esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) -esp_app_get_description esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) -esp_app_get_elf_sha256 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) -esp_backtrace_print esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) -esp_base_mac_addr_get esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) -esp_base_mac_addr_set esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) -esp_brownout_disable esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) -esp_brownout_init esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) - esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) -esp_brownout_register_callback esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) -esp_btbb_disable esp-idf/esp_phy/libesp_phy.a(btbb_init.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) -esp_btbb_enable esp-idf/esp_phy/libesp_phy.a(btbb_init.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) -esp_cache_aligned_calloc esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) -esp_cache_aligned_calloc_prefer esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) -esp_cache_aligned_malloc esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) -esp_cache_aligned_malloc_prefer esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) -esp_cache_err_get_cpuid esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) - esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) -esp_cache_err_get_panic_info esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) - esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) -esp_cache_err_has_active_err esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) - esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) -esp_cache_err_int_init esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -esp_cache_freeze_caches_disable_interrupts esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) -esp_cache_freeze_ext_mem_cache esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) -esp_cache_get_alignment esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) - esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) -esp_cache_msync esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) -esp_cache_resume_ext_mem_cache esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) - esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) -esp_cache_suspend_ext_mem_cache esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) - esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) -esp_cache_unfreeze_caches_enable_interrupts esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) -esp_cache_unfreeze_ext_mem_cache esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) -esp_clk_apb_freq esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -esp_clk_cpu_freq esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) -esp_clk_init esp-idf/esp_system/libesp_system.a(clk.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -esp_clk_private_lock esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_clk_private_unlock esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_clk_rtc_time esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) -esp_clk_slowclk_cal_get esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) -esp_clk_slowclk_cal_set esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) -esp_clk_tree_enable_src esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -esp_clk_tree_lp_fast_get_freq_hz esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) -esp_clk_tree_lp_slow_get_freq_hz esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_clk_tree_osc_slow_get_freq_hz esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) -esp_clk_tree_rc_fast_get_freq_hz esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) -esp_clk_tree_src_get_freq_hz esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -esp_clk_tree_xtal32k_get_freq_hz esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) -esp_clk_utils_mspi_speed_mode_sync_after_cpu_freq_switching esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_clk_utils_mspi_speed_mode_sync_before_cpu_freq_switching esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_clk_xtal_freq esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -esp_cpu_clear_breakpoint esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) -esp_cpu_clear_watchpoint esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) -esp_cpu_compare_and_set esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) -esp_cpu_configure_region_protection esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) -esp_cpu_intr_get_desc esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) -esp_cpu_reset esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) -esp_cpu_set_breakpoint esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - esp-idf/esp_system/libesp_system.a(panic.c.obj) -esp_cpu_set_watchpoint esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - esp-idf/freertos/libfreertos.a(port.c.obj) -esp_cpu_stall esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) -esp_cpu_unstall esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) -esp_cpu_wait_for_intr esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) -esp_crosscore_int_init esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - esp-idf/freertos/libfreertos.a(app_startup.c.obj) -esp_crosscore_int_send_freq_switch esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) -esp_crosscore_int_send_gdb_call esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) -esp_crosscore_int_send_print_backtrace esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) -esp_crosscore_int_send_twdt_abort esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) -esp_crosscore_int_send_yield esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - esp-idf/freertos/libfreertos.a(port.c.obj) -esp_crypto_aes_enable_periph_clk esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) -esp_crypto_dpa_protection_disable esp-idf/esp_security/libesp_security.a(esp_dpa_protection.c.obj) -esp_crypto_dpa_protection_enable esp-idf/esp_security/libesp_security.a(esp_dpa_protection.c.obj) -esp_crypto_dpa_protection_startup esp-idf/esp_security/libesp_security.a(esp_dpa_protection.c.obj) - esp-idf/esp_security/libesp_security.a(init.c.obj) -esp_crypto_ds_enable_periph_clk esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) -esp_crypto_ds_lock_acquire esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) -esp_crypto_ds_lock_release esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) -esp_crypto_ecc_enable_periph_clk esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) -esp_crypto_ecc_lock_acquire esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) -esp_crypto_ecc_lock_release esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) -esp_crypto_ecdsa_enable_periph_clk esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) -esp_crypto_ecdsa_lock_acquire esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) -esp_crypto_ecdsa_lock_release esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) -esp_crypto_hmac_enable_periph_clk esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) -esp_crypto_hmac_lock_acquire esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) -esp_crypto_hmac_lock_release esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) -esp_crypto_mpi_enable_periph_clk esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) -esp_crypto_mpi_lock_acquire esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) -esp_crypto_mpi_lock_release esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) -esp_crypto_sha_aes_lock_acquire esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) -esp_crypto_sha_aes_lock_release esp-idf/esp_security/libesp_security.a(esp_crypto_lock.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) -esp_crypto_sha_enable_periph_clk esp-idf/esp_security/libesp_security.a(esp_crypto_periph_clk.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) -esp_crypto_shared_gdma_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) -esp_crypto_shared_gdma_start esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) -esp_crypto_shared_gdma_start_axi_ahb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_gdma_impl.c.obj) -esp_deep_sleep esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_deep_sleep_deregister_hook esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_deep_sleep_deregister_phy_hook esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_deep_sleep_disable_rom_logging esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_deep_sleep_register_hook esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) -esp_deep_sleep_register_phy_hook esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_deep_sleep_start esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_deep_sleep_try esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_deep_sleep_try_to_start esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_deep_sleep_wakeup_io_reset esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -esp_default_wake_deep_sleep esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_deregister_freertos_idle_hook esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) -esp_deregister_freertos_idle_hook_for_cpu esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) -esp_deregister_freertos_tick_hook esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) -esp_deregister_freertos_tick_hook_for_cpu esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) -esp_derive_local_mac esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) -esp_efuse_batch_write_begin esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_batch_write_cancel esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_batch_write_commit esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_block_is_empty esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_check_errors esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) -esp_efuse_count_unused_key_blocks esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_destroy_block esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_disable_rom_download_mode esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) -esp_efuse_enable_rom_secure_download_mode esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -esp_efuse_find_purpose esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) -esp_efuse_find_unused_key_block esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_get_coding_scheme esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -esp_efuse_get_digest_revoke esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_get_field_size esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -esp_efuse_get_key esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_get_key_dis_read esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_get_key_dis_write esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_get_key_purpose esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_get_keypurpose_dis_write esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -esp_efuse_get_pkg_ver esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) -esp_efuse_get_purpose_field esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_get_write_protect_of_digest_revoke esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_key_block_unused esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_mac_get_custom esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) -esp_efuse_mac_get_default esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) -esp_efuse_read_block esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_read_field_bit esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_read_field_blob esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_read_field_cnt esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -esp_efuse_read_reg esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_rtc_calib_get_cal_voltage esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) -esp_efuse_rtc_calib_get_chan_compens esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) -esp_efuse_rtc_calib_get_init_code esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) -esp_efuse_rtc_calib_get_tsens_val esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) -esp_efuse_rtc_calib_get_ver esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) -esp_efuse_set_digest_revoke esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_set_key_dis_read esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_set_key_dis_write esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_set_key_purpose esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_set_keypurpose_dis_write esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_set_read_protect esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_set_rom_log_scheme esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) -esp_efuse_set_write_protect esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_set_write_protect_of_digest_revoke esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_startup_include_func esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) -esp_efuse_utility_apply_new_coding_scheme esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_utility_burn_chip esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -esp_efuse_utility_burn_chip_opt esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_utility_burn_efuses esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_utility_check_errors esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_utility_clear_program_registers esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -esp_efuse_utility_count_once esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_utility_debug_dump_blocks esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -esp_efuse_utility_debug_dump_pending esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -esp_efuse_utility_debug_dump_single_block esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -esp_efuse_utility_erase_virt_blocks esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -esp_efuse_utility_fill_buff esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_utility_get_number_of_items esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_utility_get_read_register_address esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_utility_is_correct_written_data esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -esp_efuse_utility_process esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_utility_read_reg esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -esp_efuse_utility_reset esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_utility_update_virt_blocks esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -esp_efuse_utility_write_blob esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_utility_write_cnt esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_utility_write_reg esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_write_block esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_write_field_bit esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) -esp_efuse_write_field_blob esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_write_field_cnt esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_write_key esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_write_keys esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_write_reg esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_event_dump esp-idf/esp_event/libesp_event.a(esp_event.c.obj) -esp_event_handler_instance_register esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) -esp_event_handler_instance_register_with esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) -esp_event_handler_instance_unregister esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) -esp_event_handler_instance_unregister_with esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) -esp_event_handler_register esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) -esp_event_handler_register_with esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) -esp_event_handler_register_with_internal esp-idf/esp_event/libesp_event.a(esp_event.c.obj) -esp_event_handler_unregister esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) -esp_event_handler_unregister_with esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) -esp_event_handler_unregister_with_internal esp-idf/esp_event/libesp_event.a(esp_event.c.obj) -esp_event_isr_post esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) -esp_event_isr_post_to esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) -esp_event_loop_create esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) -esp_event_loop_create_default esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) - esp-idf/main/libmain.a(esp_ot_rcp.c.obj) -esp_event_loop_delete esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) -esp_event_loop_delete_default esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) -esp_event_loop_run esp-idf/esp_event/libesp_event.a(esp_event.c.obj) -esp_event_post esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) -esp_event_post_to esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) -esp_fill_random esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - esp-idf/newlib/libnewlib.a(random.c.obj) -esp_flash_app_disable_os_functions esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) -esp_flash_app_disable_protect esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) -esp_flash_app_enable_os_functions esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) -esp_flash_app_init esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) -esp_flash_chip_driver_initialized esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) -esp_flash_chip_gd esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) -esp_flash_chip_generic esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) -esp_flash_chip_winbond esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) -esp_flash_default_chip esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) -esp_flash_deinit_os_functions esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) -esp_flash_encryption_cfg_verify_release_mode esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -esp_flash_encryption_enabled esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) -esp_flash_encryption_init_checks esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -esp_flash_encryption_set_release_mode esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -esp_flash_erase_chip esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) -esp_flash_erase_region esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) -esp_flash_get_chip_write_protect esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) -esp_flash_get_io_mode esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) -esp_flash_get_physical_size esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) -esp_flash_get_protectable_regions esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) -esp_flash_get_protected_region esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) -esp_flash_get_size esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) -esp_flash_init esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) -esp_flash_init_default_chip esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) -esp_flash_init_main esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) -esp_flash_init_main_bus_lock esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) -esp_flash_init_os_functions esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) -esp_flash_noos_functions esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) -esp_flash_read esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) -esp_flash_read_chip_id esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) -esp_flash_read_encrypted esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) -esp_flash_read_id esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) -esp_flash_read_unique_chip_id esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) -esp_flash_registered_chips esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) -esp_flash_set_chip_write_protect esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) -esp_flash_set_dangerous_write_protection esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) -esp_flash_set_io_mode esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) -esp_flash_set_protected_region esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) -esp_flash_suspend_cmd_init esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) -esp_flash_write esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) -esp_flash_write_encrypted esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) -esp_flash_write_protect_crypt_cnt esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -esp_get_deep_sleep_wake_stub esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_get_flash_encryption_mode esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -esp_get_free_heap_size esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) -esp_get_free_internal_heap_size esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) -esp_get_idf_version esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) -esp_get_minimum_free_heap_size esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) -esp_gpio_is_reserved esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) -esp_gpio_reserve esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) - esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -esp_gpio_revoke esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -esp_heap_adjust_alignment_to_hw esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) - esp-idf/heap/libheap.a(heap_caps_base.c.obj) -esp_hw_stack_guard_get_bounds esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) - esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) -esp_hw_stack_guard_get_fired_cpu esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) - esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) -esp_hw_stack_guard_get_pc esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) - esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) -esp_hw_stack_guard_monitor_start esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) - esp-idf/freertos/libfreertos.a(portasm.S.obj) -esp_hw_stack_guard_monitor_stop esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) - esp-idf/freertos/libfreertos.a(portasm.S.obj) -esp_hw_stack_guard_set_bounds esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) - esp-idf/freertos/libfreertos.a(portasm.S.obj) -esp_ieee802154_add_pending_addr esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) -esp_ieee802154_cca esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) -esp_ieee802154_cca_done esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) -esp_ieee802154_clear_pending_addr esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) -esp_ieee802154_disable esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) -esp_ieee802154_ed_failed esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) -esp_ieee802154_enable esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) -esp_ieee802154_energy_detect esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) -esp_ieee802154_energy_detect_done esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_event.c.obj) -esp_ieee802154_enh_ack_generator esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_event.c.obj) -esp_ieee802154_event_callback_list_register esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) -esp_ieee802154_event_callback_list_unregister esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) -esp_ieee802154_get_ack_timeout esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) -esp_ieee802154_get_auto_ack_rx esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) -esp_ieee802154_get_auto_ack_tx esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) -esp_ieee802154_get_cca_mode esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) -esp_ieee802154_get_cca_threshold esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) -esp_ieee802154_get_channel esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) -esp_ieee802154_get_coordinator esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) -esp_ieee802154_get_extended_address esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) -esp_ieee802154_get_panid esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) -esp_ieee802154_get_pending_mode esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) -esp_ieee802154_get_power_table esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) -esp_ieee802154_get_power_with_channel esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) -esp_ieee802154_get_promiscuous esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) -esp_ieee802154_get_recent_lqi esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) -esp_ieee802154_get_recent_rssi esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) -esp_ieee802154_get_rx_when_idle esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) -esp_ieee802154_get_short_address esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) -esp_ieee802154_get_state esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) -esp_ieee802154_get_txpower esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) -esp_ieee802154_receive esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) -esp_ieee802154_receive_at esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) -esp_ieee802154_receive_at_done esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) -esp_ieee802154_receive_done esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_event.c.obj) -esp_ieee802154_receive_failed esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) -esp_ieee802154_receive_handle_done esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) -esp_ieee802154_receive_sfd_done esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_event.c.obj) -esp_ieee802154_reset_pending_table esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) -esp_ieee802154_set_ack_timeout esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) -esp_ieee802154_set_auto_ack_rx esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) -esp_ieee802154_set_auto_ack_tx esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) -esp_ieee802154_set_cca_mode esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) -esp_ieee802154_set_cca_threshold esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) -esp_ieee802154_set_channel esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) -esp_ieee802154_set_coordinator esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_ncp.cpp.obj) -esp_ieee802154_set_extended_address esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) -esp_ieee802154_set_panid esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) -esp_ieee802154_set_pending_mode esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_ncp.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) -esp_ieee802154_set_power_table esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) -esp_ieee802154_set_power_with_channel esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) -esp_ieee802154_set_promiscuous esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) -esp_ieee802154_set_rx_when_idle esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) -esp_ieee802154_set_short_address esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) -esp_ieee802154_set_transmit_security esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) -esp_ieee802154_set_txpower esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) -esp_ieee802154_sleep esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) -esp_ieee802154_transmit esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) -esp_ieee802154_transmit_at esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) -esp_ieee802154_transmit_done esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_event.c.obj) -esp_ieee802154_transmit_failed esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_event.c.obj) -esp_ieee802154_transmit_sfd_done esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_event.c.obj) -esp_iface_mac_addr_set esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) -esp_image_bootloader_offset_get esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) -esp_image_bootloader_offset_set esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) -esp_image_get_flash_size esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) -esp_image_get_metadata esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) -esp_image_verify esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) -esp_image_verify_bootloader esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) -esp_image_verify_bootloader_data esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) -esp_int_wdt_cpu_init esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - esp-idf/freertos/libfreertos.a(app_startup.c.obj) -esp_int_wdt_init esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - esp-idf/freertos/libfreertos.a(app_startup.c.obj) -esp_internal_aes_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) -esp_internal_aes_encrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) -esp_intr_alloc esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/freertos/libfreertos.a(port_systick.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) -esp_intr_alloc_bind esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) -esp_intr_alloc_intrstatus esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) -esp_intr_alloc_intrstatus_bind esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) -esp_intr_disable esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) -esp_intr_disable_source esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) - esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) -esp_intr_dump esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) -esp_intr_enable esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) -esp_intr_enable_source esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) - esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) -esp_intr_free esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) -esp_intr_get_cpu esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) -esp_intr_get_intno esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) -esp_intr_mark_shared esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) -esp_intr_noniram_disable esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) -esp_intr_noniram_enable esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) -esp_intr_ptr_in_isr_region esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) -esp_intr_reserve esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) -esp_intr_set_in_iram esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) -esp_isr_names esp-idf/soc/libsoc.a(interrupts.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) -esp_libc_include_assert_impl esp-idf/newlib/libnewlib.a(assert.c.obj) -esp_libc_include_getentropy_impl esp-idf/newlib/libnewlib.a(getentropy.c.obj) -esp_libc_include_heap_impl esp-idf/newlib/libnewlib.a(heap.c.obj) -esp_libc_include_init_funcs esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -esp_libc_include_pthread_impl esp-idf/newlib/libnewlib.a(pthread.c.obj) -esp_libc_include_reent_syscalls_impl esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) -esp_libc_include_syscalls_impl esp-idf/newlib/libnewlib.a(syscalls.c.obj) -esp_libc_init esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - esp-idf/newlib/libnewlib.a(init.c.obj) -esp_libc_init_funcs esp-idf/newlib/libnewlib.a(init.c.obj) -esp_libc_init_global_stdio esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - esp-idf/newlib/libnewlib.a(init.c.obj) -esp_libc_locks_init esp-idf/newlib/libnewlib.a(locks.c.obj) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -esp_libc_time_init esp-idf/newlib/libnewlib.a(time.c.obj) - esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) -esp_light_sleep_start esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_log_early_timestamp esp-idf/log/liblog.a(log_timestamp.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) -esp_log_timestamp esp-idf/log/liblog.a(log_timestamp.c.obj) -esp_log_util_is_constrained esp-idf/log/liblog.a(util.c.obj) -esp_log_util_set_cache_enabled_cb esp-idf/log/liblog.a(util.c.obj) - esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) -esp_mac_addr_len_get esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) -esp_mbedtls_mem_calloc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) -esp_mbedtls_mem_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) -esp_mmu_map esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) -esp_mmu_map_dump_mapped_blocks esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) -esp_mmu_map_dump_mapped_blocks_private esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) -esp_mmu_map_get_max_consecutive_free_block_size esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) -esp_mmu_map_init esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -esp_mmu_map_reserve_block_with_caps esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) -esp_mmu_paddr_find_caps esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) -esp_mmu_paddr_to_vaddr esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) -esp_mmu_unmap esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) -esp_mmu_vaddr_to_paddr esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) -esp_mspi_32bit_address_flash_feature_check esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) -esp_mspi_get_io esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) -esp_mspi_pin_init esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -esp_mspi_pin_reserve esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -esp_newlib_init esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -esp_newlib_locks_init esp-idf/newlib/libnewlib.a(locks.c.obj) -esp_newlib_time_init esp-idf/newlib/libnewlib.a(time.c.obj) -esp_openthread_alarm_deinit esp-idf/openthread/libopenthread.a(esp_openthread_alarm.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_platform.cpp.obj) -esp_openthread_alarm_init esp-idf/openthread/libopenthread.a(esp_openthread_alarm.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_platform.cpp.obj) -esp_openthread_alarm_process esp-idf/openthread/libopenthread.a(esp_openthread_alarm.c.obj) -esp_openthread_alarm_update esp-idf/openthread/libopenthread.a(esp_openthread_alarm.c.obj) -esp_openthread_auto_start esp-idf/openthread/libopenthread.a(esp_openthread.cpp.obj) -esp_openthread_deinit esp-idf/openthread/libopenthread.a(esp_openthread.cpp.obj) -esp_openthread_get_alloc_caps esp-idf/openthread/libopenthread.a(esp_openthread_platform.cpp.obj) -esp_openthread_get_instance esp-idf/openthread/libopenthread.a(esp_openthread_platform.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread.cpp.obj) - esp-idf/main/libmain.a(esp_ot_rcp.c.obj) -esp_openthread_host_cli_uart_init esp-idf/openthread/libopenthread.a(esp_openthread_uart.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_platform.cpp.obj) -esp_openthread_host_rcp_spi_init esp-idf/openthread/libopenthread.a(esp_openthread_spi_slave.c.obj) -esp_openthread_host_rcp_uart_init esp-idf/openthread/libopenthread.a(esp_openthread_uart.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_platform.cpp.obj) -esp_openthread_init esp-idf/openthread/libopenthread.a(esp_openthread.cpp.obj) - esp-idf/main/libmain.a(esp_ot_rcp.c.obj) -esp_openthread_launch_mainloop esp-idf/openthread/libopenthread.a(esp_openthread.cpp.obj) - esp-idf/main/libmain.a(esp_ot_rcp.c.obj) -esp_openthread_lock_acquire esp-idf/openthread/libopenthread.a(esp_openthread_lock.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread.cpp.obj) -esp_openthread_lock_deinit esp-idf/openthread/libopenthread.a(esp_openthread_lock.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_platform.cpp.obj) -esp_openthread_lock_init esp-idf/openthread/libopenthread.a(esp_openthread_lock.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_platform.cpp.obj) -esp_openthread_lock_release esp-idf/openthread/libopenthread.a(esp_openthread_lock.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread.cpp.obj) -esp_openthread_mainloop_exit esp-idf/openthread/libopenthread.a(esp_openthread.cpp.obj) -esp_openthread_platform_deinit esp-idf/openthread/libopenthread.a(esp_openthread_platform.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread.cpp.obj) -esp_openthread_platform_init esp-idf/openthread/libopenthread.a(esp_openthread_platform.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread.cpp.obj) -esp_openthread_platform_process esp-idf/openthread/libopenthread.a(esp_openthread_platform.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread.cpp.obj) -esp_openthread_platform_update esp-idf/openthread/libopenthread.a(esp_openthread_platform.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread.cpp.obj) -esp_openthread_platform_workflow_register esp-idf/openthread/libopenthread.a(esp_openthread_platform.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_uart.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_alarm.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_task_queue.c.obj) -esp_openthread_platform_workflow_unregister esp-idf/openthread/libopenthread.a(esp_openthread_platform.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_uart.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_alarm.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_task_queue.c.obj) -esp_openthread_radio_deinit esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_platform.cpp.obj) -esp_openthread_radio_init esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_platform.cpp.obj) -esp_openthread_radio_process esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) -esp_openthread_radio_update esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) -esp_openthread_set_storage_name esp-idf/openthread/libopenthread.a(esp_openthread_settings.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_platform.cpp.obj) -esp_openthread_spi_slave_deinit esp-idf/openthread/libopenthread.a(esp_openthread_spi_slave.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_platform.cpp.obj) -esp_openthread_task_queue_deinit esp-idf/openthread/libopenthread.a(esp_openthread_task_queue.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_platform.cpp.obj) -esp_openthread_task_queue_init esp-idf/openthread/libopenthread.a(esp_openthread_task_queue.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_platform.cpp.obj) -esp_openthread_task_queue_post esp-idf/openthread/libopenthread.a(esp_openthread_task_queue.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_spi_slave.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread.cpp.obj) -esp_openthread_task_queue_process esp-idf/openthread/libopenthread.a(esp_openthread_task_queue.c.obj) -esp_openthread_task_queue_update esp-idf/openthread/libopenthread.a(esp_openthread_task_queue.c.obj) -esp_openthread_task_switching_lock_acquire esp-idf/openthread/libopenthread.a(esp_openthread_lock.c.obj) -esp_openthread_task_switching_lock_release esp-idf/openthread/libopenthread.a(esp_openthread_lock.c.obj) -esp_openthread_uart_deinit esp-idf/openthread/libopenthread.a(esp_openthread_uart.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_platform.cpp.obj) -esp_openthread_uart_init_port esp-idf/openthread/libopenthread.a(esp_openthread_uart.c.obj) -esp_openthread_uart_process esp-idf/openthread/libopenthread.a(esp_openthread_uart.c.obj) -esp_openthread_uart_update esp-idf/openthread/libopenthread.a(esp_openthread_uart.c.obj) -esp_ota_abort esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) -esp_ota_begin esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) -esp_ota_check_rollback_is_possible esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) -esp_ota_end esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) -esp_ota_erase_last_boot_app_partition esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) -esp_ota_get_app_partition_count esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) -esp_ota_get_boot_partition esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) -esp_ota_get_bootloader_description esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) -esp_ota_get_last_invalid_partition esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) -esp_ota_get_next_update_partition esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) -esp_ota_get_partition_description esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) -esp_ota_get_running_partition esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) -esp_ota_get_state_partition esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) -esp_ota_invalidate_inactive_ota_data_slot esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) -esp_ota_mark_app_invalid_rollback esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) -esp_ota_mark_app_invalid_rollback_and_reboot esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) -esp_ota_mark_app_valid_cancel_rollback esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) -esp_ota_resume esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) -esp_ota_set_boot_partition esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) -esp_ota_set_final_partition esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) -esp_ota_write esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) -esp_ota_write_with_offset esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) -esp_panic_handler esp-idf/esp_system/libesp_system.a(panic.c.obj) - esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) -esp_panic_handler_disable_timg_wdts esp-idf/esp_system/libesp_system.a(panic.c.obj) - esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) -esp_panic_handler_enable_rtc_wdt esp-idf/esp_system/libesp_system.a(panic.c.obj) - esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) -esp_panic_handler_feed_wdts esp-idf/esp_system/libesp_system.a(panic.c.obj) - esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) -esp_panic_handler_increment_entry_count esp-idf/esp_system/libesp_system.a(panic.c.obj) - esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) -esp_partition_check_identity esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) -esp_partition_copy esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) -esp_partition_deregister_external esp-idf/esp_partition/libesp_partition.a(partition.c.obj) -esp_partition_erase_range esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -esp_partition_find esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) -esp_partition_find_first esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -esp_partition_get esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) -esp_partition_get_main_flash_sector_size esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -esp_partition_get_sha256 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) -esp_partition_is_flash_region_writable esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) -esp_partition_iterator_release esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) -esp_partition_main_flash_region_safe esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) -esp_partition_mmap esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition.c.obj) -esp_partition_munmap esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition.c.obj) -esp_partition_next esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) -esp_partition_read esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -esp_partition_read_raw esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -esp_partition_register_external esp-idf/esp_partition/libesp_partition.a(partition.c.obj) -esp_partition_table_verify esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) -esp_partition_unload_all esp-idf/esp_partition/libesp_partition.a(partition.c.obj) -esp_partition_verify esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) -esp_partition_write esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -esp_partition_write_raw esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -esp_perip_clk_init esp-idf/esp_system/libesp_system.a(clk.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -esp_phy_disable esp-idf/esp_phy/libesp_phy.a(phy_init_esp32hxx.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) -esp_phy_efuse_get_chip_ver_pkg esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) -esp_phy_efuse_get_mac esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) -esp_phy_enable esp-idf/esp_phy/libesp_phy.a(phy_init_esp32hxx.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) -esp_phy_get_ant esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) -esp_phy_get_ant_gpio esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) -esp_phy_set_ant esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) -esp_phy_set_ant_gpio esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) -esp_pm_register_inform_out_light_sleep_overhead_callback esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) -esp_pm_register_light_sleep_default_params_config_callback esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) -esp_pm_unregister_inform_out_light_sleep_overhead_callback esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) -esp_pm_unregister_light_sleep_default_params_config_callback esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) -esp_pthread_get_cfg esp-idf/pthread/libpthread.a(pthread.c.obj) -esp_pthread_get_default_config esp-idf/pthread/libpthread.a(pthread.c.obj) -esp_pthread_init esp-idf/pthread/libpthread.a(pthread.c.obj) -esp_pthread_set_cfg esp-idf/pthread/libpthread.a(pthread.c.obj) -esp_ptr_byte_accessible esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) - esp-idf/freertos/libfreertos.a(heap_idf.c.obj) -esp_ptr_dma_ext_capable esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) -esp_ptr_executable esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) - esp-idf/freertos/libfreertos.a(port.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_ptr_external_ram esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) -esp_random esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) -esp_read_mac esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) -esp_reent_cleanup esp-idf/newlib/libnewlib.a(reent_init.c.obj) -esp_reent_init esp-idf/newlib/libnewlib.a(reent_init.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) -esp_register_freertos_idle_hook esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) -esp_register_freertos_idle_hook_for_cpu esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) -esp_register_freertos_tick_hook esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) -esp_register_freertos_tick_hook_for_cpu esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) -esp_register_shutdown_handler esp-idf/esp_system/libesp_system.a(esp_system.c.obj) - esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) -esp_reset_reason esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_misc.c.obj) -esp_reset_reason_get_hint esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - esp-idf/esp_system/libesp_system.a(panic.c.obj) -esp_reset_reason_set_hint esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - esp-idf/esp_system/libesp_system.a(panic.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) -esp_restart esp-idf/esp_system/libesp_system.a(esp_system.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_misc.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) -esp_restart_noos esp-idf/esp_system/libesp_system.a(system_internal.c.obj) - esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - esp-idf/esp_system/libesp_system.a(esp_system.c.obj) -esp_rom_crc32_le esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -esp_rom_delay_us esp-idf/hal/libhal.a(adc_hal_common.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/newlib/libnewlib.a(time.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -esp_rom_get_cpu_ticks_per_us esp-idf/log/liblog.a(log_timestamp.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) -esp_rom_get_reset_reason esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -esp_rom_gpio_connect_in_signal esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -esp_rom_gpio_connect_out_signal esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -esp_rom_gpio_pad_pullup_only esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) -esp_rom_gpio_pad_select_gpio esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) -esp_rom_gpio_pad_set_drv esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) -esp_rom_include_multi_heap_patch esp-idf/esp_rom/libesp_rom.a(esp_rom_multi_heap.c.obj) -esp_rom_md5_final esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition.c.obj) -esp_rom_md5_init esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition.c.obj) -esp_rom_md5_update esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition.c.obj) -esp_rom_newlib_init_common_mutexes esp-idf/newlib/libnewlib.a(locks.c.obj) -esp_rom_output_flush_tx esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) -esp_rom_output_rx_one_char esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) -esp_rom_output_tx_one_char esp-idf/esp_system/libesp_system.a(esp_system_console.c.obj) -esp_rom_output_tx_wait_idle esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_system/libesp_system.a(system_internal.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -esp_rom_printf esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -esp_rom_regi2c_read esp-idf/esp_rom/libesp_rom.a(esp_rom_regi2c_esp32h2.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) -esp_rom_regi2c_read_mask esp-idf/esp_rom/libesp_rom.a(esp_rom_regi2c_esp32h2.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) -esp_rom_regi2c_write esp-idf/esp_rom/libesp_rom.a(esp_rom_regi2c_esp32h2.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) -esp_rom_regi2c_write_mask esp-idf/esp_rom/libesp_rom.a(esp_rom_regi2c_esp32h2.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) -esp_rom_route_intr_matrix esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) - esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -esp_rom_set_cpu_ticks_per_us esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) -esp_rom_set_rtc_wake_addr esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_rom_software_reset_cpu esp-idf/esp_system/libesp_system.a(system_internal.c.obj) -esp_rom_software_reset_system esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) -esp_rom_spiflash_config_clk esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) -esp_rom_spiflash_config_param esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) -esp_rom_spiflash_wait_idle esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) -esp_rom_usb_serial_putc esp-idf/esp_rom/libesp_rom.a(esp_rom_usb_serial.c.obj) - esp-idf/esp_system/libesp_system.a(esp_system_console.c.obj) -esp_rtc_get_time_us esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) - esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) -esp_rtc_init esp-idf/esp_system/libesp_system.a(clk.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -esp_secure_boot_read_key_digests esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_security_init_include_impl esp-idf/esp_security/libesp_security.a(init.c.obj) -esp_set_deep_sleep_wake_stub esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_set_deep_sleep_wake_stub_default_entry esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_set_time_from_rtc esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - esp-idf/newlib/libnewlib.a(time.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_setup_newlib_syscalls esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -esp_sha_acquire_hardware esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) -esp_sha_block esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) -esp_sha_dma esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) -esp_sha_dma_start esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) -esp_sha_read_digest_state esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) -esp_sha_release_hardware esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) -esp_sha_set_mode esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) -esp_sha_write_digest_state esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) -esp_sleep_clock_config esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_sleep_config_gpio_isolate esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) -esp_sleep_cpu_retention esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_sleep_cpu_retention_deinit esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) -esp_sleep_cpu_retention_init esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) -esp_sleep_disable_bt_wakeup esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_sleep_disable_ext1_wakeup_io esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_sleep_disable_wakeup_source esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_sleep_disable_wifi_beacon_wakeup esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_sleep_disable_wifi_wakeup esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_sleep_enable_adc_tsens_monitor esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_sleep_enable_bt_wakeup esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_sleep_enable_ext1_wakeup esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_sleep_enable_ext1_wakeup_io esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_sleep_enable_ext1_wakeup_with_level_mask esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_sleep_enable_gpio_switch esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) -esp_sleep_enable_gpio_wakeup esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_sleep_enable_timer_wakeup esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_sleep_enable_uart_wakeup esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_sleep_enable_ulp_wakeup esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_sleep_enable_vbat_under_volt_wakeup esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_sleep_enable_wifi_beacon_wakeup esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_sleep_enable_wifi_wakeup esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_sleep_execute_event_callbacks esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_sleep_get_ext1_wakeup_status esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_sleep_get_wakeup_cause esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_sleep_gpio_include esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) -esp_sleep_is_valid_wakeup_gpio esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_sleep_overhead_out_time_refresh esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_sleep_pd_config esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) -esp_sleep_periph_use_8m esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_sleep_sub_mode_config esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_sleep_sub_mode_dump_config esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_sleep_sub_mode_force_disable esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_startup_start_app esp-idf/freertos/libfreertos.a(app_startup.c.obj) - esp-idf/esp_system/libesp_system.a(startup.c.obj) -esp_sync_timekeeping_timers esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) -esp_system_abort esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) - esp-idf/newlib/libnewlib.a(assert.c.obj) - esp-idf/newlib/libnewlib.a(abort.c.obj) - esp-idf/freertos/libfreertos.a(port.c.obj) - esp-idf/esp_system/libesp_system.a(ubsan.c.obj) -esp_system_console_put_char esp-idf/esp_system/libesp_system.a(esp_system_console.c.obj) - esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) -esp_system_get_time esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) -esp_system_get_time_resolution esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) - esp-idf/newlib/libnewlib.a(time.c.obj) -esp_system_include_startup_funcs esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) -esp_system_reset_modules_on_exit esp-idf/esp_system/libesp_system.a(system_internal.c.obj) -esp_task_wdt_add esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) -esp_task_wdt_add_user esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) -esp_task_wdt_deinit esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) -esp_task_wdt_delete esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) -esp_task_wdt_delete_user esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) -esp_task_wdt_impl_timeout_triggered esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) -esp_task_wdt_impl_timer_allocate esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) -esp_task_wdt_impl_timer_feed esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) -esp_task_wdt_impl_timer_free esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) -esp_task_wdt_impl_timer_reconfigure esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) -esp_task_wdt_impl_timer_restart esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) -esp_task_wdt_impl_timer_stop esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) -esp_task_wdt_init esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - esp-idf/freertos/libfreertos.a(app_startup.c.obj) -esp_task_wdt_isr_user_handler esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) -esp_task_wdt_print_triggered_tasks esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) -esp_task_wdt_reconfigure esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) -esp_task_wdt_reset esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) -esp_task_wdt_reset_user esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) -esp_task_wdt_restart esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) -esp_task_wdt_status esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) -esp_task_wdt_stop esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) -esp_time_impl_get_boot_time esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - esp-idf/newlib/libnewlib.a(time.c.obj) -esp_time_impl_get_time esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - esp-idf/newlib/libnewlib.a(time.c.obj) -esp_time_impl_get_time_since_boot esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - esp-idf/newlib/libnewlib.a(time.c.obj) -esp_time_impl_set_boot_time esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - esp-idf/newlib/libnewlib.a(time.c.obj) -esp_timer_create esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) -esp_timer_deinit esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) -esp_timer_delete esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) -esp_timer_dump esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) -esp_timer_early_init esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) -esp_timer_get_expiry_time esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) -esp_timer_get_next_alarm esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) -esp_timer_get_next_alarm_for_wake_up esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) -esp_timer_get_period esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) -esp_timer_get_time esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_timer.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_alarm.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) -esp_timer_impl_advance esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) -esp_timer_impl_deinit esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) -esp_timer_impl_early_init esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) -esp_timer_impl_get_alarm_reg esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) -esp_timer_impl_get_counter_reg esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) -esp_timer_impl_get_min_period_us esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) -esp_timer_impl_get_time esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) -esp_timer_impl_init esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) -esp_timer_impl_init_system_time esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) -esp_timer_impl_lock esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) -esp_timer_impl_set esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) -esp_timer_impl_set_alarm esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) -esp_timer_impl_set_alarm_id esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) -esp_timer_impl_unlock esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) -esp_timer_init esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) -esp_timer_init_include_func esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) -esp_timer_is_active esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) -esp_timer_private_advance esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) -esp_timer_private_lock esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_timer_private_set esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_timer_private_unlock esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_timer_restart esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) -esp_timer_start_once esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) -esp_timer_start_periodic esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) -esp_timer_stop esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) -esp_unregister_shutdown_handler esp-idf/esp_system/libesp_system.a(esp_system.c.obj) -esp_vApplicationIdleHook esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) -esp_vApplicationTickHook esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - esp-idf/freertos/libfreertos.a(port_systick.c.obj) -esp_vbat_get_battery_state esp-idf/esp_hw_support/libesp_hw_support.a(vbat.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esp_vfs_access esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_close esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_closedir esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_console_register esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) -esp_vfs_dev_uart_port_set_rx_line_endings esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) -esp_vfs_dev_uart_port_set_tx_line_endings esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) -esp_vfs_dev_uart_register esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) -esp_vfs_dev_uart_set_rx_line_endings esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) -esp_vfs_dev_uart_set_tx_line_endings esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) -esp_vfs_dev_uart_use_driver esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) -esp_vfs_dev_uart_use_nonblocking esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) -esp_vfs_dev_usb_serial_jtag_register esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) -esp_vfs_dev_usb_serial_jtag_set_rx_line_endings esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) -esp_vfs_dev_usb_serial_jtag_set_tx_line_endings esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) -esp_vfs_dump_fds esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_dump_registered_paths esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_eventfd_register esp-idf/vfs/libvfs.a(vfs_eventfd.c.obj) - esp-idf/main/libmain.a(esp_ot_rcp.c.obj) -esp_vfs_eventfd_unregister esp-idf/vfs/libvfs.a(vfs_eventfd.c.obj) - esp-idf/main/libmain.a(esp_ot_rcp.c.obj) -esp_vfs_fcntl_r esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_fstat esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_fsync esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_ftruncate esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_include_console_register esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) -esp_vfs_include_nullfs_register esp-idf/vfs/libvfs.a(nullfs.c.obj) -esp_vfs_ioctl esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_link esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_lseek esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_mkdir esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_null_get_vfs esp-idf/vfs/libvfs.a(nullfs.c.obj) -esp_vfs_null_register esp-idf/vfs/libvfs.a(nullfs.c.obj) -esp_vfs_open esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_opendir esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_pread esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_pwrite esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_read esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_readdir esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_readdir_r esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_register esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_register_common esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_register_fd esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_register_fd_range esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_register_fd_with_local_fd esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/vfs/libvfs.a(vfs_eventfd.c.obj) -esp_vfs_register_fs esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/vfs/libvfs.a(nullfs.c.obj) - esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) -esp_vfs_register_fs_with_id esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_register_with_id esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/vfs/libvfs.a(vfs_eventfd.c.obj) -esp_vfs_rename esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_rewinddir esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_rmdir esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_seekdir esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_select esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_select_triggered esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/vfs/libvfs.a(vfs_eventfd.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) -esp_vfs_select_triggered_isr esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/vfs/libvfs.a(vfs_eventfd.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) -esp_vfs_set_readonly_flag esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_stat esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_telldir esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_truncate esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_uart_get_vfs esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) -esp_vfs_unlink esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_unregister esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_unregister_fd esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_unregister_fs esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_unregister_fs_with_id esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_unregister_with_id esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/vfs/libvfs.a(vfs_eventfd.c.obj) -esp_vfs_usb_serial_jtag_get_vfs esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) -esp_vfs_usb_serial_jtag_use_driver esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) -esp_vfs_usb_serial_jtag_use_nonblocking esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) -esp_vfs_utime esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_write esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_wake_deep_sleep esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -esprv_get_interrupt_unmask esp-idf/riscv/libriscv.a(interrupt_plic.c.obj) -esprv_int_disable esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) -esprv_int_enable esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) -esprv_int_get_priority esp-idf/riscv/libriscv.a(interrupt_plic.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) -esprv_int_get_type esp-idf/riscv/libriscv.a(interrupt_plic.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) -esprv_int_is_vectored esp-idf/riscv/libriscv.a(interrupt_plic.c.obj) -esprv_int_set_priority esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) - esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) -esprv_int_set_threshold esp-idf/freertos/libfreertos.a(port.c.obj) -esprv_int_set_type esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - esp-idf/esp_system/libesp_system.a(hw_stack_guard.c.obj) - esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) -ets_delay_us C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_cal.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_cal.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_debug.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pwdet.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_analog_cal.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rfpll.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_hw_freq.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pbus.o) -ets_efuse_clear_program_registers esp-idf/hal/libhal.a(efuse_hal.c.obj) -ets_efuse_rs_calculate esp-idf/hal/libhal.a(efuse_hal.c.obj) -ets_efuse_usb_print_is_disabled esp-idf/esp_rom/libesp_rom.a(esp_rom_usb_serial.c.obj) -ets_isr_mask esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) -ets_isr_unmask esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) -ets_printf esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) -ets_rom_layout_p esp-idf/heap/libheap.a(memory_layout_utils.c.obj) -eventfd esp-idf/vfs/libvfs.a(vfs_eventfd.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_task_queue.c.obj) -exit_critical_phy C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_basic.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rfpll.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_track.o) -fclose C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fclose.o) -fcntl C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysfcntl.o) - esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) -fe_reg_init C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) -fe_txrx_reset C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) -fflush C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fflush.o) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) -fiprintf C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fprintf.o) -flash_init_state esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -fopen C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fopen.o) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -force_coex_timer0_wifi_pti_v2 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) -force_coex_timer0_wifi_v2 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) -force_coex_timer11_BT_V3_2 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) -force_coex_timer11_bt_pti_v2 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) -force_coex_timer1_BT_V3_2 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) -force_coex_timer1_bt_pti_v2 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) -force_rx_gain C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_debug.o) -force_txon C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) -force_txon_mode C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_cal.o) -forward_abort_uw_ctx esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) -fprintf C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fprintf.o) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) -fputc C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fputc.o) - esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) -fputs C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fputs.o) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) -free esp-idf/newlib/libnewlib.a(heap.c.obj) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_op.o) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_platform.cpp.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - esp-idf/vfs/libvfs.a(vfs_eventfd.c.obj) - esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) - esp-idf/newlib/libnewlib.a(reent_init.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - esp-idf/heap/libheap.a(heap_caps_init.c.obj) -freq_chan_en_sw C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_hw_freq.o) -freq_get_i2c_data C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_hw_freq.o) -freq_i2c_data_write C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_hw_freq.o) -freq_i2c_mem_write_new C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_hw_freq.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_debug.o) -freq_i2c_num_addr C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_hw_freq.o) -freq_i2c_write_set_new C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_hw_freq.o) -freq_module_resetn C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_hw_freq.o) -freq_num_get_data C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_hw_freq.o) -freq_reg_init C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_hw_freq.o) -freq_reg_init1 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) -fseek C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fseek.o) -fseeko C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fseeko.o) -fstat esp-idf/newlib/libnewlib.a(syscalls.c.obj) - esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) -fsync esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) - esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) -ftruncate esp-idf/vfs/libvfs.a(vfs.c.obj) -g_exc_frames esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) -g_flash_guard_default_ops esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) -g_flash_guard_no_os_ops esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) -g_mmu_mem_regions esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) -g_panic_abort esp-idf/esp_system/libesp_system.a(panic.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) -g_panic_abort_details esp-idf/esp_system/libesp_system.a(panic.c.obj) -g_phyFuns C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) -g_spi_lock_main_flash_dev esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) -g_startup_fn esp-idf/esp_system/libesp_system.a(startup.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -g_startup_time esp-idf/esp_system/libesp_system.a(startup.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) - esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) -g_twdt_isr esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) -gdma_ahb_hal_append esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) -gdma_ahb_hal_clear_intr esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) -gdma_ahb_hal_connect_peri esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) -gdma_ahb_hal_disconnect_peri esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) -gdma_ahb_hal_enable_burst esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) -gdma_ahb_hal_enable_etm_task esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) -gdma_ahb_hal_enable_intr esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) -gdma_ahb_hal_get_eof_desc_addr esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) -gdma_ahb_hal_get_intr_status_reg esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) -gdma_ahb_hal_init esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) -gdma_ahb_hal_read_intr_status esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) -gdma_ahb_hal_reset esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) -gdma_ahb_hal_set_priority esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) -gdma_ahb_hal_set_strategy esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) -gdma_ahb_hal_start_with_desc esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) -gdma_ahb_hal_stop esp-idf/hal/libhal.a(gdma_hal_ahb_v1.c.obj) -gdma_append esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) -gdma_apply_strategy esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) -gdma_chx_regs_retention esp-idf/soc/libsoc.a(gdma_periph.c.obj) -gdma_config_transfer esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) -gdma_connect esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) -gdma_default_rx_isr esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) -gdma_default_tx_isr esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) -gdma_del_channel esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) -gdma_disconnect esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) -gdma_get_alignment_constraints esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) -gdma_get_free_m2m_trig_id_mask esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) -gdma_get_group_channel_id esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) -gdma_hal_append esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) -gdma_hal_clear_intr esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) -gdma_hal_connect_peri esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) -gdma_hal_deinit esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) -gdma_hal_disconnect_peri esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) -gdma_hal_enable_access_encrypt_mem esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) -gdma_hal_enable_burst esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) -gdma_hal_enable_etm_task esp-idf/hal/libhal.a(gdma_hal_top.c.obj) -gdma_hal_enable_intr esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) -gdma_hal_get_eof_desc_addr esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) -gdma_hal_get_intr_status_reg esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) -gdma_hal_read_intr_status esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) -gdma_hal_reset esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) -gdma_hal_set_burst_size esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) -gdma_hal_set_priority esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) -gdma_hal_set_strategy esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) -gdma_hal_start_with_desc esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) -gdma_hal_stop esp-idf/hal/libhal.a(gdma_hal_top.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) -gdma_new_ahb_channel esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) -gdma_new_channel esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) -gdma_periph_signals esp-idf/soc/libsoc.a(gdma_periph.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) -gdma_register_rx_event_callbacks esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) -gdma_register_tx_event_callbacks esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) -gdma_reset esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) -gdma_set_priority esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) -gdma_start esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) -gdma_stop esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) -gen_rx_gain_table C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_gain.o) -get_act_hp_dbias esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) -get_act_lp_dbias esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) -get_bias_ref_code C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_debug.o) -get_chip_version C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) -get_data_sat C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_basic.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_cal.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_cal.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_hw_freq.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_track.o) -get_dc_value C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_debug.o) -get_fm_sar_dout C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pwdet.o) -get_freq_mem_addr C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_hw_freq.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_debug.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) -get_freq_mem_param C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_hw_freq.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_debug.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) -get_i2c_hostid C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_i2c.o) -get_i2c_mst0_mask C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_i2c.o) -get_i2c_read_mask C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_i2c.o) -get_iq_value C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_debug.o) -get_phy_version_str C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_debug.o) -get_pll_ref_code C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rfpll.o) -get_pll_vol C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pwdet.o) -get_power_atten C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_cal.o) -get_power_db C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pwdet.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_cal.o) -get_rc_dout C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_analog_cal.o) -get_rf_freq_init_new C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_hw_freq.o) -get_rfcal_rxiq_data C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_cal.o) -get_sar2_vol C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pwdet.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_debug.o) -get_sar_sig_ref C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pwdet.o) -get_slp_lp_dbias esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) -get_target_power_offset C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_cal.o) -get_temp_buffer_not_supported esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) -get_temp_init C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tsens.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) -get_tone_sar_dout C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pwdet.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_cal.o) -get_tx_gain_table C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_gain.o) -get_vfs_for_index esp-idf/vfs/libvfs.a(vfs.c.obj) -get_vfs_for_path esp-idf/vfs/libvfs.a(vfs.c.obj) -getentropy esp-idf/newlib/libnewlib.a(getentropy.c.obj) -getrandom esp-idf/newlib/libnewlib.a(random.c.obj) - esp-idf/newlib/libnewlib.a(getentropy.c.obj) -gettimeofday C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysgettod.o) - esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) -gpio_config esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_spi_slave.c.obj) -gpio_config_as_analog esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) -gpio_dump_io_configuration esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) -gpio_force_hold_all esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) -gpio_force_unhold_all esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) -gpio_func_sel esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -gpio_get_drive_capability esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) -gpio_get_io_config esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) -gpio_get_level esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_spi_slave.c.obj) -gpio_hal_hysteresis_soft_enable esp-idf/hal/libhal.a(gpio_hal.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) -gpio_hal_intr_disable esp-idf/hal/libhal.a(gpio_hal.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) -gpio_hal_intr_enable_on_core esp-idf/hal/libhal.a(gpio_hal.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) -gpio_hal_iomux_in esp-idf/hal/libhal.a(gpio_hal.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) -gpio_hal_iomux_out esp-idf/hal/libhal.a(gpio_hal.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) -gpio_hal_isolate_in_sleep esp-idf/hal/libhal.a(gpio_hal.c.obj) -gpio_hold_dis esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) -gpio_hold_en esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) -gpio_input_enable esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -gpio_install_isr_service esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) -gpio_intr_disable esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) -gpio_intr_enable esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) -gpio_iomux_in esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) -gpio_iomux_input esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -gpio_iomux_out esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) -gpio_iomux_output esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -gpio_isr_handler_add esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) -gpio_isr_handler_remove esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) -gpio_isr_register esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) -gpio_od_disable esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) -gpio_od_enable esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) -gpio_output_disable esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -gpio_output_enable esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) -gpio_pulldown_dis esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) -gpio_pulldown_en esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) -gpio_pullup_dis esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) -gpio_pullup_en esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -gpio_reset_pin esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) -gpio_set_direction esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) -gpio_set_drive_capability esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) -gpio_set_intr_type esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) -gpio_set_level esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_spi_slave.c.obj) -gpio_set_pull_mode esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_spi_slave.c.obj) -gpio_sleep_sel_dis esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) -gpio_sleep_sel_en esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) -gpio_sleep_set_direction esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) -gpio_sleep_set_pull_mode esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) -gpio_uninstall_isr_service esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) -gpio_wakeup_disable esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) -gpio_wakeup_enable esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) -heap_caps_add_region esp-idf/heap/libheap.a(heap_caps_init.c.obj) -heap_caps_add_region_with_caps esp-idf/heap/libheap.a(heap_caps_init.c.obj) -heap_caps_aligned_alloc esp-idf/heap/libheap.a(heap_caps.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) -heap_caps_aligned_alloc_base esp-idf/heap/libheap.a(heap_caps_base.c.obj) - esp-idf/heap/libheap.a(heap_caps.c.obj) -heap_caps_aligned_alloc_default esp-idf/heap/libheap.a(heap_caps.c.obj) - esp-idf/newlib/libnewlib.a(heap.c.obj) -heap_caps_aligned_calloc esp-idf/heap/libheap.a(heap_caps.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) -heap_caps_aligned_free esp-idf/heap/libheap.a(heap_caps.c.obj) -heap_caps_calloc esp-idf/heap/libheap.a(heap_caps.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) -heap_caps_calloc_base esp-idf/heap/libheap.a(heap_caps_base.c.obj) - esp-idf/heap/libheap.a(heap_caps.c.obj) -heap_caps_calloc_prefer esp-idf/heap/libheap.a(heap_caps.c.obj) -heap_caps_check_add_region_allowed esp-idf/heap/libheap.a(heap_caps_init.c.obj) -heap_caps_check_integrity esp-idf/heap/libheap.a(heap_caps.c.obj) -heap_caps_check_integrity_addr esp-idf/heap/libheap.a(heap_caps.c.obj) -heap_caps_check_integrity_all esp-idf/heap/libheap.a(heap_caps.c.obj) -heap_caps_dump esp-idf/heap/libheap.a(heap_caps.c.obj) -heap_caps_dump_all esp-idf/heap/libheap.a(heap_caps.c.obj) -heap_caps_enable_nonos_stack_heaps esp-idf/heap/libheap.a(heap_caps_init.c.obj) - esp-idf/freertos/libfreertos.a(app_startup.c.obj) -heap_caps_free esp-idf/heap/libheap.a(heap_caps_base.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_spi_slave.c.obj) - esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/newlib/libnewlib.a(heap.c.obj) - esp-idf/freertos/libfreertos.a(heap_idf.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) - esp-idf/heap/libheap.a(heap_caps.c.obj) -heap_caps_get_allocated_size esp-idf/heap/libheap.a(heap_caps.c.obj) -heap_caps_get_containing_block_size esp-idf/heap/libheap.a(heap_caps.c.obj) -heap_caps_get_free_size esp-idf/heap/libheap.a(heap_caps.c.obj) - esp-idf/freertos/libfreertos.a(heap_idf.c.obj) - esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) -heap_caps_get_info esp-idf/heap/libheap.a(heap_caps.c.obj) -heap_caps_get_largest_free_block esp-idf/heap/libheap.a(heap_caps.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) -heap_caps_get_minimum_free_size esp-idf/heap/libheap.a(heap_caps.c.obj) - esp-idf/freertos/libfreertos.a(heap_idf.c.obj) - esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) -heap_caps_get_total_size esp-idf/heap/libheap.a(heap_caps.c.obj) -heap_caps_init esp-idf/heap/libheap.a(heap_caps_init.c.obj) -heap_caps_malloc esp-idf/heap/libheap.a(heap_caps.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_spi_slave.c.obj) - esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - esp-idf/freertos/libfreertos.a(heap_idf.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - esp-idf/heap/libheap.a(heap_caps_init.c.obj) -heap_caps_malloc_base esp-idf/heap/libheap.a(heap_caps_base.c.obj) - esp-idf/heap/libheap.a(heap_caps.c.obj) -heap_caps_malloc_default esp-idf/heap/libheap.a(heap_caps.c.obj) - esp-idf/newlib/libnewlib.a(heap.c.obj) -heap_caps_malloc_extmem_enable esp-idf/heap/libheap.a(heap_caps.c.obj) -heap_caps_malloc_prefer esp-idf/heap/libheap.a(heap_caps.c.obj) -heap_caps_match esp-idf/heap/libheap.a(heap_caps.c.obj) - esp-idf/heap/libheap.a(heap_caps_init.c.obj) -heap_caps_monitor_local_minimum_free_size_start esp-idf/heap/libheap.a(heap_caps.c.obj) -heap_caps_monitor_local_minimum_free_size_stop esp-idf/heap/libheap.a(heap_caps.c.obj) -heap_caps_print_heap_info esp-idf/heap/libheap.a(heap_caps.c.obj) -heap_caps_realloc esp-idf/heap/libheap.a(heap_caps.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) -heap_caps_realloc_base esp-idf/heap/libheap.a(heap_caps_base.c.obj) - esp-idf/heap/libheap.a(heap_caps.c.obj) -heap_caps_realloc_default esp-idf/heap/libheap.a(heap_caps.c.obj) - esp-idf/newlib/libnewlib.a(heap.c.obj) -heap_caps_realloc_prefer esp-idf/heap/libheap.a(heap_caps.c.obj) -heap_caps_register_failed_alloc_callback esp-idf/heap/libheap.a(heap_caps.c.obj) -heap_caps_walk esp-idf/heap/libheap.a(heap_caps.c.obj) -heap_caps_walk_all esp-idf/heap/libheap.a(heap_caps.c.obj) -heap_tlsf_patch_table_ptr esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) -heap_tlsf_table_ptr esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) -i2c_bbtop_init C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_i2c.o) -i2c_clk_sel C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_i2c.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) -i2c_master_reset C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_basic.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) -i2c_paral_read C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_i2c.o) -i2c_paral_set_mst0 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_i2c.o) -i2c_paral_set_read C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_i2c.o) -i2c_paral_write C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_i2c.o) -i2c_paral_write_mask C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_i2c.o) -i2c_paral_write_num C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_i2c.o) -i2c_rc_set_reg C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_analog_cal.o) -i2c_readReg C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_i2c.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_debug.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tsens.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rfpll.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) -i2c_readReg_Mask C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_i2c.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_analog_cal.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rfpll.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_hw_freq.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) -i2c_rfpll_init C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_i2c.o) -i2c_sar2_init_code C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_i2c.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) -i2c_txtop_init C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_i2c.o) -i2c_writeReg C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_i2c.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rfpll.o) -i2c_writeReg_Mask C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_i2c.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_cal.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_debug.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pwdet.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_analog_cal.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tsens.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rfpll.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_hw_freq.o) -i2cmst_reg_init C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) -ieee802154_ack_config_pending_bit esp-idf/ieee802154/libieee802154.a(esp_ieee802154_ack.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) -ieee802154_add_pending_addr esp-idf/ieee802154/libieee802154.a(esp_ieee802154_ack.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) -ieee802154_cca esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) -ieee802154_channel_to_freq esp-idf/ieee802154/libieee802154.a(esp_ieee802154_util.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) -ieee802154_clear_pending_addr esp-idf/ieee802154/libieee802154.a(esp_ieee802154_ack.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) -ieee802154_disable esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) -ieee802154_enable esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) -ieee802154_energy_detect esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) -ieee802154_enter_critical esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) -ieee802154_etm_channel_clear esp-idf/ieee802154/libieee802154.a(esp_ieee802154_util.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) -ieee802154_etm_set_event_task esp-idf/ieee802154/libieee802154.a(esp_ieee802154_util.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) -ieee802154_event_callback_list_register esp-idf/ieee802154/libieee802154.a(esp_ieee802154_event.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) -ieee802154_event_callback_list_unregister esp-idf/ieee802154/libieee802154.a(esp_ieee802154_event.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) -ieee802154_exit_critical esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) -ieee802154_frame_get_dest_panid esp-idf/ieee802154/libieee802154.a(esp_ieee802154_frame.c.obj) -ieee802154_frame_get_dst_addr esp-idf/ieee802154/libieee802154.a(esp_ieee802154_frame.c.obj) -ieee802154_frame_get_security_payload_offset esp-idf/ieee802154/libieee802154.a(esp_ieee802154_frame.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_sec.c.obj) -ieee802154_frame_get_src_addr esp-idf/ieee802154/libieee802154.a(esp_ieee802154_frame.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_ack.c.obj) -ieee802154_frame_get_src_panid esp-idf/ieee802154/libieee802154.a(esp_ieee802154_frame.c.obj) -ieee802154_frame_get_type esp-idf/ieee802154/libieee802154.a(esp_ieee802154_frame.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) -ieee802154_frame_get_version esp-idf/ieee802154/libieee802154.a(esp_ieee802154_frame.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_ack.c.obj) -ieee802154_frame_is_ack_required esp-idf/ieee802154/libieee802154.a(esp_ieee802154_frame.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) -ieee802154_freq_to_channel esp-idf/ieee802154/libieee802154.a(esp_ieee802154_util.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) -ieee802154_get_recent_lqi esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) -ieee802154_get_recent_rssi esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) -ieee802154_get_state esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) -ieee802154_inner_energy_detect_done esp-idf/ieee802154/libieee802154.a(esp_ieee802154_event.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) -ieee802154_inner_enh_ack_generator esp-idf/ieee802154/libieee802154.a(esp_ieee802154_event.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) -ieee802154_inner_receive_done esp-idf/ieee802154/libieee802154.a(esp_ieee802154_event.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) -ieee802154_inner_receive_sfd_done esp-idf/ieee802154/libieee802154.a(esp_ieee802154_event.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) -ieee802154_inner_transmit_done esp-idf/ieee802154/libieee802154.a(esp_ieee802154_event.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) -ieee802154_inner_transmit_failed esp-idf/ieee802154/libieee802154.a(esp_ieee802154_event.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) -ieee802154_inner_transmit_sfd_done esp-idf/ieee802154/libieee802154.a(esp_ieee802154_event.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) -ieee802154_mac_deinit esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) -ieee802154_mac_init esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) -ieee802154_mac_is_inited esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_event.c.obj) -ieee802154_periph esp-idf/soc/libsoc.a(ieee802154_periph.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) -ieee802154_pib_get_auto_ack_rx esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) -ieee802154_pib_get_auto_ack_tx esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) -ieee802154_pib_get_cca_mode esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) -ieee802154_pib_get_cca_threshold esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) -ieee802154_pib_get_channel esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) -ieee802154_pib_get_coordinator esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) -ieee802154_pib_get_enhance_ack_tx esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) -ieee802154_pib_get_pending_mode esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_ack.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) -ieee802154_pib_get_power esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) -ieee802154_pib_get_power_table esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) -ieee802154_pib_get_power_with_channel esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) -ieee802154_pib_get_promiscuous esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) -ieee802154_pib_get_rx_when_idle esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) -ieee802154_pib_init esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) -ieee802154_pib_is_pending esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) -ieee802154_pib_set_auto_ack_rx esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) -ieee802154_pib_set_auto_ack_tx esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) -ieee802154_pib_set_cca_mode esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) -ieee802154_pib_set_cca_threshold esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) -ieee802154_pib_set_channel esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) -ieee802154_pib_set_coordinator esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) -ieee802154_pib_set_enhance_ack_tx esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) -ieee802154_pib_set_pending_mode esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) -ieee802154_pib_set_power esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) -ieee802154_pib_set_power_table esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) -ieee802154_pib_set_power_with_channel esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) -ieee802154_pib_set_promiscuous esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) -ieee802154_pib_set_rx_when_idle esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) -ieee802154_pib_update esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) -ieee802154_receive esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) -ieee802154_receive_at esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) -ieee802154_receive_handle_done esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) -ieee802154_reset_pending_table esp-idf/ieee802154/libieee802154.a(esp_ieee802154_ack.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) -ieee802154_rf_disable esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) -ieee802154_rf_enable esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) -ieee802154_sec_update esp-idf/ieee802154/libieee802154.a(esp_ieee802154_sec.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) -ieee802154_set_rx_sense C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) -ieee802154_sleep esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) -ieee802154_timer0_fire_at esp-idf/ieee802154/libieee802154.a(esp_ieee802154_timer.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) -ieee802154_timer0_fire_at_with_callback esp-idf/ieee802154/libieee802154.a(esp_ieee802154_timer.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) -ieee802154_timer0_get_value esp-idf/ieee802154/libieee802154.a(esp_ieee802154_timer.c.obj) -ieee802154_timer0_set_callback esp-idf/ieee802154/libieee802154.a(esp_ieee802154_timer.c.obj) -ieee802154_timer0_set_threshold esp-idf/ieee802154/libieee802154.a(esp_ieee802154_timer.c.obj) -ieee802154_timer0_start esp-idf/ieee802154/libieee802154.a(esp_ieee802154_timer.c.obj) -ieee802154_timer0_stop esp-idf/ieee802154/libieee802154.a(esp_ieee802154_timer.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) -ieee802154_timer1_fire_at esp-idf/ieee802154/libieee802154.a(esp_ieee802154_timer.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) -ieee802154_timer1_fire_at_with_callback esp-idf/ieee802154/libieee802154.a(esp_ieee802154_timer.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) -ieee802154_timer1_get_value esp-idf/ieee802154/libieee802154.a(esp_ieee802154_timer.c.obj) -ieee802154_timer1_set_callback esp-idf/ieee802154/libieee802154.a(esp_ieee802154_timer.c.obj) -ieee802154_timer1_set_threshold esp-idf/ieee802154/libieee802154.a(esp_ieee802154_timer.c.obj) -ieee802154_timer1_start esp-idf/ieee802154/libieee802154.a(esp_ieee802154_timer.c.obj) -ieee802154_timer1_stop esp-idf/ieee802154/libieee802154.a(esp_ieee802154_timer.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) -ieee802154_transmit esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) -ieee802154_transmit_at esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) -ieee802154_transmit_security_config esp-idf/ieee802154/libieee802154.a(esp_ieee802154_sec.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) -ieee802154_txon_delay_set C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) -include_esp_phy_override esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) -intr_handler_get esp-idf/riscv/libriscv.a(interrupt.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) -intr_handler_get_arg esp-idf/riscv/libriscv.a(interrupt.c.obj) -intr_handler_set esp-idf/riscv/libriscv.a(interrupt.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) -intr_matrix_route esp-idf/riscv/libriscv.a(interrupt_plic.c.obj) -intrusive_list::erase(intrusive_list::iterator) esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -intrusive_list::erase(intrusive_list::iterator) esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) -intrusive_list::erase(intrusive_list::iterator) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) -intrusive_list::erase(intrusive_list::iterator) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) -intrusive_list::clear() esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) -intrusive_list::erase(intrusive_list::iterator) esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) -intrusive_list::push_back(nvs::Page*) esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) -intrusive_list::clearAndFreeNodes() esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) -intrusive_list::push_back(nvs::Storage::NamespaceEntry*) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) -io_mux_enable_lp_io_clock esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) -io_mux_force_disable_lp_io_clock esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) -io_mux_set_clock_source esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) -ioctl esp-idf/vfs/libvfs.a(vfs.c.obj) -iprintf C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-printf.o) -iq_corr_enable C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) -iq_est_disable C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_cal.o) -iq_est_enable C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_cal.o) -iscntrl C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-iscntrl.o) - esp-idf/openthread/libopenthread.a(string.cpp.obj) -isgraph C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-isprint.o) -isprint C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-isprint.o) - esp-idf/openthread/libopenthread.a(log.cpp.obj) -isr_handle_timer0_done esp-idf/ieee802154/libieee802154.a(esp_ieee802154_timer.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) -isr_handle_timer1_done esp-idf/ieee802154/libieee802154.a(esp_ieee802154_timer.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) -itoa C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-itoa.o) - esp-idf/newlib/libnewlib.a(assert.c.obj) - esp-idf/newlib/libnewlib.a(abort.c.obj) -linear_to_db C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pwdet.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_cal.o) -localeconv C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-localeconv.o) -logain_reg_init C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) -loopback_mode_en C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_basic.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_cal.o) -lp_timer_hal_clear_alarm_intr_status esp-idf/hal/libhal.a(lp_timer_hal.c.obj) -lp_timer_hal_clear_overflow_intr_status esp-idf/hal/libhal.a(lp_timer_hal.c.obj) -lp_timer_hal_get_cycle_count esp-idf/hal/libhal.a(lp_timer_hal.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) -lp_timer_hal_set_alarm_target esp-idf/hal/libhal.a(lp_timer_hal.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -mac_enable_bb C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) -mac_tx_chan_offset C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_basic.o) -mallinfo esp-idf/newlib/libnewlib.a(heap.c.obj) -malloc esp-idf/newlib/libnewlib.a(heap.c.obj) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-mprec.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-dtoa.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_op.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_platform.cpp.obj) - esp-idf/vfs/libvfs.a(vfs_eventfd.c.obj) - esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -malloc_stats esp-idf/newlib/libnewlib.a(heap.c.obj) -malloc_trim esp-idf/newlib/libnewlib.a(heap.c.obj) -malloc_usable_size esp-idf/newlib/libnewlib.a(heap.c.obj) -mallopt esp-idf/newlib/libnewlib.a(heap.c.obj) -mbedtls_calloc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) -mbedtls_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) -mbedtls_internal_sha256_process esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) -mbedtls_platform_set_calloc_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) -mbedtls_platform_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) -mbedtls_platform_teardown esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) -mbedtls_platform_zeroize esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) -mbedtls_sha256_clone esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) -mbedtls_sha256_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) -mbedtls_sha256_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) -mbedtls_sha256_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) -mbedtls_sha256_starts esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) -mbedtls_sha256_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) -mbedtls_zeroize_and_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) -meas_tone_pwr_db C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pwdet.o) -memalign esp-idf/newlib/libnewlib.a(heap.c.obj) -memchr C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-memchr.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-svfprintf.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fvwrite.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf_i.o) -memcmp C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-memcmp.o) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_ack.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - esp-idf/openthread/libopenthread.a(mac_types.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_settings.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -memcpy C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-memcpy.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-gdtoa-gethex.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-svfprintf.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtod.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-mprec.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-dtoa.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fvwrite.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-utoa.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_cal.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pwdet.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pbus.o) - esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - esp-idf/hal/libhal.a(spi_slave_hal_iram.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_frame.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_event.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_ack.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(mac_addr.c.obj) - esp-idf/hal/libhal.a(aes_hal.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_xts.c.obj) - esp-idf/openthread/libopenthread.a(spinel.c.obj) - esp-idf/openthread/libopenthread.a(hdlc.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - esp-idf/openthread/libopenthread.a(aes_ccm.cpp.obj) - esp-idf/openthread/libopenthread.a(string.cpp.obj) - esp-idf/openthread/libopenthread.a(frame_builder.cpp.obj) - esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - esp-idf/openthread/libopenthread.a(mac_types.cpp.obj) - esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_spi_slave.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_settings.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_platform.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread.cpp.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) - esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) - esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) - esp-idf/newlib/libnewlib.a(assert.c.obj) - esp-idf/freertos/libfreertos.a(port.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) - esp-idf/heap/libheap.a(heap_caps_base.c.obj) - esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - esp-idf/heap/libheap.a(heap_caps_init.c.obj) - esp-idf/heap/libheap.a(heap_caps.c.obj) - esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) -memmove C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-memmove-stub.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-svfprintf.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fvwrite.o) - esp-idf/openthread/libopenthread.a(frame_builder.cpp.obj) -memset C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-memset.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fseeko.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-findfp.o) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_pib.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_event.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) - esp-idf/hal/libhal.a(adc_hal_common.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(aes_ccm.cpp.obj) - esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - esp-idf/openthread/libopenthread.a(mac_types.cpp.obj) - esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread.cpp.obj) - esp-idf/vfs/libvfs.a(vfs_eventfd.c.obj) - esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) - esp-idf/main/libmain.a(esp_ot_rcp.c.obj) - esp-idf/vfs/libvfs.a(nullfs.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) - esp-idf/newlib/libnewlib.a(reent_init.c.obj) - esp-idf/newlib/libnewlib.a(reent_syscalls.c.obj) - esp-idf/newlib/libnewlib.a(heap.c.obj) - esp-idf/newlib/libnewlib.a(abort.c.obj) - esp-idf/freertos/libfreertos.a(port.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - esp-idf/heap/libheap.a(heap_caps_base.c.obj) - esp-idf/heap/libheap.a(heap_caps_init.c.obj) - esp-idf/heap/libheap.a(heap_caps.c.obj) - esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) - esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) - esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -memspi_host_erase_block esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -memspi_host_erase_chip esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -memspi_host_erase_sector esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -memspi_host_flush_cache esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -memspi_host_init_pointers esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) -memspi_host_program_page esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -memspi_host_read esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -memspi_host_read_data_slicer esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -memspi_host_read_id_hs esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -memspi_host_read_status_hs esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -memspi_host_set_write_protect esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -memspi_host_write_data_slicer esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -mhz2ieee C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rfpll.o) -mkdir esp-idf/vfs/libvfs.a(vfs.c.obj) -mmu_hal_bytes_to_pages esp-idf/hal/libhal.a(mmu_hal.c.obj) -mmu_hal_check_valid_ext_vaddr_region esp-idf/hal/libhal.a(mmu_hal.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) -mmu_hal_init esp-idf/hal/libhal.a(mmu_hal.c.obj) -mmu_hal_map_region esp-idf/hal/libhal.a(mmu_hal.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) -mmu_hal_paddr_to_vaddr esp-idf/hal/libhal.a(mmu_hal.c.obj) - esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) -mmu_hal_pages_to_bytes esp-idf/hal/libhal.a(mmu_hal.c.obj) -mmu_hal_unmap_all esp-idf/hal/libhal.a(mmu_hal.c.obj) -mmu_hal_unmap_region esp-idf/hal/libhal.a(mmu_hal.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) -mmu_hal_vaddr_to_paddr esp-idf/hal/libhal.a(mmu_hal.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) -modem_clock_deselect_all_module_lp_clock_source esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) -modem_clock_deselect_lp_clock_source esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) -modem_clock_hal_deselect_all_ble_rtc_timer_lpclk_source esp-idf/hal/libhal.a(modem_clock_hal.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) -modem_clock_hal_deselect_all_coex_lpclk_source esp-idf/hal/libhal.a(modem_clock_hal.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) -modem_clock_hal_enable_ble_rtc_timer_clock esp-idf/hal/libhal.a(modem_clock_hal.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) -modem_clock_hal_enable_modem_common_fe_clock esp-idf/hal/libhal.a(modem_clock_hal.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) -modem_clock_hal_enable_modem_private_fe_clock esp-idf/hal/libhal.a(modem_clock_hal.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) -modem_clock_hal_select_ble_rtc_timer_lpclk_source esp-idf/hal/libhal.a(modem_clock_hal.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) -modem_clock_hal_select_coex_lpclk_source esp-idf/hal/libhal.a(modem_clock_hal.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) -modem_clock_hal_set_ble_rtc_timer_divisor_value esp-idf/hal/libhal.a(modem_clock_hal.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) -modem_clock_module_disable esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_init_esp32hxx.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) -modem_clock_module_enable esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_init_esp32hxx.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) -modem_clock_module_mac_reset esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) -modem_clock_select_lp_clock_source esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) -modem_domain_pd_allowed esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -mspi_timing_change_speed_mode_cache_safe esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) - esp-idf/esp_system/libesp_system.a(system_internal.c.obj) -mspi_timing_enter_high_speed_mode esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) -mspi_timing_enter_low_speed_mode esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) -mspi_timing_flash_tuning esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) -mspi_timing_psram_tuning esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) -mspi_timing_set_pin_drive_strength esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) -multi_heap_aligned_alloc_impl_offs esp-idf/heap/libheap.a(multi_heap.c.obj) -multi_heap_aligned_alloc_offs esp-idf/heap/libheap.a(multi_heap.c.obj) - esp-idf/heap/libheap.a(heap_caps_base.c.obj) -multi_heap_check esp-idf/heap/libheap.a(heap_caps.c.obj) -multi_heap_dump esp-idf/heap/libheap.a(heap_caps.c.obj) -multi_heap_find_containing_block esp-idf/esp_rom/libesp_rom.a(esp_rom_multi_heap.c.obj) - esp-idf/heap/libheap.a(heap_caps.c.obj) -multi_heap_find_containing_block_impl esp-idf/esp_rom/libesp_rom.a(esp_rom_multi_heap.c.obj) -multi_heap_free esp-idf/heap/libheap.a(heap_caps_base.c.obj) -multi_heap_free_size esp-idf/heap/libheap.a(heap_caps.c.obj) -multi_heap_get_allocated_size esp-idf/heap/libheap.a(heap_caps_base.c.obj) - esp-idf/heap/libheap.a(heap_caps.c.obj) -multi_heap_get_allocated_size_impl esp-idf/heap/libheap.a(multi_heap.c.obj) -multi_heap_get_full_block_size esp-idf/heap/libheap.a(multi_heap.c.obj) -multi_heap_get_info esp-idf/heap/libheap.a(heap_caps.c.obj) -multi_heap_in_rom_init esp-idf/heap/libheap.a(multi_heap.c.obj) - esp-idf/heap/libheap.a(heap_caps_init.c.obj) -multi_heap_internal_lock esp-idf/heap/libheap.a(multi_heap.c.obj) - esp-idf/esp_rom/libesp_rom.a(esp_rom_multi_heap.c.obj) -multi_heap_internal_unlock esp-idf/heap/libheap.a(multi_heap.c.obj) - esp-idf/esp_rom/libesp_rom.a(esp_rom_multi_heap.c.obj) -multi_heap_malloc esp-idf/heap/libheap.a(heap_caps_base.c.obj) - esp-idf/heap/libheap.a(heap_caps_init.c.obj) -multi_heap_minimum_free_size esp-idf/heap/libheap.a(heap_caps.c.obj) -multi_heap_os_funcs esp-idf/heap/libheap.a(multi_heap.c.obj) -multi_heap_os_funcs_init esp-idf/heap/libheap.a(multi_heap.c.obj) -multi_heap_realloc esp-idf/heap/libheap.a(heap_caps_base.c.obj) -multi_heap_register esp-idf/heap/libheap.a(heap_caps_init.c.obj) -multi_heap_reset_minimum_free_bytes esp-idf/heap/libheap.a(multi_heap.c.obj) - esp-idf/heap/libheap.a(heap_caps.c.obj) -multi_heap_restore_minimum_free_bytes esp-idf/heap/libheap.a(multi_heap.c.obj) - esp-idf/heap/libheap.a(heap_caps.c.obj) -multi_heap_set_lock esp-idf/heap/libheap.a(heap_caps_init.c.obj) -multi_heap_walk esp-idf/esp_rom/libesp_rom.a(esp_rom_multi_heap.c.obj) - esp-idf/heap/libheap.a(heap_caps.c.obj) -nan C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libm_a-s_nan.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtod.o) -nanf C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libm_a-sf_nan.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtod.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfscanf_float.o) -noise_check_loop C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_api.o) -noise_floor_auto_set C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) -nrx_freq_set C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) -nvs::HashList::HashList() esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) -nvs::HashList::HashList() esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) -nvs::HashList::HashListBlock::HashListBlock() esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) -nvs::HashList::HashListBlock::HashListBlock() esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) -nvs::HashList::clear() esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) -nvs::HashList::erase(unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) -nvs::HashList::find(unsigned int, nvs::Item const&) esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) -nvs::HashList::insert(nvs::Item const&, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) -nvs::HashList::~HashList() esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) -nvs::HashList::~HashList() esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) -nvs::Item::calculateCrc32() const esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) -nvs::Item::calculateCrc32(unsigned char const*, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) -nvs::Item::calculateCrc32WithoutValue() const esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) -nvs::Item::checkHeaderConsistency(unsigned char) const esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) -nvs::Lock::Lock() esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) -nvs::Lock::Lock() esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs::Lock::init() esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs::Lock::mSemaphore esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) -nvs::Lock::uninit() esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) -nvs::Lock::~Lock() esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs::Lock::~Lock() esp-idf/nvs_flash/libnvs_flash.a(nvs_platform.cpp.obj) -nvs::NVSEncryptedPartition::NVSEncryptedPartition(esp_partition_t const*) esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) -nvs::NVSEncryptedPartition::NVSEncryptedPartition(esp_partition_t const*) esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) -nvs::NVSEncryptedPartition::init(nvs_sec_cfg_t*) esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) -nvs::NVSEncryptedPartition::read(unsigned int, void*, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) -nvs::NVSEncryptedPartition::write(unsigned int, void const*, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) -nvs::NVSEncryptedPartition::~NVSEncryptedPartition() esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) -nvs::NVSEncryptedPartition::~NVSEncryptedPartition() esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) -nvs::NVSEncryptedPartition::~NVSEncryptedPartition() esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) -nvs::NVSHandleSimple::calcEntriesInNamespace(unsigned int&) esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) -nvs::NVSHandleSimple::commit() esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) -nvs::NVSHandleSimple::debugDump() esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) -nvs::NVSHandleSimple::erase_all() esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) -nvs::NVSHandleSimple::erase_item(char const*) esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) -nvs::NVSHandleSimple::fillStats(nvs_stats_t&) esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) -nvs::NVSHandleSimple::findEntry(nvs_opaque_iterator_t*, char const*) esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) -nvs::NVSHandleSimple::findEntryNs(nvs_opaque_iterator_t*) esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs::NVSHandleSimple::find_key(char const*, nvs_type_t&) esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) -nvs::NVSHandleSimple::get_blob(char const*, void*, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) -nvs::NVSHandleSimple::get_item_size(nvs::ItemType, char const*, unsigned int&) esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) -nvs::NVSHandleSimple::get_partition_name() const esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs::NVSHandleSimple::get_storage() const esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs::NVSHandleSimple::get_string(char const*, char*, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) -nvs::NVSHandleSimple::get_typed_item(nvs::ItemType, char const*, void*, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) -nvs::NVSHandleSimple::get_used_entry_count(unsigned int&) esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) -nvs::NVSHandleSimple::nextEntry(nvs_opaque_iterator_t*) esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) -nvs::NVSHandleSimple::set_blob(char const*, void const*, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) -nvs::NVSHandleSimple::set_string(char const*, char const*) esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) -nvs::NVSHandleSimple::set_typed_item(nvs::ItemType, char const*, void const*, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) -nvs::NVSHandleSimple::~NVSHandleSimple() esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) -nvs::NVSHandleSimple::~NVSHandleSimple() esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) -nvs::NVSHandleSimple::~NVSHandleSimple() esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) -nvs::NVSPartition::NVSPartition(esp_partition_t const*) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs::NVSPartition::NVSPartition(esp_partition_t const*) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) -nvs::NVSPartition::erase_range(unsigned int, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) -nvs::NVSPartition::get_address() esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) -nvs::NVSPartition::get_partition_name() esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) -nvs::NVSPartition::get_readonly() esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) -nvs::NVSPartition::get_size() esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) -nvs::NVSPartition::read(unsigned int, void*, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) -nvs::NVSPartition::read_raw(unsigned int, void*, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) -nvs::NVSPartition::write(unsigned int, void const*, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) -nvs::NVSPartition::write_raw(unsigned int, void const*, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) -nvs::NVSPartition::~NVSPartition() esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) -nvs::NVSPartition::~NVSPartition() esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) -nvs::NVSPartition::~NVSPartition() esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) -nvs::NVSPartitionManager::close_handle(nvs::NVSHandleSimple*) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) -nvs::NVSPartitionManager::deinit_partition(char const*) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs::NVSPartitionManager::get_instance() esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs::NVSPartitionManager::init_custom(nvs::Partition*, unsigned long, unsigned long) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs::NVSPartitionManager::init_partition(char const*) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs::NVSPartitionManager::instance esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) -nvs::NVSPartitionManager::lookup_storage_from_name(char const*) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs::NVSPartitionManager::open_handle(char const*, char const*, nvs_open_mode_t, nvs::NVSHandleSimple**) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs::NVSPartitionManager::open_handles_size() esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) -nvs::NVSPartitionManager::secure_init_partition(char const*, nvs_sec_cfg_t*) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs::NVSPartitionManager::~NVSPartitionManager() esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) -nvs::NVSPartitionManager::~NVSPartitionManager() esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) -nvs::NVSPartitionManager::~NVSPartitionManager() esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) -nvs::Page::Header::calculateCrc32() esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) -nvs::Page::Page() esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) -nvs::Page::Page() esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) -nvs::Page::SEC_SIZE esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs::Page::alterEntryRangeState(unsigned int, unsigned int, nvs::Page::EntryState) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) -nvs::Page::alterEntryState(unsigned int, nvs::Page::EntryState) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) -nvs::Page::alterPageState(nvs::Page::PageState) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) -nvs::Page::calcEntries(nvs_stats_t&) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) -nvs::Page::cmpItem(unsigned char, nvs::ItemType, char const*, void const*, unsigned int, unsigned char, nvs::VerOffset) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) -nvs::Page::copyItems(nvs::Page&) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) -nvs::Page::debugDump() const esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) -nvs::Page::erase() esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) -nvs::Page::eraseEntryAndSpan(unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) -nvs::Page::eraseItem(unsigned char, nvs::ItemType, char const*, unsigned char, nvs::VerOffset) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) -nvs::Page::findItem(unsigned char, nvs::ItemType, char const*, unsigned char, nvs::VerOffset) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) -nvs::Page::findItem(unsigned char, nvs::ItemType, char const*, unsigned int&, nvs::Item&, unsigned char, nvs::VerOffset) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) -nvs::Page::getSeqNumber(unsigned long&) const esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) -nvs::Page::getVarDataTailroom() const esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) -nvs::Page::initialize() esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) -nvs::Page::load(nvs::Partition*, unsigned long) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) -nvs::Page::mLoadEntryTable() esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) -nvs::Page::markFreeing() esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) -nvs::Page::markFull() esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) -nvs::Page::pageStateToName(nvs::Page::PageState) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) -nvs::Page::readEntry(unsigned int, nvs::Item&) const esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) -nvs::Page::readItem(unsigned char, nvs::ItemType, char const*, void*, unsigned int, unsigned char, nvs::VerOffset) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) -nvs::Page::setSeqNumber(unsigned long) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) -nvs::Page::setVersion(unsigned char) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) -nvs::Page::updateFirstUsedEntry(unsigned int, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) -nvs::Page::writeEntry(nvs::Item const&) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) -nvs::Page::writeEntryData(unsigned char const*, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) -nvs::Page::writeItem(unsigned char, nvs::ItemType, char const*, void const*, unsigned int, unsigned char) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) -nvs::PageManager::activatePage() esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) -nvs::PageManager::fillStats(nvs_stats_t&) esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) -nvs::PageManager::load(nvs::Partition*, unsigned long, unsigned long) esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) -nvs::PageManager::requestNewPage() esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) -nvs::Storage::calcEntriesInNamespace(unsigned char, unsigned int&) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) -nvs::Storage::clearNamespaces() esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) -nvs::Storage::cmpMultiPageBlob(unsigned char, char const*, void const*, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) -nvs::Storage::createOrOpenNamespace(char const*, bool, unsigned char&) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) -nvs::Storage::debugDump() esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs::Storage::eraseItem(unsigned char, nvs::ItemType, char const*) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) -nvs::Storage::eraseMismatchedBlobIndexes(intrusive_list&) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) -nvs::Storage::eraseMultiPageBlob(unsigned char, char const*, nvs::VerOffset) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) -nvs::Storage::eraseNamespace(unsigned char) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) -nvs::Storage::eraseOrphanDataBlobs(intrusive_list&) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) -nvs::Storage::fillEntryInfo(nvs::Item&, nvs_entry_info_t&) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) -nvs::Storage::fillStats(nvs_stats_t&) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs::Storage::findEntry(nvs_opaque_iterator_t*, char const*) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs::Storage::findEntryNs(nvs_opaque_iterator_t*, unsigned char) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) -nvs::Storage::findItem(unsigned char, nvs::ItemType, char const*, nvs::Page*&, nvs::Item&, unsigned char, nvs::VerOffset) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) -nvs::Storage::findKey(unsigned char, char const*, nvs::ItemType*) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) -nvs::Storage::getItemDataSize(unsigned char, nvs::ItemType, char const*, unsigned int&) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) -nvs::Storage::init(unsigned long, unsigned long) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) -nvs::Storage::isValid() const esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs::Storage::nextEntry(nvs_opaque_iterator_t*) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs::Storage::populateBlobIndices(intrusive_list&) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) -nvs::Storage::readItem(unsigned char, nvs::ItemType, char const*, void*, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) -nvs::Storage::readMultiPageBlob(unsigned char, char const*, void*, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) -nvs::Storage::writeItem(unsigned char, nvs::ItemType, char const*, void const*, unsigned int) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) -nvs::Storage::writeMultiPageBlob(unsigned char, char const*, void const*, unsigned int, nvs::VerOffset) esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) -nvs::Storage::~Storage() esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) -nvs::Storage::~Storage() esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) -nvs::isVariableLengthType(nvs::ItemType) esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) -nvs::partition_lookup::lookup_nvs_encrypted_partition(char const*, nvs_sec_cfg_t*, nvs::NVSPartition**) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) -nvs::partition_lookup::lookup_nvs_partition(char const*, nvs::NVSPartition**) esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_lookup.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) -nvs_close esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_settings.c.obj) -nvs_commit esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_settings.c.obj) -nvs_dump esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs_entry_find esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_settings.c.obj) -nvs_entry_find_in_handle esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs_entry_info esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_settings.c.obj) -nvs_entry_next esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_settings.c.obj) -nvs_erase_all esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_settings.c.obj) -nvs_erase_key esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_settings.c.obj) -nvs_find_key esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs_flash_deinit esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs_flash_deinit_partition esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs_flash_erase esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs_flash_erase_partition esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs_flash_erase_partition_ptr esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs_flash_generate_keys esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs_flash_generate_keys_v2 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs_flash_get_default_security_scheme esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs_flash_init esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - esp-idf/main/libmain.a(esp_ot_rcp.c.obj) -nvs_flash_init_partition esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs_flash_init_partition_ptr esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs_flash_read_security_cfg esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs_flash_read_security_cfg_v2 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs_flash_register_security_scheme esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs_flash_secure_init esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs_flash_secure_init_partition esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs_get_blob esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_settings.c.obj) -nvs_get_i16 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs_get_i32 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs_get_i64 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs_get_i8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs_get_stats esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs_get_str esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs_get_u16 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs_get_u32 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs_get_u64 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs_get_u8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs_get_used_entry_count esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs_open esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_settings.c.obj) -nvs_open_from_partition esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs_release_iterator esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_settings.c.obj) -nvs_set_blob esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_settings.c.obj) -nvs_set_i16 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs_set_i32 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs_set_i64 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs_set_i8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs_set_str esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs_set_u16 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs_set_u32 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs_set_u64 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -nvs_set_u8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) -open C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysopen.o) - esp-idf/openthread/libopenthread.a(esp_openthread_uart.c.obj) - esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) -open_i2c_xpd C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) -opendir esp-idf/vfs/libvfs.a(vfs.c.obj) -operator delete(void*) C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_op.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_ops.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_opv.o) -operator delete(void*, unsigned int) C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_ops.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(class_type_info.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(bad_alloc.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(tinfo.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) -operator delete[](void*) C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(del_opv.o) - esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) -operator new(unsigned int) C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_op.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opv.o) -operator new[](unsigned int) C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opv.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opvnt.o) -operator new[](unsigned int, std::nothrow_t const&) C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_opvnt.o) - esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) -ot::Crypto::AesCcm::Finalize(void*) esp-idf/openthread/libopenthread.a(aes_ccm.cpp.obj) - esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -ot::Crypto::AesCcm::GenerateNonce(ot::Mac::ExtAddress const&, unsigned long, unsigned char, unsigned char*) esp-idf/openthread/libopenthread.a(aes_ccm.cpp.obj) - esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -ot::Crypto::AesCcm::Header(void const*, unsigned long) esp-idf/openthread/libopenthread.a(aes_ccm.cpp.obj) - esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -ot::Crypto::AesCcm::Init(unsigned long, unsigned long, unsigned char, void const*, unsigned char) esp-idf/openthread/libopenthread.a(aes_ccm.cpp.obj) - esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -ot::Crypto::AesCcm::Payload(void*, void*, unsigned long, ot::Crypto::AesCcm::Mode) esp-idf/openthread/libopenthread.a(aes_ccm.cpp.obj) - esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -ot::Crypto::AesCcm::SetKey(ot::Mac::KeyMaterial const&) esp-idf/openthread/libopenthread.a(aes_ccm.cpp.obj) - esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -ot::Crypto::AesCcm::SetKey(unsigned char const*, unsigned short) esp-idf/openthread/libopenthread.a(aes_ccm.cpp.obj) -ot::Crypto::AesEcb::AesEcb() esp-idf/openthread/libopenthread.a(aes_ecb.cpp.obj) -ot::Crypto::AesEcb::AesEcb() esp-idf/openthread/libopenthread.a(aes_ecb.cpp.obj) - esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -ot::Crypto::AesEcb::Encrypt(unsigned char const*, unsigned char*) esp-idf/openthread/libopenthread.a(aes_ecb.cpp.obj) - esp-idf/openthread/libopenthread.a(aes_ccm.cpp.obj) -ot::Crypto::AesEcb::SetKey(ot::Crypto::Key const&) esp-idf/openthread/libopenthread.a(aes_ecb.cpp.obj) - esp-idf/openthread/libopenthread.a(aes_ccm.cpp.obj) -ot::Crypto::AesEcb::~AesEcb() esp-idf/openthread/libopenthread.a(aes_ecb.cpp.obj) - esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -ot::Crypto::AesEcb::~AesEcb() esp-idf/openthread/libopenthread.a(aes_ecb.cpp.obj) -ot::Crypto::LiteralKey::LiteralKey(ot::Crypto::Key const&) esp-idf/openthread/libopenthread.a(storage.cpp.obj) - esp-idf/openthread/libopenthread.a(crypto_platform.cpp.obj) -ot::Crypto::LiteralKey::LiteralKey(ot::Crypto::Key const&) esp-idf/openthread/libopenthread.a(storage.cpp.obj) -ot::FrameBuilder::AppendBigEndianUint16(unsigned short) esp-idf/openthread/libopenthread.a(frame_builder.cpp.obj) -ot::FrameBuilder::AppendBigEndianUint32(unsigned long) esp-idf/openthread/libopenthread.a(frame_builder.cpp.obj) -ot::FrameBuilder::AppendBytes(void const*, unsigned short) esp-idf/openthread/libopenthread.a(frame_builder.cpp.obj) -ot::FrameBuilder::AppendLength(unsigned short) esp-idf/openthread/libopenthread.a(frame_builder.cpp.obj) - esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -ot::FrameBuilder::AppendLittleEndianUint16(unsigned short) esp-idf/openthread/libopenthread.a(frame_builder.cpp.obj) - esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -ot::FrameBuilder::AppendLittleEndianUint32(unsigned long) esp-idf/openthread/libopenthread.a(frame_builder.cpp.obj) -ot::FrameBuilder::AppendMacAddress(ot::Mac::Address const&) esp-idf/openthread/libopenthread.a(frame_builder.cpp.obj) - esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -ot::FrameBuilder::AppendUint8(unsigned char) esp-idf/openthread/libopenthread.a(frame_builder.cpp.obj) - esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -ot::FrameBuilder::Init(void*, unsigned short) esp-idf/openthread/libopenthread.a(frame_builder.cpp.obj) - esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -ot::FrameBuilder::InsertBytes(unsigned short, void const*, unsigned short) esp-idf/openthread/libopenthread.a(frame_builder.cpp.obj) -ot::FrameBuilder::RemoveBytes(unsigned short, unsigned short) esp-idf/openthread/libopenthread.a(frame_builder.cpp.obj) -ot::FrameBuilder::WriteBytes(unsigned short, void const*, unsigned short) esp-idf/openthread/libopenthread.a(frame_builder.cpp.obj) -ot::GenerateNextHexDumpLine(otLogHexDumpInfo&) esp-idf/openthread/libopenthread.a(log.cpp.obj) - esp-idf/openthread/libopenthread.a(logging_api.cpp.obj) -ot::Hdlc::Decoder::Decode(unsigned char const*, unsigned short) esp-idf/openthread/libopenthread.a(hdlc.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) -ot::Hdlc::Decoder::Decoder() esp-idf/openthread/libopenthread.a(hdlc.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) -ot::Hdlc::Decoder::Decoder() esp-idf/openthread/libopenthread.a(hdlc.cpp.obj) -ot::Hdlc::Decoder::Init(ot::Spinel::FrameWritePointer&, void (*)(void*, otError), void*) esp-idf/openthread/libopenthread.a(hdlc.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) -ot::Hdlc::Decoder::Reset() esp-idf/openthread/libopenthread.a(hdlc.cpp.obj) -ot::Hdlc::Encoder::BeginFrame() esp-idf/openthread/libopenthread.a(hdlc.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) -ot::Hdlc::Encoder::Encode(unsigned char const*, unsigned short) esp-idf/openthread/libopenthread.a(hdlc.cpp.obj) -ot::Hdlc::Encoder::Encode(unsigned char) esp-idf/openthread/libopenthread.a(hdlc.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) -ot::Hdlc::Encoder::Encoder(ot::Spinel::FrameWritePointer&) esp-idf/openthread/libopenthread.a(hdlc.cpp.obj) -ot::Hdlc::Encoder::Encoder(ot::Spinel::FrameWritePointer&) esp-idf/openthread/libopenthread.a(hdlc.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) -ot::Hdlc::Encoder::EndFrame() esp-idf/openthread/libopenthread.a(hdlc.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) -ot::Instance::AfterInit() esp-idf/openthread/libopenthread.a(instance.cpp.obj) -ot::Instance::Finalize() esp-idf/openthread/libopenthread.a(instance.cpp.obj) - esp-idf/openthread/libopenthread.a(instance_api.cpp.obj) -ot::Instance::Get() esp-idf/openthread/libopenthread.a(instance.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_platform.cpp.obj) -ot::Instance::InitSingle() esp-idf/openthread/libopenthread.a(instance.cpp.obj) - esp-idf/openthread/libopenthread.a(instance_api.cpp.obj) -ot::Instance::Instance() esp-idf/openthread/libopenthread.a(instance.cpp.obj) -ot::Instance::Instance() esp-idf/openthread/libopenthread.a(instance.cpp.obj) -ot::Instance::Reset() esp-idf/openthread/libopenthread.a(instance.cpp.obj) - esp-idf/openthread/libopenthread.a(instance_api.cpp.obj) -ot::Instance::ResetRadioStack() esp-idf/openthread/libopenthread.a(instance.cpp.obj) - esp-idf/openthread/libopenthread.a(instance_api.cpp.obj) -ot::IsDigit(char) esp-idf/openthread/libopenthread.a(string.cpp.obj) -ot::IsLowercase(char) esp-idf/openthread/libopenthread.a(string.cpp.obj) -ot::IsUppercase(char) esp-idf/openthread/libopenthread.a(string.cpp.obj) -ot::IsValidUtf8String(char const*) esp-idf/openthread/libopenthread.a(string.cpp.obj) -ot::IsValidUtf8String(char const*, unsigned int) esp-idf/openthread/libopenthread.a(string.cpp.obj) -ot::Logger::DumpInModule(char const*, ot::LogLevel, char const*, void const*, unsigned short) esp-idf/openthread/libopenthread.a(log.cpp.obj) -ot::Logger::LogInModule(char const*, ot::LogLevel, char const*, ...) esp-idf/openthread/libopenthread.a(log.cpp.obj) -ot::Logger::LogVarArgs(char const*, ot::LogLevel, char const*, void*) esp-idf/openthread/libopenthread.a(log.cpp.obj) - esp-idf/openthread/libopenthread.a(logging_api.cpp.obj) -ot::Mac::Address::ToString() const esp-idf/openthread/libopenthread.a(mac_types.cpp.obj) -ot::Mac::Address::operator==(ot::Mac::Address const&) const esp-idf/openthread/libopenthread.a(mac_types.cpp.obj) -ot::Mac::ExtAddress::CopyAddress(unsigned char*, unsigned char const*, ot::Mac::ExtAddress::CopyByteOrder) esp-idf/openthread/libopenthread.a(mac_types.cpp.obj) - esp-idf/openthread/libopenthread.a(frame_builder.cpp.obj) - esp-idf/openthread/libopenthread.a(radio.cpp.obj) - esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -ot::Mac::ExtAddress::ToString() const esp-idf/openthread/libopenthread.a(mac_types.cpp.obj) -ot::Mac::ExtAddress::operator==(ot::Mac::ExtAddress const&) const esp-idf/openthread/libopenthread.a(mac_types.cpp.obj) - esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -ot::Mac::Frame::CalculateAddrFieldSize(unsigned short) esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -ot::Mac::Frame::CalculateKeySourceSize(unsigned char) esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -ot::Mac::Frame::CalculateMicSize(unsigned char) esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -ot::Mac::Frame::CalculateSecurityHeaderSize(unsigned char) esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -ot::Mac::Frame::DetermineFcfAddrType(ot::Mac::Address const&, unsigned short) esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -ot::Mac::Frame::FindDstAddrIndex() const esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -ot::Mac::Frame::FindDstPanIdIndex() const esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -ot::Mac::Frame::FindHeaderIeIndex() const esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -ot::Mac::Frame::FindPayloadIndex() const esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -ot::Mac::Frame::FindSecurityHeaderIndex() const esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -ot::Mac::Frame::FindSrcAddrIndex() const esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -ot::Mac::Frame::FindSrcPanIdIndex() const esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -ot::Mac::Frame::GetCommandId(unsigned char&) const esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -ot::Mac::Frame::GetCslIe() const esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -ot::Mac::Frame::GetDstAddr(ot::Mac::Address&) const esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -ot::Mac::Frame::GetDstPanId(unsigned short&) const esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -ot::Mac::Frame::GetFooter() const esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -ot::Mac::Frame::GetFooterLength() const esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -ot::Mac::Frame::GetFrameCounter(unsigned long&) const esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -ot::Mac::Frame::GetHeaderIe(unsigned char) const esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -ot::Mac::Frame::GetHeaderLength() const esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -ot::Mac::Frame::GetKeyId(unsigned char&) const esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -ot::Mac::Frame::GetKeyIdMode(unsigned char&) const esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -ot::Mac::Frame::GetKeySource() const esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -ot::Mac::Frame::GetMaxPayloadLength() const esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -ot::Mac::Frame::GetPayload() const esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -ot::Mac::Frame::GetPayloadLength() const esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -ot::Mac::Frame::GetSecurityControlField(unsigned char&) const esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -ot::Mac::Frame::GetSecurityLevel(unsigned char&) const esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -ot::Mac::Frame::GetSequence() const esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -ot::Mac::Frame::GetSrcAddr(ot::Mac::Address&) const esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -ot::Mac::Frame::GetSrcPanId(unsigned short&) const esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -ot::Mac::Frame::IsDataRequestCommand() const esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -ot::Mac::Frame::IsDstPanIdPresent(unsigned short) esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -ot::Mac::Frame::IsSrcPanIdPresent(unsigned short) esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -ot::Mac::Frame::SetAckRequest(bool) esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -ot::Mac::Frame::SetFrameControlField(unsigned short) esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -ot::Mac::Frame::SetFrameCounter(unsigned long) esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -ot::Mac::Frame::SetFramePending(bool) esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -ot::Mac::Frame::SetIePresent(bool) esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -ot::Mac::Frame::SetKeyId(unsigned char) esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -ot::Mac::Frame::SetKeySource(unsigned char const*) esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -ot::Mac::Frame::SetPayloadLength(unsigned short) esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -ot::Mac::Frame::SetSequence(unsigned char) esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -ot::Mac::Frame::SkipAddrFieldIndex() const esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -ot::Mac::Frame::SkipSecurityHeaderIndex() const esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -ot::Mac::Frame::SkipSequenceIndex() const esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -ot::Mac::Frame::ValidatePsdu() const esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -ot::Mac::GenerateRandomPanId() esp-idf/openthread/libopenthread.a(mac_types.cpp.obj) -ot::Mac::HeaderIe::Init(unsigned short, unsigned char) esp-idf/openthread/libopenthread.a(mac_header_ie.cpp.obj) - esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -ot::Mac::KeyMaterial::Clear() esp-idf/openthread/libopenthread.a(mac_types.cpp.obj) - esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) -ot::Mac::KeyMaterial::ConvertToCryptoKey(ot::Crypto::Key&) const esp-idf/openthread/libopenthread.a(mac_types.cpp.obj) - esp-idf/openthread/libopenthread.a(aes_ccm.cpp.obj) -ot::Mac::KeyMaterial::ExtractKey(ot::Mac::Key&) const esp-idf/openthread/libopenthread.a(mac_types.cpp.obj) -ot::Mac::KeyMaterial::SetFrom(ot::Mac::Key const&, bool) esp-idf/openthread/libopenthread.a(mac_types.cpp.obj) - esp-idf/openthread/libopenthread.a(link_raw.cpp.obj) -ot::Mac::KeyMaterial::operator==(ot::Mac::KeyMaterial const&) const esp-idf/openthread/libopenthread.a(mac_types.cpp.obj) -ot::Mac::LinkFrameCounters::GetMaximum() const esp-idf/openthread/libopenthread.a(mac_types.cpp.obj) -ot::Mac::LinkFrameCounters::SetAll(unsigned long) esp-idf/openthread/libopenthread.a(mac_types.cpp.obj) -ot::Mac::LinkRaw::EnergyScan(unsigned char, unsigned short, void (*)(otInstance*, signed char)) esp-idf/openthread/libopenthread.a(link_raw.cpp.obj) - esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) -ot::Mac::LinkRaw::Init() esp-idf/openthread/libopenthread.a(link_raw.cpp.obj) - esp-idf/openthread/libopenthread.a(instance.cpp.obj) -ot::Mac::LinkRaw::InvokeEnergyScanDone(signed char) esp-idf/openthread/libopenthread.a(link_raw.cpp.obj) - esp-idf/openthread/libopenthread.a(sub_mac_callbacks.cpp.obj) -ot::Mac::LinkRaw::InvokeReceiveDone(ot::Mac::RxFrame*, otError) esp-idf/openthread/libopenthread.a(link_raw.cpp.obj) - esp-idf/openthread/libopenthread.a(sub_mac_callbacks.cpp.obj) -ot::Mac::LinkRaw::InvokeTransmitDone(ot::Mac::TxFrame&, ot::Mac::RxFrame*, otError) esp-idf/openthread/libopenthread.a(link_raw.cpp.obj) - esp-idf/openthread/libopenthread.a(sub_mac_callbacks.cpp.obj) -ot::Mac::LinkRaw::LinkRaw(ot::Instance&) esp-idf/openthread/libopenthread.a(link_raw.cpp.obj) - esp-idf/openthread/libopenthread.a(instance.cpp.obj) -ot::Mac::LinkRaw::LinkRaw(ot::Instance&) esp-idf/openthread/libopenthread.a(link_raw.cpp.obj) -ot::Mac::LinkRaw::Receive() esp-idf/openthread/libopenthread.a(link_raw.cpp.obj) - esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) -ot::Mac::LinkRaw::SetAlternateShortAddress(unsigned short) esp-idf/openthread/libopenthread.a(link_raw.cpp.obj) - esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) -ot::Mac::LinkRaw::SetChannel(unsigned char) esp-idf/openthread/libopenthread.a(link_raw.cpp.obj) - esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) -ot::Mac::LinkRaw::SetExtAddress(ot::Mac::ExtAddress const&) esp-idf/openthread/libopenthread.a(link_raw.cpp.obj) - esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) -ot::Mac::LinkRaw::SetMacFrameCounter(unsigned long, bool) esp-idf/openthread/libopenthread.a(link_raw.cpp.obj) - esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) -ot::Mac::LinkRaw::SetMacKey(unsigned char, unsigned char, ot::Mac::Key const&, ot::Mac::Key const&, ot::Mac::Key const&) esp-idf/openthread/libopenthread.a(link_raw.cpp.obj) - esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) -ot::Mac::LinkRaw::SetPanId(unsigned short) esp-idf/openthread/libopenthread.a(link_raw.cpp.obj) - esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) -ot::Mac::LinkRaw::SetReceiveDone(void (*)(otInstance*, otRadioFrame*, otError)) esp-idf/openthread/libopenthread.a(link_raw.cpp.obj) - esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) -ot::Mac::LinkRaw::SetShortAddress(unsigned short) esp-idf/openthread/libopenthread.a(link_raw.cpp.obj) - esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) -ot::Mac::LinkRaw::Transmit(void (*)(otInstance*, otRadioFrame*, otRadioFrame*, otError)) esp-idf/openthread/libopenthread.a(link_raw.cpp.obj) - esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) -ot::Mac::PanIds::SetBothSourceDestination(unsigned short) esp-idf/openthread/libopenthread.a(mac_types.cpp.obj) -ot::Mac::PanIds::SetDestination(unsigned short) esp-idf/openthread/libopenthread.a(mac_types.cpp.obj) - esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -ot::Mac::PanIds::SetSource(unsigned short) esp-idf/openthread/libopenthread.a(mac_types.cpp.obj) -ot::Mac::RxFrame::ProcessReceiveAesCcm(ot::Mac::ExtAddress const&, ot::Mac::KeyMaterial const&) esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -ot::Mac::SubMac::BeginTransmit() esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) -ot::Mac::SubMac::Callbacks::Callbacks(ot::Instance&) esp-idf/openthread/libopenthread.a(sub_mac_callbacks.cpp.obj) - esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) -ot::Mac::SubMac::Callbacks::Callbacks(ot::Instance&) esp-idf/openthread/libopenthread.a(sub_mac_callbacks.cpp.obj) -ot::Mac::SubMac::Callbacks::EnergyScanDone(signed char) esp-idf/openthread/libopenthread.a(sub_mac_callbacks.cpp.obj) - esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) -ot::Mac::SubMac::Callbacks::FrameCounterUsed(unsigned long) esp-idf/openthread/libopenthread.a(sub_mac_callbacks.cpp.obj) - esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) -ot::Mac::SubMac::Callbacks::ReceiveDone(ot::Mac::RxFrame*, otError) esp-idf/openthread/libopenthread.a(sub_mac_callbacks.cpp.obj) - esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) -ot::Mac::SubMac::Callbacks::RecordCcaStatus(bool, unsigned char) esp-idf/openthread/libopenthread.a(sub_mac_callbacks.cpp.obj) - esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) -ot::Mac::SubMac::Callbacks::RecordFrameTransmitStatus(ot::Mac::TxFrame const&, otError, unsigned char, bool) esp-idf/openthread/libopenthread.a(sub_mac_callbacks.cpp.obj) - esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) -ot::Mac::SubMac::Callbacks::TransmitDone(ot::Mac::TxFrame&, ot::Mac::RxFrame*, otError) esp-idf/openthread/libopenthread.a(sub_mac_callbacks.cpp.obj) - esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) -ot::Mac::SubMac::Disable() esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - esp-idf/openthread/libopenthread.a(link_raw.cpp.obj) - esp-idf/openthread/libopenthread.a(instance.cpp.obj) -ot::Mac::SubMac::Enable() esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - esp-idf/openthread/libopenthread.a(link_raw.cpp.obj) -ot::Mac::SubMac::EnergyScan(unsigned char, unsigned short) esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - esp-idf/openthread/libopenthread.a(link_raw.cpp.obj) -ot::Mac::SubMac::GetCaps() const esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) -ot::Mac::SubMac::GetNoiseFloor() const esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) -ot::Mac::SubMac::GetRssi() const esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) -ot::Mac::SubMac::HandleEnergyScanDone(signed char) esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - esp-idf/openthread/libopenthread.a(radio_callbacks.cpp.obj) -ot::Mac::SubMac::HandleReceiveDone(ot::Mac::RxFrame*, otError) esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - esp-idf/openthread/libopenthread.a(radio_callbacks.cpp.obj) -ot::Mac::SubMac::HandleTimer() esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) -ot::Mac::SubMac::HandleTransmitDone(ot::Mac::TxFrame&, ot::Mac::RxFrame*, otError) esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - esp-idf/openthread/libopenthread.a(radio_callbacks.cpp.obj) -ot::Mac::SubMac::HandleTransmitStarted(ot::Mac::TxFrame&) esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - esp-idf/openthread/libopenthread.a(radio_callbacks.cpp.obj) -ot::Mac::SubMac::Init() esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - esp-idf/openthread/libopenthread.a(link_raw.cpp.obj) -ot::Mac::SubMac::ProcessTransmitSecurity() esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) -ot::Mac::SubMac::RadioSleep() esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) -ot::Mac::SubMac::Receive(unsigned char) esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - esp-idf/openthread/libopenthread.a(link_raw.cpp.obj) -ot::Mac::SubMac::SampleRssi() esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) -ot::Mac::SubMac::Send() esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - esp-idf/openthread/libopenthread.a(link_raw.cpp.obj) -ot::Mac::SubMac::SetAlternateShortAddress(unsigned short) esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - esp-idf/openthread/libopenthread.a(link_raw.cpp.obj) -ot::Mac::SubMac::SetExtAddress(ot::Mac::ExtAddress const&) esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - esp-idf/openthread/libopenthread.a(link_raw.cpp.obj) -ot::Mac::SubMac::SetFrameCounter(unsigned long, bool) esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - esp-idf/openthread/libopenthread.a(link_raw.cpp.obj) -ot::Mac::SubMac::SetMacKey(unsigned char, unsigned char, ot::Mac::KeyMaterial const&, ot::Mac::KeyMaterial const&, ot::Mac::KeyMaterial const&) esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - esp-idf/openthread/libopenthread.a(link_raw.cpp.obj) -ot::Mac::SubMac::SetPanId(unsigned short) esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - esp-idf/openthread/libopenthread.a(link_raw.cpp.obj) -ot::Mac::SubMac::SetRxOnWhenIdle(bool) esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) -ot::Mac::SubMac::SetShortAddress(unsigned short) esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - esp-idf/openthread/libopenthread.a(link_raw.cpp.obj) -ot::Mac::SubMac::SetState(ot::Mac::SubMac::State) esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) -ot::Mac::SubMac::ShouldHandleAckTimeout() const esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) -ot::Mac::SubMac::ShouldHandleCsmaBackOff() const esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) -ot::Mac::SubMac::ShouldHandleEnergyScan() const esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) -ot::Mac::SubMac::ShouldHandleRetries() const esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) -ot::Mac::SubMac::ShouldHandleTransitionToSleep() const esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) -ot::Mac::SubMac::ShouldHandleTransmitSecurity() const esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) -ot::Mac::SubMac::ShouldHandleTransmitTargetTime() const esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) -ot::Mac::SubMac::SignalFrameCounterUsed(unsigned long, unsigned char) esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) -ot::Mac::SubMac::SignalFrameCounterUsedOnTxDone(ot::Mac::TxFrame const&) esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) -ot::Mac::SubMac::Sleep() esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) -ot::Mac::SubMac::StartCsmaBackoff() esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) -ot::Mac::SubMac::StartTimer(unsigned long) esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) -ot::Mac::SubMac::StartTimerAt(ot::Time, unsigned long) esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) -ot::Mac::SubMac::StartTimerForBackoff(unsigned char) esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) -ot::Mac::SubMac::StateToString(ot::Mac::SubMac::State) esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) -ot::Mac::SubMac::SubMac(ot::Instance&) esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - esp-idf/openthread/libopenthread.a(link_raw.cpp.obj) -ot::Mac::SubMac::SubMac(ot::Instance&) esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) -ot::Mac::TxFrame::CopyFrom(ot::Mac::TxFrame const&) esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -ot::Mac::TxFrame::GenerateEnhAck(ot::Mac::RxFrame const&, bool, unsigned char const*, unsigned char) esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -ot::Mac::TxFrame::GenerateImmAck(ot::Mac::RxFrame const&, bool) esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -ot::Mac::TxFrame::Info::PrepareHeadersIn(ot::Mac::TxFrame&) const esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -ot::Mac::TxFrame::ProcessTransmitAesCcm(ot::Mac::ExtAddress const&) esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -ot::Ncp::ChangedPropsSet::Add(unsigned long, unsigned long) esp-idf/openthread/libopenthread.a(changed_props_set.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -ot::Ncp::ChangedPropsSet::EnablePropertyFilter(unsigned long, bool) esp-idf/openthread/libopenthread.a(changed_props_set.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -ot::Ncp::ChangedPropsSet::GetNumEntries() const esp-idf/openthread/libopenthread.a(changed_props_set.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -ot::Ncp::ChangedPropsSet::IsPropertyFiltered(unsigned long) const esp-idf/openthread/libopenthread.a(changed_props_set.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -ot::Ncp::ChangedPropsSet::mSupportedProps esp-idf/openthread/libopenthread.a(changed_props_set.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -ot::Ncp::NcpBase::CommandHandler_NOOP(unsigned char) esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -ot::Ncp::NcpBase::CommandHandler_PROP_VALUE_update(unsigned char, unsigned int) esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -ot::Ncp::NcpBase::CommandHandler_RESET(unsigned char) esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -ot::Ncp::NcpBase::ConvertLogLevel(int) esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -ot::Ncp::NcpBase::ConvertLogRegion(otLogRegion) esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -ot::Ncp::NcpBase::DecodeChannelMask(unsigned long&) esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -ot::Ncp::NcpBase::DecodeStreamRawTxRequest(otRadioFrame&) esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) -ot::Ncp::NcpBase::EncodeChannelMask(unsigned long) esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -ot::Ncp::NcpBase::EnqueueResponse(unsigned char, ot::Ncp::NcpBase::ResponseType, unsigned int) esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_ncp.cpp.obj) -ot::Ncp::NcpBase::FindGetPropertyHandler(unsigned long) esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -ot::Ncp::NcpBase::FindInsertPropertyHandler(unsigned long) esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -ot::Ncp::NcpBase::FindPropertyHandler(ot::Ncp::NcpBase::HandlerEntry const*, unsigned int, unsigned long) esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) -ot::Ncp::NcpBase::FindRemovePropertyHandler(unsigned long) esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -ot::Ncp::NcpBase::FindSetPropertyHandler(unsigned long) esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -ot::Ncp::NcpBase::GetCurCommandIid() const esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -ot::Ncp::NcpBase::GetLastOutboundFrameTag() esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -ot::Ncp::NcpBase::GetNcpInstance() esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_ncp_hdlc.cpp.obj) -ot::Ncp::NcpBase::GetWrappedResponseQueueIndex(unsigned char) esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -ot::Ncp::NcpBase::HandleCommand(unsigned char) esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -ot::Ncp::NcpBase::HandleCommandPropertyInsertRemove(unsigned char, unsigned long, unsigned int) esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -ot::Ncp::NcpBase::HandleCommandPropertySet(unsigned char, unsigned long) esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -ot::Ncp::NcpBase::HandleFrameRemovedFromNcpBuffer(void const*) esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -ot::Ncp::NcpBase::HandleFrameRemovedFromNcpBuffer(void*, void const*, ot::Spinel::Buffer::Priority, ot::Spinel::Buffer*) esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -ot::Ncp::NcpBase::HandlePropertySetForSpecialProperties(unsigned char, unsigned long, otError&) esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -ot::Ncp::NcpBase::HandlePropertySet_SPINEL_PROP_HOST_POWER_STATE(unsigned char) esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -ot::Ncp::NcpBase::HandlePropertySet_SPINEL_PROP_STREAM_RAW(unsigned char) esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -ot::Ncp::NcpBase::HandleReceive(unsigned char const*, unsigned short) esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) -ot::Ncp::NcpBase::IidToInstance(unsigned char) esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) -ot::Ncp::NcpBase::IncrementFrameErrorCounter() esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) -ot::Ncp::NcpBase::InstanceToIid(ot::Instance*) esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) -ot::Ncp::NcpBase::LinkRawEnergyScanDone(otInstance*, signed char) esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -ot::Ncp::NcpBase::LinkRawEnergyScanDone(unsigned char, signed char) esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) -ot::Ncp::NcpBase::LinkRawReceiveDone(otInstance*, otRadioFrame*, otError) esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) -ot::Ncp::NcpBase::LinkRawReceiveDone(unsigned char, otRadioFrame*, otError) esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) -ot::Ncp::NcpBase::LinkRawTransmitDone(otInstance*, otRadioFrame*, otRadioFrame*, otError) esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) -ot::Ncp::NcpBase::LinkRawTransmitDone(unsigned char, otRadioFrame*, otRadioFrame*, otError) esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) -ot::Ncp::NcpBase::Log(int, otLogRegion, char const*) esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -ot::Ncp::NcpBase::NcpBase(ot::Instance*) esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -ot::Ncp::NcpBase::NcpBase(ot::Instance*) esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) -ot::Ncp::NcpBase::PackRadioFrame(otRadioFrame*, otError) esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) -ot::Ncp::NcpBase::PrepareLastStatusResponse(unsigned char, unsigned long) esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -ot::Ncp::NcpBase::ResetCounters() esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -ot::Ncp::NcpBase::SendQueuedResponses() esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -ot::Ncp::NcpBase::ShouldDeferHostSend() esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) -ot::Ncp::NcpBase::ShouldWakeHost() esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) -ot::Ncp::NcpBase::StreamWrite(int, unsigned char const*, int) esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -ot::Ncp::NcpBase::ThreadErrorToSpinelStatus(otError) esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) -ot::Ncp::NcpBase::UpdateChangedProps() esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -ot::Ncp::NcpBase::UpdateChangedProps(ot::Tasklet&) esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -ot::Ncp::NcpBase::VendorCommandHandler(unsigned char, unsigned int) esp-idf/openthread/libopenthread.a(esp_openthread_ncp.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -ot::Ncp::NcpBase::VendorGetPropertyHandler(unsigned long) esp-idf/openthread/libopenthread.a(esp_openthread_ncp.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -ot::Ncp::NcpBase::VendorHandleFrameRemovedFromNcpBuffer(void const*) esp-idf/openthread/libopenthread.a(esp_openthread_ncp.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -ot::Ncp::NcpBase::VendorSetPropertyHandler(unsigned long) esp-idf/openthread/libopenthread.a(esp_openthread_ncp.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -ot::Ncp::NcpBase::WriteLastStatusFrame(unsigned char, unsigned long) esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) -ot::Ncp::NcpBase::WritePropertyValueInsertedRemovedFrame(unsigned char, unsigned int, unsigned long, unsigned char const*, unsigned short) esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -ot::Ncp::NcpBase::WritePropertyValueIsFrame(unsigned char, unsigned long, bool) esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -ot::Ncp::NcpBase::sNcpInstance esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) -ot::Ncp::NcpHdlc::EncodeAndSend() esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) -ot::Ncp::NcpHdlc::EncodeAndSend(ot::Tasklet&) esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) -ot::Ncp::NcpHdlc::HandleError(otError, unsigned char*, unsigned short) esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) -ot::Ncp::NcpHdlc::HandleFrame(otError) esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) -ot::Ncp::NcpHdlc::HandleFrame(void*, otError) esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) -ot::Ncp::NcpHdlc::HandleFrameAddedToNcpBuffer() esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) -ot::Ncp::NcpHdlc::HandleFrameAddedToNcpBuffer(void*, void const*, ot::Spinel::Buffer::Priority, ot::Spinel::Buffer*) esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) -ot::Ncp::NcpHdlc::HandleHdlcReceiveDone(unsigned char const*, unsigned short) esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) -ot::Ncp::NcpHdlc::HandleHdlcSendDone() esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) -ot::Ncp::NcpHdlc::NcpHdlc(ot::Instance*, int (*)(unsigned char const*, unsigned short)) esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_ncp_hdlc.cpp.obj) -ot::Ncp::NcpHdlc::NcpHdlc(ot::Instance*, int (*)(unsigned char const*, unsigned short)) esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) -ot::NextFireTime::NextFireTime() esp-idf/openthread/libopenthread.a(timer.cpp.obj) -ot::NextFireTime::NextFireTime() esp-idf/openthread/libopenthread.a(timer.cpp.obj) -ot::NextFireTime::NextFireTime(ot::Time) esp-idf/openthread/libopenthread.a(timer.cpp.obj) -ot::NextFireTime::NextFireTime(ot::Time) esp-idf/openthread/libopenthread.a(timer.cpp.obj) -ot::NextFireTime::UpdateIfEarlier(ot::Time) esp-idf/openthread/libopenthread.a(timer.cpp.obj) -ot::NextFireTime::UpdateIfEarlierAndInFuture(ot::Time) esp-idf/openthread/libopenthread.a(timer.cpp.obj) -ot::ParseDigit(char, unsigned char&) esp-idf/openthread/libopenthread.a(string.cpp.obj) -ot::ParseHexDigit(char, unsigned char&) esp-idf/openthread/libopenthread.a(string.cpp.obj) -ot::Radio::AddSrcMatchExtEntry(ot::Mac::ExtAddress const&) esp-idf/openthread/libopenthread.a(radio.cpp.obj) - esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) -ot::Radio::Callbacks::HandleBusLatencyChanged() esp-idf/openthread/libopenthread.a(radio_callbacks.cpp.obj) - esp-idf/openthread/libopenthread.a(radio_platform.cpp.obj) -ot::Radio::Callbacks::HandleEnergyScanDone(signed char) esp-idf/openthread/libopenthread.a(radio_callbacks.cpp.obj) - esp-idf/openthread/libopenthread.a(radio_platform.cpp.obj) -ot::Radio::Callbacks::HandleReceiveDone(ot::Mac::RxFrame*, otError) esp-idf/openthread/libopenthread.a(radio_callbacks.cpp.obj) - esp-idf/openthread/libopenthread.a(radio_platform.cpp.obj) -ot::Radio::Callbacks::HandleTransmitDone(ot::Mac::TxFrame&, ot::Mac::RxFrame*, otError) esp-idf/openthread/libopenthread.a(radio_callbacks.cpp.obj) - esp-idf/openthread/libopenthread.a(radio_platform.cpp.obj) -ot::Radio::Callbacks::HandleTransmitStarted(ot::Mac::TxFrame&) esp-idf/openthread/libopenthread.a(radio_callbacks.cpp.obj) - esp-idf/openthread/libopenthread.a(radio_platform.cpp.obj) -ot::Radio::ClearSrcMatchExtEntry(ot::Mac::ExtAddress const&) esp-idf/openthread/libopenthread.a(radio.cpp.obj) - esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) -ot::Radio::Init() esp-idf/openthread/libopenthread.a(radio.cpp.obj) - esp-idf/openthread/libopenthread.a(instance.cpp.obj) -ot::Radio::SetExtendedAddress(ot::Mac::ExtAddress const&) esp-idf/openthread/libopenthread.a(radio.cpp.obj) - esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) -ot::Radio::SetShortAddress(unsigned short) esp-idf/openthread/libopenthread.a(radio.cpp.obj) - esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) -ot::Radio::Transmit(ot::Mac::TxFrame&) esp-idf/openthread/libopenthread.a(radio.cpp.obj) - esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) -ot::Radio::kSupportedChannelPages esp-idf/openthread/libopenthread.a(radio.cpp.obj) -ot::Random::Manager::Manager() esp-idf/openthread/libopenthread.a(random.cpp.obj) - esp-idf/openthread/libopenthread.a(instance.cpp.obj) -ot::Random::Manager::Manager() esp-idf/openthread/libopenthread.a(random.cpp.obj) -ot::Random::Manager::NonCryptoGetUint32() esp-idf/openthread/libopenthread.a(random.cpp.obj) - esp-idf/openthread/libopenthread.a(mac_types.cpp.obj) - esp-idf/openthread/libopenthread.a(instance.cpp.obj) -ot::Random::Manager::NonCryptoPrng::GetNext() esp-idf/openthread/libopenthread.a(random.cpp.obj) -ot::Random::Manager::NonCryptoPrng::Init(unsigned long) esp-idf/openthread/libopenthread.a(random.cpp.obj) -ot::Random::Manager::sInitCount esp-idf/openthread/libopenthread.a(random.cpp.obj) -ot::Random::Manager::sPrng esp-idf/openthread/libopenthread.a(random.cpp.obj) -ot::Random::Manager::~Manager() esp-idf/openthread/libopenthread.a(random.cpp.obj) - esp-idf/openthread/libopenthread.a(instance.cpp.obj) -ot::Random::Manager::~Manager() esp-idf/openthread/libopenthread.a(random.cpp.obj) -ot::Random::NonCrypto::AddJitter(unsigned long, unsigned short) esp-idf/openthread/libopenthread.a(random.cpp.obj) -ot::Random::NonCrypto::FillBuffer(unsigned char*, unsigned short) esp-idf/openthread/libopenthread.a(random.cpp.obj) -ot::Random::NonCrypto::GetUint16InRange(unsigned short, unsigned short) esp-idf/openthread/libopenthread.a(random.cpp.obj) -ot::Random::NonCrypto::GetUint32InRange(unsigned long, unsigned long) esp-idf/openthread/libopenthread.a(random.cpp.obj) - esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) -ot::Random::NonCrypto::GetUint8InRange(unsigned char, unsigned char) esp-idf/openthread/libopenthread.a(random.cpp.obj) -ot::Spinel::Buffer::Buffer(unsigned char*, unsigned short) esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -ot::Spinel::Buffer::Buffer(unsigned char*, unsigned short) esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) -ot::Spinel::Buffer::Clear() esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - esp-idf/openthread/libopenthread.a(spinel_encoder.cpp.obj) -ot::Spinel::Buffer::GetDistance(unsigned char const*, unsigned char const*, ot::Spinel::Buffer::Direction) const esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) -ot::Spinel::Buffer::GetUpdatedBufPtr(unsigned char*, unsigned short, ot::Spinel::Buffer::Direction) const esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) -ot::Spinel::Buffer::HasFrame(ot::Spinel::Buffer::Priority) const esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) -ot::Spinel::Buffer::InFrameAppend(unsigned char) esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) -ot::Spinel::Buffer::InFrameBegin(ot::Spinel::Buffer::Priority) esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - esp-idf/openthread/libopenthread.a(spinel_encoder.cpp.obj) -ot::Spinel::Buffer::InFrameBeginSegment() esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) -ot::Spinel::Buffer::InFrameDiscard() esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) -ot::Spinel::Buffer::InFrameEnd() esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - esp-idf/openthread/libopenthread.a(spinel_encoder.cpp.obj) -ot::Spinel::Buffer::InFrameEndSegment(unsigned short) esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) -ot::Spinel::Buffer::InFrameFeedByte(unsigned char) esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - esp-idf/openthread/libopenthread.a(spinel_encoder.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -ot::Spinel::Buffer::InFrameFeedData(unsigned char const*, unsigned short) esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - esp-idf/openthread/libopenthread.a(spinel_encoder.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -ot::Spinel::Buffer::InFrameGetDistance(ot::Spinel::Buffer::WritePosition const&) const esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - esp-idf/openthread/libopenthread.a(spinel_encoder.cpp.obj) -ot::Spinel::Buffer::InFrameGetLastTag() const esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -ot::Spinel::Buffer::InFrameGetPosition(ot::Spinel::Buffer::WritePosition&) esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - esp-idf/openthread/libopenthread.a(spinel_encoder.cpp.obj) -ot::Spinel::Buffer::InFrameIsWriting(ot::Spinel::Buffer::Priority) const esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) -ot::Spinel::Buffer::InFrameOverwrite(ot::Spinel::Buffer::WritePosition const&, unsigned char const*, unsigned short) esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - esp-idf/openthread/libopenthread.a(spinel_encoder.cpp.obj) -ot::Spinel::Buffer::InFrameReset(ot::Spinel::Buffer::WritePosition const&) esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - esp-idf/openthread/libopenthread.a(spinel_encoder.cpp.obj) -ot::Spinel::Buffer::IsEmpty() const esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) -ot::Spinel::Buffer::OutFrameBegin() esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) -ot::Spinel::Buffer::OutFrameGetLength() esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) -ot::Spinel::Buffer::OutFrameGetTag() esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) -ot::Spinel::Buffer::OutFrameHasEnded() esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) -ot::Spinel::Buffer::OutFramePrepareSegment() esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) -ot::Spinel::Buffer::OutFrameRead(unsigned short, unsigned char*) esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) -ot::Spinel::Buffer::OutFrameReadByte() esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) -ot::Spinel::Buffer::OutFrameRemove() esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) -ot::Spinel::Buffer::OutFrameSelectReadDirection() esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) -ot::Spinel::Buffer::ReadUint16At(unsigned char*, ot::Spinel::Buffer::Direction) esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) -ot::Spinel::Buffer::SetFrameAddedCallback(void (*)(void*, void const*, ot::Spinel::Buffer::Priority, ot::Spinel::Buffer*), void*) esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) -ot::Spinel::Buffer::SetFrameRemovedCallback(void (*)(void*, void const*, ot::Spinel::Buffer::Priority, ot::Spinel::Buffer*), void*) esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -ot::Spinel::Buffer::UpdateReadWriteStartPointers() esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) -ot::Spinel::Buffer::WriteUint16At(unsigned char*, unsigned short, ot::Spinel::Buffer::Direction) esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) -ot::Spinel::Buffer::kInvalidTag esp-idf/openthread/libopenthread.a(spinel_buffer.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -ot::Spinel::Decoder::CloseStruct() esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) -ot::Spinel::Decoder::Decoder() esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -ot::Spinel::Decoder::Decoder() esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) -ot::Spinel::Decoder::Init(unsigned char const*, unsigned short) esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -ot::Spinel::Decoder::OpenStruct() esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) -ot::Spinel::Decoder::ReadBool(bool&) esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_ncp.cpp.obj) -ot::Spinel::Decoder::ReadData(unsigned char const*&, unsigned short&) esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -ot::Spinel::Decoder::ReadDataWithLen(unsigned char const*&, unsigned short&) esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) -ot::Spinel::Decoder::ReadEui48(spinel_eui48_t&) esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) -ot::Spinel::Decoder::ReadEui64(otExtAddress&) esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) -ot::Spinel::Decoder::ReadEui64(spinel_eui64_t&) esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) -ot::Spinel::Decoder::ReadInt16(short&) esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) -ot::Spinel::Decoder::ReadInt32(long&) esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_ncp.cpp.obj) -ot::Spinel::Decoder::ReadInt64(long long&) esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) -ot::Spinel::Decoder::ReadInt8(signed char&) esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -ot::Spinel::Decoder::ReadIp6Address(otIp6Address&) esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) -ot::Spinel::Decoder::ReadIp6Address(spinel_ipv6addr_t&) esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) -ot::Spinel::Decoder::ReadItem(unsigned char const**, unsigned short) esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -ot::Spinel::Decoder::ReadUint16(unsigned short&) esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -ot::Spinel::Decoder::ReadUint32(unsigned long&) esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -ot::Spinel::Decoder::ReadUint64(unsigned long long&) esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -ot::Spinel::Decoder::ReadUint8(unsigned char&) esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -ot::Spinel::Decoder::ReadUintPacked(unsigned int&) esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -ot::Spinel::Decoder::ReadUtf8(char const*&) esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) -ot::Spinel::Decoder::Reset() esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) -ot::Spinel::Decoder::ResetToSaved() esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -ot::Spinel::Decoder::SavePosition() esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -ot::Spinel::Encoder::BeginFrame(ot::Spinel::Buffer::Priority) esp-idf/openthread/libopenthread.a(spinel_encoder.cpp.obj) -ot::Spinel::Encoder::BeginFrame(unsigned char, unsigned int) esp-idf/openthread/libopenthread.a(spinel_encoder.cpp.obj) -ot::Spinel::Encoder::BeginFrame(unsigned char, unsigned int, unsigned long) esp-idf/openthread/libopenthread.a(spinel_encoder.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -ot::Spinel::Encoder::ClearNcpBuffer() esp-idf/openthread/libopenthread.a(spinel_encoder.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -ot::Spinel::Encoder::CloseStruct() esp-idf/openthread/libopenthread.a(spinel_encoder.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) -ot::Spinel::Encoder::EndFrame() esp-idf/openthread/libopenthread.a(spinel_encoder.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -ot::Spinel::Encoder::OpenStruct() esp-idf/openthread/libopenthread.a(spinel_encoder.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) -ot::Spinel::Encoder::OverwriteWithLastStatusError(unsigned long) esp-idf/openthread/libopenthread.a(spinel_encoder.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -ot::Spinel::Encoder::ResetToSaved() esp-idf/openthread/libopenthread.a(spinel_encoder.cpp.obj) -ot::Spinel::Encoder::SavePosition() esp-idf/openthread/libopenthread.a(spinel_encoder.cpp.obj) -ot::Spinel::Encoder::WriteDataWithLen(unsigned char const*, unsigned short) esp-idf/openthread/libopenthread.a(spinel_encoder.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) -ot::Spinel::Encoder::WritePacked(char const*, ...) esp-idf/openthread/libopenthread.a(spinel_encoder.cpp.obj) -ot::Spinel::Encoder::WriteUint16(unsigned short) esp-idf/openthread/libopenthread.a(spinel_encoder.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -ot::Spinel::Encoder::WriteUint32(unsigned long) esp-idf/openthread/libopenthread.a(spinel_encoder.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -ot::Spinel::Encoder::WriteUint64(unsigned long long) esp-idf/openthread/libopenthread.a(spinel_encoder.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -ot::Spinel::Encoder::WriteUintPacked(unsigned int) esp-idf/openthread/libopenthread.a(spinel_encoder.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -ot::Spinel::Encoder::WriteUtf8(char const*) esp-idf/openthread/libopenthread.a(spinel_encoder.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -ot::Spinel::Encoder::WriteVPacked(char const*, void*) esp-idf/openthread/libopenthread.a(spinel_encoder.cpp.obj) -ot::Spinel::FrameWritePointer::WriteByte(unsigned char) esp-idf/openthread/libopenthread.a(hdlc.cpp.obj) -ot::StringConvertToLowercase(char*) esp-idf/openthread/libopenthread.a(string.cpp.obj) -ot::StringConvertToUppercase(char*) esp-idf/openthread/libopenthread.a(string.cpp.obj) -ot::StringCopy(char*, unsigned short, char const*, ot::StringEncodingCheck) esp-idf/openthread/libopenthread.a(string.cpp.obj) -ot::StringEndsWith(char const*, char const*, ot::StringMatchMode) esp-idf/openthread/libopenthread.a(string.cpp.obj) -ot::StringEndsWith(char const*, char) esp-idf/openthread/libopenthread.a(string.cpp.obj) -ot::StringFind(char const*, char const*, ot::StringMatchMode) esp-idf/openthread/libopenthread.a(string.cpp.obj) -ot::StringFind(char const*, char) esp-idf/openthread/libopenthread.a(string.cpp.obj) -ot::StringLength(char const*, unsigned short) esp-idf/openthread/libopenthread.a(string.cpp.obj) - esp-idf/openthread/libopenthread.a(log.cpp.obj) - esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) -ot::StringMatch(char const*, char const*) esp-idf/openthread/libopenthread.a(string.cpp.obj) -ot::StringMatch(char const*, char const*, ot::StringMatchMode) esp-idf/openthread/libopenthread.a(string.cpp.obj) -ot::StringParseUint8(char const*&, unsigned char&) esp-idf/openthread/libopenthread.a(string.cpp.obj) -ot::StringParseUint8(char const*&, unsigned char&, unsigned char) esp-idf/openthread/libopenthread.a(string.cpp.obj) -ot::StringStartsWith(char const*, char const*, ot::StringMatchMode) esp-idf/openthread/libopenthread.a(string.cpp.obj) -ot::StringWriter::Append(char const*, ...) esp-idf/openthread/libopenthread.a(string.cpp.obj) - esp-idf/openthread/libopenthread.a(log.cpp.obj) - esp-idf/openthread/libopenthread.a(logging_api.cpp.obj) - esp-idf/openthread/libopenthread.a(mac_types.cpp.obj) -ot::StringWriter::AppendCharMultipleTimes(char, unsigned short) esp-idf/openthread/libopenthread.a(string.cpp.obj) - esp-idf/openthread/libopenthread.a(log.cpp.obj) -ot::StringWriter::AppendHexBytes(unsigned char const*, unsigned short) esp-idf/openthread/libopenthread.a(string.cpp.obj) - esp-idf/openthread/libopenthread.a(mac_types.cpp.obj) -ot::StringWriter::AppendVarArgs(char const*, void*) esp-idf/openthread/libopenthread.a(string.cpp.obj) - esp-idf/openthread/libopenthread.a(log.cpp.obj) -ot::StringWriter::Clear() esp-idf/openthread/libopenthread.a(string.cpp.obj) -ot::StringWriter::StringWriter(char*, unsigned short) esp-idf/openthread/libopenthread.a(string.cpp.obj) - esp-idf/openthread/libopenthread.a(log.cpp.obj) - esp-idf/openthread/libopenthread.a(logging_api.cpp.obj) - esp-idf/openthread/libopenthread.a(mac_types.cpp.obj) -ot::StringWriter::StringWriter(char*, unsigned short) esp-idf/openthread/libopenthread.a(string.cpp.obj) - esp-idf/openthread/libopenthread.a(log.cpp.obj) -ot::Tasklet::Post() esp-idf/openthread/libopenthread.a(tasklet.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -ot::Tasklet::Scheduler::PostTasklet(ot::Tasklet&) esp-idf/openthread/libopenthread.a(tasklet.cpp.obj) -ot::Tasklet::Scheduler::ProcessQueuedTasklets() esp-idf/openthread/libopenthread.a(tasklet.cpp.obj) - esp-idf/openthread/libopenthread.a(tasklet_api.cpp.obj) -ot::Tasklet::Scheduler::RemoveTasklet(ot::Tasklet&) esp-idf/openthread/libopenthread.a(tasklet.cpp.obj) -ot::Tasklet::Unpost() esp-idf/openthread/libopenthread.a(tasklet.cpp.obj) -ot::Timer::DoesFireBefore(ot::Timer const&, ot::Time) const esp-idf/openthread/libopenthread.a(timer.cpp.obj) -ot::Timer::Scheduler::Add(ot::Timer&, ot::Timer::Scheduler::AlarmApi const&) esp-idf/openthread/libopenthread.a(timer.cpp.obj) -ot::Timer::Scheduler::ProcessTimers(ot::Timer::Scheduler::AlarmApi const&) esp-idf/openthread/libopenthread.a(timer.cpp.obj) -ot::Timer::Scheduler::Remove(ot::Timer&, ot::Timer::Scheduler::AlarmApi const&) esp-idf/openthread/libopenthread.a(timer.cpp.obj) -ot::Timer::Scheduler::RemoveAll(ot::Timer::Scheduler::AlarmApi const&) esp-idf/openthread/libopenthread.a(timer.cpp.obj) -ot::Timer::Scheduler::SetAlarm(ot::Timer::Scheduler::AlarmApi const&) esp-idf/openthread/libopenthread.a(timer.cpp.obj) -ot::TimerMicro::FireAt(ot::Time) esp-idf/openthread/libopenthread.a(timer.cpp.obj) -ot::TimerMicro::RemoveAll(ot::Instance&) esp-idf/openthread/libopenthread.a(timer.cpp.obj) -ot::TimerMicro::Scheduler::sAlarmMicroApi esp-idf/openthread/libopenthread.a(timer.cpp.obj) -ot::TimerMicro::Start(unsigned long) esp-idf/openthread/libopenthread.a(timer.cpp.obj) - esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) -ot::TimerMicro::StartAt(ot::Time, unsigned long) esp-idf/openthread/libopenthread.a(timer.cpp.obj) - esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) -ot::TimerMicro::Stop() esp-idf/openthread/libopenthread.a(timer.cpp.obj) - esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) -ot::TimerMicroIn::HandleTimer(ot::Timer&) esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) -ot::TimerMilli::FireAt(ot::NextFireTime const&) esp-idf/openthread/libopenthread.a(timer.cpp.obj) -ot::TimerMilli::FireAt(ot::Time) esp-idf/openthread/libopenthread.a(timer.cpp.obj) -ot::TimerMilli::FireAtIfEarlier(ot::NextFireTime const&) esp-idf/openthread/libopenthread.a(timer.cpp.obj) -ot::TimerMilli::FireAtIfEarlier(ot::Time) esp-idf/openthread/libopenthread.a(timer.cpp.obj) -ot::TimerMilli::RemoveAll(ot::Instance&) esp-idf/openthread/libopenthread.a(timer.cpp.obj) -ot::TimerMilli::Scheduler::sAlarmMilliApi esp-idf/openthread/libopenthread.a(timer.cpp.obj) -ot::TimerMilli::Start(unsigned long) esp-idf/openthread/libopenthread.a(timer.cpp.obj) -ot::TimerMilli::StartAt(ot::Time, unsigned long) esp-idf/openthread/libopenthread.a(timer.cpp.obj) -ot::TimerMilli::Stop() esp-idf/openthread/libopenthread.a(timer.cpp.obj) -ot::ToLowercase(char) esp-idf/openthread/libopenthread.a(string.cpp.obj) -ot::ToUppercase(char) esp-idf/openthread/libopenthread.a(string.cpp.obj) -ot::ToYesNo(bool) esp-idf/openthread/libopenthread.a(string.cpp.obj) -ot::gInstanceRaw esp-idf/openthread/libopenthread.a(instance.cpp.obj) - esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - esp-idf/openthread/libopenthread.a(radio_callbacks.cpp.obj) - esp-idf/openthread/libopenthread.a(radio.cpp.obj) - esp-idf/openthread/libopenthread.a(sub_mac_callbacks.cpp.obj) - esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - esp-idf/openthread/libopenthread.a(link_raw.cpp.obj) - esp-idf/openthread/libopenthread.a(timer.cpp.obj) - esp-idf/openthread/libopenthread.a(tasklet.cpp.obj) - esp-idf/openthread/libopenthread.a(instance_api.cpp.obj) -otAppNcpInit esp-idf/openthread/libopenthread.a(esp_openthread_ncp.cpp.obj) - esp-idf/main/libmain.a(esp_ot_rcp.c.obj) -otDatasetSetActive esp-idf/openthread/libopenthread.a(esp_openthread.cpp.obj) -otDatasetSetActiveTlvs esp-idf/openthread/libopenthread.a(esp_openthread.cpp.obj) -otDumpCritPlat esp-idf/openthread/libopenthread.a(logging_api.cpp.obj) -otDumpDebgPlat esp-idf/openthread/libopenthread.a(logging_api.cpp.obj) -otDumpInfoPlat esp-idf/openthread/libopenthread.a(logging_api.cpp.obj) -otDumpNotePlat esp-idf/openthread/libopenthread.a(logging_api.cpp.obj) -otDumpWarnPlat esp-idf/openthread/libopenthread.a(logging_api.cpp.obj) -otError ot::Ncp::NcpBase::HandlePropertyGet<0ul>() esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) -otError ot::Ncp::NcpBase::HandlePropertyGet<12ul>() esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) -otError ot::Ncp::NcpBase::HandlePropertyGet<13ul>() esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) -otError ot::Ncp::NcpBase::HandlePropertyGet<16384ul>() esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) -otError ot::Ncp::NcpBase::HandlePropertyGet<16385ul>() esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) -otError ot::Ncp::NcpBase::HandlePropertyGet<16386ul>() esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) -otError ot::Ncp::NcpBase::HandlePropertyGet<16387ul>() esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) -otError ot::Ncp::NcpBase::HandlePropertyGet<176ul>() esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) -otError ot::Ncp::NcpBase::HandlePropertyGet<177ul>() esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) -otError ot::Ncp::NcpBase::HandlePropertyGet<1ul>() esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) -otError ot::Ncp::NcpBase::HandlePropertyGet<2050ul>() esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) -otError ot::Ncp::NcpBase::HandlePropertyGet<2052ul>() esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) -otError ot::Ncp::NcpBase::HandlePropertyGet<2053ul>() esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) -otError ot::Ncp::NcpBase::HandlePropertyGet<2ul>() esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) -otError ot::Ncp::NcpBase::HandlePropertyGet<32ul>() esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) -otError ot::Ncp::NcpBase::HandlePropertyGet<33ul>() esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) -otError ot::Ncp::NcpBase::HandlePropertyGet<34ul>() esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) -otError ot::Ncp::NcpBase::HandlePropertyGet<35ul>() esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) -otError ot::Ncp::NcpBase::HandlePropertyGet<36ul>() esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) -otError ot::Ncp::NcpBase::HandlePropertyGet<37ul>() esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) -otError ot::Ncp::NcpBase::HandlePropertyGet<38ul>() esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) -otError ot::Ncp::NcpBase::HandlePropertyGet<39ul>() esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) -otError ot::Ncp::NcpBase::HandlePropertyGet<3ul>() esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) -otError ot::Ncp::NcpBase::HandlePropertyGet<4104ul>() esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -otError ot::Ncp::NcpBase::HandlePropertyGet<4105ul>() esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -otError ot::Ncp::NcpBase::HandlePropertyGet<41ul>() esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) -otError ot::Ncp::NcpBase::HandlePropertyGet<42ul>() esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) -otError ot::Ncp::NcpBase::HandlePropertyGet<44ul>() esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) -otError ot::Ncp::NcpBase::HandlePropertyGet<4619ul>() esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) -otError ot::Ncp::NcpBase::HandlePropertyGet<4867ul>() esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) -otError ot::Ncp::NcpBase::HandlePropertyGet<48ul>() esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) -otError ot::Ncp::NcpBase::HandlePropertyGet<49ul>() esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) -otError ot::Ncp::NcpBase::HandlePropertyGet<4ul>() esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) -otError ot::Ncp::NcpBase::HandlePropertyGet<50ul>() esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) -otError ot::Ncp::NcpBase::HandlePropertyGet<52ul>() esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) -otError ot::Ncp::NcpBase::HandlePropertyGet<53ul>() esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) -otError ot::Ncp::NcpBase::HandlePropertyGet<54ul>() esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) -otError ot::Ncp::NcpBase::HandlePropertyGet<55ul>() esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) -otError ot::Ncp::NcpBase::HandlePropertyGet<56ul>() esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) -otError ot::Ncp::NcpBase::HandlePropertyGet<5ul>() esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) -otError ot::Ncp::NcpBase::HandlePropertyGet<6ul>() esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) -otError ot::Ncp::NcpBase::HandlePropertyGet<7ul>() esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) -otError ot::Ncp::NcpBase::HandlePropertyGet<8ul>() esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) -otError ot::Ncp::NcpBase::HandlePropertyGet<9ul>() esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) -otError ot::Ncp::NcpBase::HandlePropertyInsert<4104ul>() esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) -otError ot::Ncp::NcpBase::HandlePropertyInsert<4868ul>() esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) -otError ot::Ncp::NcpBase::HandlePropertyInsert<4869ul>() esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) -otError ot::Ncp::NcpBase::HandlePropertyRemove<4104ul>() esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) -otError ot::Ncp::NcpBase::HandlePropertyRemove<4868ul>() esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) -otError ot::Ncp::NcpBase::HandlePropertyRemove<4869ul>() esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) -otError ot::Ncp::NcpBase::HandlePropertySet<16387ul>() esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) -otError ot::Ncp::NcpBase::HandlePropertySet<2048ul>() esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) -otError ot::Ncp::NcpBase::HandlePropertySet<2049ul>() esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) -otError ot::Ncp::NcpBase::HandlePropertySet<32ul>() esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) -otError ot::Ncp::NcpBase::HandlePropertySet<33ul>() esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) -otError ot::Ncp::NcpBase::HandlePropertySet<36ul>() esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) -otError ot::Ncp::NcpBase::HandlePropertySet<37ul>() esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) -otError ot::Ncp::NcpBase::HandlePropertySet<4104ul>() esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -otError ot::Ncp::NcpBase::HandlePropertySet<42ul>() esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) -otError ot::Ncp::NcpBase::HandlePropertySet<43ul>() esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) -otError ot::Ncp::NcpBase::HandlePropertySet<44ul>() esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) -otError ot::Ncp::NcpBase::HandlePropertySet<4867ul>() esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) -otError ot::Ncp::NcpBase::HandlePropertySet<4868ul>() esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) -otError ot::Ncp::NcpBase::HandlePropertySet<4869ul>() esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) -otError ot::Ncp::NcpBase::HandlePropertySet<48ul>() esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) -otError ot::Ncp::NcpBase::HandlePropertySet<49ul>() esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) -otError ot::Ncp::NcpBase::HandlePropertySet<50ul>() esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) -otError ot::Ncp::NcpBase::HandlePropertySet<52ul>() esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) -otError ot::Ncp::NcpBase::HandlePropertySet<53ul>() esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) -otError ot::Ncp::NcpBase::HandlePropertySet<54ul>() esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) -otError ot::Ncp::NcpBase::HandlePropertySet<55ul>() esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) -otError ot::Ncp::NcpBase::HandlePropertySet<56ul>() esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) -otError ot::Ncp::NcpBase::HandlePropertySet<59ul>() esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) -otError ot::Ncp::NcpBase::HandlePropertySet<60ul>() esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) -otError ot::Ncp::NcpBase::HandlePropertySet<61ul>() esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) -otError ot::Ncp::NcpBase::HandlePropertySet<7ul>() esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) -otGetRadioVersionString esp-idf/openthread/libopenthread.a(instance_api.cpp.obj) -otGetVersionString esp-idf/openthread/libopenthread.a(instance_api.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(radio_platform.cpp.obj) -otInstanceFinalize esp-idf/openthread/libopenthread.a(instance_api.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread.cpp.obj) -otInstanceGetId esp-idf/openthread/libopenthread.a(instance_api.cpp.obj) -otInstanceInitSingle esp-idf/openthread/libopenthread.a(instance_api.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread.cpp.obj) -otInstanceIsInitialized esp-idf/openthread/libopenthread.a(instance_api.cpp.obj) - esp-idf/openthread/libopenthread.a(timer.cpp.obj) - esp-idf/openthread/libopenthread.a(tasklet_api.cpp.obj) -otInstanceReset esp-idf/openthread/libopenthread.a(instance_api.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -otInstanceResetRadioStack esp-idf/openthread/libopenthread.a(instance_api.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -otIp6PrefixFromString esp-idf/openthread/libopenthread.a(esp_openthread.cpp.obj) -otIp6SetEnabled esp-idf/openthread/libopenthread.a(esp_openthread.cpp.obj) -otLinkGetChannel esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -otLinkGetExtendedAddress esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -otLinkGetFactoryAssignedIeeeEui64 esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -otLinkGetPanId esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -otLinkGetShortAddress esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -otLinkRawEnergyScan esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -otLinkRawGetCaps esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) -otLinkRawGetPromiscuous esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -otLinkRawGetRadioTime esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) -otLinkRawGetRssi esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) -otLinkRawGetTransmitBuffer esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) -otLinkRawIsEnabled esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -otLinkRawReceive esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -otLinkRawSetAlternateShortAddress esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) -otLinkRawSetMacFrameCounter esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) -otLinkRawSetMacFrameCounterIfLarger esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) -otLinkRawSetMacKey esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) -otLinkRawSetPromiscuous esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -otLinkRawSetReceiveDone esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) -otLinkRawSetShortAddress esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) -otLinkRawSleep esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -otLinkRawSrcMatchAddExtEntry esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) -otLinkRawSrcMatchAddShortEntry esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) -otLinkRawSrcMatchClearExtEntries esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) -otLinkRawSrcMatchClearExtEntry esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) -otLinkRawSrcMatchClearShortEntries esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) -otLinkRawSrcMatchClearShortEntry esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) -otLinkRawSrcMatchEnable esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) -otLinkRawTransmit esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) -otLinkSetChannel esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -otLinkSetExtendedAddress esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -otLinkSetPanId esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -otLinkSetRxOnWhenIdle esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -otLogCli esp-idf/openthread/libopenthread.a(logging_api.cpp.obj) -otLogCritPlat esp-idf/openthread/libopenthread.a(logging_api.cpp.obj) -otLogDebgPlat esp-idf/openthread/libopenthread.a(logging_api.cpp.obj) -otLogGenerateNextHexDumpLine esp-idf/openthread/libopenthread.a(logging_api.cpp.obj) -otLogInfoPlat esp-idf/openthread/libopenthread.a(logging_api.cpp.obj) -otLogNotePlat esp-idf/openthread/libopenthread.a(logging_api.cpp.obj) -otLogPlat esp-idf/openthread/libopenthread.a(logging_api.cpp.obj) -otLogPlatArgs esp-idf/openthread/libopenthread.a(logging_api.cpp.obj) -otLogWarnPlat esp-idf/openthread/libopenthread.a(logging_api.cpp.obj) -otLoggingGetLevel esp-idf/openthread/libopenthread.a(logging_api.cpp.obj) - esp-idf/openthread/libopenthread.a(log.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -otMacFrameDoesAddrMatch esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -otMacFrameDoesAddrMatchAny esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -otMacFrameGenerateEnhAck esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) -otMacFrameGenerateImmAck esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -otMacFrameGetDstAddr esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -otMacFrameGetFrameCounter esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -otMacFrameGetKeyId esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) -otMacFrameGetSequence esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -otMacFrameGetSrcAddr esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -otMacFrameIsAck esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -otMacFrameIsAckRequested esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) -otMacFrameIsCommand esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -otMacFrameIsData esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -otMacFrameIsDataRequest esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -otMacFrameIsKeyIdMode1 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) -otMacFrameIsKeyIdMode2 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -otMacFrameIsSecurityEnabled esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) -otMacFrameIsVersion2015 esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) -otMacFrameProcessTransmitAesCcm esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -otMacFrameProcessTransmitSecurity esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -otMacFrameProcessTxSfd esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) -otMacFrameSetFrameCounter esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) -otMacFrameSetKeyId esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) -otNcpHdlcInit esp-idf/openthread/libopenthread.a(esp_openthread_ncp_hdlc.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_ncp.cpp.obj) -otNcpHdlcReceive esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp.c.obj) -otNcpHdlcSendDone esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp.c.obj) -otNcpStreamWrite esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) -otPlatAlarmMicroFired esp-idf/openthread/libopenthread.a(timer.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_alarm.c.obj) -otPlatAlarmMicroGetNow esp-idf/openthread/libopenthread.a(esp_openthread_alarm.c.obj) - esp-idf/openthread/libopenthread.a(timer.cpp.obj) -otPlatAlarmMicroStartAt esp-idf/openthread/libopenthread.a(esp_openthread_alarm.c.obj) - esp-idf/openthread/libopenthread.a(timer.cpp.obj) -otPlatAlarmMicroStop esp-idf/openthread/libopenthread.a(esp_openthread_alarm.c.obj) - esp-idf/openthread/libopenthread.a(timer.cpp.obj) -otPlatAlarmMilliFired esp-idf/openthread/libopenthread.a(timer.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_alarm.c.obj) -otPlatAlarmMilliGetNow esp-idf/openthread/libopenthread.a(esp_openthread_alarm.c.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - esp-idf/openthread/libopenthread.a(timer.cpp.obj) -otPlatAlarmMilliStartAt esp-idf/openthread/libopenthread.a(esp_openthread_alarm.c.obj) - esp-idf/openthread/libopenthread.a(timer.cpp.obj) -otPlatAlarmMilliStop esp-idf/openthread/libopenthread.a(esp_openthread_alarm.c.obj) - esp-idf/openthread/libopenthread.a(timer.cpp.obj) -otPlatAssertFail esp-idf/openthread/libopenthread.a(esp_openthread_misc.c.obj) - esp-idf/openthread/libopenthread.a(logging_api.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_radio.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base_dispatcher.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(aes_ecb.cpp.obj) - esp-idf/openthread/libopenthread.a(aes_ccm.cpp.obj) - esp-idf/openthread/libopenthread.a(string.cpp.obj) - esp-idf/openthread/libopenthread.a(random.cpp.obj) - esp-idf/openthread/libopenthread.a(frame_builder.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_ncp_hdlc.cpp.obj) - esp-idf/openthread/libopenthread.a(radio.cpp.obj) - esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) - esp-idf/openthread/libopenthread.a(mac_types.cpp.obj) - esp-idf/openthread/libopenthread.a(mac_frame.cpp.obj) - esp-idf/openthread/libopenthread.a(timer.cpp.obj) -otPlatCryptoAesEncrypt esp-idf/openthread/libopenthread.a(crypto_platform.cpp.obj) - esp-idf/openthread/libopenthread.a(aes_ecb.cpp.obj) -otPlatCryptoAesFree esp-idf/openthread/libopenthread.a(crypto_platform.cpp.obj) - esp-idf/openthread/libopenthread.a(aes_ecb.cpp.obj) -otPlatCryptoAesInit esp-idf/openthread/libopenthread.a(crypto_platform.cpp.obj) - esp-idf/openthread/libopenthread.a(aes_ecb.cpp.obj) -otPlatCryptoAesSetKey esp-idf/openthread/libopenthread.a(crypto_platform.cpp.obj) - esp-idf/openthread/libopenthread.a(aes_ecb.cpp.obj) -otPlatCryptoInit esp-idf/openthread/libopenthread.a(crypto_platform.cpp.obj) -otPlatEntropyGet esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - esp-idf/openthread/libopenthread.a(random.cpp.obj) -otPlatGetMcuPowerState esp-idf/openthread/libopenthread.a(esp_openthread_misc.c.obj) -otPlatGetResetReason esp-idf/openthread/libopenthread.a(esp_openthread_misc.c.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -otPlatLog esp-idf/openthread/libopenthread.a(esp_openthread_logging.c.obj) - esp-idf/openthread/libopenthread.a(log.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_ncp.cpp.obj) -otPlatRadioAddSrcMatchExtEntry esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - esp-idf/openthread/libopenthread.a(radio.cpp.obj) -otPlatRadioAddSrcMatchShortEntry esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) -otPlatRadioBusLatencyChanged esp-idf/openthread/libopenthread.a(radio_platform.cpp.obj) -otPlatRadioClearSrcMatchExtEntries esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - esp-idf/openthread/libopenthread.a(radio.cpp.obj) -otPlatRadioClearSrcMatchExtEntry esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - esp-idf/openthread/libopenthread.a(radio.cpp.obj) -otPlatRadioClearSrcMatchShortEntries esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - esp-idf/openthread/libopenthread.a(radio.cpp.obj) -otPlatRadioClearSrcMatchShortEntry esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) -otPlatRadioDisable esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - esp-idf/openthread/libopenthread.a(radio.cpp.obj) - esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) -otPlatRadioEnable esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) -otPlatRadioEnableSrcMatch esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - esp-idf/openthread/libopenthread.a(radio.cpp.obj) -otPlatRadioEnergyScan esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) -otPlatRadioEnergyScanDone esp-idf/openthread/libopenthread.a(radio_platform.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) -otPlatRadioGetBusLatency esp-idf/openthread/libopenthread.a(radio_platform.cpp.obj) -otPlatRadioGetBusSpeed esp-idf/openthread/libopenthread.a(radio_platform.cpp.obj) -otPlatRadioGetCaps esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) -otPlatRadioGetCcaEnergyDetectThreshold esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -otPlatRadioGetCslAccuracy esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -otPlatRadioGetCslUncertainty esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -otPlatRadioGetFemLnaGain esp-idf/openthread/libopenthread.a(radio_platform.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -otPlatRadioGetIeeeEui64 esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) -otPlatRadioGetNow esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) -otPlatRadioGetPreferredChannelMask esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -otPlatRadioGetPromiscuous esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) -otPlatRadioGetReceiveSensitivity esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) -otPlatRadioGetRegion esp-idf/openthread/libopenthread.a(radio_platform.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -otPlatRadioGetRssi esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) - esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) -otPlatRadioGetState esp-idf/openthread/libopenthread.a(radio_platform.cpp.obj) -otPlatRadioGetSupportedChannelMask esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -otPlatRadioGetTransmitBuffer esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) -otPlatRadioGetTransmitPower esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -otPlatRadioGetVersionString esp-idf/openthread/libopenthread.a(radio_platform.cpp.obj) - esp-idf/openthread/libopenthread.a(instance_api.cpp.obj) -otPlatRadioIsEnabled esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - esp-idf/openthread/libopenthread.a(radio.cpp.obj) -otPlatRadioReceive esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) -otPlatRadioReceiveAt esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -otPlatRadioReceiveDone esp-idf/openthread/libopenthread.a(radio_platform.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) -otPlatRadioSetAlternateShortAddress esp-idf/openthread/libopenthread.a(radio_platform.cpp.obj) - esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) -otPlatRadioSetCcaEnergyDetectThreshold esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -otPlatRadioSetChannelMaxTransmitPower esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -otPlatRadioSetChannelTargetPower esp-idf/openthread/libopenthread.a(radio_platform.cpp.obj) -otPlatRadioSetExtendedAddress esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - esp-idf/openthread/libopenthread.a(radio.cpp.obj) -otPlatRadioSetFemLnaGain esp-idf/openthread/libopenthread.a(radio_platform.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -otPlatRadioSetMacFrameCounter esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - esp-idf/openthread/libopenthread.a(radio.cpp.obj) - esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) -otPlatRadioSetMacFrameCounterIfLarger esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) -otPlatRadioSetMacKey esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - esp-idf/openthread/libopenthread.a(radio.cpp.obj) - esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) -otPlatRadioSetPanId esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - esp-idf/openthread/libopenthread.a(radio.cpp.obj) - esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) -otPlatRadioSetPromiscuous esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - esp-idf/openthread/libopenthread.a(radio.cpp.obj) -otPlatRadioSetRegion esp-idf/openthread/libopenthread.a(radio_platform.cpp.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -otPlatRadioSetRxOnWhenIdle esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - esp-idf/openthread/libopenthread.a(radio.cpp.obj) - esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) -otPlatRadioSetShortAddress esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - esp-idf/openthread/libopenthread.a(radio.cpp.obj) -otPlatRadioSetTransmitPower esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - esp-idf/openthread/libopenthread.a(ncp_base.cpp.obj) -otPlatRadioSleep esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - esp-idf/openthread/libopenthread.a(radio.cpp.obj) - esp-idf/openthread/libopenthread.a(sub_mac.cpp.obj) -otPlatRadioTransmit esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - esp-idf/openthread/libopenthread.a(radio.cpp.obj) -otPlatRadioTxDone esp-idf/openthread/libopenthread.a(radio_platform.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) -otPlatRadioTxStarted esp-idf/openthread/libopenthread.a(radio_platform.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) -otPlatReset esp-idf/openthread/libopenthread.a(esp_openthread_misc.c.obj) - esp-idf/openthread/libopenthread.a(instance.cpp.obj) -otPlatSetMcuPowerState esp-idf/openthread/libopenthread.a(esp_openthread_misc.c.obj) -otPlatSettingsAdd esp-idf/openthread/libopenthread.a(esp_openthread_settings.c.obj) -otPlatSettingsDeinit esp-idf/openthread/libopenthread.a(esp_openthread_settings.c.obj) -otPlatSettingsDelete esp-idf/openthread/libopenthread.a(esp_openthread_settings.c.obj) -otPlatSettingsGet esp-idf/openthread/libopenthread.a(esp_openthread_settings.c.obj) -otPlatSettingsInit esp-idf/openthread/libopenthread.a(esp_openthread_settings.c.obj) -otPlatSettingsSet esp-idf/openthread/libopenthread.a(esp_openthread_settings.c.obj) -otPlatSettingsWipe esp-idf/openthread/libopenthread.a(esp_openthread_settings.c.obj) -otPlatSpiSlaveEnable esp-idf/openthread/libopenthread.a(esp_openthread_spi_slave.c.obj) -otPlatSpiSlavePrepareTransaction esp-idf/openthread/libopenthread.a(esp_openthread_spi_slave.c.obj) -otPlatTimeGet esp-idf/openthread/libopenthread.a(esp_openthread_alarm.c.obj) - esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) -otPlatTimeGetXtalAccuracy esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) -otPlatUartDisable esp-idf/openthread/libopenthread.a(esp_openthread_uart.c.obj) -otPlatUartEnable esp-idf/openthread/libopenthread.a(esp_openthread_uart.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_ncp.cpp.obj) -otPlatUartFlush esp-idf/openthread/libopenthread.a(esp_openthread_uart.c.obj) -otPlatUartReceived esp-idf/openthread/libopenthread.a(ncp.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_uart.c.obj) -otPlatUartSend esp-idf/openthread/libopenthread.a(esp_openthread_uart.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_ncp.cpp.obj) -otPlatUartSendDone esp-idf/openthread/libopenthread.a(ncp.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_uart.c.obj) -otPlatWakeHost esp-idf/openthread/libopenthread.a(esp_openthread_misc.c.obj) - esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) -otTaskletsArePending esp-idf/openthread/libopenthread.a(tasklet_api.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread.cpp.obj) -otTaskletsProcess esp-idf/openthread/libopenthread.a(tasklet_api.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread.cpp.obj) -otTaskletsSignalPending esp-idf/openthread/libopenthread.a(esp_openthread_task_queue.c.obj) - esp-idf/openthread/libopenthread.a(tasklet.cpp.obj) -otThreadGetDeviceRole esp-idf/openthread/libopenthread.a(link_raw_api.cpp.obj) -otThreadSetEnabled esp-idf/openthread/libopenthread.a(esp_openthread.cpp.obj) -panicHandler esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - esp-idf/riscv/libriscv.a(vectors.S.obj) -panic_abort esp-idf/esp_system/libesp_system.a(panic.c.obj) - esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) -panic_arch_fill_info esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) -panic_get_address esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) -panic_get_cause esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) -panic_prepare_frame_from_ctx esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) -panic_print_backtrace esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) -panic_print_registers esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) - esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) -panic_restart esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - esp-idf/esp_system/libesp_system.a(panic.c.obj) -panic_set_address esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) -panic_soc_check_pseudo_cause esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) -panic_soc_fill_info esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) -pau_hal_regdma_clock_configure esp-idf/hal/libhal.a(pau_hal.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) -pau_hal_set_regdma_entry_link_addr esp-idf/hal/libhal.a(pau_hal.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) -pau_hal_set_regdma_wait_timeout esp-idf/hal/libhal.a(pau_hal.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) -pau_hal_set_regdma_work_timeout esp-idf/hal/libhal.a(pau_hal.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) -pau_hal_start_regdma_extra_link esp-idf/hal/libhal.a(pau_hal.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) -pau_hal_start_regdma_system_link esp-idf/hal/libhal.a(pau_hal.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) -pau_hal_stop_regdma_extra_link esp-idf/hal/libhal.a(pau_hal.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) -pau_hal_stop_regdma_system_link esp-idf/hal/libhal.a(pau_hal.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) -pau_regdma_set_entry_link_addr esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) -pau_regdma_set_extra_link_addr esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) -pau_regdma_set_system_link_addr esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) -pau_regdma_trigger_extra_link_backup esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) -pau_regdma_trigger_extra_link_restore esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) -pau_regdma_trigger_system_link_backup esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) -pau_regdma_trigger_system_link_restore esp-idf/esp_hw_support/libesp_hw_support.a(pau_regdma.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) -pbus_debugmode C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pbus.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_cal.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_cal.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_debug.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_basic.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) -pbus_force_mode C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pbus.o) -pbus_force_test C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pbus.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_cal.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_cal.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_debug.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_basic.o) -pbus_print C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_debug.o) -pbus_rd C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pbus.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_cal.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_debug.o) -pbus_rd_addr C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pbus.o) -pbus_rd_shift C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pbus.o) -pbus_rx_dco_cal C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_cal.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_basic.o) -pbus_rx_dco_cal_1step C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_cal.o) -pbus_set_dco C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pbus.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_cal.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_basic.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) -pbus_set_rxgain C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pbus.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_cal.o) -pbus_workmode C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pbus.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_cal.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_cal.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_debug.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_basic.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) -pbus_xpd_rx_off C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pbus.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_cal.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_basic.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) -pbus_xpd_rx_on C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pbus.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_cal.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_cal.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_basic.o) -pbus_xpd_tx_off C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pbus.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) -pbus_xpd_tx_on C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pbus.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_cal.o) -pcTaskGetName esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) - esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) -periph_inform_out_light_sleep_overhead esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -periph_module_disable esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) -periph_module_enable esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) -periph_module_reset esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) -periph_rcc_acquire_enter esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - esp-idf/freertos/libfreertos.a(port_systick.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) -periph_rcc_acquire_exit esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - esp-idf/freertos/libfreertos.a(port_systick.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) -periph_rcc_enter esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) -periph_rcc_exit esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) -periph_rcc_release_enter esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) -periph_rcc_release_exit esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) -periph_rtc_dig_clk8m_disable esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -periph_rtc_dig_clk8m_enable esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -periph_rtc_dig_clk8m_get_freq esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) -peripheral_domain_pd_allowed esp-idf/esp_hw_support/libesp_hw_support.a(sleep_system_peripheral.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -phy_ant_clr_update_flag esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) -phy_ant_init C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) -phy_ant_need_update esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) -phy_ant_update esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) -phy_bbpll_cal C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) -phy_bt_power_track C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_api.o) -phy_byte_to_word C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_basic.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) -phy_cal_print C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_debug.o) -phy_chan_dump_cfg C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_api.o) -phy_chan_filt_set C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_api.o) -phy_chan_hw_init C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_hw_freq.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) -phy_change_channel C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_api.o) -phy_close_pa C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) -phy_close_rf C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) - esp-idf/esp_phy/libesp_phy.a(phy_init_esp32hxx.c.obj) -phy_clr_modem_flag esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_init_esp32hxx.c.obj) -phy_dig_reg_backup C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_api.o) -phy_dis_hw_set_freq C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_hw_freq.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rfpll.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_track.o) -phy_disable_cca C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) -phy_disable_low_rate C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_api.o) -phy_en_hw_set_freq C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_hw_freq.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rfpll.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_track.o) -phy_enable_cca C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) -phy_enable_low_rate C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_api.o) -phy_enabled_modem_contains esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) -phy_enter_critical esp-idf/esp_phy/libesp_phy.a(phy_init_esp32hxx.c.obj) -phy_exit_critical esp-idf/esp_phy/libesp_phy.a(phy_init_esp32hxx.c.obj) -phy_force_pwr_index C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) -phy_freq_correct C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rfpll.o) -phy_freq_mem_backup C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_api.o) -phy_get_efuse_rxiq C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_gain.o) -phy_get_lock esp-idf/esp_phy/libesp_phy.a(phy_init_esp32hxx.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) -phy_get_modem_flag esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_init_esp32hxx.c.obj) -phy_get_rf_cal_version C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_api.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_debug.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) -phy_get_rf_freq_init C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_hw_freq.o) -phy_get_romfunc_addr C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) -phy_get_rx_freq C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_basic.o) -phy_get_tsens_value esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) -phy_get_vdd33 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_debug.o) -phy_i2c_check C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_debug.o) -phy_i2c_enter_critical esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_basic.o) -phy_i2c_exit_critical esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_basic.o) -phy_i2c_init C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_i2c.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) -phy_i2c_init1 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_i2c.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) -phy_mem_print C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_debug.o) -phy_mem_read C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_debug.o) -phy_mem_write C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_debug.o) -phy_modem_lo_clk C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) -phy_param C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_cal.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_i2c.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_cal.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_gain.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_debug.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_gain.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pwdet.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_analog_cal.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tsens.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rfpll.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_hw_freq.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pbus.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_api.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_track.o) -phy_param_track C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_track.o) -phy_param_track_tot C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_track.o) - esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) -phy_printf esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_cal.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_cal.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_gain.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_debug.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rfpll.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_hw_freq.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_track.o) -phy_pwdet_always_en C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pwdet.o) -phy_pwdet_onetime_en C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pwdet.o) -phy_reg_check C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_debug.o) -phy_reg_init C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) -phy_rfcal_data_check C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) -phy_rfcal_data_sub C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) -phy_rx11blr_cfg C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_api.o) -phy_rx_sense_set C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) -phy_set_bbfreq_init C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) -phy_set_freq C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rfpll.o) -phy_set_modem_flag esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_init_esp32hxx.c.obj) -phy_set_pwdet_power esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) -phy_set_tsens_power esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_api.o) -phy_set_tsens_range C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tsens.o) -phy_time_now C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_basic.o) -phy_track_pll esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_init_esp32hxx.c.obj) -phy_track_pll_deinit esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_init_esp32hxx.c.obj) -phy_track_pll_init esp-idf/esp_phy/libesp_phy.a(phy_common.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_init_esp32hxx.c.obj) -phy_tsens_attribute C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tsens.o) -phy_tx_gain_print C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_debug.o) -phy_tx_table C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_gain.o) -phy_tx_table_eco2 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_gain.o) -phy_version_print C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_debug.o) - esp-idf/esp_phy/libesp_phy.a(phy_init_esp32hxx.c.obj) -phy_version_str C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_debug.o) -phy_wakeup_init C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) - esp-idf/esp_phy/libesp_phy.a(phy_init_esp32hxx.c.obj) -phy_xpd_rf C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) -phy_xpd_tsens C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_api.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) - esp-idf/esp_phy/libesp_phy.a(phy_init_esp32hxx.c.obj) -pkdet_code_range C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_cal.o) -pkdet_vol_start C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pwdet.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_cal.o) -pll_cap_mem_update C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_hw_freq.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rfpll.o) -pll_dac_mem_update C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_hw_freq.o) -pll_mem_update C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_hw_freq.o) -pmu_hal_hp_get_digital_power_up_wait_cycle esp-idf/hal/libhal.a(pmu_hal.c.obj) -pmu_hal_hp_set_digital_power_up_wait_cycle esp-idf/hal/libhal.a(pmu_hal.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) -pmu_hal_hp_set_sleep_active_backup_disable esp-idf/hal/libhal.a(pmu_hal.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) -pmu_hal_hp_set_sleep_active_backup_enable esp-idf/hal/libhal.a(pmu_hal.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) -pmu_hal_lp_get_digital_power_up_wait_cycle esp-idf/hal/libhal.a(pmu_hal.c.obj) -pmu_hal_lp_set_digital_power_up_wait_cycle esp-idf/hal/libhal.a(pmu_hal.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) -pmu_hp_system_analog_param_default esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) -pmu_hp_system_clock_param_default esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) -pmu_hp_system_digital_param_default esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) -pmu_hp_system_init esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) -pmu_hp_system_power_param_default esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) -pmu_hp_system_retention_param_default esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) -pmu_init esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) -pmu_lp_system_analog_param_default esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) -pmu_lp_system_init esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) -pmu_lp_system_power_param_default esp-idf/esp_hw_support/libesp_hw_support.a(pmu_param.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) -pmu_sleep_calculate_hw_wait_time esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -pmu_sleep_config_default esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -pmu_sleep_disable_regdma_backup esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) -pmu_sleep_enable_regdma_backup esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) -pmu_sleep_finish esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) -pmu_sleep_get_wakup_retention_cost esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -pmu_sleep_init esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -pmu_sleep_start esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -port_start_app_hook esp-idf/freertos/libfreertos.a(app_startup.c.obj) -port_uxCriticalNesting esp-idf/freertos/libfreertos.a(port.c.obj) -port_uxInterruptNesting esp-idf/freertos/libfreertos.a(port.c.obj) - esp-idf/freertos/libfreertos.a(portasm.S.obj) -port_uxOldInterruptState esp-idf/freertos/libfreertos.a(port.c.obj) -port_xSchedulerRunning esp-idf/freertos/libfreertos.a(port.c.obj) - esp-idf/freertos/libfreertos.a(portasm.S.obj) -posix_memalign esp-idf/newlib/libnewlib.a(heap.c.obj) -power_supply_periph_signal esp-idf/soc/libsoc.a(power_supply_periph.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) -pread esp-idf/vfs/libvfs.a(vfs.c.obj) -printf C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-printf.o) - esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - esp-idf/heap/libheap.a(heap_caps.c.obj) - esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) -prvTaskPriorityRaise esp-idf/freertos/libfreertos.a(tasks.c.obj) -prvTaskPriorityRestore esp-idf/freertos/libfreertos.a(tasks.c.obj) -pthread_attr_destroy esp-idf/pthread/libpthread.a(pthread.c.obj) -pthread_attr_getdetachstate esp-idf/pthread/libpthread.a(pthread.c.obj) -pthread_attr_getstacksize esp-idf/pthread/libpthread.a(pthread.c.obj) -pthread_attr_init esp-idf/pthread/libpthread.a(pthread.c.obj) -pthread_attr_setdetachstate esp-idf/pthread/libpthread.a(pthread.c.obj) -pthread_attr_setstacksize esp-idf/pthread/libpthread.a(pthread.c.obj) -pthread_cancel esp-idf/pthread/libpthread.a(pthread.c.obj) -pthread_cond_broadcast esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) -pthread_cond_destroy esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) -pthread_cond_init esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) -pthread_cond_signal esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) -pthread_cond_timedwait esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) -pthread_cond_wait esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) -pthread_condattr_destroy esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) -pthread_condattr_getclock esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) -pthread_condattr_getpshared esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) -pthread_condattr_init esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) -pthread_condattr_setclock esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) -pthread_condattr_setpshared esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) -pthread_create esp-idf/pthread/libpthread.a(pthread.c.obj) -pthread_detach esp-idf/pthread/libpthread.a(pthread.c.obj) -pthread_equal esp-idf/pthread/libpthread.a(pthread.c.obj) -pthread_exit esp-idf/pthread/libpthread.a(pthread.c.obj) -pthread_getschedparam esp-idf/pthread/libpthread.a(pthread.c.obj) -pthread_getspecific esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) - esp-idf/pthread/libpthread.a(pthread.c.obj) -pthread_include_pthread_cond_var_impl esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) -pthread_include_pthread_impl esp-idf/pthread/libpthread.a(pthread.c.obj) -pthread_include_pthread_local_storage_impl esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) -pthread_include_pthread_rwlock_impl esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) -pthread_include_pthread_semaphore_impl esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) -pthread_internal_local_storage_destructor_callback esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) -pthread_join esp-idf/pthread/libpthread.a(pthread.c.obj) -pthread_key_create esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) - esp-idf/pthread/libpthread.a(pthread.c.obj) -pthread_key_delete esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) -pthread_lazy_init_lock esp-idf/pthread/libpthread.a(pthread.c.obj) -pthread_mutex_destroy esp-idf/pthread/libpthread.a(pthread.c.obj) - esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) -pthread_mutex_init esp-idf/pthread/libpthread.a(pthread.c.obj) - esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) -pthread_mutex_lock esp-idf/pthread/libpthread.a(pthread.c.obj) - esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) -pthread_mutex_timedlock esp-idf/pthread/libpthread.a(pthread.c.obj) -pthread_mutex_trylock esp-idf/pthread/libpthread.a(pthread.c.obj) - esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) -pthread_mutex_unlock esp-idf/pthread/libpthread.a(pthread.c.obj) - esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) -pthread_mutexattr_destroy esp-idf/pthread/libpthread.a(pthread.c.obj) -pthread_mutexattr_gettype esp-idf/pthread/libpthread.a(pthread.c.obj) -pthread_mutexattr_init esp-idf/pthread/libpthread.a(pthread.c.obj) -pthread_mutexattr_settype esp-idf/pthread/libpthread.a(pthread.c.obj) -pthread_once esp-idf/pthread/libpthread.a(pthread.c.obj) -pthread_rwlock_destroy esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) -pthread_rwlock_init esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) -pthread_rwlock_rdlock esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) -pthread_rwlock_tryrdlock esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) -pthread_rwlock_trywrlock esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) -pthread_rwlock_unlock esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) -pthread_rwlock_wrlock esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) -pthread_self esp-idf/pthread/libpthread.a(pthread.c.obj) -pthread_setcancelstate esp-idf/newlib/libnewlib.a(pthread.c.obj) -pthread_setschedparam esp-idf/pthread/libpthread.a(pthread.c.obj) -pthread_setschedprio esp-idf/pthread/libpthread.a(pthread.c.obj) -pthread_setspecific esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) - esp-idf/pthread/libpthread.a(pthread.c.obj) -pthread_sigmask esp-idf/newlib/libnewlib.a(pthread.c.obj) -putc C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-putc.o) -puts C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-puts.o) - esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - esp-idf/heap/libheap.a(heap_caps.c.obj) -pvPortMalloc esp-idf/freertos/libfreertos.a(heap_idf.c.obj) - esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/freertos/libfreertos.a(port_common.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) -pvTaskGetCurrentTCBForCore esp-idf/freertos/libfreertos.a(tasks.c.obj) -pvTaskGetThreadLocalStoragePointer esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) -pvTaskIncrementMutexHeldCount esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) -pvalloc esp-idf/newlib/libnewlib.a(heap.c.obj) -pwdet_code_cal C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_cal.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) -pwdet_ref_code C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_cal.o) -pwdet_reg_init C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pwdet.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) -pwdet_sar2_init C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pwdet.o) -pwdet_tone_start C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pwdet.o) -pwdet_wait_idle C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pwdet.o) -pwrite esp-idf/vfs/libvfs.a(vfs.c.obj) -pxCurrentTCBs esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/freertos/libfreertos.a(portasm.S.obj) -pxPortInitialiseStack esp-idf/freertos/libfreertos.a(port.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) -pxTaskGetStackStart esp-idf/freertos/libfreertos.a(tasks.c.obj) -qsort C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-qsort.o) - esp-idf/heap/libheap.a(memory_layout_utils.c.obj) -r_esp_ble_rtc_ticks_delay esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) -raise esp-idf/newlib/libnewlib.a(syscalls.c.obj) -range_read_addr_blocks esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -range_write_addr_blocks esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -rc_cal C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_analog_cal.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) -read C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sysread.o) - esp-idf/openthread/libopenthread.a(esp_openthread_uart.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_task_queue.c.obj) - esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) -read_hw_noisefloor C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_api.o) -read_pll_cap C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rfpll.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_debug.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_hw_freq.o) -read_rf_freq_mem_new C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_hw_freq.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_debug.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) -read_sar2_code C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pwdet.o) -read_sar_dout C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pwdet.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_cal.o) -readdir esp-idf/vfs/libvfs.a(vfs.c.obj) -readdir_r esp-idf/vfs/libvfs.a(vfs.c.obj) -realloc esp-idf/newlib/libnewlib.a(heap.c.obj) -recode_freq_ctrl0_reg C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_hw_freq.o) -regdma_find_link_by_id esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) -regdma_find_link_by_pos esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) -regdma_find_module_link_head esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) -regdma_find_module_link_tail esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) -regdma_find_next_module_link_head esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) -regdma_find_prev_module_link_tail esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) -regdma_link_destroy esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) -regdma_link_dump esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) -regdma_link_get_config_mode esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) -regdma_link_get_owner_bitmap esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) -regdma_link_init esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) -regdma_link_new_addr_map esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) -regdma_link_new_addr_map_default esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) -regdma_link_new_branch_addr_map esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) -regdma_link_new_branch_addr_map_default esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) -regdma_link_new_branch_continuous esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) -regdma_link_new_branch_continuous_default esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) -regdma_link_new_branch_wait esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) -regdma_link_new_branch_wait_default esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) -regdma_link_new_branch_write esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) -regdma_link_new_branch_write_default esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) -regdma_link_new_continuous esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) -regdma_link_new_continuous_default esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) -regdma_link_new_wait esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) -regdma_link_new_wait_default esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) -regdma_link_new_write esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) -regdma_link_new_write_default esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) -regdma_link_recursive esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) -regdma_link_set_write_wait_content esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) -regdma_link_stats esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) -regdma_link_update_next esp-idf/esp_hw_support/libesp_hw_support.a(regdma_link.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) -regi2c_analog_cali_reg_read esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -regi2c_analog_cali_reg_write esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -regi2c_ctrl_read_reg esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) -regi2c_ctrl_read_reg_mask esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) -regi2c_ctrl_write_reg esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) -regi2c_ctrl_write_reg_mask esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - esp-idf/hal/libhal.a(adc_hal_common.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - esp-idf/hal/libhal.a(brownout_hal.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(pmu_init.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) -regi2c_enter_critical esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) -regi2c_exit_critical esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) -regi2c_read_impl esp-idf/esp_rom/libesp_rom.a(esp_rom_regi2c_esp32h2.c.obj) -regi2c_read_mask_impl esp-idf/esp_rom/libesp_rom.a(esp_rom_regi2c_esp32h2.c.obj) -regi2c_saradc_disable esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) -regi2c_saradc_enable esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) -regi2c_tsens_reg_read esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -regi2c_tsens_reg_write esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -regi2c_write_impl esp-idf/esp_rom/libesp_rom.a(esp_rom_regi2c_esp32h2.c.obj) -regi2c_write_mask_impl esp-idf/esp_rom/libesp_rom.a(esp_rom_regi2c_esp32h2.c.obj) -register_chipv7_phy C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) - esp-idf/esp_phy/libesp_phy.a(phy_init_esp32hxx.c.obj) -register_chipv7_phy_init_param C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) -registered_heaps esp-idf/heap/libheap.a(heap_caps_init.c.obj) - esp-idf/heap/libheap.a(heap_caps_base.c.obj) - esp-idf/heap/libheap.a(heap_caps.c.obj) -restart_cal C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rfpll.o) -rewinddir esp-idf/vfs/libvfs.a(vfs.c.obj) -rf_cal_data_backup C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) -rf_cal_data_recovery C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) -rf_init C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) -rfagc_disable C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) -rfcal_pwrctrl C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_cal.o) -rfcal_rxiq C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_cal.o) -rfcal_txcap C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_cal.o) -rfcal_txiq C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_cal.o) -rfpll_cap_check C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_debug.o) -rfpll_cap_correct C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rfpll.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_hw_freq.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_track.o) -rfpll_cap_init_cal C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rfpll.o) -rfpll_cap_track C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_track.o) -rfpll_set_freq C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rfpll.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_hw_freq.o) -riscv_decode_offset_from_jal_instruction esp-idf/riscv/libriscv.a(instruction_decode.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) -riscv_excp_names esp-idf/riscv/libriscv.a(interrupt.c.obj) -rmdir esp-idf/vfs/libvfs.a(vfs.c.obj) -rom_flash_chip_dummy esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) -rom_flash_chip_dummy_hpm esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) -rom_i2c_readReg C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_i2c.o) -rom_i2c_readReg_Mask C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_i2c.o) -rom_i2c_writeReg C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_i2c.o) -rom_i2c_writeReg_Mask C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_i2c.o) -rom_spiflash_api_funcs esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) -rom_spiflash_legacy_data esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32h2.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) -rtc_clk_32k_bootstrap esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) -rtc_clk_32k_disable_external esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) -rtc_clk_32k_enable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) -rtc_clk_32k_enable_external esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) -rtc_clk_32k_enabled esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) -rtc_clk_8m_enable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) -rtc_clk_8m_enabled esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) -rtc_clk_apb_freq_get esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) -rtc_clk_bbpll_add_consumer esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) -rtc_clk_bbpll_remove_consumer esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) -rtc_clk_cal esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) -rtc_clk_cpu_freq_get_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) -rtc_clk_cpu_freq_mhz_to_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) -rtc_clk_cpu_freq_set_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) -rtc_clk_cpu_freq_set_config_fast esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) -rtc_clk_cpu_freq_set_xtal esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) -rtc_clk_cpu_freq_set_xtal_for_sleep esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -rtc_clk_cpu_set_to_default_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_system/libesp_system.a(system_internal.c.obj) -rtc_clk_fast_src_get esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) -rtc_clk_fast_src_set esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) -rtc_clk_freq_cal esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) -rtc_clk_freq_to_period esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) -rtc_clk_lp_pll_enable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) -rtc_clk_lp_pll_src_set esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) -rtc_clk_rc32k_enable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) -rtc_clk_select_rtc_slow_clk esp-idf/esp_system/libesp_system.a(clk.c.obj) -rtc_clk_set_cpu_switch_to_pll esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) -rtc_clk_slow_freq_get_hz esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_system/libesp_system.a(panic.c.obj) - esp-idf/esp_system/libesp_system.a(system_internal.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) -rtc_clk_slow_src_get esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) -rtc_clk_slow_src_set esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) -rtc_clk_xtal_freq_get esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) -rtc_clk_xtal_freq_update esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) -rtc_dig_8m_enabled esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) -rtc_dig_clk8m_disable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) -rtc_dig_clk8m_enable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) -rtc_gpio_deinit esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) -rtc_gpio_force_hold_dis_all esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) -rtc_gpio_force_hold_en_all esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) -rtc_gpio_hold_dis esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) -rtc_gpio_hold_en esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) -rtc_gpio_init esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) -rtc_gpio_is_valid_gpio esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -rtc_io_num_map esp-idf/soc/libsoc.a(rtc_io_periph.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) -rtc_io_number_get esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -rtc_isr_deregister esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) -rtc_isr_noniram_disable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) -rtc_isr_noniram_enable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) -rtc_isr_register esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) -rtc_printf esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) -rtc_sleep_enable_ultra_low esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -rtc_spinlock esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) -rtc_time_get esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) -rtc_time_slowclk_to_us esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -rtc_time_us_to_slowclk esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(pmu_sleep.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -rtos_int_enter esp-idf/freertos/libfreertos.a(portasm.S.obj) - esp-idf/riscv/libriscv.a(vectors.S.obj) -rtos_int_exit esp-idf/freertos/libfreertos.a(portasm.S.obj) - esp-idf/riscv/libriscv.a(vectors.S.obj) -rtos_save_fpu_coproc esp-idf/riscv/libriscv.a(vectors.S.obj) -rv_core_critical_regs_frame esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu_asm.S.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) -rv_core_critical_regs_restore esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu_asm.S.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) -rv_core_critical_regs_save esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu_asm.S.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) -rv_utils_dbgr_is_attached esp-idf/riscv/libriscv.a(rv_utils.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - esp-idf/esp_system/libesp_system.a(panic.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) - esp-idf/esp_system/libesp_system.a(ubsan.c.obj) -rx_gain_force C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) -rxdc_est_min C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_cal.o) -rxiq_cover_mg_mp C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_cal.o) -rxiq_get_mis C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_cal.o) -rxiq_set_reg C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_cal.o) -s_cache_hal_init_ctx esp-idf/hal/libhal.a(cache_hal.c.obj) -s_eventfd_vfs_id esp-idf/vfs/libvfs.a(vfs_eventfd.c.obj) -s_get_cache_state esp-idf/hal/libhal.a(cache_hal.c.obj) -s_keys esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) -s_microseconds_offset esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) -s_register_config_driver esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) -s_revoke_table esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -s_spinlock esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) -s_table esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -s_time_update_lock esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) -s_update_cache_state esp-idf/hal/libhal.a(cache_hal.c.obj) -sar_periph_ctrl_adc_continuous_power_acquire esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) -sar_periph_ctrl_adc_continuous_power_release esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) -sar_periph_ctrl_adc_oneshot_power_acquire esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) -sar_periph_ctrl_adc_oneshot_power_release esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) -sar_periph_ctrl_init esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) -sar_periph_ctrl_power_disable esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -sar_periph_ctrl_power_enable esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -sar_periph_ctrl_pwdet_power_acquire esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) -sar_periph_ctrl_pwdet_power_release esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) -save_pbus_reg C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pbus.o) -sched_get_priority_max esp-idf/pthread/libpthread.a(pthread.c.obj) -sched_get_priority_min esp-idf/pthread/libpthread.a(pthread.c.obj) -sched_yield esp-idf/pthread/libpthread.a(pthread.c.obj) -seekdir esp-idf/vfs/libvfs.a(vfs.c.obj) -select esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread.cpp.obj) -sem_destroy esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) -sem_getvalue esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) -sem_init esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) -sem_post esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) -sem_timedwait esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) -sem_trywait esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) -sem_wait esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) -set_adc_rand C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_basic.o) -set_cal_rxdc C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_cal.o) -set_cca C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_api.o) -set_chan_cal_interp C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_basic.o) -set_chan_freq_hw_init C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_hw_freq.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) -set_chan_freq_sw_start C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_hw_freq.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rfpll.o) -set_chanfreq C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rfpll.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_api.o) -set_channel_rfpll_freq C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rfpll.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_cal.o) -set_gauss_coeff_1m C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) -set_gauss_coeff_2m C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) -set_lb_txiq C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_cal.o) -set_loopback_gain C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pbus.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_cal.o) -set_noise_floor C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) -set_pbus_logain C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pbus.o) -set_pbus_mem C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pbus.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_hw_freq.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) -set_pbus_mem_eco2 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pbus.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) -set_pbus_mem_update C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pbus.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_track.o) -set_pbus_mem_update_lo C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pbus.o) -set_pbus_mem_update_lo_eco2 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pbus.o) -set_pbus_mem_update_ppa_eco2 C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pbus.o) -set_pbus_reg C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) -set_rf_freq_offset C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rfpll.o) -set_rfpll_freq C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rfpll.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_hw_freq.o) -set_rx_comp C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) -set_rx_gain_cal_dc C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_cal.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_gain.o) -set_rx_gain_cal_iq C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_cal.o) -set_rx_gain_table C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_gain.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_hw_freq.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) -set_rx_sense C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_api.o) -set_rxclk_en C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_cal.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_basic.o) -set_sdm_inv_phase C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) -set_tx_gain_mem C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_gain.o) -set_txcap_reg C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_i2c.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_cal.o) -set_txclk_en C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_cal.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_basic.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pbus.o) -set_xpd_sar esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) -setlocale C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-locale.o) -settimeofday esp-idf/newlib/libnewlib.a(time.c.obj) - esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) -sha_hal_hash_block esp-idf/hal/libhal.a(sha_hal.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) -sha_hal_hash_dma esp-idf/hal/libhal.a(sha_hal.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) -sha_hal_read_digest esp-idf/hal/libhal.a(sha_hal.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) -sha_hal_set_mode esp-idf/hal/libhal.a(sha_hal.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) -sha_hal_wait_idle esp-idf/hal/libhal.a(sha_hal.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) -sha_hal_write_digest esp-idf/hal/libhal.a(sha_hal.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) -sigfillset esp-idf/newlib/libnewlib.a(pthread.c.obj) -siprintf C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sprintf.o) -sleep esp-idf/newlib/libnewlib.a(time.c.obj) -sleep_clock_system_retention_init esp-idf/esp_hw_support/libesp_hw_support.a(sleep_clock.c.obj) -sleep_console_usj_pad_backup_and_disable esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -sleep_console_usj_pad_restore esp-idf/esp_hw_support/libesp_hw_support.a(sleep_console.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -sleep_cpu_configure esp-idf/esp_hw_support/libesp_hw_support.a(sleep_cpu.c.obj) -sleep_modem_configure esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) -sleep_modem_reject_triggers esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -sleep_modem_wifi_modem_state_skip_light_sleep esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) -sleep_retention_do_extra_retention esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) -sleep_retention_do_system_retention esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -sleep_retention_dump_entries esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) -sleep_retention_dump_modules esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) -sleep_retention_entries_create esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_clock.c.obj) -sleep_retention_entries_get esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) -sleep_retention_find_link_by_id esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) -sleep_retention_get_created_modules esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_clock.c.obj) -sleep_retention_get_inited_modules esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_clock.c.obj) -sleep_retention_is_module_created esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) -sleep_retention_is_module_inited esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) -sleep_retention_module_allocate esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) -sleep_retention_module_bitmap_and esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_clock.c.obj) -sleep_retention_module_bitmap_eq esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_clock.c.obj) -sleep_retention_module_bitmap_not esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) -sleep_retention_module_bitmap_or esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) -sleep_retention_module_deinit esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) -sleep_retention_module_free esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) -sleep_retention_module_init esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_clock.c.obj) -sleep_retention_power_lock_acquire esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) -sleep_retention_power_lock_release esp-idf/esp_hw_support/libesp_hw_support.a(sleep_retention.c.obj) -sniprintf C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-snprintf.o) -snprintf C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-snprintf.o) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_uart.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_settings.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) -soc_get_available_memory_region_max_count esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - esp-idf/heap/libheap.a(heap_caps_init.c.obj) -soc_get_available_memory_regions esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - esp-idf/heap/libheap.a(heap_caps_init.c.obj) -soc_memory_region_count esp-idf/heap/libheap.a(memory_layout.c.obj) - esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - esp-idf/heap/libheap.a(heap_caps_init.c.obj) -soc_memory_regions esp-idf/heap/libheap.a(memory_layout.c.obj) - esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - esp-idf/heap/libheap.a(heap_caps_init.c.obj) -soc_memory_type_count esp-idf/heap/libheap.a(memory_layout.c.obj) -soc_memory_types esp-idf/heap/libheap.a(memory_layout.c.obj) - esp-idf/heap/libheap.a(heap_caps_init.c.obj) -soc_reserved_memory_region_end esp-idf/heap/libheap.a(memory_layout_utils.c.obj) -soc_reserved_memory_region_start esp-idf/heap/libheap.a(memory_layout_utils.c.obj) -spi_bus_add_flash_device esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) -spi_bus_deinit_lock esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) -spi_bus_dma_memory_alloc esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) -spi_bus_free esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) -spi_bus_get_attr esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) -spi_bus_get_dma_ctx esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) -spi_bus_init_lock esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) -spi_bus_initialize esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) -spi_bus_lock_acquire_end esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) -spi_bus_lock_acquire_start esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) -spi_bus_lock_bg_check_dev_acq esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) -spi_bus_lock_bg_check_dev_req esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) -spi_bus_lock_bg_clear_req esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) -spi_bus_lock_bg_entry esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) -spi_bus_lock_bg_exit esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) -spi_bus_lock_bg_req_exist esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) -spi_bus_lock_bg_request esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) -spi_bus_lock_get_acquiring_dev esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) -spi_bus_lock_get_by_id esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) -spi_bus_lock_get_dev_id esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) -spi_bus_lock_register_dev esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) -spi_bus_lock_set_bg_control esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) -spi_bus_lock_touch esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) -spi_bus_lock_unregister_dev esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) -spi_bus_lock_wait_bg_done esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) -spi_bus_register_destroy_func esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) -spi_bus_remove_flash_device esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) -spi_flash_brownout_need_reset esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) -spi_flash_cache2phys esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) -spi_flash_cache_enabled esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) -spi_flash_check_and_flush_cache esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -spi_flash_chip_gd_detect_size esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) -spi_flash_chip_gd_get_caps esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) -spi_flash_chip_gd_get_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) -spi_flash_chip_gd_probe esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) -spi_flash_chip_gd_set_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) -spi_flash_chip_gd_suspend_cmd_conf esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) -spi_flash_chip_generic_config_host_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) -spi_flash_chip_generic_detect_size esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) -spi_flash_chip_generic_erase_block esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) -spi_flash_chip_generic_erase_chip esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) -spi_flash_chip_generic_erase_sector esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) -spi_flash_chip_generic_get_caps esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) -spi_flash_chip_generic_get_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) -spi_flash_chip_generic_get_write_protect esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) -spi_flash_chip_generic_page_program esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) -spi_flash_chip_generic_probe esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) -spi_flash_chip_generic_read esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) -spi_flash_chip_generic_read_reg esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) -spi_flash_chip_generic_read_unique_id esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) -spi_flash_chip_generic_read_unique_id_none esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) -spi_flash_chip_generic_reset esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) -spi_flash_chip_generic_set_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) -spi_flash_chip_generic_set_write_protect esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) -spi_flash_chip_generic_suspend_cmd_conf esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) -spi_flash_chip_generic_timeout esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) -spi_flash_chip_generic_wait_idle esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) -spi_flash_chip_generic_write esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) -spi_flash_chip_generic_write_encrypted esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) -spi_flash_chip_generic_yield esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) -spi_flash_chip_list_check esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) -spi_flash_chip_winbond_erase_block esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) -spi_flash_chip_winbond_erase_sector esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) -spi_flash_chip_winbond_get_caps esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) -spi_flash_chip_winbond_page_program esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) -spi_flash_chip_winbond_probe esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) -spi_flash_chip_winbond_read esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) -spi_flash_chip_winbond_suspend_cmd_conf esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) -spi_flash_common_read_status_16b_rdsr_rdsr2 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) -spi_flash_common_read_status_8b_rdsr esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) -spi_flash_common_read_status_8b_rdsr2 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) -spi_flash_common_set_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) -spi_flash_common_write_status_16b_wrsr esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) -spi_flash_common_write_status_8b_wrsr esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) -spi_flash_common_write_status_8b_wrsr2 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) -spi_flash_disable_cache esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -spi_flash_disable_interrupts_caches_and_other_cpu esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) -spi_flash_disable_interrupts_caches_and_other_cpu_no_os esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) -spi_flash_enable_cache esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) -spi_flash_enable_interrupts_caches_and_other_cpu esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) -spi_flash_enable_interrupts_caches_no_os esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) -spi_flash_encryption_hal_check esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) -spi_flash_encryption_hal_destroy esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) -spi_flash_encryption_hal_disable esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) -spi_flash_encryption_hal_done esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) -spi_flash_encryption_hal_enable esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) -spi_flash_encryption_hal_enable_pseudo_rounds esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) -spi_flash_encryption_hal_prepare esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) -spi_flash_guard_get esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) -spi_flash_guard_set esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) -spi_flash_hal_check_status esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -spi_flash_hal_common_command esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -spi_flash_hal_configure_host_io_mode esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -spi_flash_hal_device_config esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -spi_flash_hal_disable_auto_resume_mode esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) -spi_flash_hal_disable_auto_suspend_mode esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) -spi_flash_hal_erase_block esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -spi_flash_hal_erase_chip esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -spi_flash_hal_erase_sector esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -spi_flash_hal_gpspi_check_status esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -spi_flash_hal_gpspi_common_command esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -spi_flash_hal_gpspi_configure_host_io_mode esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -spi_flash_hal_gpspi_device_config esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -spi_flash_hal_gpspi_poll_cmd_done esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -spi_flash_hal_gpspi_read esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -spi_flash_hal_gpspi_supports_direct_read esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -spi_flash_hal_gpspi_supports_direct_write esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -spi_flash_hal_init esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -spi_flash_hal_poll_cmd_done esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -spi_flash_hal_program_page esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -spi_flash_hal_read esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -spi_flash_hal_resume esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -spi_flash_hal_set_write_protect esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -spi_flash_hal_setup_auto_resume_mode esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) -spi_flash_hal_setup_auto_suspend_mode esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) -spi_flash_hal_setup_read_suspend esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -spi_flash_hal_supports_direct_read esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -spi_flash_hal_supports_direct_write esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -spi_flash_hal_suspend esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -spi_flash_init_chip_state esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -spi_flash_init_lock esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) -spi_flash_mmap esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) -spi_flash_mmap_dump esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) -spi_flash_mmap_get_free_pages esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) -spi_flash_mmap_pages esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) -spi_flash_munmap esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) -spi_flash_needs_reset_check esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) - esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) -spi_flash_op_lock esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) -spi_flash_op_unlock esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) -spi_flash_phys2cache esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) -spi_flash_restore_cache esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) -spi_flash_set_erasing_flag esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) -spi_flash_set_rom_required_regs esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) -spi_flash_timing_is_tuned esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) -spi_periph_signal esp-idf/soc/libsoc.a(spi_periph.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) -spi_reg_retention_info esp-idf/soc/libsoc.a(spi_periph.c.obj) -spi_slave_disable esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) -spi_slave_enable esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) -spi_slave_free esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_spi_slave.c.obj) -spi_slave_get_trans_result esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) -spi_slave_hal_deinit esp-idf/hal/libhal.a(spi_slave_hal.c.obj) -spi_slave_hal_dma_need_reset esp-idf/hal/libhal.a(spi_slave_hal_iram.c.obj) -spi_slave_hal_enable_data_line esp-idf/hal/libhal.a(spi_slave_hal_iram.c.obj) -spi_slave_hal_get_rcv_bitlen esp-idf/hal/libhal.a(spi_slave_hal_iram.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) -spi_slave_hal_hw_fifo_reset esp-idf/hal/libhal.a(spi_slave_hal_iram.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) -spi_slave_hal_hw_prepare_rx esp-idf/hal/libhal.a(spi_slave_hal_iram.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) -spi_slave_hal_hw_prepare_tx esp-idf/hal/libhal.a(spi_slave_hal_iram.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) -spi_slave_hal_hw_reset esp-idf/hal/libhal.a(spi_slave_hal_iram.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) -spi_slave_hal_init esp-idf/hal/libhal.a(spi_slave_hal.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) -spi_slave_hal_push_tx_buffer esp-idf/hal/libhal.a(spi_slave_hal_iram.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) -spi_slave_hal_set_trans_bitlen esp-idf/hal/libhal.a(spi_slave_hal_iram.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) -spi_slave_hal_setup_device esp-idf/hal/libhal.a(spi_slave_hal.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) -spi_slave_hal_store_result esp-idf/hal/libhal.a(spi_slave_hal_iram.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) -spi_slave_hal_user_start esp-idf/hal/libhal.a(spi_slave_hal_iram.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) -spi_slave_hal_usr_is_done esp-idf/hal/libhal.a(spi_slave_hal_iram.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) -spi_slave_initialize esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_spi_slave.c.obj) -spi_slave_queue_reset esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_spi_slave.c.obj) -spi_slave_queue_reset_isr esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_spi_slave.c.obj) -spi_slave_queue_trans esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_spi_slave.c.obj) -spi_slave_queue_trans_isr esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_spi_slave.c.obj) -spi_slave_transmit esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) -spi_timing_get_flash_timing_param esp-idf/esp_hw_support/libesp_hw_support.a(mspi_timing_tuning.c.obj) -spicommon_bus_free_io_cfg esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) -spicommon_bus_initialize_io esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) -spicommon_bus_using_iomux esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) -spicommon_cs_free_io esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) -spicommon_cs_initialize esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) -spicommon_dma_chan_alloc esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) -spicommon_dma_chan_free esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) -spicommon_dma_desc_alloc esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) -spicommon_dma_desc_setup_link esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) -spicommon_irqdma_source_for_host esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) -spicommon_irqsource_for_host esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) -spicommon_periph_claim esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) -spicommon_periph_free esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_common.c.obj) -spicommon_periph_in_use esp-idf/esp_hw_support/libesp_hw_support.a(spi_share_hw_ctrl.c.obj) -spinel_capability_to_cstr esp-idf/openthread/libopenthread.a(spinel.c.obj) -spinel_command_to_cstr esp-idf/openthread/libopenthread.a(spinel.c.obj) -spinel_datatype_pack esp-idf/openthread/libopenthread.a(spinel.c.obj) -spinel_datatype_unpack esp-idf/openthread/libopenthread.a(spinel.c.obj) -spinel_datatype_unpack_in_place esp-idf/openthread/libopenthread.a(spinel.c.obj) -spinel_datatype_vpack esp-idf/openthread/libopenthread.a(spinel.c.obj) - esp-idf/openthread/libopenthread.a(spinel_encoder.cpp.obj) -spinel_datatype_vunpack esp-idf/openthread/libopenthread.a(spinel.c.obj) -spinel_datatype_vunpack_in_place esp-idf/openthread/libopenthread.a(spinel.c.obj) -spinel_mcu_power_state_to_cstr esp-idf/openthread/libopenthread.a(spinel.c.obj) -spinel_net_role_to_cstr esp-idf/openthread/libopenthread.a(spinel.c.obj) -spinel_next_packed_datatype esp-idf/openthread/libopenthread.a(spinel.c.obj) -spinel_packed_uint_decode esp-idf/openthread/libopenthread.a(spinel.c.obj) - esp-idf/openthread/libopenthread.a(spinel_decoder.cpp.obj) -spinel_packed_uint_encode esp-idf/openthread/libopenthread.a(spinel.c.obj) - esp-idf/openthread/libopenthread.a(spinel_encoder.cpp.obj) -spinel_packed_uint_size esp-idf/openthread/libopenthread.a(spinel.c.obj) -spinel_prop_key_to_cstr esp-idf/openthread/libopenthread.a(spinel.c.obj) -spinel_status_to_cstr esp-idf/openthread/libopenthread.a(spinel.c.obj) -sprintf C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-sprintf.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfscanf_float.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_debug.o) -start_cpu0 esp-idf/esp_system/libesp_system.a(startup.c.obj) -start_tx_tone_step C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_cal.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_cal.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pwdet.o) -std::bad_alloc::what() const C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(bad_alloc.o) -std::bad_alloc::~bad_alloc() C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(bad_alloc.o) -std::bad_alloc::~bad_alloc() C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(bad_alloc.o) -std::bad_alloc::~bad_alloc() C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(bad_alloc.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_op.o) -std::bad_exception::what() const C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) -std::bad_exception::~bad_exception() C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) -std::bad_exception::~bad_exception() C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) -std::bad_exception::~bad_exception() C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) -std::exception::what() const C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) -std::exception::~exception() C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(bad_alloc.o) -std::exception::~exception() C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) -std::exception::~exception() C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) -std::get_new_handler() C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_handler.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_op.o) -std::get_terminate() C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) -std::get_unexpected() C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) -std::nothrow C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_handler.o) - esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) -std::set_new_handler(void (*)()) C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_handler.o) -std::set_terminate(void (*)()) C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) -std::set_unexpected(void (*)()) C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) -std::terminate() C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_unex_handler.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_globals.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_catch.o) -std::type_info::__do_catch(std::type_info const*, void**, unsigned int) const C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(tinfo.o) -std::type_info::__do_upcast(__cxxabiv1::__class_type_info const*, void**) const C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(tinfo.o) -std::type_info::__is_function_p() const C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(tinfo.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(class_type_info.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) -std::type_info::__is_pointer_p() const C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(tinfo.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(class_type_info.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) -std::type_info::~type_info() C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(tinfo.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(class_type_info.o) -std::type_info::~type_info() C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(tinfo.o) -std::type_info::~type_info() C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(tinfo.o) -std::uncaught_exception() C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_catch.o) -std::uncaught_exceptions() C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_catch.o) -std::unexpected() C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_terminate.o) -stop_tx_tone C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_cal.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pwdet.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pbus.o) -strcat C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strcat.o) - esp-idf/newlib/libnewlib.a(abort.c.obj) - esp-idf/freertos/libfreertos.a(port.c.obj) -strcmp C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strcmp.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-locale.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(class_type_info.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(tinfo.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) - esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - esp-idf/vfs/libvfs.a(nullfs.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) -strcpy C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strcpy.o) - esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) -strcspn C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strcspn.o) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) -strlcat C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strlcat.o) - esp-idf/esp_system/libesp_system.a(ubsan.c.obj) -strlcpy C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strlcpy.o) - esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) -strlen C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strlen.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strlcat.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-puts.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-fputs.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf_float.o) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - esp-idf/openthread/libopenthread.a(spinel_encoder.cpp.obj) - esp-idf/openthread/libopenthread.a(spinel.c.obj) - esp-idf/openthread/libopenthread.a(ncp_hdlc.cpp.obj) - esp-idf/openthread/libopenthread.a(string.cpp.obj) - esp-idf/openthread/libopenthread.a(esp_openthread.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/esp_system/libesp_system.a(panic.c.obj) -strncmp C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strncmp.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-gdtoa-gethex.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtod.o) - esp-idf/openthread/libopenthread.a(esp_openthread_platform.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) - esp-idf/vfs/libvfs.a(vfs.c.obj) -strncpy C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strncpy.o) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - esp-idf/esp_partition/libesp_partition.a(partition.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_platform.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) -strnlen C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strnlen.o) - esp-idf/openthread/libopenthread.a(esp_openthread_platform.cpp.obj) -strstr C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strstr.o) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) -strtod C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtod.o) -strtod_l C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtod.o) -strtof C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtod.o) -strtof_l C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtod.o) -strtol C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtol.o) -strtol_l C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-strtol.o) -syscall_table_ptr esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -system esp-idf/newlib/libnewlib.a(syscalls.c.obj) -systimer_hal_connect_alarm_counter esp-idf/freertos/libfreertos.a(port_systick.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) -systimer_hal_counter_can_stall_by_cpu esp-idf/freertos/libfreertos.a(port_systick.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) -systimer_hal_counter_value_advance esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) -systimer_hal_deinit esp-idf/esp_rom/libesp_rom.a(esp_rom_systimer.c.obj) -systimer_hal_enable_alarm_int esp-idf/freertos/libfreertos.a(port_systick.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) -systimer_hal_enable_counter esp-idf/freertos/libfreertos.a(port_systick.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) -systimer_hal_get_alarm_value esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) -systimer_hal_get_counter_value esp-idf/freertos/libfreertos.a(port_systick.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) -systimer_hal_init esp-idf/esp_rom/libesp_rom.a(esp_rom_systimer.c.obj) - esp-idf/freertos/libfreertos.a(port_systick.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) -systimer_hal_select_alarm_mode esp-idf/freertos/libfreertos.a(port_systick.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) -systimer_hal_set_alarm_period esp-idf/freertos/libfreertos.a(port_systick.c.obj) -systimer_hal_set_alarm_target esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) -systimer_hal_set_tick_rate_ops esp-idf/freertos/libfreertos.a(port_systick.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) -systimer_ticks_to_us esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) - esp-idf/freertos/libfreertos.a(port_systick.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) -systimer_us_to_ticks esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) - esp-idf/freertos/libfreertos.a(port_systick.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) -task_wdt_timeout_abort esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) -tcdrain esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) -tcflow esp-idf/vfs/libvfs.a(vfs.c.obj) -tcflush esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) -tcgetattr esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) -tcgetsid esp-idf/vfs/libvfs.a(vfs.c.obj) -tcsendbreak esp-idf/vfs/libvfs.a(vfs.c.obj) -tcsetattr esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) -telldir esp-idf/vfs/libvfs.a(vfs.c.obj) -temp_sensor_get_raw_value esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) -temp_sensor_sync_tsens_idx esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) -temp_to_power C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tsens.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_track.o) -temperature_sensor_attributes esp-idf/soc/libsoc.a(temperature_sensor_periph.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) -temperature_sensor_power_acquire esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) -temperature_sensor_power_release esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) -temperature_sensor_regs_retention esp-idf/soc/libsoc.a(temperature_sensor_periph.c.obj) -timestamp_id esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) -tlsf_check_pool esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) -tlsf_find_containing_block esp-idf/esp_rom/libesp_rom.a(esp_rom_multi_heap.c.obj) -tlsf_get_pool esp-idf/esp_rom/libesp_rom.a(esp_rom_multi_heap.c.obj) -tlsf_poison_check_pfunc_set esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) -tlsf_set_rom_patches esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) -tlsf_walk_pool esp-idf/esp_rom/libesp_rom.a(esp_rom_tlsf.c.obj) - esp-idf/esp_rom/libesp_rom.a(esp_rom_multi_heap.c.obj) -transaction clone for std::bad_exception::what() const C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) -transaction clone for std::bad_exception::~bad_exception() const C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) -transaction clone for std::exception::what() const C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) -transaction clone for std::exception::~exception() const C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) -truncate esp-idf/vfs/libvfs.a(vfs.c.obj) -tsens_code_read C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tsens.o) -tsens_dac_cal_new C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tsens.o) -tsens_dac_to_index C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tsens.o) -tsens_read_init C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tsens.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) -tsens_temp_read C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tsens.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_debug.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_track.o) -tsens_temp_read_new C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tsens.o) -tx_cap_init C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_cal.o) -tx_paon_set C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) -tx_pwctrl_background C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_track.o) -tx_pwctrl_bg_init C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pwdet.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) -tx_pwctrl_init C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_cal.o) -tx_pwctrl_init_cal C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_cal.o) -tx_state_set C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) -txcal_debuge_mode C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pbus.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_cal.o) -txcal_work_mode C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pbus.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_cal.o) -txdc_cal C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_cal.o) -txdc_cal_init C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_cal.o) -txiq_cal_init C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_cal.o) -txiq_cover C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_cal.o) -txiq_get_mis_pwr C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_cal.o) -txiq_set_reg C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_cal.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_cal.o) -txpwr_cal_track C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_track.o) -txpwr_correct C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_track.o) -txtone_linear_pwr C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pwdet.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_cal.o) -typeinfo for std::bad_alloc C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_op.o) -typeinfo for std::exception C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_op.o) -typeinfo name for std::bad_alloc C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_op.o) -typeinfo name for std::exception C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_op.o) -uart_clear_intr_status esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_detect_bitrate_start esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_detect_bitrate_stop esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_disable_intr_mask esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_disable_pattern_det_intr esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_disable_rx_intr esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_disable_tx_intr esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_driver_delete esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_uart.c.obj) -uart_driver_install esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_uart.c.obj) -uart_enable_intr_mask esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_enable_pattern_det_baud_intr esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_enable_rx_intr esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_enable_tx_intr esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_flush esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_flush_input esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) -uart_get_baudrate esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) -uart_get_buffered_data_len esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) -uart_get_collision_flag esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_get_hw_flow_ctrl esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_get_parity esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) -uart_get_sclk_freq esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_get_selectlock esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) -uart_get_stop_bits esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) -uart_get_tx_buffer_free_size esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_get_wakeup_threshold esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_get_word_length esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) -uart_hal_get_baudrate esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_hal_get_data_bit_num esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_hal_get_hw_flow_ctrl esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_hal_get_max_rx_timeout_thrd esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_hal_get_parity esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_hal_get_sclk esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_hal_get_stop_bits esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_hal_get_symb_len esp-idf/hal/libhal.a(uart_hal.c.obj) -uart_hal_get_wakeup_edge_thrd esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_hal_init esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_hal_inverse_signal esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_hal_is_hw_rts_en esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_hal_read_rxfifo esp-idf/hal/libhal.a(uart_hal_iram.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_hal_rxfifo_rst esp-idf/hal/libhal.a(uart_hal_iram.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_hal_set_at_cmd_char esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_hal_set_data_bit_num esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_hal_set_dtr esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_hal_set_hw_flow_ctrl esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_hal_set_loop_back esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_hal_set_mode esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_hal_set_parity esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_hal_set_rx_timeout esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_hal_set_rxfifo_full_thr esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_hal_set_stop_bits esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_hal_set_sw_flow_ctrl esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_hal_set_tx_idle_num esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_hal_set_txfifo_empty_thr esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_hal_set_wakeup_edge_thrd esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_hal_tx_break esp-idf/hal/libhal.a(uart_hal_iram.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_hal_txfifo_rst esp-idf/hal/libhal.a(uart_hal_iram.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_hal_write_txfifo esp-idf/hal/libhal.a(uart_hal_iram.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_intr_config esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_is_driver_installed esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) -uart_param_config esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_uart.c.obj) -uart_pattern_get_pos esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_pattern_pop_pos esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_pattern_queue_reset esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_periph_signal esp-idf/soc/libsoc.a(uart_periph.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_read_bytes esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) -uart_reg_retention_info esp-idf/soc/libsoc.a(uart_periph.c.obj) -uart_set_always_rx_timeout esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_set_baudrate esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) -uart_set_dtr esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_set_hw_flow_ctrl esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_set_line_inverse esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_set_loop_back esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_set_mode esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_set_parity esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) -uart_set_pin esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_uart.c.obj) -uart_set_rts esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_set_rx_full_threshold esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_set_rx_timeout esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_set_select_notif_callback esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) -uart_set_stop_bits esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) -uart_set_sw_flow_ctrl esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_set_tx_empty_threshold esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_set_tx_idle_num esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_set_wakeup_threshold esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_set_word_length esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) -uart_tx_chars esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_vfs_dev_port_set_rx_line_endings esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_uart.c.obj) -uart_vfs_dev_port_set_tx_line_endings esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_uart.c.obj) -uart_vfs_dev_register esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) -uart_vfs_dev_set_rx_line_endings esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) -uart_vfs_dev_set_tx_line_endings esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) -uart_vfs_dev_use_driver esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_uart.c.obj) -uart_vfs_dev_use_nonblocking esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) -uart_vfs_include_dev_init esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) -uart_wait_tx_done esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) -uart_wait_tx_idle_polling esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -uart_write_bytes esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) -uart_write_bytes_with_break esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -ulTaskGenericNotifyTake esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) -ulTaskGenericNotifyValueClear esp-idf/freertos/libfreertos.a(tasks.c.obj) -usb_serial_device_tx_flush esp-idf/esp_rom/libesp_rom.a(esp_rom_usb_serial.c.obj) -usb_serial_device_tx_one_char esp-idf/esp_rom/libesp_rom.a(esp_rom_usb_serial.c.obj) -usb_serial_jtag_connection_monitor_include esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) -usb_serial_jtag_driver_install esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) -usb_serial_jtag_driver_uninstall esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) -usb_serial_jtag_get_read_bytes_available esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) -usb_serial_jtag_is_connected esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_connection_monitor.c.obj) -usb_serial_jtag_is_driver_installed esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) -usb_serial_jtag_read_bytes esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) -usb_serial_jtag_read_ready esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) -usb_serial_jtag_set_select_notif_callback esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) -usb_serial_jtag_vfs_include_dev_init esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) -usb_serial_jtag_vfs_register esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) -usb_serial_jtag_vfs_set_rx_line_endings esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) -usb_serial_jtag_vfs_set_tx_line_endings esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) -usb_serial_jtag_vfs_use_driver esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) -usb_serial_jtag_vfs_use_nonblocking esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) -usb_serial_jtag_wait_tx_done esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) -usb_serial_jtag_write_bytes esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) -usb_serial_jtag_write_ready esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) -usleep esp-idf/newlib/libnewlib.a(time.c.obj) -utime esp-idf/vfs/libvfs.a(vfs.c.obj) -utoa C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-utoa.o) -uxListRemove esp-idf/freertos/libfreertos.a(list.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) -uxQueueMessagesWaiting esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) - esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) -uxQueueMessagesWaitingFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) -uxQueueSpacesAvailable esp-idf/freertos/libfreertos.a(queue.c.obj) -uxTaskGetNumberOfTasks esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) -uxTaskGetSnapshotAll esp-idf/freertos/libfreertos.a(tasks.c.obj) -uxTaskGetStackHighWaterMark esp-idf/freertos/libfreertos.a(tasks.c.obj) -uxTaskGetStackHighWaterMark2 esp-idf/freertos/libfreertos.a(tasks.c.obj) -uxTaskPriorityGet esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) -uxTaskPriorityGetFromISR esp-idf/freertos/libfreertos.a(tasks.c.obj) -uxTaskResetEventItemValue esp-idf/freertos/libfreertos.a(tasks.c.obj) -uxTopUsedPriority esp-idf/freertos/libfreertos.a(tasks.c.obj) -vApplicationGetIdleTaskMemory esp-idf/freertos/libfreertos.a(port_common.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) -vApplicationGetTimerTaskMemory esp-idf/freertos/libfreertos.a(port_common.c.obj) -vApplicationStackOverflowHook esp-idf/freertos/libfreertos.a(port.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) -vListInitialise esp-idf/freertos/libfreertos.a(list.c.obj) - esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) -vListInitialiseItem esp-idf/freertos/libfreertos.a(list.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) -vListInsert esp-idf/freertos/libfreertos.a(list.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) -vListInsertEnd esp-idf/freertos/libfreertos.a(list.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) -vPortAssertIfInISR esp-idf/freertos/libfreertos.a(port.c.obj) - esp-idf/freertos/libfreertos.a(idf_additions.c.obj) -vPortClearInterruptMaskFromISR esp-idf/freertos/libfreertos.a(port.c.obj) - esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/freertos/libfreertos.a(port_systick.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) -vPortEndScheduler esp-idf/freertos/libfreertos.a(port.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) -vPortEnterCritical esp-idf/freertos/libfreertos.a(port.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_init_esp32hxx.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/vfs/libvfs.a(vfs_eventfd.c.obj) - esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) - esp-idf/newlib/libnewlib.a(locks.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - esp-idf/heap/libheap.a(multi_heap.c.obj) - esp-idf/heap/libheap.a(heap_caps_init.c.obj) - esp-idf/heap/libheap.a(heap_caps.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) -vPortExitCritical esp-idf/freertos/libfreertos.a(port.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_init_esp32hxx.c.obj) - esp-idf/ieee802154/libieee802154.a(esp_ieee802154_dev.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/vfs/libvfs.a(vfs_eventfd.c.obj) - esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(io_mux.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl_common.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) - esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) - esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag_vfs.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart_vfs.c.obj) - esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) - esp-idf/newlib/libnewlib.a(locks.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - esp-idf/heap/libheap.a(multi_heap.c.obj) - esp-idf/heap/libheap.a(heap_caps_init.c.obj) - esp-idf/heap/libheap.a(heap_caps.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) -vPortFree esp-idf/freertos/libfreertos.a(heap_idf.c.obj) - esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) -vPortSetStackWatchpoint esp-idf/freertos/libfreertos.a(port.c.obj) -vPortSetupTimer esp-idf/freertos/libfreertos.a(port_systick.c.obj) - esp-idf/freertos/libfreertos.a(port.c.obj) -vPortTCBPreDeleteHook esp-idf/freertos/libfreertos.a(port.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) -vPortYield esp-idf/freertos/libfreertos.a(port.c.obj) - esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) -vPortYieldFromISR esp-idf/freertos/libfreertos.a(port.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_task_queue.c.obj) - esp-idf/vfs/libvfs.a(vfs_eventfd.c.obj) - esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/newlib/libnewlib.a(locks.c.obj) - esp-idf/freertos/libfreertos.a(port_systick.c.obj) -vPortYieldOtherCore esp-idf/freertos/libfreertos.a(port.c.obj) -vQueueDelete esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_task_queue.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_lock.c.obj) - esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) - esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) - esp-idf/newlib/libnewlib.a(locks.c.obj) -vQueueDeleteWithCaps esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -vQueueWaitForMessageRestricted esp-idf/freertos/libfreertos.a(queue.c.obj) -vRingbufferDelete esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) -vRingbufferDeleteWithCaps esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -vRingbufferGetInfo esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) -vRingbufferReturnItem esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -vRingbufferReturnItemFromISR esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -vSemaphoreDeleteWithCaps esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -vStreamBufferDelete esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - esp-idf/freertos/libfreertos.a(idf_additions.c.obj) -vStreamBufferGenericDeleteWithCaps esp-idf/freertos/libfreertos.a(idf_additions.c.obj) -vSystimerSetup esp-idf/freertos/libfreertos.a(port_systick.c.obj) -vTaskDelay esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) - esp-idf/newlib/libnewlib.a(time.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -vTaskDelete esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - esp-idf/main/libmain.a(esp_ot_rcp.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) - esp-idf/freertos/libfreertos.a(app_startup.c.obj) -vTaskDeleteWithCaps esp-idf/freertos/libfreertos.a(idf_additions.c.obj) -vTaskEndScheduler esp-idf/freertos/libfreertos.a(tasks.c.obj) -vTaskGenericNotifyGiveFromISR esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) -vTaskGetSnapshot esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) -vTaskInternalSetTimeOutState esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) -vTaskMissedYield esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) -vTaskPlaceOnEventList esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) -vTaskPlaceOnEventListRestricted esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) -vTaskPlaceOnUnorderedEventList esp-idf/freertos/libfreertos.a(tasks.c.obj) -vTaskPriorityDisinheritAfterTimeout esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) -vTaskPrioritySet esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) -vTaskRemoveFromUnorderedEventList esp-idf/freertos/libfreertos.a(tasks.c.obj) -vTaskResume esp-idf/freertos/libfreertos.a(tasks.c.obj) -vTaskSetThreadLocalStoragePointer esp-idf/freertos/libfreertos.a(tasks.c.obj) -vTaskSetThreadLocalStoragePointerAndDelCallback esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) -vTaskSetTimeOutState esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) -vTaskStartScheduler esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/freertos/libfreertos.a(app_startup.c.obj) -vTaskSuspend esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) -vTaskSuspendAll esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - esp-idf/esp_system/libesp_system.a(esp_system.c.obj) -vTaskSwitchContext esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/freertos/libfreertos.a(portasm.S.obj) -valid_key_length esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_common.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes.c.obj) -valloc esp-idf/newlib/libnewlib.a(heap.c.obj) -vfiprintf C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf.o) -vfprintf C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-nano-vfprintf.o) -vfs_include_syscalls_impl esp-idf/vfs/libvfs.a(vfs.c.obj) -void ot::Logger::DumpAtLevel<(ot::LogLevel)0>(char const*, char const*, void const*, unsigned short) esp-idf/openthread/libopenthread.a(log.cpp.obj) -void ot::Logger::DumpAtLevel<(ot::LogLevel)1>(char const*, char const*, void const*, unsigned short) esp-idf/openthread/libopenthread.a(log.cpp.obj) -void ot::Logger::DumpAtLevel<(ot::LogLevel)2>(char const*, char const*, void const*, unsigned short) esp-idf/openthread/libopenthread.a(log.cpp.obj) -void ot::Logger::DumpAtLevel<(ot::LogLevel)3>(char const*, char const*, void const*, unsigned short) esp-idf/openthread/libopenthread.a(log.cpp.obj) -void ot::Logger::DumpAtLevel<(ot::LogLevel)4>(char const*, char const*, void const*, unsigned short) esp-idf/openthread/libopenthread.a(log.cpp.obj) -void ot::Logger::DumpAtLevel<(ot::LogLevel)5>(char const*, char const*, void const*, unsigned short) esp-idf/openthread/libopenthread.a(log.cpp.obj) -void ot::Logger::LogAtLevel<(ot::LogLevel)0>(char const*, char const*, ...) esp-idf/openthread/libopenthread.a(log.cpp.obj) -void ot::Logger::LogAtLevel<(ot::LogLevel)1>(char const*, char const*, ...) esp-idf/openthread/libopenthread.a(log.cpp.obj) -void ot::Logger::LogAtLevel<(ot::LogLevel)2>(char const*, char const*, ...) esp-idf/openthread/libopenthread.a(log.cpp.obj) -void ot::Logger::LogAtLevel<(ot::LogLevel)3>(char const*, char const*, ...) esp-idf/openthread/libopenthread.a(log.cpp.obj) -void ot::Logger::LogAtLevel<(ot::LogLevel)4>(char const*, char const*, ...) esp-idf/openthread/libopenthread.a(log.cpp.obj) -void ot::Logger::LogAtLevel<(ot::LogLevel)5>(char const*, char const*, ...) esp-idf/openthread/libopenthread.a(log.cpp.obj) -vsniprintf C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-vsnprintf.o) -vsnprintf C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-vsnprintf.o) - esp-idf/esp_phy/libesp_phy.a(lib_printf.c.obj) - esp-idf/openthread/libopenthread.a(string.cpp.obj) -vtable for __cxxabiv1::__class_type_info C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(class_type_info.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_op.o) -vtable for __cxxabiv1::__forced_unwind C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) -vtable for __cxxabiv1::__foreign_exception C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) -vtable for __cxxabiv1::__si_class_type_info C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(si_class_type_info.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_op.o) -vtable for nvs::NVSEncryptedPartition esp-idf/nvs_flash/libnvs_flash.a(nvs_encrypted_partition.cpp.obj) -vtable for nvs::NVSHandleSimple esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) - esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) -vtable for nvs::NVSPartition esp-idf/nvs_flash/libnvs_flash.a(nvs_partition.cpp.obj) -vtable for nvs::NVSPartitionManager esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) -vtable for std::bad_alloc C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(bad_alloc.o) - C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(new_op.o) -vtable for std::bad_exception C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) -vtable for std::exception C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(eh_exception.o) -vtable for std::type_info C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libstdc++.a(tinfo.o) -wait_freq_set_busy C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_hw_freq.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) -wait_rfpll_cal_end C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rfpll.o) -wdt_hal_config_stage esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_system/libesp_system.a(panic.c.obj) - esp-idf/esp_system/libesp_system.a(system_internal.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) -wdt_hal_deinit esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) -wdt_hal_disable esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_system/libesp_system.a(panic.c.obj) - esp-idf/esp_system/libesp_system.a(system_internal.c.obj) - esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) -wdt_hal_enable esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_system/libesp_system.a(panic.c.obj) -wdt_hal_feed esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - esp-idf/esp_system/libesp_system.a(panic.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) -wdt_hal_handle_intr esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) -wdt_hal_init esp-idf/esp_rom/libesp_rom.a(esp_rom_wdt.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_system/libesp_system.a(panic.c.obj) - esp-idf/esp_system/libesp_system.a(system_internal.c.obj) -wdt_hal_is_enabled esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_system/libesp_system.a(panic.c.obj) -wdt_hal_set_flashboot_en esp-idf/esp_system/libesp_system.a(system_internal.c.obj) -wdt_hal_write_protect_disable esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_system/libesp_system.a(panic.c.obj) - esp-idf/esp_system/libesp_system.a(system_internal.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) - esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) -wdt_hal_write_protect_enable esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) - esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_system/libesp_system.a(panic.c.obj) - esp-idf/esp_system/libesp_system.a(system_internal.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) - esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) -wifi_11g_rate_chg C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_cal.o) -wifi_agc_sat_gain C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) -wifi_rifs_mode_en C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) -wifi_track_tx_power C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_track.o) -wifi_tx_dig_reg C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) -wr_rf_freq_mem_new C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_hw_freq.o) -wr_rx_gain_mem C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_gain.o) -write C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/14.2.0/../../../../riscv32-esp-elf/lib/rv32imac_zicsr_zifencei/ilp32/no-rtti\libc_nano.a(libc_a-syswrite.o) - esp-idf/openthread/libopenthread.a(esp_openthread_uart.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_radio.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_task_queue.c.obj) - esp-idf/esp_vfs_console/libesp_vfs_console.a(vfs_console.c.obj) -write_chan_freq C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_hw_freq.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_init.o) -write_gain_mem C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_reg.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_tx_gain.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rx_gain.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_pbus.o) -write_pll_cap C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rfpll.o) - C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_hw_freq.o) -write_rfpll_sdm C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libphy.a(phy_rfpll.o) -xIsrStack esp-idf/freertos/libfreertos.a(port.c.obj) -xIsrStackBottom esp-idf/freertos/libfreertos.a(port.c.obj) - esp-idf/freertos/libfreertos.a(portasm.S.obj) -xIsrStackTop esp-idf/freertos/libfreertos.a(port.c.obj) - esp-idf/freertos/libfreertos.a(portasm.S.obj) -xPortCheckValidListMem esp-idf/freertos/libfreertos.a(heap_idf.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) -xPortCheckValidTCBMem esp-idf/freertos/libfreertos.a(heap_idf.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) -xPortGetFreeHeapSize esp-idf/freertos/libfreertos.a(heap_idf.c.obj) -xPortGetMinimumEverFreeHeapSize esp-idf/freertos/libfreertos.a(heap_idf.c.obj) -xPortGetTickRateHz esp-idf/freertos/libfreertos.a(port.c.obj) -xPortInIsrContext esp-idf/freertos/libfreertos.a(port.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_init_esp32hxx.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/log/liblog.a(log_timestamp.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(modem_clock.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - esp-idf/heap/libheap.a(multi_heap.c.obj) - esp-idf/heap/libheap.a(heap_caps_init.c.obj) - esp-idf/heap/libheap.a(heap_caps.c.obj) - esp-idf/log/liblog.a(util.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) -xPortInterruptedFromISRContext esp-idf/freertos/libfreertos.a(port.c.obj) -xPortSetInterruptMaskFromISR esp-idf/freertos/libfreertos.a(port.c.obj) - esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/freertos/libfreertos.a(port_systick.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) -xPortStartScheduler esp-idf/freertos/libfreertos.a(port.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) -xPortSwitchFlag esp-idf/freertos/libfreertos.a(port.c.obj) - esp-idf/freertos/libfreertos.a(portasm.S.obj) -xPortSysTickHandler esp-idf/freertos/libfreertos.a(port_systick.c.obj) -xPortcheckValidStackMem esp-idf/freertos/libfreertos.a(heap_idf.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) -xQueueAddToSet esp-idf/freertos/libfreertos.a(queue.c.obj) -xQueueCreateCountingSemaphore esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) -xQueueCreateCountingSemaphoreStatic esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) -xQueueCreateMutex esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_lock.c.obj) - esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) - esp-idf/newlib/libnewlib.a(locks.c.obj) -xQueueCreateMutexStatic esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - esp-idf/newlib/libnewlib.a(locks.c.obj) -xQueueCreateSet esp-idf/freertos/libfreertos.a(queue.c.obj) -xQueueCreateWithCaps esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -xQueueGenericCreate esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_task_queue.c.obj) - esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) -xQueueGenericCreateStatic esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - esp-idf/freertos/libfreertos.a(idf_additions.c.obj) -xQueueGenericGetStaticBuffers esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/freertos/libfreertos.a(idf_additions.c.obj) -xQueueGenericReset esp-idf/freertos/libfreertos.a(queue.c.obj) -xQueueGenericSend esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_task_queue.c.obj) - esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) - esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) - esp-idf/newlib/libnewlib.a(locks.c.obj) -xQueueGenericSendFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_task_queue.c.obj) - esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -xQueueGetMutexHolder esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_lock.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) - esp-idf/newlib/libnewlib.a(locks.c.obj) -xQueueGetMutexHolderFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) -xQueueGiveFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/newlib/libnewlib.a(locks.c.obj) -xQueueGiveMutexRecursive esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_lock.c.obj) - esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) - esp-idf/newlib/libnewlib.a(locks.c.obj) -xQueueIsQueueEmptyFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) -xQueueIsQueueFullFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) -xQueuePeek esp-idf/freertos/libfreertos.a(queue.c.obj) -xQueuePeekFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) -xQueueReceive esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_task_queue.c.obj) - esp-idf/esp_event/libesp_event.a(esp_event.c.obj) -xQueueReceiveFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/esp_driver_spi/libesp_driver_spi.a(spi_slave.c.obj) - esp-idf/newlib/libnewlib.a(locks.c.obj) -xQueueRemoveFromSet esp-idf/freertos/libfreertos.a(queue.c.obj) -xQueueSelectFromSet esp-idf/freertos/libfreertos.a(queue.c.obj) -xQueueSelectFromSetFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) -xQueueSemaphoreTake esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_aes_dma_core.c.obj) - esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) - esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) - esp-idf/newlib/libnewlib.a(locks.c.obj) -xQueueTakeMutexRecursive esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_lock.c.obj) - esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) - esp-idf/newlib/libnewlib.a(locks.c.obj) -xRingbufferAddToQueueSetRead esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) -xRingbufferCreate esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) -xRingbufferCreateNoSplit esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) -xRingbufferCreateStatic esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) -xRingbufferCreateWithCaps esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -xRingbufferGetCurFreeSize esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) -xRingbufferGetMaxItemSize esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -xRingbufferGetStaticBuffer esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) -xRingbufferPrintInfo esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) -xRingbufferReceive esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -xRingbufferReceiveFromISR esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -xRingbufferReceiveSplit esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) -xRingbufferReceiveSplitFromISR esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) -xRingbufferReceiveUpTo esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -xRingbufferReceiveUpToFromISR esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) -xRingbufferRemoveFromQueueSetRead esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) -xRingbufferSend esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -xRingbufferSendAcquire esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) -xRingbufferSendComplete esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) -xRingbufferSendFromISR esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -xSemaphoreCreateGenericWithCaps esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) -xStreamBufferBytesAvailable esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) -xStreamBufferGenericCreate esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) -xStreamBufferGenericCreateStatic esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - esp-idf/freertos/libfreertos.a(idf_additions.c.obj) -xStreamBufferGenericCreateWithCaps esp-idf/freertos/libfreertos.a(idf_additions.c.obj) -xStreamBufferGetStaticBuffers esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - esp-idf/freertos/libfreertos.a(idf_additions.c.obj) -xStreamBufferIsEmpty esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) -xStreamBufferIsFull esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) -xStreamBufferNextMessageLengthBytes esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) -xStreamBufferReceive esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) -xStreamBufferReceiveCompletedFromISR esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) -xStreamBufferReceiveFromISR esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) -xStreamBufferReset esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) -xStreamBufferSend esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) -xStreamBufferSendCompletedFromISR esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) -xStreamBufferSendFromISR esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) -xStreamBufferSetTriggerLevel esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) -xStreamBufferSpacesAvailable esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) -xTaskAbortDelay esp-idf/freertos/libfreertos.a(tasks.c.obj) -xTaskCatchUpTicks esp-idf/freertos/libfreertos.a(tasks.c.obj) -xTaskCheckForTimeOut esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a(usb_serial_jtag.c.obj) -xTaskCreatePinnedToCore esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - esp-idf/main/libmain.a(esp_ot_rcp.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) - esp-idf/freertos/libfreertos.a(app_startup.c.obj) -xTaskCreatePinnedToCoreWithCaps esp-idf/freertos/libfreertos.a(idf_additions.c.obj) -xTaskCreateStaticPinnedToCore esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/freertos/libfreertos.a(idf_additions.c.obj) -xTaskDelayUntil esp-idf/freertos/libfreertos.a(tasks.c.obj) -xTaskGenericNotify esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) -xTaskGenericNotifyFromISR esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) -xTaskGenericNotifyStateClear esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) -xTaskGenericNotifyWait esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) -xTaskGetCoreID esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) -xTaskGetCurrentTaskHandle esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/openthread/libopenthread.a(esp_openthread_lock.c.obj) - esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - esp-idf/freertos/libfreertos.a(idf_additions.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - esp-idf/main/libmain.a(esp_ot_rcp.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) -xTaskGetCurrentTaskHandleForCore esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) - esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) -xTaskGetHandle esp-idf/freertos/libfreertos.a(tasks.c.obj) -xTaskGetIdleTaskHandle esp-idf/freertos/libfreertos.a(tasks.c.obj) -xTaskGetIdleTaskHandleForCore esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) -xTaskGetNext esp-idf/freertos/libfreertos.a(tasks.c.obj) -xTaskGetSchedulerState esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/log/liblog.a(log_timestamp.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - esp-idf/newlib/libnewlib.a(locks.c.obj) - esp-idf/log/liblog.a(util.c.obj) -xTaskGetStaticBuffers esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/freertos/libfreertos.a(idf_additions.c.obj) -xTaskGetTickCount esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/log/liblog.a(log_timestamp.c.obj) - esp-idf/esp_event/libesp_event.a(esp_event.c.obj) - esp-idf/esp_driver_uart/libesp_driver_uart.a(uart.c.obj) - esp-idf/newlib/libnewlib.a(time.c.obj) -xTaskGetTickCountFromISR esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/log/liblog.a(log_timestamp.c.obj) -xTaskIncrementTick esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/freertos/libfreertos.a(port_systick.c.obj) -xTaskPriorityDisinherit esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) -xTaskPriorityInherit esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) -xTaskRemoveFromEventList esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) -xTaskResumeAll esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) -xTaskResumeFromISR esp-idf/freertos/libfreertos.a(tasks.c.obj) -xTimerCreateTimerTask esp-idf/freertos/libfreertos.a(tasks.c.obj) -xt_unhandled_exception esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - esp-idf/riscv/libriscv.a(vectors.S.obj) -zb_rx_auto_sel C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) -zb_rx_core_set C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) -zb_rx_v0_0_set C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/lib/esp32h2\libbtbb.a(bt_bb_v2.o) diff --git a/esp32-thread/open-thread-rcp/build/partition-table-flash_args b/esp32-thread/open-thread-rcp/build/partition-table-flash_args deleted file mode 100644 index 25a496e7..00000000 --- a/esp32-thread/open-thread-rcp/build/partition-table-flash_args +++ /dev/null @@ -1,2 +0,0 @@ ---flash_mode dio --flash_freq 48m --flash_size 2MB -0x8000 partition_table/partition-table.bin diff --git a/esp32-thread/open-thread-rcp/build/partition_table/partition-table.bin b/esp32-thread/open-thread-rcp/build/partition_table/partition-table.bin deleted file mode 100644 index b8fa03b4..00000000 Binary files a/esp32-thread/open-thread-rcp/build/partition_table/partition-table.bin and /dev/null differ diff --git a/esp32-thread/open-thread-rcp/build/project_description.json b/esp32-thread/open-thread-rcp/build/project_description.json deleted file mode 100644 index e6f8bdc4..00000000 --- a/esp32-thread/open-thread-rcp/build/project_description.json +++ /dev/null @@ -1,2355 +0,0 @@ -{ - "version": "1.2", - "project_name": "open-thread-rcp", - "project_version": "c9e7aad-dirty", - "project_path": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp", - "idf_path": "C:/Users/Laurent/esp/v5.5.1/esp-idf", - "build_dir": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", - "config_file": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/sdkconfig", - "config_defaults": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/sdkconfig.defaults", - "bootloader_elf": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/bootloader/bootloader.elf", - "app_elf": "open-thread-rcp.elf", - "app_bin": "open-thread-rcp.bin", - "build_type": "flash_app", - "git_revision": "v5.5.1", - "target": "esp32h2", - "rev": "", - "min_rev": "0", - "max_rev": "199", - "phy_data_partition": "", - "monitor_baud" : "115200", - "monitor_toolprefix": "riscv32-esp-elf-", - "c_compiler": "C:/Users/Laurent/.espressif/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc.exe", - "config_environment" : { - "COMPONENT_KCONFIGS" : "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_bitscrambler/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_wifi/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/pthread/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/Kconfig;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/Kconfig", - "COMPONENT_KCONFIGS_PROJBUILD" : "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader/Kconfig.projbuild;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/Kconfig.projbuild;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/Kconfig.projbuild;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esptool_py/Kconfig.projbuild;C:/Users/Laurent/esp/v5.5.1/esp-idf/components/partition_table/Kconfig.projbuild;C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/main/Kconfig.projbuild" - }, - "common_component_reqs": [ "cxx", "newlib", "freertos", "esp_hw_support", "heap", "log", "soc", "hal", "esp_rom", "esp_common", "esp_system", "riscv" ], - "build_components" : [ "app_update", "bootloader", "bootloader_support", "console", "cxx", "driver", "efuse", "esp_app_format", "esp_bootloader_format", "esp_coex", "esp_common", "esp_driver_ana_cmpr", "esp_driver_bitscrambler", "esp_driver_dac", "esp_driver_gpio", "esp_driver_gptimer", "esp_driver_i2c", "esp_driver_i2s", "esp_driver_ledc", "esp_driver_mcpwm", "esp_driver_parlio", "esp_driver_pcnt", "esp_driver_rmt", "esp_driver_sdio", "esp_driver_sdm", "esp_driver_sdmmc", "esp_driver_sdspi", "esp_driver_spi", "esp_driver_tsens", "esp_driver_twai", "esp_driver_uart", "esp_driver_usb_serial_jtag", "esp_event", "esp_hw_support", "esp_mm", "esp_netif", "esp_netif_stack", "esp_partition", "esp_phy", "esp_pm", "esp_ringbuf", "esp_rom", "esp_security", "esp_system", "esp_timer", "esp_vfs_console", "esp_wifi", "esptool_py", "freertos", "hal", "heap", "ieee802154", "log", "lwip", "main", "mbedtls", "newlib", "nvs_flash", "openthread", "partition_table", "pthread", "riscv", "sdmmc", "soc", "spi_flash", "vfs", "wpa_supplicant", "" ], - "build_component_paths" : [ "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/app_update", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/console", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/cxx", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_bitscrambler", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif_stack", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_wifi", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esptool_py", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/log", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip", "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/main", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/partition_table", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/pthread", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/wpa_supplicant", "" ], - "build_component_info" : { - "app_update": { - "alias": "idf::app_update", - "target": "___idf_app_update", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/app_update", - "type": "LIBRARY", - "lib": "__idf_app_update", - "reqs": [ "partition_table", "bootloader_support", "esp_app_format", "esp_bootloader_format", "esp_partition" ], - "priv_reqs": [ "esptool_py", "efuse", "spi_flash" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/app_update/libapp_update.a", - "sources": [ "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/app_update/esp_ota_ops.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/app_update/esp_ota_app_desc.c" ], - "include_dirs": [ "include" ] - }, - "bootloader": { - "alias": "idf::bootloader", - "target": "___idf_bootloader", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader", - "type": "CONFIG_ONLY", - "lib": "__idf_bootloader", - "reqs": [], - "priv_reqs": [ "partition_table", "esptool_py" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "", - "sources": [], - "include_dirs": [] - }, - "bootloader_support": { - "alias": "idf::bootloader_support", - "target": "___idf_bootloader_support", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support", - "type": "LIBRARY", - "lib": "__idf_bootloader_support", - "reqs": [ "soc" ], - "priv_reqs": [ "spi_flash", "mbedtls", "efuse", "heap", "esp_bootloader_format", "esp_app_format" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/bootloader_support/libbootloader_support.a", - "sources": [ "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_common.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_common_loader.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_clock_init.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_mem.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_random.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_efuse.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/src/flash_encrypt.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/src/secure_boot.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_random_esp32h2.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/src/bootloader_flash.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/src/flash_qio_mode.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/bootloader_flash/src/bootloader_flash_config_esp32h2.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_utility.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/src/flash_partitions.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/src/esp_image_format.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/src/bootloader_sha.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support/src/esp32h2/secure_boot_secure_features.c" ], - "include_dirs": [ "include", "bootloader_flash/include" ] - }, - "console": { - "alias": "idf::console", - "target": "___idf_console", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/console", - "type": "LIBRARY", - "lib": "__idf_console", - "reqs": [ "vfs", "esp_vfs_console" ], - "priv_reqs": [ "esp_driver_uart", "esp_driver_usb_serial_jtag" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/console/libconsole.a", - "sources": [ "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/commands.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/esp_console_common.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/esp_console_repl_internal.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/split_argv.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/linenoise/linenoise.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/esp_console_repl_chip.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/argtable3/arg_cmd.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/argtable3/arg_date.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/argtable3/arg_dbl.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/argtable3/arg_dstr.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/argtable3/arg_end.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/argtable3/arg_file.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/argtable3/arg_hashtable.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/argtable3/arg_int.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/argtable3/arg_lit.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/argtable3/arg_rem.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/argtable3/arg_rex.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/argtable3/arg_str.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/argtable3/arg_utils.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/console/argtable3/argtable3.c" ], - "include_dirs": [ "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/console" ] - }, - "cxx": { - "alias": "idf::cxx", - "target": "___idf_cxx", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/cxx", - "type": "LIBRARY", - "lib": "__idf_cxx", - "reqs": [], - "priv_reqs": [ "esp_system", "pthread" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/cxx/libcxx.a", - "sources": [ "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/cxx/cxx_exception_stubs.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/cxx/cxx_guards.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/cxx/cxx_init.cpp" ], - "include_dirs": [] - }, - "driver": { - "alias": "idf::driver", - "target": "___idf_driver", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver", - "type": "LIBRARY", - "lib": "__idf_driver", - "reqs": [ "esp_pm", "esp_ringbuf", "freertos", "soc", "hal", "esp_hw_support", "esp_driver_gpio", "esp_driver_pcnt", "esp_driver_gptimer", "esp_driver_spi", "esp_driver_mcpwm", "esp_driver_ana_cmpr", "esp_driver_i2s", "esp_driver_sdmmc", "esp_driver_sdspi", "esp_driver_sdio", "esp_driver_dac", "esp_driver_rmt", "esp_driver_tsens", "esp_driver_sdm", "esp_driver_i2c", "esp_driver_uart", "esp_driver_ledc", "esp_driver_parlio", "esp_driver_usb_serial_jtag", "esp_driver_twai" ], - "priv_reqs": [ "efuse", "esp_timer", "esp_mm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/driver/libdriver.a", - "sources": [ "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated/adc_legacy.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated/adc_dma_legacy.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated/timer_legacy.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/i2c/i2c.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated/i2s_legacy.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated/mcpwm_legacy.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated/pcnt_legacy.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated/rmt_legacy.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated/sigma_delta_legacy.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/deprecated/rtc_temperature_legacy.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver/twai/twai.c" ], - "include_dirs": [ "deprecated", "i2c/include", "touch_sensor/include", "twai/include" ] - }, - "efuse": { - "alias": "idf::efuse", - "target": "___idf_efuse", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse", - "type": "LIBRARY", - "lib": "__idf_efuse", - "reqs": [], - "priv_reqs": [ "bootloader_support", "soc", "spi_flash", "esp_system", "esp_partition", "esp_app_format" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/efuse/libefuse.a", - "sources": [ "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/esp_efuse_table.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/esp_efuse_table_v0.0_v1.1.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/esp_efuse_fields.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/esp_efuse_rtc_calib.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/esp32h2/esp_efuse_utility.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/src/esp_efuse_api.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/src/esp_efuse_fields.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/src/esp_efuse_utility.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse/src/esp_efuse_startup.c" ], - "include_dirs": [ "include", "esp32h2/include" ] - }, - "esp_app_format": { - "alias": "idf::esp_app_format", - "target": "___idf_esp_app_format", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format", - "type": "LIBRARY", - "lib": "__idf_esp_app_format", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_app_format/libesp_app_format.a", - "sources": [ "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format/esp_app_desc.c" ], - "include_dirs": [ "include" ] - }, - "esp_bootloader_format": { - "alias": "idf::esp_bootloader_format", - "target": "___idf_esp_bootloader_format", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format", - "type": "LIBRARY", - "lib": "__idf_esp_bootloader_format", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_bootloader_format/libesp_bootloader_format.a", - "sources": [ "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format/esp_bootloader_desc.c" ], - "include_dirs": [ "include" ] - }, - "esp_coex": { - "alias": "idf::esp_coex", - "target": "___idf_esp_coex", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex", - "type": "CONFIG_ONLY", - "lib": "__idf_esp_coex", - "reqs": [], - "priv_reqs": [ "esp_timer", "esp_driver_gpio" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "", - "sources": [], - "include_dirs": [ "include" ] - }, - "esp_common": { - "alias": "idf::esp_common", - "target": "___idf_esp_common", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common", - "type": "LIBRARY", - "lib": "__idf_esp_common", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_common/libesp_common.a", - "sources": [ "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common/src/esp_err_to_name.c" ], - "include_dirs": [ "include" ] - }, - "esp_driver_ana_cmpr": { - "alias": "idf::esp_driver_ana_cmpr", - "target": "___idf_esp_driver_ana_cmpr", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr", - "type": "LIBRARY", - "lib": "__idf_esp_driver_ana_cmpr", - "reqs": [], - "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_ana_cmpr/libesp_driver_ana_cmpr.a", - "sources": [ "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/ana_cmpr.c" ], - "include_dirs": [ "include" ] - }, - "esp_driver_bitscrambler": { - "alias": "idf::esp_driver_bitscrambler", - "target": "___idf_esp_driver_bitscrambler", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_bitscrambler", - "type": "CONFIG_ONLY", - "lib": "__idf_esp_driver_bitscrambler", - "reqs": [], - "priv_reqs": [ "esp_mm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "", - "sources": [], - "include_dirs": [ "include" ] - }, - "esp_driver_dac": { - "alias": "idf::esp_driver_dac", - "target": "___idf_esp_driver_dac", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac", - "type": "CONFIG_ONLY", - "lib": "__idf_esp_driver_dac", - "reqs": [], - "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "", - "sources": [], - "include_dirs": [ "./include" ] - }, - "esp_driver_gpio": { - "alias": "idf::esp_driver_gpio", - "target": "___idf_esp_driver_gpio", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio", - "type": "LIBRARY", - "lib": "__idf_esp_driver_gpio", - "reqs": [], - "priv_reqs": [ "esp_pm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_gpio/libesp_driver_gpio.a", - "sources": [ "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/src/gpio.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/src/gpio_glitch_filter_ops.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/src/rtc_io.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/src/dedic_gpio.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/src/gpio_pin_glitch_filter.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/src/gpio_flex_glitch_filter.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio/src/gpio_etm.c" ], - "include_dirs": [ "include" ] - }, - "esp_driver_gptimer": { - "alias": "idf::esp_driver_gptimer", - "target": "___idf_esp_driver_gptimer", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer", - "type": "LIBRARY", - "lib": "__idf_esp_driver_gptimer", - "reqs": [ "esp_pm" ], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_gptimer/libesp_driver_gptimer.a", - "sources": [ "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/src/gptimer.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/src/gptimer_common.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer/src/gptimer_etm.c" ], - "include_dirs": [ "include" ] - }, - "esp_driver_i2c": { - "alias": "idf::esp_driver_i2c", - "target": "___idf_esp_driver_i2c", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c", - "type": "LIBRARY", - "lib": "__idf_esp_driver_i2c", - "reqs": [], - "priv_reqs": [ "esp_driver_gpio", "esp_pm", "esp_ringbuf" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_i2c/libesp_driver_i2c.a", - "sources": [ "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/i2c_master.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/i2c_common.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c/i2c_slave.c" ], - "include_dirs": [ "include" ] - }, - "esp_driver_i2s": { - "alias": "idf::esp_driver_i2s", - "target": "___idf_esp_driver_i2s", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s", - "type": "LIBRARY", - "lib": "__idf_esp_driver_i2s", - "reqs": [], - "priv_reqs": [ "esp_driver_gpio", "esp_pm", "esp_mm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_i2s/libesp_driver_i2s.a", - "sources": [ "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/i2s_common.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/i2s_std.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/i2s_pdm.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/i2s_tdm.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/i2s_etm.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s/i2s_platform.c" ], - "include_dirs": [ "include" ] - }, - "esp_driver_ledc": { - "alias": "idf::esp_driver_ledc", - "target": "___idf_esp_driver_ledc", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc", - "type": "LIBRARY", - "lib": "__idf_esp_driver_ledc", - "reqs": [ "esp_driver_gpio" ], - "priv_reqs": [ "esp_pm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_ledc/libesp_driver_ledc.a", - "sources": [ "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc/src/ledc.c" ], - "include_dirs": [ "include" ] - }, - "esp_driver_mcpwm": { - "alias": "idf::esp_driver_mcpwm", - "target": "___idf_esp_driver_mcpwm", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm", - "type": "LIBRARY", - "lib": "__idf_esp_driver_mcpwm", - "reqs": [], - "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_mcpwm/libesp_driver_mcpwm.a", - "sources": [ "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/src/mcpwm_cap.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/src/mcpwm_cmpr.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/src/mcpwm_com.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/src/mcpwm_fault.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/src/mcpwm_gen.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/src/mcpwm_oper.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/src/mcpwm_sync.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/src/mcpwm_timer.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/src/mcpwm_etm.c" ], - "include_dirs": [ "include" ] - }, - "esp_driver_parlio": { - "alias": "idf::esp_driver_parlio", - "target": "___idf_esp_driver_parlio", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio", - "type": "LIBRARY", - "lib": "__idf_esp_driver_parlio", - "reqs": [], - "priv_reqs": [ "esp_pm", "esp_driver_gpio", "esp_mm", "esp_driver_bitscrambler" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_parlio/libesp_driver_parlio.a", - "sources": [ "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/src/parlio_common.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/src/parlio_tx.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio/src/parlio_rx.c" ], - "include_dirs": [ "include" ] - }, - "esp_driver_pcnt": { - "alias": "idf::esp_driver_pcnt", - "target": "___idf_esp_driver_pcnt", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt", - "type": "LIBRARY", - "lib": "__idf_esp_driver_pcnt", - "reqs": [], - "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_pcnt/libesp_driver_pcnt.a", - "sources": [ "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/src/pulse_cnt.c" ], - "include_dirs": [ "include" ] - }, - "esp_driver_rmt": { - "alias": "idf::esp_driver_rmt", - "target": "___idf_esp_driver_rmt", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt", - "type": "LIBRARY", - "lib": "__idf_esp_driver_rmt", - "reqs": [], - "priv_reqs": [ "esp_pm", "esp_driver_gpio", "esp_driver_bitscrambler", "esp_mm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_rmt/libesp_driver_rmt.a", - "sources": [ "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/src/rmt_common.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/src/rmt_encoder.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/src/rmt_encoder_bytes.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/src/rmt_encoder_copy.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/src/rmt_encoder_simple.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/src/rmt_rx.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt/src/rmt_tx.c" ], - "include_dirs": [ "include" ] - }, - "esp_driver_sdio": { - "alias": "idf::esp_driver_sdio", - "target": "___idf_esp_driver_sdio", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio", - "type": "CONFIG_ONLY", - "lib": "__idf_esp_driver_sdio", - "reqs": [], - "priv_reqs": [ "esp_driver_gpio", "esp_ringbuf" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "", - "sources": [], - "include_dirs": [ "include" ] - }, - "esp_driver_sdm": { - "alias": "idf::esp_driver_sdm", - "target": "___idf_esp_driver_sdm", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm", - "type": "LIBRARY", - "lib": "__idf_esp_driver_sdm", - "reqs": [], - "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_sdm/libesp_driver_sdm.a", - "sources": [ "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm/src/sdm.c" ], - "include_dirs": [ "include" ] - }, - "esp_driver_sdmmc": { - "alias": "idf::esp_driver_sdmmc", - "target": "___idf_esp_driver_sdmmc", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc", - "type": "CONFIG_ONLY", - "lib": "__idf_esp_driver_sdmmc", - "reqs": [ "sdmmc", "esp_driver_gpio" ], - "priv_reqs": [ "esp_timer", "esp_pm", "esp_mm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "", - "sources": [], - "include_dirs": [ "include" ] - }, - "esp_driver_sdspi": { - "alias": "idf::esp_driver_sdspi", - "target": "___idf_esp_driver_sdspi", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi", - "type": "LIBRARY", - "lib": "__idf_esp_driver_sdspi", - "reqs": [ "sdmmc", "esp_driver_spi", "esp_driver_gpio" ], - "priv_reqs": [ "esp_timer", "esp_mm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_sdspi/libesp_driver_sdspi.a", - "sources": [ "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/src/sdspi_crc.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/src/sdspi_host.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/src/sdspi_transaction.c" ], - "include_dirs": [ "include" ] - }, - "esp_driver_spi": { - "alias": "idf::esp_driver_spi", - "target": "___idf_esp_driver_spi", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi", - "type": "LIBRARY", - "lib": "__idf_esp_driver_spi", - "reqs": [ "esp_pm" ], - "priv_reqs": [ "esp_timer", "esp_mm", "esp_driver_gpio" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_spi/libesp_driver_spi.a", - "sources": [ "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/src/gpspi/spi_common.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/src/gpspi/spi_master.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/src/gpspi/spi_slave.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi/src/gpspi/spi_slave_hd.c" ], - "include_dirs": [ "include" ] - }, - "esp_driver_tsens": { - "alias": "idf::esp_driver_tsens", - "target": "___idf_esp_driver_tsens", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens", - "type": "LIBRARY", - "lib": "__idf_esp_driver_tsens", - "reqs": [], - "priv_reqs": [ "efuse" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_tsens/libesp_driver_tsens.a", - "sources": [ "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/src/temperature_sensor.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens/src/temperature_sensor_etm.c" ], - "include_dirs": [ "include" ] - }, - "esp_driver_twai": { - "alias": "idf::esp_driver_twai", - "target": "___idf_esp_driver_twai", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai", - "type": "LIBRARY", - "lib": "__idf_esp_driver_twai", - "reqs": [], - "priv_reqs": [ "esp_driver_gpio", "esp_pm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_twai/libesp_driver_twai.a", - "sources": [ "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/esp_twai.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai/esp_twai_onchip.c" ], - "include_dirs": [ "include" ] - }, - "esp_driver_uart": { - "alias": "idf::esp_driver_uart", - "target": "___idf_esp_driver_uart", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart", - "type": "LIBRARY", - "lib": "__idf_esp_driver_uart", - "reqs": [], - "priv_reqs": [ "esp_pm", "esp_driver_gpio", "esp_ringbuf", "esp_mm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_uart/libesp_driver_uart.a", - "sources": [ "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/src/uart.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/src/uart_wakeup.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/src/uhci.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart/src/uart_vfs.c" ], - "include_dirs": [ "include" ] - }, - "esp_driver_usb_serial_jtag": { - "alias": "idf::esp_driver_usb_serial_jtag", - "target": "___idf_esp_driver_usb_serial_jtag", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag", - "type": "LIBRARY", - "lib": "__idf_esp_driver_usb_serial_jtag", - "reqs": [], - "priv_reqs": [ "esp_driver_gpio", "esp_ringbuf", "esp_pm", "esp_timer" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_driver_usb_serial_jtag/libesp_driver_usb_serial_jtag.a", - "sources": [ "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/src/usb_serial_jtag.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/src/usb_serial_jtag_connection_monitor.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/src/usb_serial_jtag_vfs.c" ], - "include_dirs": [ "include" ] - }, - "esp_event": { - "alias": "idf::esp_event", - "target": "___idf_esp_event", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event", - "type": "LIBRARY", - "lib": "__idf_esp_event", - "reqs": [ "log", "esp_common", "freertos" ], - "priv_reqs": [ "esp_timer" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_event/libesp_event.a", - "sources": [ "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/default_event_loop.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/esp_event.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event/esp_event_private.c" ], - "include_dirs": [ "include" ] - }, - "esp_hw_support": { - "alias": "idf::esp_hw_support", - "target": "___idf_esp_hw_support", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support", - "type": "LIBRARY", - "lib": "__idf_esp_hw_support", - "reqs": [ "soc" ], - "priv_reqs": [ "efuse", "spi_flash", "bootloader_support", "esp_security", "esp_driver_gpio", "esp_timer", "esp_pm", "esp_mm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_hw_support/libesp_hw_support.a", - "sources": [ "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/cpu.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/esp_cpu_intr.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/esp_memory_utils.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/cpu_region_protect.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/esp_clk.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/clk_ctrl_os.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/hw_random.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/intr_alloc.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mac_addr.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/periph_ctrl.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/revision.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/rtc_module.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/regi2c_ctrl.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/esp_gpio_reserve.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/sar_periph_ctrl_common.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/io_mux.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/esp_clk_tree.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/esp_dma_utils.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/gdma_link.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/spi_bus_lock.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/clk_utils.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp_clk_tree_common.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/spi_share_hw_ctrl.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/adc_share_hw_ctrl.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/sleep_retention.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/sleep_modem.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/sleep_modes.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/sleep_console.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/sleep_usb.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/sleep_gpio.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/sleep_event.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/sleep_system_peripheral.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/gdma.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/deprecated/gdma_legacy.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/gdma_sleep_retention.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/gdma_etm.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/esp_async_memcpy.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/dma/async_memcpy_gdma.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/systimer.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/esp_etm.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/pau_regdma.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/regdma_link.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/modem_clock.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/mspi_timing_tuning/mspi_timing_tuning.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/sleep_wake_stub.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/esp_clock_output.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/brownout.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/power_supply/vbat.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/rtc_clk_init.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/rtc_clk.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/pmu_param.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/pmu_init.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/pmu_sleep.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/rtc_time.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/chip_info.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/port/esp32h2/sar_periph_ctrl.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/lowpower/port/esp32h2/sleep_cpu.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/lowpower/port/esp32h2/sleep_cpu_asm.S", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support/lowpower/port/esp32h2/sleep_clock.c" ], - "include_dirs": [ "include", "include/soc", "include/soc/esp32h2", "dma/include", "ldo/include", "debug_probe/include", "mspi_timing_tuning/include", "mspi_timing_tuning/tuning_scheme_impl/include", "power_supply/include" ] - }, - "esp_mm": { - "alias": "idf::esp_mm", - "target": "___idf_esp_mm", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm", - "type": "LIBRARY", - "lib": "__idf_esp_mm", - "reqs": [], - "priv_reqs": [ "heap", "spi_flash" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_mm/libesp_mm.a", - "sources": [ "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/esp_mmu_map.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/port/esp32h2/ext_mem_layout.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/esp_cache_msync.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/esp_cache_utils.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm/heap_align_hw.c" ], - "include_dirs": [ "include" ] - }, - "esp_netif": { - "alias": "idf::esp_netif", - "target": "___idf_esp_netif", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif", - "type": "LIBRARY", - "lib": "__idf_esp_netif", - "reqs": [ "esp_event" ], - "priv_reqs": [ "esp_netif_stack" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_netif/libesp_netif.a", - "sources": [ "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/esp_netif_handlers.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/esp_netif_objects.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/esp_netif_defaults.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/lwip/esp_netif_lwip.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/lwip/esp_netif_sntp.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/lwip/esp_netif_lwip_defaults.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/lwip/netif/wlanif.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/lwip/netif/ethernetif.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif/lwip/netif/esp_pbuf_ref.c" ], - "include_dirs": [ "include" ] - }, - "esp_netif_stack": { - "alias": "idf::esp_netif_stack", - "target": "___idf_esp_netif_stack", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif_stack", - "type": "CONFIG_ONLY", - "lib": "__idf_esp_netif_stack", - "reqs": [ "lwip" ], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "", - "sources": [], - "include_dirs": [] - }, - "esp_partition": { - "alias": "idf::esp_partition", - "target": "___idf_esp_partition", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition", - "type": "LIBRARY", - "lib": "__idf_esp_partition", - "reqs": [], - "priv_reqs": [ "esp_system", "spi_flash", "partition_table", "bootloader_support", "app_update" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_partition/libesp_partition.a", - "sources": [ "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/partition.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition/partition_target.c" ], - "include_dirs": [ "include" ] - }, - "esp_phy": { - "alias": "idf::esp_phy", - "target": "___idf_esp_phy", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy", - "type": "LIBRARY", - "lib": "__idf_esp_phy", - "reqs": [], - "priv_reqs": [ "nvs_flash", "esp_driver_gpio", "efuse", "esp_timer", "esp_wifi" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_phy/libesp_phy.a", - "sources": [ "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/src/phy_override.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/src/lib_printf.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/src/phy_common.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/src/phy_init_esp32hxx.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy/src/btbb_init.c" ], - "include_dirs": [ "include", "esp32h2/include" ] - }, - "esp_pm": { - "alias": "idf::esp_pm", - "target": "___idf_esp_pm", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm", - "type": "LIBRARY", - "lib": "__idf_esp_pm", - "reqs": [], - "priv_reqs": [ "esp_system", "esp_driver_gpio", "esp_timer" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_pm/libesp_pm.a", - "sources": [ "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/pm_locks.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/pm_trace.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm/pm_impl.c" ], - "include_dirs": [ "include" ] - }, - "esp_ringbuf": { - "alias": "idf::esp_ringbuf", - "target": "___idf_esp_ringbuf", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf", - "type": "LIBRARY", - "lib": "__idf_esp_ringbuf", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_ringbuf/libesp_ringbuf.a", - "sources": [ "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf/ringbuf.c" ], - "include_dirs": [ "include" ] - }, - "esp_rom": { - "alias": "idf::esp_rom", - "target": "___idf_esp_rom", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom", - "type": "LIBRARY", - "lib": "__idf_esp_rom", - "reqs": [], - "priv_reqs": [ "soc", "hal" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_rom/libesp_rom.a", - "sources": [ "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_sys.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_print.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_crc.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_uart.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_spiflash.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_efuse.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_gpio.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_regi2c_esp32h2.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_tlsf.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_multi_heap.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_systimer.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_wdt.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_usb_serial.c" ], - "include_dirs": [ "include", "esp32h2/include", "esp32h2/include/esp32h2", "esp32h2" ] - }, - "esp_security": { - "alias": "idf::esp_security", - "target": "___idf_esp_security", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security", - "type": "LIBRARY", - "lib": "__idf_esp_security", - "reqs": [], - "priv_reqs": [ "efuse", "esp_hw_support", "esp_system", "esp_timer" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_security/libesp_security.a", - "sources": [ "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/src/init.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/src/esp_hmac.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/src/esp_ds.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/src/esp_dpa_protection.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/src/esp_crypto_lock.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security/src/esp_crypto_periph_clk.c" ], - "include_dirs": [ "include" ] - }, - "esp_system": { - "alias": "idf::esp_system", - "target": "___idf_esp_system", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system", - "type": "LIBRARY", - "lib": "__idf_esp_system", - "reqs": [], - "priv_reqs": [ "spi_flash", "esp_timer", "esp_mm", "bootloader_support", "esp_pm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_system/libesp_system.a", - "sources": [ "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/esp_err.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/crosscore_int.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/esp_ipc.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/esp_system_console.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/freertos_hooks.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/int_wdt.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/panic.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/esp_system.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/startup.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/startup_funcs.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/system_time.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/stack_check.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/ubsan.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/xt_wdt.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/task_wdt/task_wdt.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/task_wdt/task_wdt_impl_timergroup.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/systick_etm.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/hw_stack_guard.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/cpu_start.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/panic_handler.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/esp_system_chip.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/image_process.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/arch/riscv/expression_with_stack.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/arch/riscv/panic_arch.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/arch/riscv/debug_helpers.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/arch/riscv/debug_stubs.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc/esp32h2/clk.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc/esp32h2/reset_reason.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc/esp32h2/system_internal.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system/port/soc/esp32h2/cache_err_int.c" ], - "include_dirs": [ "include" ] - }, - "esp_timer": { - "alias": "idf::esp_timer", - "target": "___idf_esp_timer", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer", - "type": "LIBRARY", - "lib": "__idf_esp_timer", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_timer/libesp_timer.a", - "sources": [ "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/src/esp_timer.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/src/esp_timer_init.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/src/ets_timer_legacy.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/src/system_time.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/src/esp_timer_impl_common.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/src/esp_timer_impl_systimer.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer/src/esp_timer_etm.c" ], - "include_dirs": [ "include" ] - }, - "esp_vfs_console": { - "alias": "idf::esp_vfs_console", - "target": "___idf_esp_vfs_console", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console", - "type": "LIBRARY", - "lib": "__idf_esp_vfs_console", - "reqs": [], - "priv_reqs": [ "vfs", "esp_driver_uart", "esp_driver_usb_serial_jtag" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_vfs_console/libesp_vfs_console.a", - "sources": [ "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console/vfs_console.c" ], - "include_dirs": [ "include" ] - }, - "esp_wifi": { - "alias": "idf::esp_wifi", - "target": "___idf_esp_wifi", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_wifi", - "type": "LIBRARY", - "lib": "__idf_esp_wifi", - "reqs": [ "esp_event", "esp_phy", "esp_netif" ], - "priv_reqs": [ "esptool_py", "esp_pm", "esp_timer", "nvs_flash", "wpa_supplicant", "hal", "lwip", "esp_coex" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/esp_wifi/libesp_wifi.a", - "sources": [ "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_wifi/src/wifi_default.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_wifi/src/wifi_netif.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_wifi/src/wifi_default_ap.c" ], - "include_dirs": [ "include", "wifi_apps/nan_app/include" ] - }, - "esptool_py": { - "alias": "idf::esptool_py", - "target": "___idf_esptool_py", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esptool_py", - "type": "CONFIG_ONLY", - "lib": "__idf_esptool_py", - "reqs": [ "bootloader" ], - "priv_reqs": [ "partition_table" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "", - "sources": [], - "include_dirs": [] - }, - "freertos": { - "alias": "idf::freertos", - "target": "___idf_freertos", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos", - "type": "LIBRARY", - "lib": "__idf_freertos", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/freertos/libfreertos.a", - "sources": [ "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/heap_idf.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/app_startup.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/port_common.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/port_systick.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/list.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/queue.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/tasks.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/timers.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/event_groups.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/stream_buffer.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/port.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/portable/riscv/portasm.S", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/freertos_compatibility.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/idf_additions_event_groups.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos/esp_additions/idf_additions.c" ], - "include_dirs": [ "config/include", "config/include/freertos", "config/riscv/include", "FreeRTOS-Kernel/include", "FreeRTOS-Kernel/portable/riscv/include", "FreeRTOS-Kernel/portable/riscv/include/freertos", "esp_additions/include" ] - }, - "hal": { - "alias": "idf::hal", - "target": "___idf_hal", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal", - "type": "LIBRARY", - "lib": "__idf_hal", - "reqs": [ "soc", "esp_rom" ], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/hal/libhal.a", - "sources": [ "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/hal_utils.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/efuse_hal.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/efuse_hal.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/lp_timer_hal.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/mmu_hal.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/cache_hal.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/color_hal.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/spi_flash_hal.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/spi_flash_hal_iram.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/spi_flash_encrypt_hal_iram.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/clk_tree_hal.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/uart_hal.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/uart_hal_iram.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/gpio_hal.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/rtc_io_hal.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/timer_hal.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/ledc_hal.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/ledc_hal_iram.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/i2c_hal.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/i2c_hal_iram.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/rmt_hal.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/pcnt_hal.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/mcpwm_hal.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/uhci_hal.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/twai_hal_sja1000.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/gdma_hal_top.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/gdma_hal_ahb_v1.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/i2s_hal.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/sdm_hal.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/etm_hal.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/parlio_hal.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/adc_hal_common.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/adc_oneshot_hal.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/adc_hal.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/ecc_hal.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/ecdsa_hal.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/mpi_hal.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/sha_hal.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/aes_hal.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/modem_clock_hal.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/pau_hal.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/brownout_hal.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/vbat_hal.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/spi_hal.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/spi_hal_iram.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/spi_slave_hal.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/spi_slave_hal_iram.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/spi_slave_hd_hal.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/spi_flash_hal_gpspi.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/esp32h2/pmu_hal.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/apm_hal.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/hmac_hal.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/ds_hal.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal/usb_serial_jtag_hal.c" ], - "include_dirs": [ "platform_port/include", "esp32h2/include", "include" ] - }, - "heap": { - "alias": "idf::heap", - "target": "___idf_heap", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap", - "type": "LIBRARY", - "lib": "__idf_heap", - "reqs": [], - "priv_reqs": [ "soc" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/heap/libheap.a", - "sources": [ "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/heap_caps_base.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/heap_caps.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/heap_caps_init.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/multi_heap.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/port/memory_layout_utils.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap/port/esp32h2/memory_layout.c" ], - "include_dirs": [ "include", "tlsf" ] - }, - "ieee802154": { - "alias": "idf::ieee802154", - "target": "___idf_ieee802154", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154", - "type": "LIBRARY", - "lib": "__idf_ieee802154", - "reqs": [ "esp_coex" ], - "priv_reqs": [ "esp_phy", "esp_timer", "soc", "hal", "esp_pm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/ieee802154/libieee802154.a", - "sources": [ "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/esp_ieee802154.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/driver/esp_ieee802154_ack.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/driver/esp_ieee802154_dev.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/driver/esp_ieee802154_event.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/driver/esp_ieee802154_frame.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/driver/esp_ieee802154_pib.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/driver/esp_ieee802154_util.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/driver/esp_ieee802154_sec.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154/driver/esp_ieee802154_timer.c" ], - "include_dirs": [ "include" ] - }, - "log": { - "alias": "idf::log", - "target": "___idf_log", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/log", - "type": "LIBRARY", - "lib": "__idf_log", - "reqs": [], - "priv_reqs": [ "hal", "soc", "esp_hw_support" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/log/liblog.a", - "sources": [ "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/src/os/log_timestamp.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/src/log_timestamp_common.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/src/os/log_lock.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/src/buffer/log_buffers.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/src/os/util.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/src/util.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/src/log_format_text.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/src/log_print.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/src/log.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/src/os/log_write.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/src/log_level/log_level.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/src/log_level/tag_log_level/tag_log_level.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/src/log_level/tag_log_level/linked_list/log_linked_list.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/log/src/log_level/tag_log_level/cache/log_binary_heap.c" ], - "include_dirs": [ "include" ] - }, - "lwip": { - "alias": "idf::lwip", - "target": "___idf_lwip", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip", - "type": "LIBRARY", - "lib": "__idf_lwip", - "reqs": [], - "priv_reqs": [ "vfs" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/lwip/liblwip.a", - "sources": [ "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/apps/sntp/sntp.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/api/api_lib.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/api/api_msg.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/api/err.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/api/if_api.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/api/netbuf.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/api/netdb.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/api/netifapi.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/api/sockets.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/api/tcpip.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/apps/sntp/sntp.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/apps/netbiosns/netbiosns.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/def.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/dns.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/inet_chksum.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/init.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/ip.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/mem.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/memp.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/netif.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/pbuf.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/raw.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/stats.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/sys.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/tcp.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/tcp_in.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/tcp_out.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/timeouts.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/udp.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/ipv4/autoip.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/ipv4/dhcp.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/ipv4/etharp.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/ipv4/icmp.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/ipv4/igmp.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/ipv4/ip4.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/ipv4/ip4_napt.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/ipv4/ip4_addr.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/ipv4/ip4_frag.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/ipv6/dhcp6.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/ipv6/ethip6.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/ipv6/icmp6.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/ipv6/inet6.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/ipv6/ip6.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/ipv6/ip6_addr.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/ipv6/ip6_frag.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/ipv6/mld6.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/core/ipv6/nd6.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ethernet.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/bridgeif.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/bridgeif_fdb.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/slipif.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/auth.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/ccp.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/chap-md5.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/chap-new.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/chap_ms.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/demand.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/eap.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/ecp.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/eui64.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/fsm.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/ipcp.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/ipv6cp.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/lcp.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/magic.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/mppe.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/multilink.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/ppp.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/pppapi.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/pppcrypt.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/pppoe.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/pppol2tp.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/pppos.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/upap.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/utils.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/vj.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/hooks/tcp_isn_default.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/hooks/lwip_default_hooks.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/debug/lwip_debug.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/sockets_ext.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/freertos/sys_arch.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/if_index.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/acd_dhcp_check.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/port/esp32xx/vfs_lwip.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/apps/ping/esp_ping.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/apps/ping/ping.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/apps/ping/ping_sock.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/polarssl/arc4.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/polarssl/des.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/polarssl/md4.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/polarssl/md5.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/lwip/src/netif/ppp/polarssl/sha1.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip/apps/dhcpserver/dhcpserver.c" ], - "include_dirs": [ "include", "include/apps", "include/apps/sntp", "lwip/src/include", "port/include", "port/freertos/include/", "port/esp32xx/include", "port/esp32xx/include/arch", "port/esp32xx/include/sys" ] - }, - "main": { - "alias": "idf::main", - "target": "___idf_main", - "prefix": "idf", - "dir": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/main", - "type": "LIBRARY", - "lib": "__idf_main", - "reqs": [], - "priv_reqs": [ "esp_coex", "esp_event", "nvs_flash", "openthread" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/main/libmain.a", - "sources": [ "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/main/esp_ot_rcp.c" ], - "include_dirs": [ "." ] - }, - "mbedtls": { - "alias": "idf::mbedtls", - "target": "___idf_mbedtls", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls", - "type": "LIBRARY", - "lib": "__idf_mbedtls", - "reqs": [], - "priv_reqs": [ "soc", "esp_hw_support", "esp_pm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/libmbedtls.a", - "sources": [ "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/esp_crt_bundle.c", "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/x509_crt_bundle.S" ], - "include_dirs": [ "port/include", "mbedtls/include", "mbedtls/library", "esp_crt_bundle/include" ] - }, - "newlib": { - "alias": "idf::newlib", - "target": "___idf_newlib", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib", - "type": "LIBRARY", - "lib": "__idf_newlib", - "reqs": [], - "priv_reqs": [ "soc", "spi_flash" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/newlib/libnewlib.a", - "sources": [ "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/src/init.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/src/abort.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/src/assert.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/src/heap.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/src/locks.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/src/poll.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/src/pthread.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/src/random.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/src/getentropy.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/src/termios.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/src/stdatomic.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/src/time.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/src/sysconf.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/src/realpath.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/src/scandir.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/src/syscalls.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/src/reent_syscalls.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/src/port/esp_time_impl.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/src/flockfile.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/src/reent_init.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/src/newlib_init.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib/src/port/esp_time_impl.c" ], - "include_dirs": [ "platform_include" ] - }, - "nvs_flash": { - "alias": "idf::nvs_flash", - "target": "___idf_nvs_flash", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash", - "type": "LIBRARY", - "lib": "__idf_nvs_flash", - "reqs": [ "esp_partition" ], - "priv_reqs": [ "spi_flash", "newlib" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/nvs_flash/libnvs_flash.a", - "sources": [ "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_api.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_cxx_api.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_item_hash_list.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_page.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_pagemanager.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_storage.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_handle_simple.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_handle_locked.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_partition.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_partition_lookup.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_partition_manager.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_types.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_platform.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_bootloader.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_encrypted_partition.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_bootloader_aes.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_bootloader_xts_aes.c" ], - "include_dirs": [ "include" ] - }, - "openthread": { - "alias": "idf::openthread", - "target": "___idf_openthread", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread", - "type": "LIBRARY", - "lib": "__idf_openthread", - "reqs": [ "esp_netif", "lwip", "esp_driver_uart", "driver" ], - "priv_reqs": [ "console", "esp_coex", "esp_event", "esp_partition", "esp_timer", "ieee802154", "mbedtls", "nvs_flash" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/openthread/libopenthread.a", - "sources": [ "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/src/esp_openthread.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/src/esp_openthread_cli.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/src/esp_openthread_lock.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/src/esp_openthread_lwip_netif.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/src/esp_openthread_netif_glue.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/src/esp_openthread_platform.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/src/esp_openthread_task_queue.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/src/port/esp_openthread_alarm.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/src/port/esp_openthread_logging.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/src/port/esp_openthread_memory.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/src/port/esp_openthread_misc.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/src/port/esp_openthread_radio.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/src/port/esp_openthread_settings.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/src/port/esp_openthread_spi_slave.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/src/port/esp_openthread_uart.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/src/port/esp_openthread_udp.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms/utils/debug_uart.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms/utils/link_metrics.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms/utils/mac_frame.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms/utils/otns_utils.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms/utils/settings_ram.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/platforms/utils/uart_rtt.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/backbone_router_ftd_api.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/ble_secure_api.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/border_agent_api.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/border_router_api.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/border_routing_api.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/channel_manager_api.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/channel_monitor_api.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/coap_api.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/coap_secure_api.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/commissioner_api.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/crypto_api.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/dataset_ftd_api.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/dataset_updater_api.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/diags_api.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/dns_server_api.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/error_api.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/history_tracker_api.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/instance_api.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/jam_detection_api.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/joiner_api.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/link_raw_api.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/logging_api.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/mdns_api.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/mesh_diag_api.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/multi_radio_api.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/netdata_publisher_api.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/ping_sender_api.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/radio_stats_api.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/random_noncrypto_api.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/server_api.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/sntp_api.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/srp_client_api.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/srp_client_buffers_api.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/srp_server_api.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/tasklet_api.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/tcp_ext_api.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/thread_api.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/thread_ftd_api.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/trel_api.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/api/verhoeff_checksum_api.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/common/appender.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/common/binary_search.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/common/crc.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/common/data.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/common/error.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/common/frame_builder.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/common/frame_data.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/common/heap_data.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/common/log.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/common/message.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/common/offset_range.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/common/preference.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/common/random.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/common/string.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/common/tasklet.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/common/timer.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/common/tlvs.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/common/trickle_timer.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/common/uptime.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/crypto/aes_ccm.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/crypto/aes_ecb.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/crypto/crypto_platform.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/crypto/hkdf_sha256.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/crypto/hmac_sha256.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/crypto/mbedtls.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/crypto/sha256.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/crypto/storage.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/diags/factory_diags.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/instance/instance.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/mac/link_raw.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/mac/mac_frame.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/mac/mac_header_ie.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/mac/mac_types.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/mac/sub_mac.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/mac/sub_mac_callbacks.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/mac/sub_mac_csl_receiver.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/mac/sub_mac_wed.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/mac/wakeup_tx_scheduler.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/radio/ble_secure.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/radio/radio.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/radio/radio_callbacks.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/radio/radio_platform.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/radio/trel_interface.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/radio/trel_link.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/radio/trel_packet.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/radio/trel_peer.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/radio/trel_peer_discoverer.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/thread/anycast_locator.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/thread/child.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/thread/child_table.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/thread/dua_manager.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/thread/link_metrics_types.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/thread/link_quality.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/thread/mle_ftd.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/thread/mle_tlvs.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/thread/mlr_manager.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/thread/network_data_local.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/thread/network_data_notifier.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/thread/network_data_publisher.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/thread/network_data_tlvs.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/thread/network_diagnostic_tlvs.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/thread/radio_selector.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/thread/router.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/thread/router_table.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/thread/src_match_controller.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/thread/thread_link_info.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/thread/uri_paths.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/thread/version.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/utils/channel_manager.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/utils/channel_monitor.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/utils/flash.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/utils/heap.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/utils/history_tracker.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/utils/jam_detector.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/utils/link_metrics_manager.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/utils/mesh_diag.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/utils/otns.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/utils/parse_cmdline.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/utils/ping_sender.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/utils/power_calibration.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/utils/slaac_address.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/utils/srp_client_buffers.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/core/utils/verhoeff_checksum.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/hdlc/hdlc.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel/example_vendor_hook.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel/logger.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel/radio_spinel.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel/spinel.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel/spinel_buffer.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel/spinel_decoder.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel/spinel_driver.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel/spinel_encoder.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel/spinel_helper.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/lib/spinel/spinel_prop_codec.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp/changed_props_set.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp/example_vendor_hook.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp/multipan_platform.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp/ncp_base.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp/ncp_base_dispatcher.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp/ncp_base_ftd.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp/ncp_base_mtd.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp/ncp_base_radio.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp/ncp_hdlc.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/src/ncp/ncp_spi.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/openthread/examples/apps/ncp/ncp.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/src/ncp/esp_openthread_ncp.cpp", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread/src/ncp/esp_openthread_ncp_hdlc.cpp" ], - "include_dirs": [ "include", "openthread/include" ] - }, - "partition_table": { - "alias": "idf::partition_table", - "target": "___idf_partition_table", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/partition_table", - "type": "CONFIG_ONLY", - "lib": "__idf_partition_table", - "reqs": [], - "priv_reqs": [ "esptool_py" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "", - "sources": [], - "include_dirs": [] - }, - "pthread": { - "alias": "idf::pthread", - "target": "___idf_pthread", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/pthread", - "type": "LIBRARY", - "lib": "__idf_pthread", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/pthread/libpthread.a", - "sources": [ "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/pthread/pthread.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/pthread/pthread_cond_var.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/pthread/pthread_local_storage.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/pthread/pthread_rwlock.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/pthread/pthread_semaphore.c" ], - "include_dirs": [ "include" ] - }, - "riscv": { - "alias": "idf::riscv", - "target": "___idf_riscv", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv", - "type": "LIBRARY", - "lib": "__idf_riscv", - "reqs": [], - "priv_reqs": [ "soc", "hal" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/riscv/libriscv.a", - "sources": [ "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/instruction_decode.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/interrupt.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/rv_utils.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/vectors.S", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/interrupt_plic.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv/vectors_intc.S" ], - "include_dirs": [ "include" ] - }, - "sdmmc": { - "alias": "idf::sdmmc", - "target": "___idf_sdmmc", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc", - "type": "LIBRARY", - "lib": "__idf_sdmmc", - "reqs": [], - "priv_reqs": [ "soc", "esp_timer", "esp_mm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/sdmmc/libsdmmc.a", - "sources": [ "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/sdmmc_cmd.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/sdmmc_common.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/sdmmc_init.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/sdmmc_io.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/sdmmc_mmc.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/sdmmc_sd.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc/sd_pwr_ctrl/sd_pwr_ctrl.c" ], - "include_dirs": [ "include" ] - }, - "soc": { - "alias": "idf::soc", - "target": "___idf_soc", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc", - "type": "LIBRARY", - "lib": "__idf_soc", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/soc/libsoc.a", - "sources": [ "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/lldesc.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/dport_access_common.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/interrupts.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/gpio_periph.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/uart_periph.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/adc_periph.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/ana_cmpr_periph.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/dedic_gpio_periph.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/etm_periph.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/gdma_periph.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/spi_periph.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/ledc_periph.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/pcnt_periph.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/rmt_periph.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/sdm_periph.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/i2s_periph.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/i2c_periph.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/temperature_sensor_periph.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/timer_periph.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/parlio_periph.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/mcpwm_periph.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/mpi_periph.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/twai_periph.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/wdt_periph.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/ieee802154_periph.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/rtc_io_periph.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/system_retention_periph.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc/esp32h2/power_supply_periph.c" ], - "include_dirs": [ "include", "esp32h2", "esp32h2/include", "esp32h2/register" ] - }, - "spi_flash": { - "alias": "idf::spi_flash", - "target": "___idf_spi_flash", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash", - "type": "LIBRARY", - "lib": "__idf_spi_flash", - "reqs": [ "hal" ], - "priv_reqs": [ "bootloader_support", "app_update", "soc", "esp_mm", "esp_driver_gpio" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/spi_flash/libspi_flash.a", - "sources": [ "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/flash_brownout_hook.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/spi_flash_chip_drivers.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/spi_flash_chip_generic.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/spi_flash_chip_issi.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/spi_flash_chip_mxic.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/spi_flash_chip_gd.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/spi_flash_chip_winbond.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/spi_flash_chip_boya.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/spi_flash_chip_mxic_opi.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/spi_flash_chip_th.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/memspi_host_driver.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/cache_utils.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/flash_mmap.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/flash_ops.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/spi_flash_wrap.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/esp_flash_api.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/esp_flash_spi_init.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/spi_flash_os_func_app.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash/spi_flash_os_func_noos.c" ], - "include_dirs": [ "include" ] - }, - "vfs": { - "alias": "idf::vfs", - "target": "___idf_vfs", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs", - "type": "LIBRARY", - "lib": "__idf_vfs", - "reqs": [], - "priv_reqs": [ "esp_timer", "esp_driver_uart", "esp_driver_usb_serial_jtag", "esp_vfs_console" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/vfs/libvfs.a", - "sources": [ "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/vfs.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/vfs_eventfd.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/vfs_semihost.c", "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs/nullfs.c" ], - "include_dirs": [ "include" ] - }, - "wpa_supplicant": { - "alias": "idf::wpa_supplicant", - "target": "___idf_wpa_supplicant", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/wpa_supplicant", - "type": "CONFIG_ONLY", - "lib": "__idf_wpa_supplicant", - "reqs": [], - "priv_reqs": [ "mbedtls", "esp_timer", "esp_wifi" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "file": "", - "sources": [], - "include_dirs": [ "esp_supplicant/include" ] - } - }, - "all_component_info" : { - "app_trace": { - "alias": "idf::app_trace", - "target": "___idf_app_trace", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/app_trace", - "lib": "__idf_app_trace", - "reqs": [ "esp_timer" ], - "priv_reqs": [ "esp_driver_gptimer", "esp_driver_gpio", "esp_driver_uart" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "app_update": { - "alias": "idf::app_update", - "target": "___idf_app_update", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/app_update", - "lib": "__idf_app_update", - "reqs": [ "partition_table", "bootloader_support", "esp_app_format", "esp_bootloader_format", "esp_partition" ], - "priv_reqs": [ "esptool_py", "efuse", "spi_flash" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "bootloader": { - "alias": "idf::bootloader", - "target": "___idf_bootloader", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader", - "lib": "__idf_bootloader", - "reqs": [], - "priv_reqs": [ "partition_table", "esptool_py" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [] - }, - "bootloader_support": { - "alias": "idf::bootloader_support", - "target": "___idf_bootloader_support", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bootloader_support", - "lib": "__idf_bootloader_support", - "reqs": [ "soc" ], - "priv_reqs": [ "spi_flash", "mbedtls", "efuse", "heap", "esp_bootloader_format", "esp_app_format" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include", "bootloader_flash/include" ] - }, - "bt": { - "alias": "idf::bt", - "target": "___idf_bt", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/bt", - "lib": "__idf_bt", - "reqs": [ "esp_timer", "esp_wifi" ], - "priv_reqs": [ "nvs_flash", "soc", "esp_pm", "esp_phy", "esp_coex", "mbedtls", "esp_driver_uart", "vfs", "esp_ringbuf", "esp_driver_spi", "esp_driver_gpio", "esp_gdbstub" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [] - }, - "cmock": { - "alias": "idf::cmock", - "target": "___idf_cmock", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/cmock", - "lib": "__idf_cmock", - "reqs": [ "unity" ], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "CMock/src" ] - }, - "console": { - "alias": "idf::console", - "target": "___idf_console", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/console", - "lib": "__idf_console", - "reqs": [ "vfs", "esp_vfs_console" ], - "priv_reqs": [ "esp_driver_uart", "esp_driver_usb_serial_jtag" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/console" ] - }, - "cxx": { - "alias": "idf::cxx", - "target": "___idf_cxx", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/cxx", - "lib": "__idf_cxx", - "reqs": [], - "priv_reqs": [ "esp_system", "pthread" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [] - }, - "driver": { - "alias": "idf::driver", - "target": "___idf_driver", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/driver", - "lib": "__idf_driver", - "reqs": [ "esp_pm", "esp_ringbuf", "freertos", "soc", "hal", "esp_hw_support", "esp_driver_gpio", "esp_driver_pcnt", "esp_driver_gptimer", "esp_driver_spi", "esp_driver_mcpwm", "esp_driver_ana_cmpr", "esp_driver_i2s", "esp_driver_sdmmc", "esp_driver_sdspi", "esp_driver_sdio", "esp_driver_dac", "esp_driver_rmt", "esp_driver_tsens", "esp_driver_sdm", "esp_driver_i2c", "esp_driver_uart", "esp_driver_ledc", "esp_driver_parlio", "esp_driver_usb_serial_jtag", "esp_driver_twai" ], - "priv_reqs": [ "efuse", "esp_timer", "esp_mm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "deprecated", "i2c/include", "touch_sensor/include", "twai/include" ] - }, - "efuse": { - "alias": "idf::efuse", - "target": "___idf_efuse", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/efuse", - "lib": "__idf_efuse", - "reqs": [], - "priv_reqs": [ "bootloader_support", "soc", "spi_flash", "esp_system", "esp_partition", "esp_app_format" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include", "esp32h2/include" ] - }, - "esp-tls": { - "alias": "idf::esp-tls", - "target": "___idf_esp-tls", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp-tls", - "lib": "__idf_esp-tls", - "reqs": [ "mbedtls" ], - "priv_reqs": [ "http_parser", "esp_timer", "lwip" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build", "esp-tls-crypto" ] - }, - "esp_adc": { - "alias": "idf::esp_adc", - "target": "___idf_esp_adc", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_adc", - "lib": "__idf_esp_adc", - "reqs": [], - "priv_reqs": [ "esp_driver_gpio", "efuse", "esp_pm", "esp_ringbuf", "esp_mm", "driver" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include", "interface", "esp32h2/include", "deprecated/include" ] - }, - "esp_app_format": { - "alias": "idf::esp_app_format", - "target": "___idf_esp_app_format", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_app_format", - "lib": "__idf_esp_app_format", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_bootloader_format": { - "alias": "idf::esp_bootloader_format", - "target": "___idf_esp_bootloader_format", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_bootloader_format", - "lib": "__idf_esp_bootloader_format", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_coex": { - "alias": "idf::esp_coex", - "target": "___idf_esp_coex", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_coex", - "lib": "__idf_esp_coex", - "reqs": [], - "priv_reqs": [ "esp_timer", "esp_driver_gpio" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_common": { - "alias": "idf::esp_common", - "target": "___idf_esp_common", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_common", - "lib": "__idf_esp_common", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_ana_cmpr": { - "alias": "idf::esp_driver_ana_cmpr", - "target": "___idf_esp_driver_ana_cmpr", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr", - "lib": "__idf_esp_driver_ana_cmpr", - "reqs": [], - "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_bitscrambler": { - "alias": "idf::esp_driver_bitscrambler", - "target": "___idf_esp_driver_bitscrambler", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_bitscrambler", - "lib": "__idf_esp_driver_bitscrambler", - "reqs": [], - "priv_reqs": [ "esp_mm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_cam": { - "alias": "idf::esp_driver_cam", - "target": "___idf_esp_driver_cam", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_cam", - "lib": "__idf_esp_driver_cam", - "reqs": [ "esp_driver_isp", "esp_mm" ], - "priv_reqs": [ "esp_driver_gpio" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include", "interface" ] - }, - "esp_driver_dac": { - "alias": "idf::esp_driver_dac", - "target": "___idf_esp_driver_dac", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_dac", - "lib": "__idf_esp_driver_dac", - "reqs": [], - "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "./include" ] - }, - "esp_driver_gpio": { - "alias": "idf::esp_driver_gpio", - "target": "___idf_esp_driver_gpio", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gpio", - "lib": "__idf_esp_driver_gpio", - "reqs": [], - "priv_reqs": [ "esp_pm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_gptimer": { - "alias": "idf::esp_driver_gptimer", - "target": "___idf_esp_driver_gptimer", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_gptimer", - "lib": "__idf_esp_driver_gptimer", - "reqs": [ "esp_pm" ], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_i2c": { - "alias": "idf::esp_driver_i2c", - "target": "___idf_esp_driver_i2c", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2c", - "lib": "__idf_esp_driver_i2c", - "reqs": [], - "priv_reqs": [ "esp_driver_gpio", "esp_pm", "esp_ringbuf" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_i2s": { - "alias": "idf::esp_driver_i2s", - "target": "___idf_esp_driver_i2s", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_i2s", - "lib": "__idf_esp_driver_i2s", - "reqs": [], - "priv_reqs": [ "esp_driver_gpio", "esp_pm", "esp_mm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_isp": { - "alias": "idf::esp_driver_isp", - "target": "___idf_esp_driver_isp", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_isp", - "lib": "__idf_esp_driver_isp", - "reqs": [ "esp_mm" ], - "priv_reqs": [ "esp_driver_gpio" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_jpeg": { - "alias": "idf::esp_driver_jpeg", - "target": "___idf_esp_driver_jpeg", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_jpeg", - "lib": "__idf_esp_driver_jpeg", - "reqs": [], - "priv_reqs": [ "esp_mm", "esp_pm", "esp_psram" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_ledc": { - "alias": "idf::esp_driver_ledc", - "target": "___idf_esp_driver_ledc", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ledc", - "lib": "__idf_esp_driver_ledc", - "reqs": [ "esp_driver_gpio" ], - "priv_reqs": [ "esp_pm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_mcpwm": { - "alias": "idf::esp_driver_mcpwm", - "target": "___idf_esp_driver_mcpwm", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm", - "lib": "__idf_esp_driver_mcpwm", - "reqs": [], - "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_parlio": { - "alias": "idf::esp_driver_parlio", - "target": "___idf_esp_driver_parlio", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_parlio", - "lib": "__idf_esp_driver_parlio", - "reqs": [], - "priv_reqs": [ "esp_pm", "esp_driver_gpio", "esp_mm", "esp_driver_bitscrambler" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_pcnt": { - "alias": "idf::esp_driver_pcnt", - "target": "___idf_esp_driver_pcnt", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_pcnt", - "lib": "__idf_esp_driver_pcnt", - "reqs": [], - "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_ppa": { - "alias": "idf::esp_driver_ppa", - "target": "___idf_esp_driver_ppa", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_ppa", - "lib": "__idf_esp_driver_ppa", - "reqs": [], - "priv_reqs": [ "esp_mm", "esp_pm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_rmt": { - "alias": "idf::esp_driver_rmt", - "target": "___idf_esp_driver_rmt", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_rmt", - "lib": "__idf_esp_driver_rmt", - "reqs": [], - "priv_reqs": [ "esp_pm", "esp_driver_gpio", "esp_driver_bitscrambler", "esp_mm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_sdio": { - "alias": "idf::esp_driver_sdio", - "target": "___idf_esp_driver_sdio", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdio", - "lib": "__idf_esp_driver_sdio", - "reqs": [], - "priv_reqs": [ "esp_driver_gpio", "esp_ringbuf" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_sdm": { - "alias": "idf::esp_driver_sdm", - "target": "___idf_esp_driver_sdm", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdm", - "lib": "__idf_esp_driver_sdm", - "reqs": [], - "priv_reqs": [ "esp_pm", "esp_driver_gpio" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_sdmmc": { - "alias": "idf::esp_driver_sdmmc", - "target": "___idf_esp_driver_sdmmc", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc", - "lib": "__idf_esp_driver_sdmmc", - "reqs": [ "sdmmc", "esp_driver_gpio" ], - "priv_reqs": [ "esp_timer", "esp_pm", "esp_mm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_sdspi": { - "alias": "idf::esp_driver_sdspi", - "target": "___idf_esp_driver_sdspi", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_sdspi", - "lib": "__idf_esp_driver_sdspi", - "reqs": [ "sdmmc", "esp_driver_spi", "esp_driver_gpio" ], - "priv_reqs": [ "esp_timer", "esp_mm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_spi": { - "alias": "idf::esp_driver_spi", - "target": "___idf_esp_driver_spi", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_spi", - "lib": "__idf_esp_driver_spi", - "reqs": [ "esp_pm" ], - "priv_reqs": [ "esp_timer", "esp_mm", "esp_driver_gpio" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_touch_sens": { - "alias": "idf::esp_driver_touch_sens", - "target": "___idf_esp_driver_touch_sens", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_touch_sens", - "lib": "__idf_esp_driver_touch_sens", - "reqs": [], - "priv_reqs": [ "esp_driver_gpio" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [] - }, - "esp_driver_tsens": { - "alias": "idf::esp_driver_tsens", - "target": "___idf_esp_driver_tsens", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_tsens", - "lib": "__idf_esp_driver_tsens", - "reqs": [], - "priv_reqs": [ "efuse" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_twai": { - "alias": "idf::esp_driver_twai", - "target": "___idf_esp_driver_twai", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_twai", - "lib": "__idf_esp_driver_twai", - "reqs": [], - "priv_reqs": [ "esp_driver_gpio", "esp_pm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_uart": { - "alias": "idf::esp_driver_uart", - "target": "___idf_esp_driver_uart", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_uart", - "lib": "__idf_esp_driver_uart", - "reqs": [], - "priv_reqs": [ "esp_pm", "esp_driver_gpio", "esp_ringbuf", "esp_mm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_driver_usb_serial_jtag": { - "alias": "idf::esp_driver_usb_serial_jtag", - "target": "___idf_esp_driver_usb_serial_jtag", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag", - "lib": "__idf_esp_driver_usb_serial_jtag", - "reqs": [], - "priv_reqs": [ "esp_driver_gpio", "esp_ringbuf", "esp_pm", "esp_timer" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_eth": { - "alias": "idf::esp_eth", - "target": "___idf_esp_eth", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_eth", - "lib": "__idf_esp_eth", - "reqs": [ "esp_event" ], - "priv_reqs": [ "log", "esp_timer", "esp_driver_spi", "esp_driver_gpio" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [] - }, - "esp_event": { - "alias": "idf::esp_event", - "target": "___idf_esp_event", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_event", - "lib": "__idf_esp_event", - "reqs": [ "log", "esp_common", "freertos" ], - "priv_reqs": [ "esp_timer" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_gdbstub": { - "alias": "idf::esp_gdbstub", - "target": "___idf_esp_gdbstub", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_gdbstub", - "lib": "__idf_esp_gdbstub", - "reqs": [ "freertos" ], - "priv_reqs": [ "soc", "esp_rom", "esp_system" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_hid": { - "alias": "idf::esp_hid", - "target": "___idf_esp_hid", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hid", - "lib": "__idf_esp_hid", - "reqs": [ "esp_event", "bt" ], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_http_client": { - "alias": "idf::esp_http_client", - "target": "___idf_esp_http_client", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_http_client", - "lib": "__idf_esp_http_client", - "reqs": [ "lwip", "esp_event" ], - "priv_reqs": [ "tcp_transport", "http_parser" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_http_server": { - "alias": "idf::esp_http_server", - "target": "___idf_esp_http_server", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_http_server", - "lib": "__idf_esp_http_server", - "reqs": [ "http_parser", "esp_event" ], - "priv_reqs": [ "mbedtls", "lwip", "esp_timer" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_https_ota": { - "alias": "idf::esp_https_ota", - "target": "___idf_esp_https_ota", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_https_ota", - "lib": "__idf_esp_https_ota", - "reqs": [ "esp_http_client", "bootloader_support", "esp_bootloader_format", "esp_app_format", "esp_event", "esp_partition" ], - "priv_reqs": [ "log", "app_update" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_https_server": { - "alias": "idf::esp_https_server", - "target": "___idf_esp_https_server", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_https_server", - "lib": "__idf_esp_https_server", - "reqs": [ "esp_http_server", "esp-tls", "esp_event" ], - "priv_reqs": [ "lwip" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_hw_support": { - "alias": "idf::esp_hw_support", - "target": "___idf_esp_hw_support", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_hw_support", - "lib": "__idf_esp_hw_support", - "reqs": [ "soc" ], - "priv_reqs": [ "efuse", "spi_flash", "bootloader_support", "esp_security", "esp_driver_gpio", "esp_timer", "esp_pm", "esp_mm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include", "include/soc", "include/soc/esp32h2", "dma/include", "ldo/include", "debug_probe/include", "mspi_timing_tuning/include", "mspi_timing_tuning/tuning_scheme_impl/include", "power_supply/include" ] - }, - "esp_lcd": { - "alias": "idf::esp_lcd", - "target": "___idf_esp_lcd", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_lcd", - "lib": "__idf_esp_lcd", - "reqs": [ "driver", "esp_driver_gpio", "esp_driver_i2c", "esp_driver_spi" ], - "priv_reqs": [ "esp_mm", "esp_psram", "esp_pm", "esp_driver_i2s" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include", "interface" ] - }, - "esp_local_ctrl": { - "alias": "idf::esp_local_ctrl", - "target": "___idf_esp_local_ctrl", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_local_ctrl", - "lib": "__idf_esp_local_ctrl", - "reqs": [ "protocomm", "esp_https_server" ], - "priv_reqs": [ "protobuf-c", "esp_netif" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_mm": { - "alias": "idf::esp_mm", - "target": "___idf_esp_mm", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_mm", - "lib": "__idf_esp_mm", - "reqs": [], - "priv_reqs": [ "heap", "spi_flash" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_netif": { - "alias": "idf::esp_netif", - "target": "___idf_esp_netif", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif", - "lib": "__idf_esp_netif", - "reqs": [ "esp_event" ], - "priv_reqs": [ "esp_netif_stack" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_netif_stack": { - "alias": "idf::esp_netif_stack", - "target": "___idf_esp_netif_stack", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_netif_stack", - "lib": "__idf_esp_netif_stack", - "reqs": [ "lwip" ], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [] - }, - "esp_partition": { - "alias": "idf::esp_partition", - "target": "___idf_esp_partition", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_partition", - "lib": "__idf_esp_partition", - "reqs": [], - "priv_reqs": [ "esp_system", "spi_flash", "partition_table", "bootloader_support", "app_update" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_phy": { - "alias": "idf::esp_phy", - "target": "___idf_esp_phy", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_phy", - "lib": "__idf_esp_phy", - "reqs": [], - "priv_reqs": [ "nvs_flash", "esp_driver_gpio", "efuse", "esp_timer", "esp_wifi" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include", "esp32h2/include" ] - }, - "esp_pm": { - "alias": "idf::esp_pm", - "target": "___idf_esp_pm", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_pm", - "lib": "__idf_esp_pm", - "reqs": [], - "priv_reqs": [ "esp_system", "esp_driver_gpio", "esp_timer" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_psram": { - "alias": "idf::esp_psram", - "target": "___idf_esp_psram", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_psram", - "lib": "__idf_esp_psram", - "reqs": [], - "priv_reqs": [ "heap", "spi_flash", "esp_mm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_ringbuf": { - "alias": "idf::esp_ringbuf", - "target": "___idf_esp_ringbuf", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_ringbuf", - "lib": "__idf_esp_ringbuf", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_rom": { - "alias": "idf::esp_rom", - "target": "___idf_esp_rom", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_rom", - "lib": "__idf_esp_rom", - "reqs": [], - "priv_reqs": [ "soc", "hal" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include", "esp32h2/include", "esp32h2/include/esp32h2", "esp32h2" ] - }, - "esp_security": { - "alias": "idf::esp_security", - "target": "___idf_esp_security", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_security", - "lib": "__idf_esp_security", - "reqs": [], - "priv_reqs": [ "efuse", "esp_hw_support", "esp_system", "esp_timer" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_system": { - "alias": "idf::esp_system", - "target": "___idf_esp_system", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_system", - "lib": "__idf_esp_system", - "reqs": [], - "priv_reqs": [ "spi_flash", "esp_timer", "esp_mm", "bootloader_support", "esp_pm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_tee": { - "alias": "idf::esp_tee", - "target": "___idf_esp_tee", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_tee", - "lib": "__idf_esp_tee", - "reqs": [], - "priv_reqs": [ "efuse", "esp_security", "esp_system", "spi_flash" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_timer": { - "alias": "idf::esp_timer", - "target": "___idf_esp_timer", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_timer", - "lib": "__idf_esp_timer", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_vfs_console": { - "alias": "idf::esp_vfs_console", - "target": "___idf_esp_vfs_console", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_vfs_console", - "lib": "__idf_esp_vfs_console", - "reqs": [], - "priv_reqs": [ "vfs", "esp_driver_uart", "esp_driver_usb_serial_jtag" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esp_wifi": { - "alias": "idf::esp_wifi", - "target": "___idf_esp_wifi", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esp_wifi", - "lib": "__idf_esp_wifi", - "reqs": [ "esp_event", "esp_phy", "esp_netif" ], - "priv_reqs": [ "esptool_py", "esp_pm", "esp_timer", "nvs_flash", "wpa_supplicant", "hal", "lwip", "esp_coex" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include", "wifi_apps/nan_app/include" ] - }, - "espcoredump": { - "alias": "idf::espcoredump", - "target": "___idf_espcoredump", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/espcoredump", - "lib": "__idf_espcoredump", - "reqs": [], - "priv_reqs": [ "esp_partition", "spi_flash", "bootloader_support", "mbedtls", "esp_rom", "soc", "esp_system", "esp_driver_gpio" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "esptool_py": { - "alias": "idf::esptool_py", - "target": "___idf_esptool_py", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/esptool_py", - "lib": "__idf_esptool_py", - "reqs": [ "bootloader" ], - "priv_reqs": [ "partition_table" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [] - }, - "fatfs": { - "alias": "idf::fatfs", - "target": "___idf_fatfs", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/fatfs", - "lib": "__idf_fatfs", - "reqs": [ "wear_levelling", "sdmmc", "esp_driver_sdmmc", "esp_driver_sdspi" ], - "priv_reqs": [ "vfs", "esp_driver_gpio" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "diskio", "src", "vfs" ] - }, - "freertos": { - "alias": "idf::freertos", - "target": "___idf_freertos", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/freertos", - "lib": "__idf_freertos", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "config/include", "config/include/freertos", "config/riscv/include", "FreeRTOS-Kernel/include", "FreeRTOS-Kernel/portable/riscv/include", "FreeRTOS-Kernel/portable/riscv/include/freertos", "esp_additions/include" ] - }, - "hal": { - "alias": "idf::hal", - "target": "___idf_hal", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/hal", - "lib": "__idf_hal", - "reqs": [ "soc", "esp_rom" ], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "platform_port/include", "esp32h2/include", "include" ] - }, - "heap": { - "alias": "idf::heap", - "target": "___idf_heap", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/heap", - "lib": "__idf_heap", - "reqs": [], - "priv_reqs": [ "soc" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include", "tlsf" ] - }, - "http_parser": { - "alias": "idf::http_parser", - "target": "___idf_http_parser", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/http_parser", - "lib": "__idf_http_parser", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "." ] - }, - "idf_test": { - "alias": "idf::idf_test", - "target": "___idf_idf_test", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/idf_test", - "lib": "__idf_idf_test", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include", "include/esp32h2" ] - }, - "ieee802154": { - "alias": "idf::ieee802154", - "target": "___idf_ieee802154", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/ieee802154", - "lib": "__idf_ieee802154", - "reqs": [ "esp_coex" ], - "priv_reqs": [ "esp_phy", "esp_timer", "soc", "hal", "esp_pm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "json": { - "alias": "idf::json", - "target": "___idf_json", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/json", - "lib": "__idf_json", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "cJSON" ] - }, - "linux": { - "alias": "idf::linux", - "target": "___idf_linux", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/linux", - "lib": "__idf_linux", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "cJSON" ] - }, - "log": { - "alias": "idf::log", - "target": "___idf_log", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/log", - "lib": "__idf_log", - "reqs": [], - "priv_reqs": [ "hal", "soc", "esp_hw_support" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "lwip": { - "alias": "idf::lwip", - "target": "___idf_lwip", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/lwip", - "lib": "__idf_lwip", - "reqs": [], - "priv_reqs": [ "vfs" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include", "include/apps", "include/apps/sntp", "lwip/src/include", "port/include", "port/freertos/include/", "port/esp32xx/include", "port/esp32xx/include/arch", "port/esp32xx/include/sys" ] - }, - "mbedtls": { - "alias": "idf::mbedtls", - "target": "___idf_mbedtls", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mbedtls", - "lib": "__idf_mbedtls", - "reqs": [], - "priv_reqs": [ "soc", "esp_hw_support", "esp_pm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "port/include", "mbedtls/include", "mbedtls/library", "esp_crt_bundle/include" ] - }, - "mqtt": { - "alias": "idf::mqtt", - "target": "___idf_mqtt", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mqtt", - "lib": "__idf_mqtt", - "reqs": [ "esp_event", "tcp_transport" ], - "priv_reqs": [ "esp_timer", "http_parser", "esp_hw_support", "heap" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/mqtt/esp-mqtt/include" ] - }, - "newlib": { - "alias": "idf::newlib", - "target": "___idf_newlib", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/newlib", - "lib": "__idf_newlib", - "reqs": [], - "priv_reqs": [ "soc", "spi_flash" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "platform_include" ] - }, - "nvs_flash": { - "alias": "idf::nvs_flash", - "target": "___idf_nvs_flash", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_flash", - "lib": "__idf_nvs_flash", - "reqs": [ "esp_partition" ], - "priv_reqs": [ "spi_flash", "newlib" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "nvs_sec_provider": { - "alias": "idf::nvs_sec_provider", - "target": "___idf_nvs_sec_provider", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/nvs_sec_provider", - "lib": "__idf_nvs_sec_provider", - "reqs": [], - "priv_reqs": [ "bootloader_support", "efuse", "esp_partition", "nvs_flash" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "openthread": { - "alias": "idf::openthread", - "target": "___idf_openthread", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/openthread", - "lib": "__idf_openthread", - "reqs": [ "esp_netif", "lwip", "esp_driver_uart", "driver" ], - "priv_reqs": [ "console", "esp_coex", "esp_event", "esp_partition", "esp_timer", "ieee802154", "mbedtls", "nvs_flash" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include", "openthread/include" ] - }, - "partition_table": { - "alias": "idf::partition_table", - "target": "___idf_partition_table", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/partition_table", - "lib": "__idf_partition_table", - "reqs": [], - "priv_reqs": [ "esptool_py" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [] - }, - "perfmon": { - "alias": "idf::perfmon", - "target": "___idf_perfmon", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/perfmon", - "lib": "__idf_perfmon", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [] - }, - "protobuf-c": { - "alias": "idf::protobuf-c", - "target": "___idf_protobuf-c", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/protobuf-c", - "lib": "__idf_protobuf-c", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "protobuf-c" ] - }, - "protocomm": { - "alias": "idf::protocomm", - "target": "___idf_protocomm", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/protocomm", - "lib": "__idf_protocomm", - "reqs": [ "bt" ], - "priv_reqs": [ "protobuf-c", "mbedtls", "console", "esp_http_server", "esp_driver_uart" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include/common", "include/security", "include/transports", "include/crypto/srp6a", "proto-c" ] - }, - "pthread": { - "alias": "idf::pthread", - "target": "___idf_pthread", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/pthread", - "lib": "__idf_pthread", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "riscv": { - "alias": "idf::riscv", - "target": "___idf_riscv", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/riscv", - "lib": "__idf_riscv", - "reqs": [], - "priv_reqs": [ "soc", "hal" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "rt": { - "alias": "idf::rt", - "target": "___idf_rt", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/rt", - "lib": "__idf_rt", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "sdmmc": { - "alias": "idf::sdmmc", - "target": "___idf_sdmmc", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/sdmmc", - "lib": "__idf_sdmmc", - "reqs": [], - "priv_reqs": [ "soc", "esp_timer", "esp_mm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "soc": { - "alias": "idf::soc", - "target": "___idf_soc", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/soc", - "lib": "__idf_soc", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include", "esp32h2", "esp32h2/include", "esp32h2/register" ] - }, - "spi_flash": { - "alias": "idf::spi_flash", - "target": "___idf_spi_flash", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/spi_flash", - "lib": "__idf_spi_flash", - "reqs": [ "hal" ], - "priv_reqs": [ "bootloader_support", "app_update", "soc", "esp_mm", "esp_driver_gpio" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "spiffs": { - "alias": "idf::spiffs", - "target": "___idf_spiffs", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/spiffs", - "lib": "__idf_spiffs", - "reqs": [ "esp_partition" ], - "priv_reqs": [ "bootloader_support", "esptool_py", "vfs" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "tcp_transport": { - "alias": "idf::tcp_transport", - "target": "___idf_tcp_transport", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/tcp_transport", - "lib": "__idf_tcp_transport", - "reqs": [ "esp-tls", "lwip", "esp_timer" ], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "touch_element": { - "alias": "idf::touch_element", - "target": "___idf_touch_element", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/touch_element", - "lib": "__idf_touch_element", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "ulp": { - "alias": "idf::ulp", - "target": "___idf_ulp", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/ulp", - "lib": "__idf_ulp", - "reqs": [ "driver", "esp_adc" ], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [] - }, - "unity": { - "alias": "idf::unity", - "target": "___idf_unity", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/unity", - "lib": "__idf_unity", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include", "unity/src" ] - }, - "usb": { - "alias": "idf::usb", - "target": "___idf_usb", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/usb", - "lib": "__idf_usb", - "reqs": [], - "priv_reqs": [ "esp_driver_gpio", "esp_mm" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [] - }, - "vfs": { - "alias": "idf::vfs", - "target": "___idf_vfs", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/vfs", - "lib": "__idf_vfs", - "reqs": [], - "priv_reqs": [ "esp_timer", "esp_driver_uart", "esp_driver_usb_serial_jtag", "esp_vfs_console" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "wear_levelling": { - "alias": "idf::wear_levelling", - "target": "___idf_wear_levelling", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/wear_levelling", - "lib": "__idf_wear_levelling", - "reqs": [ "esp_partition" ], - "priv_reqs": [ "spi_flash" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "wifi_provisioning": { - "alias": "idf::wifi_provisioning", - "target": "___idf_wifi_provisioning", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/wifi_provisioning", - "lib": "__idf_wifi_provisioning", - "reqs": [ "lwip", "protocomm" ], - "priv_reqs": [ "protobuf-c", "bt", "json", "esp_timer", "esp_wifi" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include" ] - }, - "wpa_supplicant": { - "alias": "idf::wpa_supplicant", - "target": "___idf_wpa_supplicant", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/wpa_supplicant", - "lib": "__idf_wpa_supplicant", - "reqs": [], - "priv_reqs": [ "mbedtls", "esp_timer", "esp_wifi" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "esp_supplicant/include" ] - }, - "xtensa": { - "alias": "idf::xtensa", - "target": "___idf_xtensa", - "prefix": "idf", - "dir": "C:/Users/Laurent/esp/v5.5.1/esp-idf/components/xtensa", - "lib": "__idf_xtensa", - "reqs": [], - "priv_reqs": [], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "include", "port/include", "esp_supplicant/include" ] - }, - "main": { - "alias": "idf::main", - "target": "___idf_main", - "prefix": "idf", - "dir": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/main", - "lib": "__idf_main", - "reqs": [], - "priv_reqs": [ "esp_coex", "esp_event", "nvs_flash", "openthread" ], - "managed_reqs": [], - "managed_priv_reqs": [], - "include_dirs": [ "." ] - } - }, - "debug_prefix_map_gdbinit": "", - "gdbinit_files": { - "01_symbols": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/gdbinit/symbols", - "02_prefix_map": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/gdbinit/prefix_map", - "03_py_extensions": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/gdbinit/py_extensions", - "04_connect": "C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/gdbinit/connect" - }, - "debug_arguments_openocd": "-f board/esp32h2-builtin.cfg" -} diff --git a/esp32-thread/open-thread-rcp/build/project_elf_src_esp32h2.c b/esp32-thread/open-thread-rcp/build/project_elf_src_esp32h2.c deleted file mode 100644 index e69de29b..00000000 diff --git a/esp32-thread/open-thread-rcp/build/rcp_version b/esp32-thread/open-thread-rcp/build/rcp_version deleted file mode 100644 index 283291cc..00000000 --- a/esp32-thread/open-thread-rcp/build/rcp_version +++ /dev/null @@ -1 +0,0 @@ -openthread-esp32/fcae32885-b945928d7; esp32h2; 2025-12-23 18:33:51 UTC \ No newline at end of file diff --git a/esp32-thread/open-thread-rcp/build/x509_crt_bundle.S b/esp32-thread/open-thread-rcp/build/x509_crt_bundle.S deleted file mode 100644 index 98e4c01c..00000000 --- a/esp32-thread/open-thread-rcp/build/x509_crt_bundle.S +++ /dev/null @@ -1,4336 +0,0 @@ -/* * Data converted from C:/Users/Laurent/Desktop/board-mate/esp32-thread/open-thread-rcp/build/esp-idf/mbedtls/x509_crt_bundle - */ -.data -#if !defined (__APPLE__) && !defined (__linux__) -.section .rodata.embedded -#endif - -.global x509_crt_bundle -x509_crt_bundle: - -.global _binary_x509_crt_bundle_start -_binary_x509_crt_bundle_start: /* for objcopy compatibility */ -.byte 0x58, 0x02, 0x00, 0x00, 0xb8, 0x03, 0x00, 0x00, 0x1b, 0x06, 0x00, 0x00, 0x7f, 0x08, 0x00, 0x00 -.byte 0xe4, 0x09, 0x00, 0x00, 0x49, 0x0c, 0x00, 0x00, 0xe3, 0x0c, 0x00, 0x00, 0x9a, 0x0d, 0x00, 0x00 -.byte 0x01, 0x10, 0x00, 0x00, 0x68, 0x11, 0x00, 0x00, 0xd0, 0x12, 0x00, 0x00, 0x39, 0x15, 0x00, 0x00 -.byte 0xf4, 0x15, 0x00, 0x00, 0x5d, 0x18, 0x00, 0x00, 0xca, 0x1a, 0x00, 0x00, 0x37, 0x1d, 0x00, 0x00 -.byte 0xa5, 0x1f, 0x00, 0x00, 0x14, 0x22, 0x00, 0x00, 0x84, 0x24, 0x00, 0x00, 0xf4, 0x25, 0x00, 0x00 -.byte 0x64, 0x27, 0x00, 0x00, 0xd5, 0x29, 0x00, 0x00, 0x46, 0x2c, 0x00, 0x00, 0xb7, 0x2e, 0x00, 0x00 -.byte 0x7a, 0x2f, 0x00, 0x00, 0x3e, 0x30, 0x00, 0x00, 0xb0, 0x32, 0x00, 0x00, 0x23, 0x35, 0x00, 0x00 -.byte 0xe8, 0x35, 0x00, 0x00, 0x5b, 0x38, 0x00, 0x00, 0xce, 0x3a, 0x00, 0x00, 0x93, 0x3b, 0x00, 0x00 -.byte 0x58, 0x3c, 0x00, 0x00, 0xcc, 0x3e, 0x00, 0x00, 0x40, 0x41, 0x00, 0x00, 0xb4, 0x43, 0x00, 0x00 -.byte 0x7a, 0x44, 0x00, 0x00, 0xee, 0x46, 0x00, 0x00, 0xb4, 0x47, 0x00, 0x00, 0x28, 0x4a, 0x00, 0x00 -.byte 0x9c, 0x4b, 0x00, 0x00, 0x12, 0x4e, 0x00, 0x00, 0x88, 0x4f, 0x00, 0x00, 0x00, 0x51, 0x00, 0x00 -.byte 0x78, 0x53, 0x00, 0x00, 0x42, 0x54, 0x00, 0x00, 0xba, 0x56, 0x00, 0x00, 0x33, 0x59, 0x00, 0x00 -.byte 0xac, 0x5a, 0x00, 0x00, 0x25, 0x5d, 0x00, 0x00, 0x9e, 0x5f, 0x00, 0x00, 0x18, 0x62, 0x00, 0x00 -.byte 0x92, 0x64, 0x00, 0x00, 0x5e, 0x65, 0x00, 0x00, 0x2a, 0x66, 0x00, 0x00, 0xa4, 0x68, 0x00, 0x00 -.byte 0x1e, 0x6b, 0x00, 0x00, 0xea, 0x6b, 0x00, 0x00, 0xb6, 0x6c, 0x00, 0x00, 0x30, 0x6f, 0x00, 0x00 -.byte 0xab, 0x71, 0x00, 0x00, 0x26, 0x74, 0x00, 0x00, 0xf3, 0x74, 0x00, 0x00, 0x6f, 0x76, 0x00, 0x00 -.byte 0xeb, 0x78, 0x00, 0x00, 0x9c, 0x79, 0x00, 0x00, 0x6a, 0x7a, 0x00, 0x00, 0xe7, 0x7c, 0x00, 0x00 -.byte 0x64, 0x7e, 0x00, 0x00, 0xe1, 0x80, 0x00, 0x00, 0xb0, 0x81, 0x00, 0x00, 0x2d, 0x83, 0x00, 0x00 -.byte 0xaa, 0x85, 0x00, 0x00, 0x28, 0x88, 0x00, 0x00, 0xa8, 0x8a, 0x00, 0x00, 0x7a, 0x8b, 0x00, 0x00 -.byte 0xfc, 0x8d, 0x00, 0x00, 0x7e, 0x8f, 0x00, 0x00, 0x01, 0x91, 0x00, 0x00, 0x87, 0x93, 0x00, 0x00 -.byte 0x5f, 0x94, 0x00, 0x00, 0xe5, 0x96, 0x00, 0x00, 0x6b, 0x98, 0x00, 0x00, 0x43, 0x99, 0x00, 0x00 -.byte 0xcc, 0x9a, 0x00, 0x00, 0x56, 0x9d, 0x00, 0x00, 0x33, 0x9e, 0x00, 0x00, 0xbe, 0xa0, 0x00, 0x00 -.byte 0x49, 0xa2, 0x00, 0x00, 0x28, 0xa3, 0x00, 0x00, 0xb5, 0xa5, 0x00, 0x00, 0x42, 0xa7, 0x00, 0x00 -.byte 0xcf, 0xa8, 0x00, 0x00, 0xae, 0xa9, 0x00, 0x00, 0x3c, 0xac, 0x00, 0x00, 0xca, 0xae, 0x00, 0x00 -.byte 0xab, 0xaf, 0x00, 0x00, 0x3a, 0xb2, 0x00, 0x00, 0xc7, 0xb3, 0x00, 0x00, 0x58, 0xb5, 0x00, 0x00 -.byte 0xe9, 0xb6, 0x00, 0x00, 0xcc, 0xb7, 0x00, 0x00, 0xaf, 0xb8, 0x00, 0x00, 0x40, 0xbb, 0x00, 0x00 -.byte 0xd3, 0xbc, 0x00, 0x00, 0x65, 0xbe, 0x00, 0x00, 0xfa, 0xc0, 0x00, 0x00, 0xe3, 0xc1, 0x00, 0x00 -.byte 0x7a, 0xc4, 0x00, 0x00, 0x64, 0xc5, 0x00, 0x00, 0xfc, 0xc7, 0x00, 0x00, 0x94, 0xc9, 0x00, 0x00 -.byte 0x2d, 0xcb, 0x00, 0x00, 0x18, 0xcc, 0x00, 0x00, 0x04, 0xcd, 0x00, 0x00, 0x9f, 0xcf, 0x00, 0x00 -.byte 0x71, 0xd0, 0x00, 0x00, 0x63, 0xd1, 0x00, 0x00, 0x59, 0xd2, 0x00, 0x00, 0xff, 0xd4, 0x00, 0x00 -.byte 0xa6, 0xd6, 0x00, 0x00, 0xa0, 0xd7, 0x00, 0x00, 0x48, 0xda, 0x00, 0x00, 0xf2, 0xdb, 0x00, 0x00 -.byte 0xef, 0xdc, 0x00, 0x00, 0x9c, 0xdf, 0x00, 0x00, 0x4a, 0xe1, 0x00, 0x00, 0xf9, 0xe2, 0x00, 0x00 -.byte 0xa8, 0xe4, 0x00, 0x00, 0x57, 0xe6, 0x00, 0x00, 0x06, 0xe9, 0x00, 0x00, 0xb5, 0xea, 0x00, 0x00 -.byte 0x65, 0xec, 0x00, 0x00, 0x16, 0xef, 0x00, 0x00, 0x1a, 0xf0, 0x00, 0x00, 0xcc, 0xf2, 0x00, 0x00 -.byte 0x81, 0xf5, 0x00, 0x00, 0x88, 0xf6, 0x00, 0x00, 0x3d, 0xf9, 0x00, 0x00, 0xf9, 0xfa, 0x00, 0x00 -.byte 0xec, 0xfb, 0x00, 0x00, 0xfc, 0xfc, 0x00, 0x00, 0xc1, 0xfe, 0x00, 0x00, 0x94, 0x01, 0x01, 0x00 -.byte 0x68, 0x03, 0x01, 0x00, 0x91, 0x04, 0x01, 0x00, 0x6e, 0x06, 0x01, 0x00, 0x4f, 0x08, 0x01, 0x00 -.byte 0x3a, 0x0a, 0x01, 0x00, 0x78, 0x0b, 0x01, 0x00, 0x36, 0x00, 0x26, 0x01, 0x30, 0x34, 0x31, 0x0b -.byte 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x46, 0x52, 0x31, 0x12, 0x30, 0x10, 0x06 -.byte 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x09, 0x44, 0x68, 0x69, 0x6d, 0x79, 0x6f, 0x74, 0x69, 0x73, 0x31 -.byte 0x11, 0x30, 0x0f, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x08, 0x43, 0x65, 0x72, 0x74, 0x69, 0x67 -.byte 0x6e, 0x61, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d -.byte 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82 -.byte 0x01, 0x01, 0x00, 0xc8, 0x68, 0xf1, 0xc9, 0xd6, 0xd6, 0xb3, 0x34, 0x75, 0x26, 0x82, 0x1e, 0xec -.byte 0xb4, 0xbe, 0xea, 0x5c, 0xe1, 0x26, 0xed, 0x11, 0x47, 0x61, 0xe1, 0xa2, 0x7c, 0x16, 0x78, 0x40 -.byte 0x21, 0xe4, 0x60, 0x9e, 0x5a, 0xc8, 0x63, 0xe1, 0xc4, 0xb1, 0x96, 0x92, 0xff, 0x18, 0x6d, 0x69 -.byte 0x23, 0xe1, 0x2b, 0x62, 0xf7, 0xdd, 0xe2, 0x36, 0x2f, 0x91, 0x07, 0xb9, 0x48, 0xcf, 0x0e, 0xec -.byte 0x79, 0xb6, 0x2c, 0xe7, 0x34, 0x4b, 0x70, 0x08, 0x25, 0xa3, 0x3c, 0x87, 0x1b, 0x19, 0xf2, 0x81 -.byte 0x07, 0x0f, 0x38, 0x90, 0x19, 0xd3, 0x11, 0xfe, 0x86, 0xb4, 0xf2, 0xd1, 0x5e, 0x1e, 0x1e, 0x96 -.byte 0xcd, 0x80, 0x6c, 0xce, 0x3b, 0x31, 0x93, 0xb6, 0xf2, 0xa0, 0xd0, 0xa9, 0x95, 0x12, 0x7d, 0xa5 -.byte 0x9a, 0xcc, 0x6b, 0xc8, 0x84, 0x56, 0x8a, 0x33, 0xa9, 0xe7, 0x22, 0x15, 0x53, 0x16, 0xf0, 0xcc -.byte 0x17, 0xec, 0x57, 0x5f, 0xe9, 0xa2, 0x0a, 0x98, 0x09, 0xde, 0xe3, 0x5f, 0x9c, 0x6f, 0xdc, 0x48 -.byte 0xe3, 0x85, 0x0b, 0x15, 0x5a, 0xa6, 0xba, 0x9f, 0xac, 0x48, 0xe3, 0x09, 0xb2, 0xf7, 0xf4, 0x32 -.byte 0xde, 0x5e, 0x34, 0xbe, 0x1c, 0x78, 0x5d, 0x42, 0x5b, 0xce, 0x0e, 0x22, 0x8f, 0x4d, 0x90, 0xd7 -.byte 0x7d, 0x32, 0x18, 0xb3, 0x0b, 0x2c, 0x6a, 0xbf, 0x8e, 0x3f, 0x14, 0x11, 0x89, 0x20, 0x0e, 0x77 -.byte 0x14, 0xb5, 0x3d, 0x94, 0x08, 0x87, 0xf7, 0x25, 0x1e, 0xd5, 0xb2, 0x60, 0x00, 0xec, 0x6f, 0x2a -.byte 0x28, 0x25, 0x6e, 0x2a, 0x3e, 0x18, 0x63, 0x17, 0x25, 0x3f, 0x3e, 0x44, 0x20, 0x16, 0xf6, 0x26 -.byte 0xc8, 0x25, 0xae, 0x05, 0x4a, 0xb4, 0xe7, 0x63, 0x2c, 0xf3, 0x8c, 0x16, 0x53, 0x7e, 0x5c, 0xfb -.byte 0x11, 0x1a, 0x08, 0xc1, 0x46, 0x62, 0x9f, 0x22, 0xb8, 0xf1, 0xc2, 0x8d, 0x69, 0xdc, 0xfa, 0x3a -.byte 0x58, 0x06, 0xdf, 0x02, 0x03, 0x01, 0x00, 0x01, 0x39, 0x00, 0x26, 0x02, 0x30, 0x37, 0x31, 0x14 -.byte 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0b, 0x54, 0x65, 0x6c, 0x69, 0x61, 0x53, 0x6f -.byte 0x6e, 0x65, 0x72, 0x61, 0x31, 0x1f, 0x30, 0x1d, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x16, 0x54 -.byte 0x65, 0x6c, 0x69, 0x61, 0x53, 0x6f, 0x6e, 0x65, 0x72, 0x61, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20 -.byte 0x43, 0x41, 0x20, 0x76, 0x31, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48 -.byte 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02 -.byte 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xc2, 0xbe, 0xeb, 0x27, 0xf0, 0x21, 0xa3, 0xf3, 0x69, 0x26 -.byte 0x55, 0x7e, 0x9d, 0xc5, 0x55, 0x16, 0x91, 0x5c, 0xfd, 0xef, 0x21, 0xbf, 0x53, 0x80, 0x7a, 0x2d -.byte 0xd2, 0x91, 0x8c, 0x63, 0x31, 0xf0, 0xec, 0x24, 0xf0, 0xc3, 0xa5, 0xd2, 0x72, 0x7c, 0x10, 0x6d -.byte 0xf4, 0x37, 0xb7, 0xe5, 0xe6, 0x7c, 0x79, 0xea, 0x8c, 0xb5, 0x82, 0x8b, 0xae, 0x48, 0xb6, 0xac -.byte 0x00, 0xdc, 0x65, 0x75, 0xec, 0x2a, 0x4d, 0x5f, 0xc1, 0x87, 0xf5, 0x20, 0x65, 0x2b, 0x81, 0xa8 -.byte 0x47, 0x3e, 0x89, 0x23, 0x95, 0x30, 0x16, 0x90, 0x7f, 0xe8, 0x57, 0x07, 0x48, 0xe7, 0x19, 0xae -.byte 0xbf, 0x45, 0x67, 0xb1, 0x37, 0x1b, 0x06, 0x2a, 0xfe, 0xde, 0xf9, 0xac, 0x7d, 0x83, 0xfb, 0x5e -.byte 0xba, 0xe4, 0x8f, 0x97, 0x67, 0xbe, 0x4b, 0x8e, 0x8d, 0x64, 0x07, 0x57, 0x38, 0x55, 0x69, 0x34 -.byte 0x36, 0x3d, 0x13, 0x48, 0xef, 0x4f, 0xe2, 0xd3, 0x66, 0x1e, 0xa4, 0xcf, 0x1a, 0xb7, 0x5e, 0x36 -.byte 0x33, 0xd4, 0xb4, 0x06, 0xbd, 0x18, 0x01, 0xfd, 0x77, 0x84, 0x50, 0x00, 0x45, 0xf5, 0x8c, 0x5d -.byte 0xe8, 0x23, 0xbc, 0x7e, 0xfe, 0x35, 0xe1, 0xed, 0x50, 0x7b, 0xa9, 0x30, 0x8d, 0x19, 0xd3, 0x09 -.byte 0x8e, 0x68, 0x67, 0x5d, 0xbf, 0x3c, 0x97, 0x18, 0x53, 0xbb, 0x29, 0x62, 0xc5, 0xca, 0x5e, 0x72 -.byte 0xc1, 0xc7, 0x96, 0xd4, 0xdb, 0x2d, 0xa0, 0xb4, 0x1f, 0x69, 0x03, 0xec, 0xea, 0xe2, 0x50, 0xf1 -.byte 0x0c, 0x3c, 0xf0, 0xac, 0xf3, 0x53, 0x2d, 0xf0, 0x1c, 0xf5, 0xed, 0x6c, 0x39, 0x39, 0x73, 0x80 -.byte 0x16, 0xc8, 0x52, 0xb0, 0x23, 0xcd, 0xe0, 0x3e, 0xdc, 0xdd, 0x3c, 0x47, 0xa0, 0xbb, 0x35, 0x8a -.byte 0xe2, 0x98, 0x68, 0x8b, 0xbe, 0xe5, 0xbf, 0x72, 0xee, 0xd2, 0xfa, 0xa5, 0xed, 0x12, 0xed, 0xfc -.byte 0x98, 0x18, 0xa9, 0x26, 0x76, 0xdc, 0x28, 0x4b, 0x10, 0x20, 0x1c, 0xd3, 0x7f, 0x16, 0x77, 0x2d -.byte 0xed, 0x6f, 0x80, 0xf7, 0x49, 0xbb, 0x53, 0x05, 0xbb, 0x5d, 0x68, 0xc7, 0xd4, 0xc8, 0x75, 0x16 -.byte 0x3f, 0x89, 0x5a, 0x8b, 0xf7, 0x17, 0x47, 0xd4, 0x4c, 0xf1, 0xd2, 0x89, 0x79, 0x3e, 0x4d, 0x3d -.byte 0x98, 0xa8, 0x61, 0xde, 0x3a, 0x1e, 0xd2, 0xf8, 0x5e, 0x03, 0xe0, 0xc1, 0xc9, 0x1c, 0x8c, 0xd3 -.byte 0x8d, 0x4d, 0xd3, 0x95, 0x36, 0xb3, 0x37, 0x5f, 0x63, 0x63, 0x9b, 0x33, 0x14, 0xf0, 0x2d, 0x26 -.byte 0x6b, 0x53, 0x7c, 0x89, 0x8c, 0x32, 0xc2, 0x6e, 0xec, 0x3d, 0x21, 0x00, 0x39, 0xc9, 0xa1, 0x68 -.byte 0xe2, 0x50, 0x83, 0x2e, 0xb0, 0x3a, 0x2b, 0xf3, 0x36, 0xa0, 0xac, 0x2f, 0xe4, 0x6f, 0x61, 0xc2 -.byte 0x51, 0x09, 0x39, 0x3e, 0x8b, 0x53, 0xb9, 0xbb, 0x67, 0xda, 0xdc, 0x53, 0xb9, 0x76, 0x59, 0x36 -.byte 0x9d, 0x43, 0xe5, 0x20, 0xe0, 0x3d, 0x32, 0x60, 0x85, 0x22, 0x51, 0xb7, 0xc7, 0x33, 0xbb, 0xdd -.byte 0x15, 0x2f, 0xa4, 0x78, 0xa6, 0x07, 0x7b, 0x81, 0x46, 0x36, 0x04, 0x86, 0xdd, 0x79, 0x35, 0xc7 -.byte 0x95, 0x2c, 0x3b, 0xb0, 0xa3, 0x17, 0x35, 0xe5, 0x73, 0x1f, 0xb4, 0x5c, 0x59, 0xef, 0xda, 0xea -.byte 0x10, 0x65, 0x7b, 0x7a, 0xd0, 0x7f, 0x9f, 0xb3, 0xb4, 0x2a, 0x37, 0x3b, 0x70, 0x8b, 0x9b, 0x5b -.byte 0xb9, 0x2b, 0xb7, 0xec, 0xb2, 0x51, 0x12, 0x97, 0x53, 0x29, 0x5a, 0xd4, 0xf0, 0x12, 0x10, 0xdc -.byte 0x4f, 0x02, 0xbb, 0x12, 0x92, 0x2f, 0x62, 0xd4, 0x3f, 0x69, 0x43, 0x7c, 0x0d, 0xd6, 0xfc, 0x58 -.byte 0x75, 0x01, 0x88, 0x9d, 0x58, 0x16, 0x4b, 0xde, 0xba, 0x90, 0xff, 0x47, 0x01, 0x89, 0x06, 0x6a -.byte 0xf6, 0x5f, 0xb2, 0x90, 0x6a, 0xb3, 0x02, 0xa6, 0x02, 0x88, 0xbf, 0xb3, 0x47, 0x7e, 0x2a, 0xd9 -.byte 0xd5, 0xfa, 0x68, 0x78, 0x35, 0x4d, 0x02, 0x03, 0x01, 0x00, 0x01, 0x3a, 0x00, 0x26, 0x02, 0x30 -.byte 0x38, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x45, 0x53, 0x31, 0x14 -.byte 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0b, 0x49, 0x5a, 0x45, 0x4e, 0x50, 0x45, 0x20 -.byte 0x53, 0x2e, 0x41, 0x2e, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x0a, 0x49 -.byte 0x7a, 0x65, 0x6e, 0x70, 0x65, 0x2e, 0x63, 0x6f, 0x6d, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06 -.byte 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f -.byte 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xc9, 0xd3, 0x7a, 0xca, 0x0f, 0x1e -.byte 0xac, 0xa7, 0x86, 0xe8, 0x16, 0x65, 0x6a, 0xb1, 0xc2, 0x1b, 0x45, 0x32, 0x71, 0x95, 0xd9, 0xfe -.byte 0x10, 0x5b, 0xcc, 0xaf, 0xe7, 0xa5, 0x79, 0x01, 0x8f, 0x89, 0xc3, 0xca, 0xf2, 0x55, 0x71, 0xf7 -.byte 0x77, 0xbe, 0x77, 0x94, 0xf3, 0x72, 0xa4, 0x2c, 0x44, 0xd8, 0x9e, 0x92, 0x9b, 0x14, 0x3a, 0xa1 -.byte 0xe7, 0x24, 0x90, 0x0a, 0x0a, 0x56, 0x8e, 0xc5, 0xd8, 0x26, 0x94, 0xe1, 0xd9, 0x48, 0xe1, 0x2d -.byte 0x3e, 0xda, 0x0a, 0x72, 0xdd, 0xa3, 0x99, 0x15, 0xda, 0x81, 0xa2, 0x87, 0xf4, 0x7b, 0x6e, 0x26 -.byte 0x77, 0x89, 0x58, 0xad, 0xd6, 0xeb, 0x0c, 0xb2, 0x41, 0x7a, 0x73, 0x6e, 0x6d, 0xdb, 0x7a, 0x78 -.byte 0x41, 0xe9, 0x08, 0x88, 0x12, 0x7e, 0x87, 0x2e, 0x66, 0x11, 0x63, 0x6c, 0x54, 0xfb, 0x3c, 0x9d -.byte 0x72, 0xc0, 0xbc, 0x2e, 0xff, 0xc2, 0xb7, 0xdd, 0x0d, 0x76, 0xe3, 0x3a, 0xd7, 0xf7, 0xb4, 0x68 -.byte 0xbe, 0xa2, 0xf5, 0xe3, 0x81, 0x6e, 0xc1, 0x46, 0x6f, 0x5d, 0x8d, 0xe0, 0x4d, 0xc6, 0x54, 0x55 -.byte 0x89, 0x1a, 0x33, 0x31, 0x0a, 0xb1, 0x57, 0xb9, 0xa3, 0x8a, 0x98, 0xc3, 0xec, 0x3b, 0x34, 0xc5 -.byte 0x95, 0x41, 0x69, 0x7e, 0x75, 0xc2, 0x3c, 0x20, 0xc5, 0x61, 0xba, 0x51, 0x47, 0xa0, 0x20, 0x90 -.byte 0x93, 0xa1, 0x90, 0x4b, 0xf3, 0x4e, 0x7c, 0x85, 0x45, 0x54, 0x9a, 0xd1, 0x05, 0x26, 0x41, 0xb0 -.byte 0xb5, 0x4d, 0x1d, 0x33, 0xbe, 0xc4, 0x03, 0xc8, 0x25, 0x7c, 0xc1, 0x70, 0xdb, 0x3b, 0xf4, 0x09 -.byte 0x2d, 0x54, 0x27, 0x48, 0xac, 0x2f, 0xe1, 0xc4, 0xac, 0x3e, 0xc8, 0xcb, 0x92, 0x4c, 0x53, 0x39 -.byte 0x37, 0x23, 0xec, 0xd3, 0x01, 0xf9, 0xe0, 0x09, 0x44, 0x4d, 0x4d, 0x64, 0xc0, 0xe1, 0x0d, 0x5a -.byte 0x87, 0x22, 0xbc, 0xad, 0x1b, 0xa3, 0xfe, 0x26, 0xb5, 0x15, 0xf3, 0xa7, 0xfc, 0x84, 0x19, 0xe9 -.byte 0xec, 0xa1, 0x88, 0xb4, 0x44, 0x69, 0x84, 0x83, 0xf3, 0x89, 0xd1, 0x74, 0x06, 0xa9, 0xcc, 0x0b -.byte 0xd6, 0xc2, 0xde, 0x27, 0x85, 0x50, 0x26, 0xca, 0x17, 0xb8, 0xc9, 0x7a, 0x87, 0x56, 0x2c, 0x1a -.byte 0x01, 0x1e, 0x6c, 0xbe, 0x13, 0xad, 0x10, 0xac, 0xb5, 0x24, 0xf5, 0x38, 0x91, 0xa1, 0xd6, 0x4b -.byte 0xda, 0xf1, 0xbb, 0xd2, 0xde, 0x47, 0xb5, 0xf1, 0xbc, 0x81, 0xf6, 0x59, 0x6b, 0xcf, 0x19, 0x53 -.byte 0xe9, 0x8d, 0x15, 0xcb, 0x4a, 0xcb, 0xa9, 0x6f, 0x44, 0xe5, 0x1b, 0x41, 0xcf, 0xe1, 0x86, 0xa7 -.byte 0xca, 0xd0, 0x6a, 0x9f, 0xbc, 0x4c, 0x8d, 0x06, 0x33, 0x5a, 0xa2, 0x85, 0xe5, 0x90, 0x35, 0xa0 -.byte 0x62, 0x5c, 0x16, 0x4e, 0xf0, 0xe3, 0xa2, 0xfa, 0x03, 0x1a, 0xb4, 0x2c, 0x71, 0xb3, 0x58, 0x2c -.byte 0xde, 0x7b, 0x0b, 0xdb, 0x1a, 0x0f, 0xeb, 0xde, 0x21, 0x1f, 0x06, 0x77, 0x06, 0x03, 0xb0, 0xc9 -.byte 0xef, 0x99, 0xfc, 0xc0, 0xb9, 0x4f, 0x0b, 0x86, 0x28, 0xfe, 0xd2, 0xb9, 0xea, 0xe3, 0xda, 0xa5 -.byte 0xc3, 0x47, 0x69, 0x12, 0xe0, 0xdb, 0xf0, 0xf6, 0x19, 0x8b, 0xed, 0x7b, 0x70, 0xd7, 0x02, 0xd6 -.byte 0xed, 0x87, 0x18, 0x28, 0x2c, 0x04, 0x24, 0x4c, 0x77, 0xe4, 0x48, 0x8a, 0x1a, 0xc6, 0x3b, 0x9a -.byte 0xd4, 0x0f, 0xca, 0xfa, 0x75, 0xd2, 0x01, 0x40, 0x5a, 0x8d, 0x79, 0xbf, 0x8b, 0xcf, 0x4b, 0xcf -.byte 0xaa, 0x16, 0xc1, 0x95, 0xe4, 0xad, 0x4c, 0x8a, 0x3e, 0x17, 0x91, 0xd4, 0xb1, 0x62, 0xe5, 0x82 -.byte 0xe5, 0x80, 0x04, 0xa4, 0x03, 0x7e, 0x8d, 0xbf, 0xda, 0x7f, 0xa2, 0x0f, 0x97, 0x4f, 0x0c, 0xd3 -.byte 0x0d, 0xfb, 0xd7, 0xd1, 0xe5, 0x72, 0x7e, 0x1c, 0xc8, 0x77, 0xff, 0x5b, 0x9a, 0x0f, 0xb7, 0xae -.byte 0x05, 0x46, 0xe5, 0xf1, 0xa8, 0x16, 0xec, 0x47, 0xa4, 0x17, 0x02, 0x03, 0x01, 0x00, 0x01, 0x3b -.byte 0x00, 0x26, 0x01, 0x30, 0x39, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02 -.byte 0x55, 0x53, 0x31, 0x0f, 0x30, 0x0d, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x06, 0x41, 0x6d, 0x61 -.byte 0x7a, 0x6f, 0x6e, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x10, 0x41, 0x6d -.byte 0x61, 0x7a, 0x6f, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x31, 0x30, 0x82 -.byte 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05 -.byte 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xb2 -.byte 0x78, 0x80, 0x71, 0xca, 0x78, 0xd5, 0xe3, 0x71, 0xaf, 0x47, 0x80, 0x50, 0x74, 0x7d, 0x6e, 0xd8 -.byte 0xd7, 0x88, 0x76, 0xf4, 0x99, 0x68, 0xf7, 0x58, 0x21, 0x60, 0xf9, 0x74, 0x84, 0x01, 0x2f, 0xac -.byte 0x02, 0x2d, 0x86, 0xd3, 0xa0, 0x43, 0x7a, 0x4e, 0xb2, 0xa4, 0xd0, 0x36, 0xba, 0x01, 0xbe, 0x8d -.byte 0xdb, 0x48, 0xc8, 0x07, 0x17, 0x36, 0x4c, 0xf4, 0xee, 0x88, 0x23, 0xc7, 0x3e, 0xeb, 0x37, 0xf5 -.byte 0xb5, 0x19, 0xf8, 0x49, 0x68, 0xb0, 0xde, 0xd7, 0xb9, 0x76, 0x38, 0x1d, 0x61, 0x9e, 0xa4, 0xfe -.byte 0x82, 0x36, 0xa5, 0xe5, 0x4a, 0x56, 0xe4, 0x45, 0xe1, 0xf9, 0xfd, 0xb4, 0x16, 0xfa, 0x74, 0xda -.byte 0x9c, 0x9b, 0x35, 0x39, 0x2f, 0xfa, 0xb0, 0x20, 0x50, 0x06, 0x6c, 0x7a, 0xd0, 0x80, 0xb2, 0xa6 -.byte 0xf9, 0xaf, 0xec, 0x47, 0x19, 0x8f, 0x50, 0x38, 0x07, 0xdc, 0xa2, 0x87, 0x39, 0x58, 0xf8, 0xba -.byte 0xd5, 0xa9, 0xf9, 0x48, 0x67, 0x30, 0x96, 0xee, 0x94, 0x78, 0x5e, 0x6f, 0x89, 0xa3, 0x51, 0xc0 -.byte 0x30, 0x86, 0x66, 0xa1, 0x45, 0x66, 0xba, 0x54, 0xeb, 0xa3, 0xc3, 0x91, 0xf9, 0x48, 0xdc, 0xff -.byte 0xd1, 0xe8, 0x30, 0x2d, 0x7d, 0x2d, 0x74, 0x70, 0x35, 0xd7, 0x88, 0x24, 0xf7, 0x9e, 0xc4, 0x59 -.byte 0x6e, 0xbb, 0x73, 0x87, 0x17, 0xf2, 0x32, 0x46, 0x28, 0xb8, 0x43, 0xfa, 0xb7, 0x1d, 0xaa, 0xca -.byte 0xb4, 0xf2, 0x9f, 0x24, 0x0e, 0x2d, 0x4b, 0xf7, 0x71, 0x5c, 0x5e, 0x69, 0xff, 0xea, 0x95, 0x02 -.byte 0xcb, 0x38, 0x8a, 0xae, 0x50, 0x38, 0x6f, 0xdb, 0xfb, 0x2d, 0x62, 0x1b, 0xc5, 0xc7, 0x1e, 0x54 -.byte 0xe1, 0x77, 0xe0, 0x67, 0xc8, 0x0f, 0x9c, 0x87, 0x23, 0xd6, 0x3f, 0x40, 0x20, 0x7f, 0x20, 0x80 -.byte 0xc4, 0x80, 0x4c, 0x3e, 0x3b, 0x24, 0x26, 0x8e, 0x04, 0xae, 0x6c, 0x9a, 0xc8, 0xaa, 0x0d, 0x02 -.byte 0x03, 0x01, 0x00, 0x01, 0x3b, 0x00, 0x26, 0x02, 0x30, 0x39, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03 -.byte 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x0f, 0x30, 0x0d, 0x06, 0x03, 0x55, 0x04, 0x0a -.byte 0x13, 0x06, 0x41, 0x6d, 0x61, 0x7a, 0x6f, 0x6e, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04 -.byte 0x03, 0x13, 0x10, 0x41, 0x6d, 0x61, 0x7a, 0x6f, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43 -.byte 0x41, 0x20, 0x32, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7 -.byte 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02 -.byte 0x82, 0x02, 0x01, 0x00, 0xad, 0x96, 0x9f, 0x2d, 0x9c, 0x4a, 0x4c, 0x4a, 0x81, 0x79, 0x51, 0x99 -.byte 0xec, 0x8a, 0xcb, 0x6b, 0x60, 0x51, 0x13, 0xbc, 0x4d, 0x6d, 0x06, 0xfc, 0xb0, 0x08, 0x8d, 0xdd -.byte 0x19, 0x10, 0x6a, 0xc7, 0x26, 0x0c, 0x35, 0xd8, 0xc0, 0x6f, 0x20, 0x84, 0xe9, 0x94, 0xb1, 0x9b -.byte 0x85, 0x03, 0xc3, 0x5b, 0xdb, 0x4a, 0xe8, 0xc8, 0xf8, 0x90, 0x76, 0xd9, 0x5b, 0x4f, 0xe3, 0x4c -.byte 0xe8, 0x06, 0x36, 0x4d, 0xcc, 0x9a, 0xac, 0x3d, 0x0c, 0x90, 0x2b, 0x92, 0xd4, 0x06, 0x19, 0x60 -.byte 0xac, 0x37, 0x44, 0x79, 0x85, 0x81, 0x82, 0xad, 0x5a, 0x37, 0xe0, 0x0d, 0xcc, 0x9d, 0xa6, 0x4c -.byte 0x52, 0x76, 0xea, 0x43, 0x9d, 0xb7, 0x04, 0xd1, 0x50, 0xf6, 0x55, 0xe0, 0xd5, 0xd2, 0xa6, 0x49 -.byte 0x85, 0xe9, 0x37, 0xe9, 0xca, 0x7e, 0xae, 0x5c, 0x95, 0x4d, 0x48, 0x9a, 0x3f, 0xae, 0x20, 0x5a -.byte 0x6d, 0x88, 0x95, 0xd9, 0x34, 0xb8, 0x52, 0x1a, 0x43, 0x90, 0xb0, 0xbf, 0x6c, 0x05, 0xb9, 0xb6 -.byte 0x78, 0xb7, 0xea, 0xd0, 0xe4, 0x3a, 0x3c, 0x12, 0x53, 0x62, 0xff, 0x4a, 0xf2, 0x7b, 0xbe, 0x35 -.byte 0x05, 0xa9, 0x12, 0x34, 0xe3, 0xf3, 0x64, 0x74, 0x62, 0x2c, 0x3d, 0x00, 0x49, 0x5a, 0x28, 0xfe -.byte 0x32, 0x44, 0xbb, 0x87, 0xdd, 0x65, 0x27, 0x02, 0x71, 0x3b, 0xda, 0x4a, 0xf7, 0x1f, 0xda, 0xcd -.byte 0xf7, 0x21, 0x55, 0x90, 0x4f, 0x0f, 0xec, 0xae, 0x82, 0xe1, 0x9f, 0x6b, 0xd9, 0x45, 0xd3, 0xbb -.byte 0xf0, 0x5f, 0x87, 0xed, 0x3c, 0x2c, 0x39, 0x86, 0xda, 0x3f, 0xde, 0xec, 0x72, 0x55, 0xeb, 0x79 -.byte 0xa3, 0xad, 0xdb, 0xdd, 0x7c, 0xb0, 0xba, 0x1c, 0xce, 0xfc, 0xde, 0x4f, 0x35, 0x76, 0xcf, 0x0f -.byte 0xf8, 0x78, 0x1f, 0x6a, 0x36, 0x51, 0x46, 0x27, 0x61, 0x5b, 0xe9, 0x9e, 0xcf, 0xf0, 0xa2, 0x55 -.byte 0x7d, 0x7c, 0x25, 0x8a, 0x6f, 0x2f, 0xb4, 0xc5, 0xcf, 0x84, 0x2e, 0x2b, 0xfd, 0x0d, 0x51, 0x10 -.byte 0x6c, 0xfb, 0x5f, 0x1b, 0xbc, 0x1b, 0x7e, 0xc5, 0xae, 0x3b, 0x98, 0x01, 0x31, 0x92, 0xff, 0x0b -.byte 0x57, 0xf4, 0x9a, 0xb2, 0xb9, 0x57, 0xe9, 0xab, 0xef, 0x0d, 0x76, 0xd1, 0xf0, 0xee, 0xf4, 0xce -.byte 0x86, 0xa7, 0xe0, 0x6e, 0xe9, 0xb4, 0x69, 0xa1, 0xdf, 0x69, 0xf6, 0x33, 0xc6, 0x69, 0x2e, 0x97 -.byte 0x13, 0x9e, 0xa5, 0x87, 0xb0, 0x57, 0x10, 0x81, 0x37, 0xc9, 0x53, 0xb3, 0xbb, 0x7f, 0xf6, 0x92 -.byte 0xd1, 0x9c, 0xd0, 0x18, 0xf4, 0x92, 0x6e, 0xda, 0x83, 0x4f, 0xa6, 0x63, 0x99, 0x4c, 0xa5, 0xfb -.byte 0x5e, 0xef, 0x21, 0x64, 0x7a, 0x20, 0x5f, 0x6c, 0x64, 0x85, 0x15, 0xcb, 0x37, 0xe9, 0x62, 0x0c -.byte 0x0b, 0x2a, 0x16, 0xdc, 0x01, 0x2e, 0x32, 0xda, 0x3e, 0x4b, 0xf5, 0x9e, 0x3a, 0xf6, 0x17, 0x40 -.byte 0x94, 0xef, 0x9e, 0x91, 0x08, 0x86, 0xfa, 0xbe, 0x63, 0xa8, 0x5a, 0x33, 0xec, 0xcb, 0x74, 0x43 -.byte 0x95, 0xf9, 0x6c, 0x69, 0x52, 0x36, 0xc7, 0x29, 0x6f, 0xfc, 0x55, 0x03, 0x5c, 0x1f, 0xfb, 0x9f -.byte 0xbd, 0x47, 0xeb, 0xe7, 0x49, 0x47, 0x95, 0x0b, 0x4e, 0x89, 0x22, 0x09, 0x49, 0xe0, 0xf5, 0x61 -.byte 0x1e, 0xf1, 0xbf, 0x2e, 0x8a, 0x72, 0x6e, 0x80, 0x59, 0xff, 0x57, 0x3a, 0xf9, 0x75, 0x32, 0xa3 -.byte 0x4e, 0x5f, 0xec, 0xed, 0x28, 0x62, 0xd9, 0x4d, 0x73, 0xf2, 0xcc, 0x81, 0x17, 0x60, 0xed, 0xcd -.byte 0xeb, 0xdc, 0xdb, 0xa7, 0xca, 0xc5, 0x7e, 0x02, 0xbd, 0xf2, 0x54, 0x08, 0x54, 0xfd, 0xb4, 0x2d -.byte 0x09, 0x2c, 0x17, 0x54, 0x4a, 0x98, 0xd1, 0x54, 0xe1, 0x51, 0x67, 0x08, 0xd2, 0xed, 0x6e, 0x7e -.byte 0x6f, 0x3f, 0xd2, 0x2d, 0x81, 0x59, 0x29, 0x66, 0xcb, 0x90, 0x39, 0x95, 0x11, 0x1e, 0x74, 0x27 -.byte 0xfe, 0xdd, 0xeb, 0xaf, 0x02, 0x03, 0x01, 0x00, 0x01, 0x3b, 0x00, 0x5b, 0x00, 0x30, 0x39, 0x31 -.byte 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x0f, 0x30, 0x0d -.byte 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x06, 0x41, 0x6d, 0x61, 0x7a, 0x6f, 0x6e, 0x31, 0x19, 0x30 -.byte 0x17, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x10, 0x41, 0x6d, 0x61, 0x7a, 0x6f, 0x6e, 0x20, 0x52 -.byte 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x33, 0x30, 0x59, 0x30, 0x13, 0x06, 0x07, 0x2a, 0x86 -.byte 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x08, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x03, 0x01, 0x07, 0x03 -.byte 0x42, 0x00, 0x04, 0x29, 0x97, 0xa7, 0xc6, 0x41, 0x7f, 0xc0, 0x0d, 0x9b, 0xe8, 0x01, 0x1b, 0x56 -.byte 0xc6, 0xf2, 0x52, 0xa5, 0xba, 0x2d, 0xb2, 0x12, 0xe8, 0xd2, 0x2e, 0xd7, 0xfa, 0xc9, 0xc5, 0xd8 -.byte 0xaa, 0x6d, 0x1f, 0x73, 0x81, 0x3b, 0x3b, 0x98, 0x6b, 0x39, 0x7c, 0x33, 0xa5, 0xc5, 0x4e, 0x86 -.byte 0x8e, 0x80, 0x17, 0x68, 0x62, 0x45, 0x57, 0x7d, 0x44, 0x58, 0x1d, 0xb3, 0x37, 0xe5, 0x67, 0x08 -.byte 0xeb, 0x66, 0xde, 0x3b, 0x00, 0x78, 0x00, 0x30, 0x39, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55 -.byte 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x0f, 0x30, 0x0d, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13 -.byte 0x06, 0x41, 0x6d, 0x61, 0x7a, 0x6f, 0x6e, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x03 -.byte 0x13, 0x10, 0x41, 0x6d, 0x61, 0x7a, 0x6f, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41 -.byte 0x20, 0x34, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06 -.byte 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0xd2, 0xab, 0x8a, 0x37, 0x4f, 0xa3 -.byte 0x53, 0x0d, 0xfe, 0xc1, 0x8a, 0x7b, 0x4b, 0xa8, 0x7b, 0x46, 0x4b, 0x63, 0xb0, 0x62, 0xf6, 0x2d -.byte 0x1b, 0xdb, 0x08, 0x71, 0x21, 0xd2, 0x00, 0xe8, 0x63, 0xbd, 0x9a, 0x27, 0xfb, 0xf0, 0x39, 0x6e -.byte 0x5d, 0xea, 0x3d, 0xa5, 0xc9, 0x81, 0xaa, 0xa3, 0x5b, 0x20, 0x98, 0x45, 0x5d, 0x16, 0xdb, 0xfd -.byte 0xe8, 0x10, 0x6d, 0xe3, 0x9c, 0xe0, 0xe3, 0xbd, 0x5f, 0x84, 0x62, 0xf3, 0x70, 0x64, 0x33, 0xa0 -.byte 0xcb, 0x24, 0x2f, 0x70, 0xba, 0x88, 0xa1, 0x2a, 0xa0, 0x75, 0xf8, 0x81, 0xae, 0x62, 0x06, 0xc4 -.byte 0x81, 0xdb, 0x39, 0x6e, 0x29, 0xb0, 0x1e, 0xfa, 0x2e, 0x5c, 0x3d, 0x00, 0x26, 0x02, 0x30, 0x3b -.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x45, 0x53, 0x31, 0x11, 0x30 -.byte 0x0f, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x08, 0x46, 0x4e, 0x4d, 0x54, 0x2d, 0x52, 0x43, 0x4d -.byte 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x0c, 0x10, 0x41, 0x43, 0x20, 0x52, 0x41 -.byte 0x49, 0x5a, 0x20, 0x46, 0x4e, 0x4d, 0x54, 0x2d, 0x52, 0x43, 0x4d, 0x30, 0x82, 0x02, 0x22, 0x30 -.byte 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82 -.byte 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xba, 0x71, 0x80, 0x7a -.byte 0x4c, 0x86, 0x6e, 0x7f, 0xc8, 0x13, 0x6d, 0xc0, 0xc6, 0x7d, 0x1c, 0x00, 0x97, 0x8f, 0x2c, 0x0c -.byte 0x23, 0xbb, 0x10, 0x9a, 0x40, 0xa9, 0x1a, 0xb7, 0x87, 0x88, 0xf8, 0x9b, 0x56, 0x6a, 0xfb, 0xe6 -.byte 0x7b, 0x8e, 0x8b, 0x92, 0x8e, 0xa7, 0x25, 0x5d, 0x59, 0x11, 0xdb, 0x36, 0x2e, 0xb7, 0x51, 0x17 -.byte 0x1f, 0xa9, 0x08, 0x1f, 0x04, 0x17, 0x24, 0x58, 0xaa, 0x37, 0x4a, 0x18, 0xdf, 0xe5, 0x39, 0xd4 -.byte 0x57, 0xfd, 0xd7, 0xc1, 0x2c, 0x91, 0x01, 0x91, 0xe2, 0x22, 0xd4, 0x03, 0xc0, 0x58, 0xfc, 0x77 -.byte 0x47, 0xec, 0x8f, 0x3e, 0x74, 0x43, 0xba, 0xac, 0x34, 0x8d, 0x4d, 0x38, 0x76, 0x67, 0x8e, 0xb0 -.byte 0xc8, 0x6f, 0x30, 0x33, 0x58, 0x71, 0x5c, 0xb4, 0xf5, 0x6b, 0x6e, 0xd4, 0x01, 0x50, 0xb8, 0x13 -.byte 0x7e, 0x6c, 0x4a, 0xa3, 0x49, 0xd1, 0x20, 0x19, 0xee, 0xbc, 0xc0, 0x29, 0x18, 0x65, 0xa7, 0xde -.byte 0xfe, 0xef, 0xdd, 0x0a, 0x90, 0x21, 0xe7, 0x1a, 0x67, 0x92, 0x42, 0x10, 0x98, 0x5f, 0x4f, 0x30 -.byte 0xbc, 0x3e, 0x1c, 0x45, 0xb4, 0x10, 0xd7, 0x68, 0x40, 0x14, 0xc0, 0x40, 0xfa, 0xe7, 0x77, 0x17 -.byte 0x7a, 0xe6, 0x0b, 0x8f, 0x65, 0x5b, 0x3c, 0xd9, 0x9a, 0x52, 0xdb, 0xb5, 0xbd, 0x9e, 0x46, 0xcf -.byte 0x3d, 0xeb, 0x91, 0x05, 0x02, 0xc0, 0x96, 0xb2, 0x76, 0x4c, 0x4d, 0x10, 0x96, 0x3b, 0x92, 0xfa -.byte 0x9c, 0x7f, 0x0f, 0x99, 0xdf, 0xbe, 0x23, 0x35, 0x45, 0x1e, 0x02, 0x5c, 0xfe, 0xb5, 0xa8, 0x9b -.byte 0x99, 0x25, 0xda, 0x5e, 0xf3, 0x22, 0xc3, 0x39, 0xf5, 0xe4, 0x2a, 0x2e, 0xd3, 0xc6, 0x1f, 0xc4 -.byte 0x6c, 0xaa, 0xc5, 0x1c, 0x6a, 0x01, 0x05, 0x4a, 0x2f, 0xd2, 0xc5, 0xc1, 0xa8, 0x34, 0x26, 0x5d -.byte 0x66, 0xa5, 0xd2, 0x02, 0x21, 0xf9, 0x18, 0xb7, 0x06, 0xf5, 0x4e, 0x99, 0x6f, 0xa8, 0xab, 0x4c -.byte 0x51, 0xe8, 0xcf, 0x50, 0x18, 0xc5, 0x77, 0xc8, 0x39, 0x09, 0x2c, 0x49, 0x92, 0x32, 0x99, 0xa8 -.byte 0xbb, 0x17, 0x17, 0x79, 0xb0, 0x5a, 0xc5, 0xe6, 0xa3, 0xc4, 0x59, 0x65, 0x47, 0x35, 0x83, 0x5e -.byte 0xa9, 0xe8, 0x35, 0x0b, 0x99, 0xbb, 0xe4, 0xcd, 0x20, 0xc6, 0x9b, 0x4a, 0x06, 0x39, 0xb5, 0x68 -.byte 0xfc, 0x22, 0xba, 0xee, 0x55, 0x8c, 0x2b, 0x4e, 0xea, 0xf3, 0xb1, 0xe3, 0xfc, 0xb6, 0x99, 0x9a -.byte 0xd5, 0x42, 0xfa, 0x71, 0x4d, 0x08, 0xcf, 0x87, 0x1e, 0x6a, 0x71, 0x7d, 0xf9, 0xd3, 0xb4, 0xe9 -.byte 0xa5, 0x71, 0x81, 0x7b, 0xc2, 0x4e, 0x47, 0x96, 0xa5, 0xf6, 0x76, 0x85, 0xa3, 0x28, 0x8f, 0xe9 -.byte 0x80, 0x6e, 0x81, 0x53, 0xa5, 0x6d, 0x5f, 0xb8, 0x48, 0xf9, 0xc2, 0xf9, 0x36, 0xa6, 0x2e, 0x49 -.byte 0xff, 0xb8, 0x96, 0xc2, 0x8c, 0x07, 0xb3, 0x9b, 0x88, 0x58, 0xfc, 0xeb, 0x1b, 0x1c, 0xde, 0x2d -.byte 0x70, 0xe2, 0x97, 0x92, 0x30, 0xa1, 0x89, 0xe3, 0xbc, 0x55, 0xa8, 0x27, 0xd6, 0x4b, 0xed, 0x90 -.byte 0xad, 0x8b, 0xfa, 0x63, 0x25, 0x59, 0x2d, 0xa8, 0x35, 0xdd, 0xca, 0x97, 0x33, 0xbc, 0xe5, 0xcd -.byte 0xc7, 0x9d, 0xd1, 0xec, 0xef, 0x5e, 0x0e, 0x4a, 0x90, 0x06, 0x26, 0x63, 0xad, 0xb9, 0xd9, 0x35 -.byte 0x2d, 0x07, 0xba, 0x76, 0x65, 0x2c, 0xac, 0x57, 0x8f, 0x7d, 0xf4, 0x07, 0x94, 0xd7, 0x81, 0x02 -.byte 0x96, 0x5d, 0xa3, 0x07, 0x49, 0xd5, 0x7a, 0xd0, 0x57, 0xf9, 0x1b, 0xe7, 0x53, 0x46, 0x75, 0xaa -.byte 0xb0, 0x79, 0x42, 0xcb, 0x68, 0x71, 0x08, 0xe9, 0x60, 0xbd, 0x39, 0x69, 0xce, 0xf4, 0xaf, 0xc3 -.byte 0x56, 0x40, 0xc7, 0xad, 0x52, 0xa2, 0x09, 0xe4, 0x6f, 0x86, 0x47, 0x8a, 0x1f, 0xeb, 0x28, 0x27 -.byte 0x5d, 0x83, 0x20, 0xaf, 0x04, 0xc9, 0x6c, 0x56, 0x9a, 0x8b, 0x46, 0xf5, 0x02, 0x03, 0x01, 0x00 -.byte 0x01, 0x3d, 0x00, 0x26, 0x01, 0x30, 0x3b, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06 -.byte 0x13, 0x02, 0x52, 0x4f, 0x31, 0x11, 0x30, 0x0f, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x08, 0x63 -.byte 0x65, 0x72, 0x74, 0x53, 0x49, 0x47, 0x4e, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0b -.byte 0x13, 0x10, 0x63, 0x65, 0x72, 0x74, 0x53, 0x49, 0x47, 0x4e, 0x20, 0x52, 0x4f, 0x4f, 0x54, 0x20 -.byte 0x43, 0x41, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d -.byte 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82 -.byte 0x01, 0x01, 0x00, 0xb7, 0x33, 0xb9, 0x7e, 0xc8, 0x25, 0x4a, 0x8e, 0xb5, 0xdb, 0xb4, 0x28, 0x1b -.byte 0xaa, 0x57, 0x90, 0xe8, 0xd1, 0x22, 0xd3, 0x64, 0xba, 0xd3, 0x93, 0xe8, 0xd4, 0xac, 0x86, 0x61 -.byte 0x40, 0x6a, 0x60, 0x57, 0x68, 0x54, 0x84, 0x4d, 0xbc, 0x6a, 0x54, 0x02, 0x05, 0xff, 0xdf, 0x9b -.byte 0x9a, 0x2a, 0xae, 0x5d, 0x07, 0x8f, 0x4a, 0xc3, 0x28, 0x7f, 0xef, 0xfb, 0x2b, 0xfa, 0x79, 0xf1 -.byte 0xc7, 0xad, 0xf0, 0x10, 0x53, 0x24, 0x90, 0x8b, 0x66, 0xc9, 0xa8, 0x88, 0xab, 0xaf, 0x5a, 0xa3 -.byte 0x00, 0xe9, 0xbe, 0xba, 0x46, 0xee, 0x5b, 0x73, 0x7b, 0x2c, 0x17, 0x82, 0x81, 0x5e, 0x62, 0x2c -.byte 0xa1, 0x02, 0x65, 0xb3, 0xbd, 0xc5, 0x2b, 0x00, 0x7e, 0xc4, 0xfc, 0x03, 0x33, 0x57, 0x0d, 0xed -.byte 0xe2, 0xfa, 0xce, 0x5d, 0x45, 0xd6, 0x38, 0xcd, 0x35, 0xb6, 0xb2, 0xc1, 0xd0, 0x9c, 0x81, 0x4a -.byte 0xaa, 0xe4, 0xb2, 0x01, 0x5c, 0x1d, 0x8f, 0x5f, 0x99, 0xc4, 0xb1, 0xad, 0xdb, 0x88, 0x21, 0xeb -.byte 0x90, 0x08, 0x82, 0x80, 0xf3, 0x30, 0xa3, 0x43, 0xe6, 0x90, 0x82, 0xae, 0x55, 0x28, 0x49, 0xed -.byte 0x5b, 0xd7, 0xa9, 0x10, 0x38, 0x0e, 0xfe, 0x8f, 0x4c, 0x5b, 0x9b, 0x46, 0xea, 0x41, 0xf5, 0xb0 -.byte 0x08, 0x74, 0xc3, 0xd0, 0x88, 0x33, 0xb6, 0x7c, 0xd7, 0x74, 0xdf, 0xdc, 0x84, 0xd1, 0x43, 0x0e -.byte 0x75, 0x39, 0xa1, 0x25, 0x40, 0x28, 0xea, 0x78, 0xcb, 0x0e, 0x2c, 0x2e, 0x39, 0x9d, 0x8c, 0x8b -.byte 0x6e, 0x16, 0x1c, 0x2f, 0x26, 0x82, 0x10, 0xe2, 0xe3, 0x65, 0x94, 0x0a, 0x04, 0xc0, 0x5e, 0xf7 -.byte 0x5d, 0x5b, 0xf8, 0x10, 0xe2, 0xd0, 0xba, 0x7a, 0x4b, 0xfb, 0xde, 0x37, 0x00, 0x00, 0x1a, 0x5b -.byte 0x28, 0xe3, 0xd2, 0x9c, 0x73, 0x3e, 0x32, 0x87, 0x98, 0xa1, 0xc9, 0x51, 0x2f, 0xd7, 0xde, 0xac -.byte 0x33, 0xb3, 0x4f, 0x02, 0x03, 0x01, 0x00, 0x01, 0x3e, 0x00, 0x26, 0x01, 0x30, 0x3c, 0x31, 0x1e -.byte 0x30, 0x1c, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x15, 0x41, 0x74, 0x6f, 0x73, 0x20, 0x54, 0x72 -.byte 0x75, 0x73, 0x74, 0x65, 0x64, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x32, 0x30, 0x31, 0x31, 0x31, 0x0d -.byte 0x30, 0x0b, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x04, 0x41, 0x74, 0x6f, 0x73, 0x31, 0x0b, 0x30 -.byte 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x44, 0x45, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d -.byte 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01 -.byte 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0x95, 0x85, 0x3b, 0x97, 0x6f -.byte 0x2a, 0x3b, 0x2e, 0x3b, 0xcf, 0xa6, 0xf3, 0x29, 0x35, 0xbe, 0xcf, 0x18, 0xac, 0x3e, 0xaa, 0xd9 -.byte 0xf8, 0x4d, 0xa0, 0x3e, 0x1a, 0x47, 0xb9, 0xbc, 0x9a, 0xdf, 0xf2, 0xfe, 0xcc, 0x3e, 0x47, 0xe8 -.byte 0x7a, 0x96, 0xc2, 0x24, 0x8e, 0x35, 0xf4, 0xa9, 0x0c, 0xfc, 0x82, 0xfd, 0x6d, 0xc1, 0x72, 0x62 -.byte 0x27, 0xbd, 0xea, 0x6b, 0xeb, 0xe7, 0x8a, 0xcc, 0x54, 0x3e, 0x90, 0x50, 0xcf, 0x80, 0xd4, 0x95 -.byte 0xfb, 0xe8, 0xb5, 0x82, 0xd4, 0x14, 0xc5, 0xb6, 0xa9, 0x55, 0x25, 0x57, 0xdb, 0xb1, 0x50, 0xf6 -.byte 0xb0, 0x60, 0x64, 0x59, 0x7a, 0x69, 0xcf, 0x03, 0xb7, 0x6f, 0x0d, 0xbe, 0xca, 0x3e, 0x6f, 0x74 -.byte 0x72, 0xea, 0xaa, 0x30, 0x2a, 0x73, 0x62, 0xbe, 0x49, 0x91, 0x61, 0xc8, 0x11, 0xfe, 0x0e, 0x03 -.byte 0x2a, 0xf7, 0x6a, 0x20, 0xdc, 0x02, 0x15, 0x0d, 0x5e, 0x15, 0x6a, 0xfc, 0xe3, 0x82, 0xc1, 0xb5 -.byte 0xc5, 0x9d, 0x64, 0x09, 0x6c, 0xa3, 0x59, 0x98, 0x07, 0x27, 0xc7, 0x1b, 0x96, 0x2b, 0x61, 0x74 -.byte 0x71, 0x6c, 0x43, 0xf1, 0xf7, 0x35, 0x89, 0x10, 0xe0, 0x9e, 0xec, 0x55, 0xa1, 0x37, 0x22, 0xa2 -.byte 0x87, 0x04, 0x05, 0x2c, 0x47, 0x7d, 0xb4, 0x1c, 0xb9, 0x62, 0x29, 0x66, 0x28, 0xca, 0xb7, 0xe1 -.byte 0x93, 0xf5, 0xa4, 0x94, 0x03, 0x99, 0xb9, 0x70, 0x85, 0xb5, 0xe6, 0x48, 0xea, 0x8d, 0x50, 0xfc -.byte 0xd9, 0xde, 0xcc, 0x6f, 0x07, 0x0e, 0xdd, 0x0b, 0x72, 0x9d, 0x80, 0x30, 0x16, 0x07, 0x95, 0x3f -.byte 0x28, 0x0e, 0xfd, 0xc5, 0x75, 0x4f, 0x53, 0xd6, 0x74, 0x9a, 0xb4, 0x24, 0x2e, 0x8e, 0x02, 0x91 -.byte 0xcf, 0x76, 0xc5, 0x9b, 0x1e, 0x55, 0x74, 0x9c, 0x78, 0x21, 0xb1, 0xf0, 0x2d, 0xf1, 0x0b, 0x9f -.byte 0xc2, 0xd5, 0x96, 0x18, 0x1f, 0xf0, 0x54, 0x22, 0x7a, 0x8c, 0x07, 0x02, 0x03, 0x01, 0x00, 0x01 -.byte 0x3f, 0x00, 0x26, 0x02, 0x30, 0x3d, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13 -.byte 0x02, 0x43, 0x4e, 0x31, 0x11, 0x30, 0x0f, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x08, 0x55, 0x6e -.byte 0x69, 0x54, 0x72, 0x75, 0x73, 0x74, 0x31, 0x1b, 0x30, 0x19, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c -.byte 0x12, 0x55, 0x43, 0x41, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x47, 0x32, 0x20, 0x52 -.byte 0x6f, 0x6f, 0x74, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7 -.byte 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02 -.byte 0x82, 0x02, 0x01, 0x00, 0xc5, 0xe6, 0x2b, 0x6f, 0x7c, 0xef, 0x26, 0x05, 0x27, 0xa3, 0x81, 0x24 -.byte 0xda, 0x6f, 0xcb, 0x01, 0xf9, 0x99, 0x9a, 0xa9, 0x32, 0xc2, 0x22, 0x87, 0x61, 0x41, 0x91, 0x3b -.byte 0xcb, 0xc3, 0x68, 0x1b, 0x06, 0xc5, 0x4c, 0xa9, 0x2b, 0xc1, 0x67, 0x17, 0x22, 0x1d, 0x2b, 0xed -.byte 0xf9, 0x29, 0x89, 0x93, 0xa2, 0x78, 0xbd, 0x92, 0x6b, 0xa0, 0xa3, 0x0d, 0xa2, 0x7e, 0xca, 0x93 -.byte 0xb3, 0xa6, 0xd1, 0x8c, 0x35, 0xd5, 0x75, 0xf9, 0x17, 0xf6, 0xcf, 0x45, 0xc5, 0xe5, 0x7a, 0xec -.byte 0x77, 0x93, 0xa0, 0x8f, 0x23, 0xae, 0x0e, 0x1a, 0x03, 0x7f, 0xbe, 0xd4, 0xd0, 0xed, 0x2e, 0x7b -.byte 0xab, 0x46, 0x23, 0x5b, 0xff, 0x2c, 0xe6, 0x54, 0x7a, 0x94, 0xc0, 0x2a, 0x15, 0xf0, 0xc9, 0x8d -.byte 0xb0, 0x7a, 0x3b, 0x24, 0xe1, 0xd7, 0x68, 0xe2, 0x31, 0x3c, 0x06, 0x33, 0x46, 0xb6, 0x54, 0x11 -.byte 0xa6, 0xa5, 0x2f, 0x22, 0x54, 0x2a, 0x58, 0x0d, 0x01, 0x02, 0xf1, 0xfa, 0x15, 0x51, 0x67, 0x6c -.byte 0xc0, 0xfa, 0xd7, 0xb6, 0x1b, 0x7f, 0xd1, 0x56, 0x88, 0x2f, 0x1a, 0x3a, 0x8d, 0x3b, 0xbb, 0x82 -.byte 0x11, 0xe0, 0x47, 0x00, 0xd0, 0x52, 0x87, 0xab, 0xfb, 0x86, 0x7e, 0x0f, 0x24, 0x6b, 0x40, 0x9d -.byte 0x34, 0x67, 0xbc, 0x8d, 0xc7, 0x2d, 0x86, 0x6f, 0x79, 0x3e, 0x8e, 0xa9, 0x3c, 0x17, 0x4b, 0x7f -.byte 0xb0, 0x99, 0xe3, 0xb0, 0x71, 0x60, 0xdc, 0x0b, 0xf5, 0x64, 0xc3, 0xce, 0x43, 0xbc, 0x6d, 0x71 -.byte 0xb9, 0xd2, 0xde, 0x27, 0x5b, 0x8a, 0xe8, 0xd8, 0xc6, 0xae, 0xe1, 0x59, 0x7d, 0xcf, 0x28, 0x2d -.byte 0x35, 0xb8, 0x95, 0x56, 0x1a, 0xf1, 0xb2, 0x58, 0x4b, 0xb7, 0x12, 0x37, 0xc8, 0x7c, 0xb3, 0xed -.byte 0x4b, 0x80, 0xe1, 0x8d, 0xfa, 0x32, 0x23, 0xb6, 0x6f, 0xb7, 0x48, 0x95, 0x08, 0xb1, 0x44, 0x4e -.byte 0x85, 0x8c, 0x3a, 0x02, 0x54, 0x20, 0x2f, 0xdf, 0xbf, 0x57, 0x4f, 0x3b, 0x3a, 0x90, 0x21, 0xd7 -.byte 0xc1, 0x26, 0x35, 0x54, 0x20, 0xec, 0xc7, 0x3f, 0x47, 0xec, 0xef, 0x5a, 0xbf, 0x4b, 0x7a, 0xc1 -.byte 0xad, 0x3b, 0x17, 0x50, 0x5c, 0x62, 0xd8, 0x0f, 0x4b, 0x4a, 0xdc, 0x2b, 0xfa, 0x6e, 0xbc, 0x73 -.byte 0x92, 0xcd, 0xec, 0xc7, 0x50, 0xe8, 0x41, 0x96, 0xd7, 0xa9, 0x7e, 0x6d, 0xd8, 0xe9, 0x1d, 0x8f -.byte 0x8a, 0xb5, 0xb9, 0x58, 0x92, 0xba, 0x4a, 0x92, 0x2b, 0x0c, 0x56, 0xfd, 0x80, 0xeb, 0x08, 0xf0 -.byte 0x5e, 0x29, 0x6e, 0x1b, 0x1c, 0x0c, 0xaf, 0x8f, 0x93, 0x89, 0xad, 0xdb, 0xbd, 0xa3, 0x9e, 0x21 -.byte 0xca, 0x89, 0x19, 0xec, 0xdf, 0xb5, 0xc3, 0x1a, 0xeb, 0x16, 0xfe, 0x78, 0x36, 0x4c, 0xd6, 0x6e -.byte 0xd0, 0x3e, 0x17, 0x1c, 0x90, 0x17, 0x6b, 0x26, 0xba, 0xfb, 0x7a, 0x2f, 0xbf, 0x11, 0x1c, 0x18 -.byte 0x0e, 0x2d, 0x73, 0x03, 0x8f, 0xa0, 0xe5, 0x35, 0xa0, 0x5a, 0xe2, 0x4c, 0x75, 0x1d, 0x71, 0xe1 -.byte 0x39, 0x38, 0x53, 0x78, 0x40, 0xcc, 0x83, 0x93, 0xd7, 0x0a, 0x9e, 0x9d, 0x5b, 0x8f, 0x8a, 0xe4 -.byte 0xe5, 0xe0, 0x48, 0xe4, 0x48, 0xb2, 0x47, 0xcd, 0x4e, 0x2a, 0x75, 0x2a, 0x7b, 0xf2, 0x22, 0xf6 -.byte 0xc9, 0xbe, 0x09, 0x91, 0x96, 0x57, 0x7a, 0x88, 0x88, 0xac, 0xee, 0x70, 0xac, 0xf9, 0xdc, 0x29 -.byte 0xe3, 0x0c, 0x1c, 0x3b, 0x12, 0x4e, 0x44, 0xd6, 0xa7, 0x4e, 0xb0, 0x26, 0xc8, 0xf3, 0xd9, 0x1a -.byte 0x97, 0x91, 0x68, 0xea, 0xef, 0x8d, 0x46, 0x06, 0xd2, 0x56, 0x45, 0x58, 0x9a, 0x3c, 0x0c, 0x0f -.byte 0x83, 0xb8, 0x05, 0x25, 0xc3, 0x39, 0xcf, 0x3b, 0xa4, 0x34, 0x89, 0xb7, 0x79, 0x12, 0x2f, 0x47 -.byte 0xc5, 0xe7, 0xa9, 0x97, 0x69, 0xfc, 0xa6, 0x77, 0x67, 0xb5, 0xdf, 0x7b, 0xf1, 0x7a, 0x65, 0x15 -.byte 0xe4, 0x61, 0x56, 0x65, 0x02, 0x03, 0x01, 0x00, 0x01, 0x3f, 0x00, 0x78, 0x00, 0x30, 0x3d, 0x31 -.byte 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x12, 0x30, 0x10 -.byte 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x09, 0x43, 0x65, 0x72, 0x74, 0x61, 0x69, 0x6e, 0x6c, 0x79 -.byte 0x31, 0x1a, 0x30, 0x18, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x11, 0x43, 0x65, 0x72, 0x74, 0x61 -.byte 0x69, 0x6e, 0x6c, 0x79, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x45, 0x31, 0x30, 0x76, 0x30, 0x10 -.byte 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22 -.byte 0x03, 0x62, 0x00, 0x04, 0xde, 0x6f, 0xf8, 0x7f, 0x1c, 0xdf, 0xed, 0xf9, 0x47, 0x87, 0x86, 0xb1 -.byte 0xa4, 0xc0, 0x8a, 0xf8, 0x82, 0x97, 0x80, 0xea, 0x8f, 0xc8, 0x4a, 0x5e, 0x2a, 0x7d, 0x88, 0x68 -.byte 0xa7, 0x01, 0x62, 0x14, 0x91, 0x24, 0x7a, 0x5c, 0x9e, 0xa3, 0x17, 0x7d, 0x8a, 0x86, 0x21, 0x34 -.byte 0x18, 0x50, 0x1b, 0x10, 0xde, 0xd0, 0x37, 0x4b, 0x26, 0xc7, 0x19, 0x60, 0x80, 0xe9, 0x34, 0xbd -.byte 0x60, 0x19, 0x36, 0x40, 0xd6, 0x29, 0x87, 0x09, 0x3c, 0x91, 0x7a, 0xf6, 0xbc, 0x13, 0x23, 0xdd -.byte 0x59, 0x4e, 0x04, 0x5e, 0xcf, 0xc8, 0x02, 0x1c, 0x18, 0x53, 0xc1, 0x31, 0xd8, 0xda, 0x20, 0xe9 -.byte 0x44, 0x8d, 0xe4, 0x76, 0x3f, 0x00, 0x26, 0x02, 0x30, 0x3d, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03 -.byte 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a -.byte 0x13, 0x09, 0x43, 0x65, 0x72, 0x74, 0x61, 0x69, 0x6e, 0x6c, 0x79, 0x31, 0x1a, 0x30, 0x18, 0x06 -.byte 0x03, 0x55, 0x04, 0x03, 0x13, 0x11, 0x43, 0x65, 0x72, 0x74, 0x61, 0x69, 0x6e, 0x6c, 0x79, 0x20 -.byte 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x52, 0x31, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a -.byte 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30 -.byte 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xd0, 0x36, 0xd4, 0x1f, 0xea, 0xdd, 0xab, 0xe4 -.byte 0xd1, 0xb6, 0xe6, 0xfb, 0x22, 0xc0, 0xdd, 0x13, 0x0d, 0x6a, 0x7b, 0x22, 0x13, 0x1c, 0x97, 0x3c -.byte 0x68, 0x63, 0x66, 0x32, 0x9c, 0x03, 0xb5, 0x8d, 0xa4, 0x81, 0x83, 0xda, 0x78, 0x30, 0x11, 0xcf -.byte 0xdc, 0xb2, 0x2b, 0xbe, 0x92, 0xbf, 0x8e, 0xe4, 0xc4, 0x13, 0xbe, 0xa4, 0x68, 0x4c, 0xda, 0x02 -.byte 0x68, 0x16, 0x74, 0xbe, 0xb2, 0xdd, 0x04, 0xe4, 0x6b, 0x2a, 0xdd, 0x37, 0x1f, 0x60, 0x2c, 0xdb -.byte 0xf5, 0xf7, 0xa1, 0x7c, 0x95, 0xb7, 0x0c, 0x70, 0x86, 0x2e, 0xf1, 0x3a, 0xef, 0x52, 0xf7, 0xcc -.byte 0xd3, 0x9b, 0xf9, 0x8b, 0xbe, 0x0e, 0xdf, 0x31, 0xb7, 0x9d, 0x68, 0x5c, 0x92, 0xa6, 0xf5, 0xe5 -.byte 0xf3, 0x0a, 0x34, 0xb5, 0xff, 0x7b, 0xa2, 0xe4, 0x87, 0xa1, 0xc6, 0xaf, 0x17, 0x00, 0xef, 0x03 -.byte 0x91, 0xed, 0xa9, 0x1c, 0x4e, 0x71, 0x3d, 0xd2, 0x8b, 0x6c, 0x89, 0xf4, 0x78, 0x86, 0xe6, 0x6a -.byte 0x49, 0xa0, 0xce, 0xb5, 0xd2, 0xb0, 0xab, 0x9b, 0xf6, 0xf4, 0xd4, 0x2e, 0xe3, 0x72, 0xf9, 0x36 -.byte 0xc6, 0xeb, 0x15, 0xb7, 0x25, 0x8c, 0x3a, 0xfc, 0x25, 0x0d, 0xb3, 0x22, 0x73, 0x21, 0x74, 0xc8 -.byte 0x4a, 0x96, 0x61, 0x92, 0xf5, 0x2f, 0x0b, 0x18, 0xa5, 0xf4, 0xad, 0xe2, 0xee, 0x41, 0xbd, 0x01 -.byte 0x79, 0xfa, 0x96, 0x8c, 0x8d, 0x17, 0x02, 0x30, 0xb4, 0xf9, 0xaf, 0x78, 0x1a, 0x8c, 0xb4, 0x36 -.byte 0x10, 0x10, 0x07, 0x05, 0x70, 0xd0, 0xf4, 0x31, 0x90, 0x8a, 0x51, 0xc5, 0x86, 0x26, 0x79, 0xb2 -.byte 0x11, 0x88, 0x5e, 0xc5, 0xf0, 0x0a, 0x54, 0xcd, 0x49, 0xa6, 0xbf, 0x02, 0x9c, 0xd2, 0x44, 0xa7 -.byte 0xed, 0xe3, 0x78, 0xef, 0x46, 0x5e, 0x6d, 0x71, 0xd1, 0x79, 0x70, 0x1c, 0x46, 0x5f, 0x51, 0xe9 -.byte 0xc9, 0x37, 0xdc, 0x5f, 0x7e, 0x69, 0x7b, 0x41, 0xdf, 0x34, 0x45, 0xe0, 0x3b, 0x84, 0xf4, 0xa1 -.byte 0x8a, 0x0a, 0x36, 0x9e, 0x37, 0xcc, 0x62, 0x52, 0xe1, 0x89, 0x0d, 0x28, 0xf9, 0x7a, 0x23, 0xb1 -.byte 0x0d, 0x3d, 0x3d, 0x9a, 0xfd, 0x9d, 0x81, 0xef, 0x2c, 0x90, 0xc0, 0x7b, 0x44, 0x4e, 0xbb, 0x49 -.byte 0xe0, 0x0e, 0x4a, 0x56, 0x92, 0xbc, 0xcb, 0xb5, 0xdd, 0x79, 0x17, 0x89, 0x91, 0xde, 0x61, 0x89 -.byte 0x74, 0x92, 0xa8, 0xe3, 0x32, 0x85, 0xbe, 0x4e, 0x85, 0xa4, 0x4b, 0x59, 0xcb, 0x2b, 0xc5, 0x78 -.byte 0x8e, 0x71, 0x54, 0xd0, 0x02, 0x37, 0x99, 0x8c, 0xe5, 0x49, 0xea, 0xe0, 0x54, 0x72, 0xa4, 0x11 -.byte 0x06, 0x2f, 0x0b, 0x8c, 0xc1, 0x5b, 0xbe, 0xb5, 0xa1, 0xb0, 0x53, 0x6e, 0x9c, 0xb8, 0x60, 0x91 -.byte 0x1f, 0x59, 0x6b, 0xf9, 0x2d, 0xf4, 0x94, 0x0a, 0x97, 0xb5, 0xec, 0xc5, 0x76, 0x03, 0x54, 0x1b -.byte 0x65, 0x52, 0xba, 0x4c, 0x92, 0x56, 0x51, 0x35, 0xa0, 0x40, 0xd8, 0x29, 0xdb, 0xae, 0x52, 0x76 -.byte 0x3b, 0x2d, 0x30, 0x40, 0x9b, 0x8a, 0xd0, 0x42, 0x56, 0xb4, 0xb7, 0x88, 0x01, 0xa4, 0x87, 0x3b -.byte 0x53, 0x96, 0xcd, 0xa3, 0x16, 0x8f, 0xf3, 0x66, 0xaa, 0x17, 0xb1, 0xc7, 0x60, 0xe0, 0xc1, 0x43 -.byte 0x05, 0x0c, 0xee, 0x9b, 0x5b, 0x60, 0x6f, 0x06, 0x5c, 0x87, 0x5b, 0x27, 0xf9, 0x40, 0x11, 0x9e -.byte 0x9c, 0x33, 0xc1, 0xb7, 0xe5, 0x35, 0x57, 0x05, 0x7f, 0x27, 0xce, 0x17, 0x20, 0x8c, 0x1c, 0xfc -.byte 0xf1, 0xfb, 0xda, 0x31, 0x29, 0x49, 0xed, 0xf5, 0x0b, 0x84, 0xa7, 0x4f, 0xc1, 0xf6, 0x4e, 0xc2 -.byte 0x28, 0x9c, 0xfa, 0xee, 0xe0, 0xaf, 0x07, 0xfb, 0x33, 0x11, 0x7a, 0x21, 0x4f, 0x0b, 0x21, 0x10 -.byte 0xb6, 0x40, 0x3a, 0xab, 0x22, 0x3a, 0x04, 0x9c, 0x8b, 0x9b, 0x84, 0x86, 0x72, 0x9a, 0xd2, 0xa7 -.byte 0xa5, 0xc4, 0xb4, 0x75, 0x91, 0xa9, 0x2b, 0x23, 0x02, 0x03, 0x01, 0x00, 0x01, 0x43, 0x00, 0x26 -.byte 0x02, 0x30, 0x41, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x52, 0x4f -.byte 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0b, 0x43, 0x45, 0x52, 0x54, 0x53 -.byte 0x49, 0x47, 0x4e, 0x20, 0x53, 0x41, 0x31, 0x1c, 0x30, 0x1a, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13 -.byte 0x13, 0x63, 0x65, 0x72, 0x74, 0x53, 0x49, 0x47, 0x4e, 0x20, 0x52, 0x4f, 0x4f, 0x54, 0x20, 0x43 -.byte 0x41, 0x20, 0x47, 0x32, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86 -.byte 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a -.byte 0x02, 0x82, 0x02, 0x01, 0x00, 0xc0, 0xc5, 0x75, 0x19, 0x91, 0x7d, 0x44, 0x74, 0x74, 0x87, 0xfe -.byte 0x0e, 0x3b, 0x96, 0xdc, 0xd8, 0x01, 0x16, 0xcc, 0xee, 0x63, 0x91, 0xe7, 0x0b, 0x6f, 0xce, 0x3b -.byte 0x0a, 0x69, 0x1a, 0x7c, 0xc2, 0xe3, 0xaf, 0x82, 0x8e, 0x86, 0xd7, 0x5e, 0x8f, 0x57, 0xeb, 0xd3 -.byte 0x21, 0x59, 0xfd, 0x39, 0x37, 0x42, 0x30, 0xbe, 0x50, 0xea, 0xb6, 0x0f, 0xa9, 0x88, 0xd8, 0x2e -.byte 0x2d, 0x69, 0x21, 0xe7, 0xd1, 0x37, 0x18, 0x4e, 0x7d, 0x91, 0xd5, 0x16, 0x5f, 0x6b, 0x5b, 0x00 -.byte 0xc2, 0x39, 0x43, 0x0d, 0x36, 0x85, 0x52, 0xb9, 0x53, 0x65, 0x0f, 0x1d, 0x42, 0xe5, 0x8f, 0xcf -.byte 0x05, 0xd3, 0xee, 0xdc, 0x0c, 0x1a, 0xd9, 0xb8, 0x8b, 0x78, 0x22, 0x67, 0xe4, 0x69, 0xb0, 0x68 -.byte 0xc5, 0x3c, 0xe4, 0x6c, 0x5a, 0x46, 0xe7, 0xcd, 0xc7, 0xfa, 0xef, 0xc4, 0xec, 0x4b, 0xbd, 0x6a -.byte 0xa4, 0xac, 0xfd, 0xcc, 0x28, 0x51, 0xef, 0x92, 0xb4, 0x29, 0xab, 0xab, 0x35, 0x9a, 0x4c, 0xe4 -.byte 0xc4, 0x08, 0xc6, 0x26, 0xcc, 0xf8, 0x69, 0x9f, 0xe4, 0x9c, 0xf0, 0x29, 0xd3, 0x5c, 0xf9, 0xc6 -.byte 0x16, 0x25, 0x9e, 0x23, 0xc3, 0x20, 0xc1, 0x3d, 0x0f, 0x3f, 0x38, 0x40, 0xb0, 0xfe, 0x82, 0x44 -.byte 0x38, 0xaa, 0x5a, 0x1a, 0x8a, 0x6b, 0x63, 0x58, 0x38, 0xb4, 0x15, 0xd3, 0xb6, 0x11, 0x69, 0x7b -.byte 0x1e, 0x54, 0xee, 0x8c, 0x1a, 0x22, 0xac, 0x72, 0x97, 0x3f, 0x23, 0x59, 0x9b, 0xc9, 0x22, 0x84 -.byte 0xc1, 0x07, 0x4f, 0xcc, 0x7f, 0xe2, 0x57, 0xca, 0x12, 0x70, 0xbb, 0xa6, 0x65, 0xf3, 0x69, 0x75 -.byte 0x63, 0xbd, 0x95, 0xfb, 0x1b, 0x97, 0xcd, 0xe4, 0xa8, 0xaf, 0xf6, 0xd1, 0x4e, 0xa8, 0xd9, 0x8a -.byte 0x71, 0x24, 0xcd, 0x36, 0x3d, 0xbc, 0x96, 0xc4, 0xf1, 0x6c, 0xa9, 0xae, 0xe5, 0xcf, 0x0d, 0x6e -.byte 0x28, 0x0d, 0xb0, 0x0e, 0xb5, 0xca, 0x51, 0x7b, 0x78, 0x14, 0xc3, 0x20, 0x2f, 0x7f, 0xfb, 0x14 -.byte 0x55, 0xe1, 0x11, 0x99, 0xfd, 0xd5, 0x0a, 0xa1, 0x9e, 0x02, 0xe3, 0x62, 0x5f, 0xeb, 0x35, 0x4b -.byte 0x2c, 0xb8, 0x72, 0xe8, 0x3e, 0x3d, 0x4f, 0xac, 0x2c, 0xbb, 0x2e, 0x86, 0xe2, 0xa3, 0x76, 0x8f -.byte 0xe5, 0x93, 0x2a, 0xcf, 0xa5, 0xab, 0xc8, 0x5c, 0x8d, 0x4b, 0x06, 0xff, 0x12, 0x46, 0xac, 0x78 -.byte 0xcb, 0x14, 0x07, 0x35, 0xe0, 0xa9, 0xdf, 0x8b, 0xe9, 0xaf, 0x15, 0x4f, 0x16, 0x89, 0x5b, 0xbd -.byte 0xf6, 0x8d, 0xc6, 0x59, 0xae, 0x88, 0x85, 0x0e, 0xc1, 0x89, 0xeb, 0x1f, 0x67, 0xc5, 0x45, 0x8e -.byte 0xff, 0x6d, 0x37, 0x36, 0x2b, 0x78, 0x66, 0x83, 0x91, 0x51, 0x2b, 0x3d, 0xff, 0x51, 0x77, 0x76 -.byte 0x62, 0xa1, 0xec, 0x67, 0x3e, 0x3e, 0x81, 0x83, 0xe0, 0x56, 0xa9, 0x50, 0x1f, 0x1f, 0x7a, 0x99 -.byte 0xab, 0x63, 0xbf, 0x84, 0x17, 0x77, 0xf1, 0x0d, 0x3b, 0xdf, 0xf7, 0x9c, 0x61, 0xb3, 0x35, 0x98 -.byte 0x8a, 0x3a, 0xb2, 0xec, 0x3c, 0x1a, 0x37, 0x3f, 0x7e, 0x8f, 0x92, 0xcf, 0xd9, 0x12, 0x14, 0x64 -.byte 0xda, 0x10, 0x02, 0x15, 0x41, 0xff, 0x4f, 0xc4, 0xeb, 0x1c, 0xa3, 0xc9, 0xfa, 0x99, 0xf7, 0x46 -.byte 0xe9, 0xe1, 0x18, 0xd9, 0xb1, 0xb8, 0x32, 0x2d, 0xcb, 0x14, 0x0c, 0x50, 0xd8, 0x83, 0x65, 0x83 -.byte 0xee, 0xb9, 0x5c, 0xcf, 0xcb, 0x05, 0x5a, 0x4c, 0xfa, 0x19, 0x97, 0x6b, 0xd6, 0x5d, 0x13, 0xd3 -.byte 0xc2, 0x5c, 0x54, 0xbc, 0x32, 0x73, 0xa0, 0x78, 0xf5, 0xf1, 0x6d, 0x1e, 0xcb, 0x9f, 0xa5, 0xa6 -.byte 0x9f, 0x22, 0xdc, 0xd1, 0x51, 0x9e, 0x82, 0x79, 0x64, 0x60, 0x29, 0x13, 0x3e, 0xa3, 0xfd, 0x4f -.byte 0x72, 0x6a, 0xab, 0xe2, 0xd4, 0xe5, 0xb8, 0x24, 0x55, 0x2c, 0x44, 0x4b, 0x8a, 0x88, 0x44, 0x9c -.byte 0xca, 0x84, 0xd3, 0x2a, 0x3b, 0x02, 0x03, 0x01, 0x00, 0x01, 0x43, 0x00, 0x26, 0x02, 0x30, 0x41 -.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x14, 0x30 -.byte 0x12, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0b, 0x41, 0x66, 0x66, 0x69, 0x72, 0x6d, 0x54, 0x72 -.byte 0x75, 0x73, 0x74, 0x31, 0x1c, 0x30, 0x1a, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x13, 0x41, 0x66 -.byte 0x66, 0x69, 0x72, 0x6d, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x50, 0x72, 0x65, 0x6d, 0x69, 0x75 -.byte 0x6d, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01 -.byte 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02 -.byte 0x01, 0x00, 0xc4, 0x12, 0xdf, 0xa9, 0x5f, 0xfe, 0x41, 0xdd, 0xdd, 0xf5, 0x9f, 0x8a, 0xe3, 0xf6 -.byte 0xac, 0xe1, 0x3c, 0x78, 0x9a, 0xbc, 0xd8, 0xf0, 0x7f, 0x7a, 0xa0, 0x33, 0x2a, 0xdc, 0x8d, 0x20 -.byte 0x5b, 0xae, 0x2d, 0x6f, 0xe7, 0x93, 0xd9, 0x36, 0x70, 0x6a, 0x68, 0xcf, 0x8e, 0x51, 0xa3, 0x85 -.byte 0x5b, 0x67, 0x04, 0xa0, 0x10, 0x24, 0x6f, 0x5d, 0x28, 0x82, 0xc1, 0x97, 0x57, 0xd8, 0x48, 0x29 -.byte 0x13, 0xb6, 0xe1, 0xbe, 0x91, 0x4d, 0xdf, 0x85, 0x0c, 0x53, 0x18, 0x9a, 0x1e, 0x24, 0xa2, 0x4f -.byte 0x8f, 0xf0, 0xa2, 0x85, 0x0b, 0xcb, 0xf4, 0x29, 0x7f, 0xd2, 0xa4, 0x58, 0xee, 0x26, 0x4d, 0xc9 -.byte 0xaa, 0xa8, 0x7b, 0x9a, 0xd9, 0xfa, 0x38, 0xde, 0x44, 0x57, 0x15, 0xe5, 0xf8, 0x8c, 0xc8, 0xd9 -.byte 0x48, 0xe2, 0x0d, 0x16, 0x27, 0x1d, 0x1e, 0xc8, 0x83, 0x85, 0x25, 0xb7, 0xba, 0xaa, 0x55, 0x41 -.byte 0xcc, 0x03, 0x22, 0x4b, 0x2d, 0x91, 0x8d, 0x8b, 0xe6, 0x89, 0xaf, 0x66, 0xc7, 0xe9, 0xff, 0x2b -.byte 0xe9, 0x3c, 0xac, 0xda, 0xd2, 0xb3, 0xc3, 0xe1, 0x68, 0x9c, 0x89, 0xf8, 0x7a, 0x00, 0x56, 0xde -.byte 0xf4, 0x55, 0x95, 0x6c, 0xfb, 0xba, 0x64, 0xdd, 0x62, 0x8b, 0xdf, 0x0b, 0x77, 0x32, 0xeb, 0x62 -.byte 0xcc, 0x26, 0x9a, 0x9b, 0xbb, 0xaa, 0x62, 0x83, 0x4c, 0xb4, 0x06, 0x7a, 0x30, 0xc8, 0x29, 0xbf -.byte 0xed, 0x06, 0x4d, 0x97, 0xb9, 0x1c, 0xc4, 0x31, 0x2b, 0xd5, 0x5f, 0xbc, 0x53, 0x12, 0x17, 0x9c -.byte 0x99, 0x57, 0x29, 0x66, 0x77, 0x61, 0x21, 0x31, 0x07, 0x2e, 0x25, 0x49, 0x9d, 0x18, 0xf2, 0xee -.byte 0xf3, 0x2b, 0x71, 0x8c, 0xb5, 0xba, 0x39, 0x07, 0x49, 0x77, 0xfc, 0xef, 0x2e, 0x92, 0x90, 0x05 -.byte 0x8d, 0x2d, 0x2f, 0x77, 0x7b, 0xef, 0x43, 0xbf, 0x35, 0xbb, 0x9a, 0xd8, 0xf9, 0x73, 0xa7, 0x2c -.byte 0xf2, 0xd0, 0x57, 0xee, 0x28, 0x4e, 0x26, 0x5f, 0x8f, 0x90, 0x68, 0x09, 0x2f, 0xb8, 0xf8, 0xdc -.byte 0x06, 0xe9, 0x2e, 0x9a, 0x3e, 0x51, 0xa7, 0xd1, 0x22, 0xc4, 0x0a, 0xa7, 0x38, 0x48, 0x6c, 0xb3 -.byte 0xf9, 0xff, 0x7d, 0xab, 0x86, 0x57, 0xe3, 0xba, 0xd6, 0x85, 0x78, 0x77, 0xba, 0x43, 0xea, 0x48 -.byte 0x7f, 0xf6, 0xd8, 0xbe, 0x23, 0x6d, 0x1e, 0xbf, 0xd1, 0x36, 0x6c, 0x58, 0x5c, 0xf1, 0xee, 0xa4 -.byte 0x19, 0x54, 0x1a, 0xf5, 0x03, 0xd2, 0x76, 0xe6, 0xe1, 0x8c, 0xbd, 0x3c, 0xb3, 0xd3, 0x48, 0x4b -.byte 0xe2, 0xc8, 0xf8, 0x7f, 0x92, 0xa8, 0x76, 0x46, 0x9c, 0x42, 0x65, 0x3e, 0xa4, 0x1e, 0xc1, 0x07 -.byte 0x03, 0x5a, 0x46, 0x2d, 0xb8, 0x97, 0xf3, 0xb7, 0xd5, 0xb2, 0x55, 0x21, 0xef, 0xba, 0xdc, 0x4c -.byte 0x00, 0x97, 0xfb, 0x14, 0x95, 0x27, 0x33, 0xbf, 0xe8, 0x43, 0x47, 0x46, 0xd2, 0x08, 0x99, 0x16 -.byte 0x60, 0x3b, 0x9a, 0x7e, 0xd2, 0xe6, 0xed, 0x38, 0xea, 0xec, 0x01, 0x1e, 0x3c, 0x48, 0x56, 0x49 -.byte 0x09, 0xc7, 0x4c, 0x37, 0x00, 0x9e, 0x88, 0x0e, 0xc0, 0x73, 0xe1, 0x6f, 0x66, 0xe9, 0x72, 0x47 -.byte 0x30, 0x3e, 0x10, 0xe5, 0x0b, 0x03, 0xc9, 0x9a, 0x42, 0x00, 0x6c, 0xc5, 0x94, 0x7e, 0x61, 0xc4 -.byte 0x8a, 0xdf, 0x7f, 0x82, 0x1a, 0x0b, 0x59, 0xc4, 0x59, 0x32, 0x77, 0xb3, 0xbc, 0x60, 0x69, 0x56 -.byte 0x39, 0xfd, 0xb4, 0x06, 0x7b, 0x2c, 0xd6, 0x64, 0x36, 0xd9, 0xbd, 0x48, 0xed, 0x84, 0x1f, 0x7e -.byte 0xa5, 0x22, 0x8f, 0x2a, 0xb8, 0x42, 0xf4, 0x82, 0xb7, 0xd4, 0x53, 0x90, 0x78, 0x4e, 0x2d, 0x1a -.byte 0xfd, 0x81, 0x6f, 0x44, 0xd7, 0x3b, 0x01, 0x74, 0x96, 0x42, 0xe0, 0x00, 0xe2, 0x2e, 0x6b, 0xea -.byte 0xc5, 0xee, 0x72, 0xac, 0xbb, 0xbf, 0xfe, 0xea, 0xaa, 0xa8, 0xf8, 0xdc, 0xf6, 0xb2, 0x79, 0x8a -.byte 0xb6, 0x67, 0x02, 0x03, 0x01, 0x00, 0x01, 0x44, 0x00, 0x26, 0x02, 0x30, 0x42, 0x31, 0x12, 0x30 -.byte 0x10, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x09, 0x41, 0x43, 0x43, 0x56, 0x52, 0x41, 0x49, 0x5a -.byte 0x31, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x0c, 0x07, 0x50, 0x4b, 0x49, 0x41 -.byte 0x43, 0x43, 0x56, 0x31, 0x0d, 0x30, 0x0b, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x04, 0x41, 0x43 -.byte 0x43, 0x56, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x45, 0x53, 0x30 -.byte 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01 -.byte 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00 -.byte 0x9b, 0xa9, 0xab, 0xbf, 0x61, 0x4a, 0x97, 0xaf, 0x2f, 0x97, 0x66, 0x9a, 0x74, 0x5f, 0xd0, 0xd9 -.byte 0x96, 0xfd, 0xcf, 0xe2, 0xe4, 0x66, 0xef, 0x1f, 0x1f, 0x47, 0x33, 0xc2, 0x44, 0xa3, 0xdf, 0x9a -.byte 0xde, 0x1f, 0xb5, 0x54, 0xdd, 0x15, 0x7c, 0x69, 0x35, 0x11, 0x6f, 0xbb, 0xc8, 0x0c, 0x8e, 0x6a -.byte 0x18, 0x1e, 0xd8, 0x8f, 0xd9, 0x16, 0xbc, 0x10, 0x48, 0x36, 0x5c, 0xf0, 0x63, 0xb3, 0x90, 0x5a -.byte 0x5c, 0x24, 0x37, 0xd7, 0xa3, 0xd6, 0xcb, 0x09, 0x71, 0xb9, 0xf1, 0x01, 0x72, 0x84, 0xb0, 0x7d -.byte 0xdb, 0x4d, 0x80, 0xcd, 0xfc, 0xd3, 0x6f, 0xc9, 0xf8, 0xda, 0xb6, 0x0e, 0x82, 0xd2, 0x45, 0x85 -.byte 0xa8, 0x1b, 0x68, 0xa8, 0x3d, 0xe8, 0xf4, 0x44, 0x6c, 0xbd, 0xa1, 0xc2, 0xcb, 0x03, 0xbe, 0x8c -.byte 0x3e, 0x13, 0x00, 0x84, 0xdf, 0x4a, 0x48, 0xc0, 0xe3, 0x22, 0x0a, 0xe8, 0xe9, 0x37, 0xa7, 0x18 -.byte 0x4c, 0xb1, 0x09, 0x0d, 0x23, 0x56, 0x7f, 0x04, 0x4d, 0xd9, 0x17, 0x84, 0x18, 0xa5, 0xc8, 0xda -.byte 0x40, 0x94, 0x73, 0xeb, 0xce, 0x0e, 0x57, 0x3c, 0x03, 0x81, 0x3a, 0x9d, 0x0a, 0xa1, 0x57, 0x43 -.byte 0x69, 0xac, 0x57, 0x6d, 0x79, 0x90, 0x78, 0xe5, 0xb5, 0xb4, 0x3b, 0xd8, 0xbc, 0x4c, 0x8d, 0x28 -.byte 0xa1, 0xa7, 0xa3, 0xa7, 0xba, 0x02, 0x4e, 0x25, 0xd1, 0x2a, 0xae, 0xed, 0xae, 0x03, 0x22, 0xb8 -.byte 0x6b, 0x20, 0x0f, 0x30, 0x28, 0x54, 0x95, 0x7f, 0xe0, 0xee, 0xce, 0x0a, 0x66, 0x9d, 0xd1, 0x40 -.byte 0x2d, 0x6e, 0x22, 0xaf, 0x9d, 0x1a, 0xc1, 0x05, 0x19, 0xd2, 0x6f, 0xc0, 0xf2, 0x9f, 0xf8, 0x7b -.byte 0xb3, 0x02, 0x42, 0xfb, 0x50, 0xa9, 0x1d, 0x2d, 0x93, 0x0f, 0x23, 0xab, 0xc6, 0xc1, 0x0f, 0x92 -.byte 0xff, 0xd0, 0xa2, 0x15, 0xf5, 0x53, 0x09, 0x71, 0x1c, 0xff, 0x45, 0x13, 0x84, 0xe6, 0x26, 0x5e -.byte 0xf8, 0xe0, 0x88, 0x1c, 0x0a, 0xfc, 0x16, 0xb6, 0xa8, 0x73, 0x06, 0xb8, 0xf0, 0x63, 0x84, 0x02 -.byte 0xa0, 0xc6, 0x5a, 0xec, 0xe7, 0x74, 0xdf, 0x70, 0xae, 0xa3, 0x83, 0x25, 0xea, 0xd6, 0xc7, 0x97 -.byte 0x87, 0x93, 0xa7, 0xc6, 0x8a, 0x8a, 0x33, 0x97, 0x60, 0x37, 0x10, 0x3e, 0x97, 0x3e, 0x6e, 0x29 -.byte 0x15, 0xd6, 0xa1, 0x0f, 0xd1, 0x88, 0x2c, 0x12, 0x9f, 0x6f, 0xaa, 0xa4, 0xc6, 0x42, 0xeb, 0x41 -.byte 0xa2, 0xe3, 0x95, 0x43, 0xd3, 0x01, 0x85, 0x6d, 0x8e, 0xbb, 0x3b, 0xf3, 0x23, 0x36, 0xc7, 0xfe -.byte 0x3b, 0xe0, 0xa1, 0x25, 0x07, 0x48, 0xab, 0xc9, 0x89, 0x74, 0xff, 0x08, 0x8f, 0x80, 0xbf, 0xc0 -.byte 0x96, 0x65, 0xf3, 0xee, 0xec, 0x4b, 0x68, 0xbd, 0x9d, 0x88, 0xc3, 0x31, 0xb3, 0x40, 0xf1, 0xe8 -.byte 0xcf, 0xf6, 0x38, 0xbb, 0x9c, 0xe4, 0xd1, 0x7f, 0xd4, 0xe5, 0x58, 0x9b, 0x7c, 0xfa, 0xd4, 0xf3 -.byte 0x0e, 0x9b, 0x75, 0x91, 0xe4, 0xba, 0x52, 0x2e, 0x19, 0x7e, 0xd1, 0xf5, 0xcd, 0x5a, 0x19, 0xfc -.byte 0xba, 0x06, 0xf6, 0xfb, 0x52, 0xa8, 0x4b, 0x99, 0x04, 0xdd, 0xf8, 0xf9, 0xb4, 0x8b, 0x50, 0xa3 -.byte 0x4e, 0x62, 0x89, 0xf0, 0x87, 0x24, 0xfa, 0x83, 0x42, 0xc1, 0x87, 0xfa, 0xd5, 0x2d, 0x29, 0x2a -.byte 0x5a, 0x71, 0x7a, 0x64, 0x6a, 0xd7, 0x27, 0x60, 0x63, 0x0d, 0xdb, 0xce, 0x49, 0xf5, 0x8d, 0x1f -.byte 0x90, 0x89, 0x32, 0x17, 0xf8, 0x73, 0x43, 0xb8, 0xd2, 0x5a, 0x93, 0x86, 0x61, 0xd6, 0xe1, 0x75 -.byte 0x0a, 0xea, 0x79, 0x66, 0x76, 0x88, 0x4f, 0x71, 0xeb, 0x04, 0x25, 0xd6, 0x0a, 0x5a, 0x7a, 0x93 -.byte 0xe5, 0xb9, 0x4b, 0x17, 0x40, 0x0f, 0xb1, 0xb6, 0xb9, 0xf5, 0xde, 0x4f, 0xdc, 0xe0, 0xb3, 0xac -.byte 0x3b, 0x11, 0x70, 0x60, 0x84, 0x4a, 0x43, 0x6e, 0x99, 0x20, 0xc0, 0x29, 0x71, 0x0a, 0xc0, 0x65 -.byte 0x02, 0x03, 0x01, 0x00, 0x01, 0x45, 0x00, 0x26, 0x02, 0x30, 0x43, 0x31, 0x0b, 0x30, 0x09, 0x06 -.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x43, 0x4e, 0x31, 0x1c, 0x30, 0x1a, 0x06, 0x03, 0x55, 0x04 -.byte 0x0a, 0x13, 0x13, 0x69, 0x54, 0x72, 0x75, 0x73, 0x43, 0x68, 0x69, 0x6e, 0x61, 0x20, 0x43, 0x6f -.byte 0x2e, 0x2c, 0x4c, 0x74, 0x64, 0x2e, 0x31, 0x16, 0x30, 0x14, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13 -.byte 0x0d, 0x76, 0x54, 0x72, 0x75, 0x73, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x30, 0x82 -.byte 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05 -.byte 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xbd -.byte 0x55, 0x7c, 0x61, 0xd3, 0xb8, 0x1d, 0x04, 0x62, 0x05, 0xa0, 0xae, 0x6c, 0xb7, 0x70, 0xb4, 0x41 -.byte 0xea, 0x4b, 0x03, 0x5e, 0x10, 0x3f, 0x90, 0x5a, 0x1c, 0x8b, 0x3b, 0xb0, 0x66, 0x8b, 0x6c, 0x48 -.byte 0xa6, 0x1c, 0x22, 0xba, 0xd5, 0x40, 0x92, 0xee, 0x33, 0xb2, 0x23, 0x59, 0xc9, 0x8e, 0xbc, 0x58 -.byte 0xda, 0x8b, 0x9e, 0xd0, 0x19, 0xf2, 0x2f, 0x59, 0xc6, 0x8c, 0x63, 0x5a, 0xba, 0x9f, 0xa3, 0x0b -.byte 0xb0, 0xb3, 0x9a, 0x5c, 0xba, 0x11, 0xb8, 0x12, 0xe9, 0x0c, 0xbb, 0xcf, 0x6e, 0x6c, 0x80, 0x87 -.byte 0x29, 0x14, 0x03, 0x2c, 0x8d, 0x24, 0x9a, 0xc8, 0x64, 0x83, 0xb5, 0x6a, 0xac, 0x13, 0x2c, 0x33 -.byte 0xf1, 0x9f, 0xdc, 0x2c, 0x61, 0x3c, 0x1a, 0x3f, 0x70, 0x55, 0x9b, 0xad, 0x00, 0x52, 0x7f, 0xcf -.byte 0x04, 0xb9, 0xfe, 0x36, 0xfa, 0x9c, 0xc0, 0x16, 0xae, 0x62, 0xfe, 0x96, 0x4c, 0x43, 0x7e, 0x55 -.byte 0x14, 0xbe, 0x1a, 0xb3, 0xd2, 0x6d, 0xc2, 0xaf, 0x76, 0x66, 0x95, 0x6b, 0x2a, 0xb0, 0x94, 0x77 -.byte 0x85, 0x5e, 0x04, 0x0f, 0x62, 0x1d, 0x63, 0x75, 0xf7, 0x6b, 0xe7, 0xcb, 0x5b, 0x9a, 0x70, 0xec -.byte 0x3e, 0x67, 0x05, 0xf0, 0xfe, 0x07, 0x08, 0x80, 0xcf, 0x28, 0xdb, 0x05, 0xc6, 0x14, 0x27, 0x2f -.byte 0x86, 0x7d, 0xf0, 0x27, 0xde, 0xff, 0xe6, 0x7e, 0x33, 0x48, 0xe7, 0x0b, 0x1e, 0x58, 0xd1, 0x27 -.byte 0x2b, 0x53, 0x0e, 0x57, 0x4a, 0x65, 0xd7, 0xfb, 0xa2, 0x80, 0x60, 0xfc, 0x4c, 0xbc, 0x35, 0x53 -.byte 0x01, 0x6a, 0x97, 0x72, 0x82, 0xaf, 0xf1, 0x1d, 0x70, 0xe8, 0x9c, 0xf5, 0xef, 0x5e, 0xc2, 0x6c -.byte 0xc7, 0x47, 0x7e, 0x5a, 0x94, 0x85, 0x26, 0x4d, 0x3b, 0xba, 0xeb, 0x4c, 0xe8, 0xb0, 0x09, 0xc2 -.byte 0x65, 0xc2, 0x9d, 0x9d, 0x09, 0x9b, 0x4e, 0xb5, 0x97, 0x05, 0xac, 0xf5, 0x06, 0xa0, 0xf7, 0x36 -.byte 0x05, 0x7e, 0xf4, 0x90, 0xb2, 0x6b, 0xc4, 0xb4, 0xf9, 0x64, 0xea, 0xe9, 0x1a, 0x0a, 0xc8, 0x0d -.byte 0xa8, 0xed, 0x27, 0xc9, 0xd4, 0xe7, 0xb3, 0xb9, 0xab, 0x82, 0x22, 0x90, 0x27, 0x3d, 0x2a, 0xe8 -.byte 0x7c, 0x90, 0xef, 0xbc, 0x4f, 0xfd, 0xe2, 0x0a, 0x24, 0xa7, 0xde, 0x65, 0x24, 0xa4, 0x5d, 0xea -.byte 0xc0, 0x76, 0x30, 0xd3, 0x77, 0x50, 0xf8, 0x0d, 0x04, 0x9b, 0x94, 0x36, 0x01, 0x73, 0xca, 0x06 -.byte 0x58, 0xa6, 0xd3, 0x3b, 0xdc, 0xfa, 0x04, 0x46, 0x13, 0x55, 0x8a, 0xc9, 0x44, 0x47, 0xb8, 0x51 -.byte 0x39, 0x1a, 0x2e, 0xe8, 0x34, 0xe2, 0x79, 0xcb, 0x59, 0x4a, 0x0a, 0x7f, 0xbc, 0xa6, 0xef, 0x1f -.byte 0x03, 0x67, 0x6a, 0x59, 0x2b, 0x25, 0x62, 0x93, 0xd9, 0x53, 0x19, 0x66, 0x3c, 0x27, 0x62, 0x29 -.byte 0x86, 0x4d, 0xa4, 0x6b, 0xee, 0xff, 0xd4, 0x4e, 0xba, 0xd5, 0xb4, 0xe2, 0x8e, 0x48, 0x5a, 0x00 -.byte 0x19, 0x09, 0xf1, 0x05, 0xd9, 0xce, 0x91, 0xb1, 0xf7, 0xeb, 0xe9, 0x39, 0x4f, 0xf6, 0x6f, 0x04 -.byte 0x43, 0x9a, 0x55, 0xf5, 0x3e, 0x05, 0x14, 0xbd, 0xbf, 0xb3, 0x59, 0xb4, 0xd8, 0x8e, 0x33, 0x84 -.byte 0xa3, 0x90, 0x52, 0xaa, 0xb3, 0x02, 0x95, 0x60, 0xf9, 0x0c, 0x4c, 0x68, 0xf9, 0xee, 0xd5, 0x17 -.byte 0x0d, 0xf8, 0x71, 0x57, 0xb5, 0x25, 0xe4, 0x29, 0xee, 0x65, 0x5d, 0xaf, 0xd1, 0xee, 0x3c, 0x17 -.byte 0x0b, 0x5a, 0x43, 0xc5, 0xa5, 0x86, 0xea, 0x24, 0x9e, 0xe2, 0x05, 0x07, 0xdc, 0x34, 0x42, 0x12 -.byte 0x91, 0xd6, 0x39, 0x74, 0xae, 0x4c, 0x41, 0x82, 0xdb, 0xf2, 0xa6, 0x48, 0xd1, 0xb3, 0x9b, 0xf3 -.byte 0x33, 0xaa, 0xf3, 0xa6, 0xc0, 0xc5, 0x4e, 0xf5, 0xf4, 0x9d, 0x76, 0x63, 0xe6, 0x02, 0xc6, 0x22 -.byte 0x4b, 0xc1, 0x95, 0x3f, 0x50, 0x64, 0x2c, 0x54, 0xe5, 0xb6, 0xf0, 0x3c, 0x29, 0xcf, 0x57, 0x02 -.byte 0x03, 0x01, 0x00, 0x01, 0x46, 0x00, 0x26, 0x02, 0x30, 0x44, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03 -.byte 0x55, 0x04, 0x06, 0x13, 0x02, 0x46, 0x49, 0x31, 0x1a, 0x30, 0x18, 0x06, 0x03, 0x55, 0x04, 0x0a -.byte 0x0c, 0x11, 0x54, 0x65, 0x6c, 0x69, 0x61, 0x20, 0x46, 0x69, 0x6e, 0x6c, 0x61, 0x6e, 0x64, 0x20 -.byte 0x4f, 0x79, 0x6a, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x10, 0x54, 0x65 -.byte 0x6c, 0x69, 0x61, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x76, 0x32, 0x30, 0x82 -.byte 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05 -.byte 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xb2 -.byte 0xd0, 0x3f, 0x07, 0xbc, 0xe2, 0x7b, 0xd0, 0x6b, 0x99, 0xf8, 0xe2, 0x77, 0x69, 0xe7, 0xce, 0x9d -.byte 0xa4, 0x03, 0xbc, 0x82, 0x6d, 0xa1, 0xfe, 0x81, 0x65, 0x1f, 0x4c, 0x27, 0xac, 0x8e, 0x00, 0xba -.byte 0x16, 0x7b, 0xeb, 0x30, 0x6a, 0x00, 0xc0, 0xb3, 0x74, 0x68, 0x7e, 0xb2, 0xaf, 0xc7, 0xd5, 0x62 -.byte 0xb3, 0x7a, 0x3f, 0x50, 0xca, 0x8c, 0x36, 0x44, 0x24, 0x63, 0xd2, 0x36, 0xe9, 0x0c, 0x85, 0xf6 -.byte 0x43, 0x76, 0xd5, 0x4c, 0xa1, 0x60, 0x72, 0x67, 0xe2, 0x28, 0x33, 0xa5, 0xcb, 0x31, 0xb8, 0x3a -.byte 0x22, 0x23, 0x34, 0xb8, 0x7d, 0xbd, 0x56, 0x22, 0x40, 0x9d, 0xea, 0xf4, 0x7b, 0x03, 0xad, 0x68 -.byte 0xfc, 0xb2, 0x81, 0x4f, 0x98, 0xd0, 0x74, 0xea, 0x8d, 0xe5, 0x7d, 0xcd, 0x63, 0xc3, 0xa3, 0xf6 -.byte 0xde, 0x92, 0xc2, 0x58, 0x19, 0xe0, 0x96, 0xbb, 0xc5, 0xc4, 0xa9, 0x3d, 0xa5, 0x74, 0x96, 0xfe -.byte 0xaf, 0xf9, 0x89, 0xaa, 0xbd, 0x95, 0x17, 0x54, 0xd8, 0x78, 0x44, 0xf1, 0x0c, 0x77, 0x15, 0x92 -.byte 0xe0, 0x98, 0x42, 0xa7, 0xa4, 0xd6, 0xaa, 0x20, 0x92, 0xcd, 0xc1, 0xa0, 0xb3, 0x96, 0xb2, 0x3a -.byte 0x84, 0x42, 0x8d, 0x7d, 0xd5, 0x95, 0xe4, 0xd6, 0xdb, 0xe9, 0x62, 0xc4, 0x58, 0xb3, 0x79, 0xc5 -.byte 0x8c, 0xd3, 0x35, 0x33, 0x83, 0x9f, 0x75, 0xa1, 0x52, 0x27, 0x61, 0x38, 0xf1, 0x59, 0x3d, 0x8e -.byte 0x50, 0xe0, 0xbd, 0x79, 0x3c, 0xe7, 0x6c, 0x96, 0xfe, 0x5e, 0xd9, 0x02, 0x65, 0xb4, 0x8e, 0x5c -.byte 0xd0, 0x11, 0x34, 0xdf, 0x5d, 0xbf, 0x52, 0xa7, 0x81, 0x00, 0xc3, 0x7f, 0x99, 0x45, 0x99, 0x15 -.byte 0xd5, 0x17, 0xc8, 0x0a, 0x53, 0xec, 0x63, 0xf3, 0x99, 0x7d, 0xcc, 0x69, 0x12, 0x86, 0xc2, 0x17 -.byte 0xf0, 0x01, 0x9e, 0xbf, 0x84, 0xbc, 0xd1, 0x52, 0xcb, 0x1b, 0x92, 0x66, 0xce, 0xa4, 0x53, 0xe5 -.byte 0xa1, 0xbf, 0xc4, 0xdb, 0x09, 0xd6, 0xe6, 0x89, 0x56, 0x2b, 0xc8, 0xe3, 0x7c, 0xde, 0xe3, 0xff -.byte 0x89, 0xe5, 0x35, 0x6e, 0x28, 0xe8, 0x6c, 0x0b, 0x23, 0x51, 0xa9, 0x25, 0x05, 0xeb, 0x48, 0xf8 -.byte 0xdd, 0xb1, 0xca, 0xfa, 0x6c, 0x08, 0x51, 0xef, 0xb7, 0x18, 0x6c, 0x44, 0xca, 0x26, 0xe1, 0x73 -.byte 0xc6, 0x89, 0x06, 0x81, 0xe5, 0x8a, 0xac, 0xb0, 0xe2, 0x29, 0xc6, 0xb9, 0x24, 0xb3, 0x6b, 0x44 -.byte 0x11, 0xf4, 0xa5, 0x43, 0xc2, 0x4c, 0x43, 0xe5, 0x70, 0x36, 0x8c, 0xb6, 0x33, 0x57, 0x7a, 0x95 -.byte 0x2e, 0x82, 0xa0, 0xf4, 0x5c, 0x10, 0xb3, 0x61, 0x83, 0xf6, 0x02, 0x05, 0x86, 0x2e, 0x7c, 0x2d -.byte 0x6c, 0xdc, 0x03, 0x46, 0x6e, 0x35, 0x93, 0xd5, 0x7a, 0x95, 0x2f, 0xde, 0x20, 0xd8, 0x5b, 0x7e -.byte 0x94, 0x90, 0x04, 0x6a, 0xba, 0x59, 0x3d, 0x04, 0x05, 0x75, 0x9d, 0x37, 0xa2, 0x0e, 0x2e, 0x3d -.byte 0xeb, 0xc1, 0xa4, 0x52, 0x83, 0xfe, 0xd0, 0x6b, 0xd4, 0x66, 0x8e, 0xdc, 0xc6, 0xe9, 0x12, 0x4e -.byte 0x1d, 0x2a, 0x57, 0xaa, 0x10, 0xbc, 0x7c, 0x5e, 0x82, 0x7d, 0xa6, 0xa6, 0xc9, 0xf2, 0x2d, 0xb9 -.byte 0xf5, 0x17, 0x27, 0xad, 0xd1, 0x0e, 0x89, 0x54, 0x2b, 0x95, 0xfa, 0xc0, 0xad, 0x1d, 0x98, 0x14 -.byte 0x78, 0x33, 0x42, 0x86, 0x0a, 0xa9, 0x73, 0xb5, 0xfb, 0x74, 0x0d, 0xb7, 0x1b, 0x30, 0x19, 0xc4 -.byte 0x5a, 0x0e, 0x1c, 0x27, 0xb7, 0xda, 0x18, 0xd0, 0xff, 0x8a, 0xc8, 0x05, 0xba, 0xf1, 0xaa, 0x1c -.byte 0xa2, 0x37, 0xb7, 0xe6, 0x48, 0xa4, 0x46, 0x2c, 0x94, 0xea, 0xa8, 0x76, 0x62, 0x47, 0x8b, 0x10 -.byte 0x53, 0x07, 0x48, 0x57, 0x6c, 0xe2, 0x92, 0x4d, 0xb6, 0xae, 0x05, 0xcb, 0xdc, 0xc1, 0x4a, 0x5e -.byte 0x8f, 0xac, 0x3d, 0x19, 0x4e, 0xc2, 0xed, 0x60, 0x75, 0x2b, 0xdb, 0xc1, 0xca, 0x42, 0xd5, 0x02 -.byte 0x03, 0x01, 0x00, 0x01, 0x46, 0x00, 0x26, 0x01, 0x30, 0x44, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03 -.byte 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x0a -.byte 0x0c, 0x0b, 0x41, 0x66, 0x66, 0x69, 0x72, 0x6d, 0x54, 0x72, 0x75, 0x73, 0x74, 0x31, 0x1f, 0x30 -.byte 0x1d, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x16, 0x41, 0x66, 0x66, 0x69, 0x72, 0x6d, 0x54, 0x72 -.byte 0x75, 0x73, 0x74, 0x20, 0x43, 0x6f, 0x6d, 0x6d, 0x65, 0x72, 0x63, 0x69, 0x61, 0x6c, 0x30, 0x82 -.byte 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05 -.byte 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xf6 -.byte 0x1b, 0x4f, 0x67, 0x07, 0x2b, 0xa1, 0x15, 0xf5, 0x06, 0x22, 0xcb, 0x1f, 0x01, 0xb2, 0xe3, 0x73 -.byte 0x45, 0x06, 0x44, 0x49, 0x2c, 0xbb, 0x49, 0x25, 0x14, 0xd6, 0xce, 0xc3, 0xb7, 0xab, 0x2c, 0x4f -.byte 0xc6, 0x41, 0x32, 0x94, 0x57, 0xfa, 0x12, 0xa7, 0x5b, 0x0e, 0xe2, 0x8f, 0x1f, 0x1e, 0x86, 0x19 -.byte 0xa7, 0xaa, 0xb5, 0x2d, 0xb9, 0x5f, 0x0d, 0x8a, 0xc2, 0xaf, 0x85, 0x35, 0x79, 0x32, 0x2d, 0xbb -.byte 0x1c, 0x62, 0x37, 0xf2, 0xb1, 0x5b, 0x4a, 0x3d, 0xca, 0xcd, 0x71, 0x5f, 0xe9, 0x42, 0xbe, 0x94 -.byte 0xe8, 0xc8, 0xde, 0xf9, 0x22, 0x48, 0x64, 0xc6, 0xe5, 0xab, 0xc6, 0x2b, 0x6d, 0xad, 0x05, 0xf0 -.byte 0xfa, 0xd5, 0x0b, 0xcf, 0x9a, 0xe5, 0xf0, 0x50, 0xa4, 0x8b, 0x3b, 0x47, 0xa5, 0x23, 0x5b, 0x7a -.byte 0x7a, 0xf8, 0x33, 0x3f, 0xb8, 0xef, 0x99, 0x97, 0xe3, 0x20, 0xc1, 0xd6, 0x28, 0x89, 0xcf, 0x94 -.byte 0xfb, 0xb9, 0x45, 0xed, 0xe3, 0x40, 0x17, 0x11, 0xd4, 0x74, 0xf0, 0x0b, 0x31, 0xe2, 0x2b, 0x26 -.byte 0x6a, 0x9b, 0x4c, 0x57, 0xae, 0xac, 0x20, 0x3e, 0xba, 0x45, 0x7a, 0x05, 0xf3, 0xbd, 0x9b, 0x69 -.byte 0x15, 0xae, 0x7d, 0x4e, 0x20, 0x63, 0xc4, 0x35, 0x76, 0x3a, 0x07, 0x02, 0xc9, 0x37, 0xfd, 0xc7 -.byte 0x47, 0xee, 0xe8, 0xf1, 0x76, 0x1d, 0x73, 0x15, 0xf2, 0x97, 0xa4, 0xb5, 0xc8, 0x7a, 0x79, 0xd9 -.byte 0x42, 0xaa, 0x2b, 0x7f, 0x5c, 0xfe, 0xce, 0x26, 0x4f, 0xa3, 0x66, 0x81, 0x35, 0xaf, 0x44, 0xba -.byte 0x54, 0x1e, 0x1c, 0x30, 0x32, 0x65, 0x9d, 0xe6, 0x3c, 0x93, 0x5e, 0x50, 0x4e, 0x7a, 0xe3, 0x3a -.byte 0xd4, 0x6e, 0xcc, 0x1a, 0xfb, 0xf9, 0xd2, 0x37, 0xae, 0x24, 0x2a, 0xab, 0x57, 0x03, 0x22, 0x28 -.byte 0x0d, 0x49, 0x75, 0x7f, 0xb7, 0x28, 0xda, 0x75, 0xbf, 0x8e, 0xe3, 0xdc, 0x0e, 0x79, 0x31, 0x02 -.byte 0x03, 0x01, 0x00, 0x01, 0x46, 0x00, 0x26, 0x01, 0x30, 0x44, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03 -.byte 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x0a -.byte 0x0c, 0x0b, 0x41, 0x66, 0x66, 0x69, 0x72, 0x6d, 0x54, 0x72, 0x75, 0x73, 0x74, 0x31, 0x1f, 0x30 -.byte 0x1d, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x16, 0x41, 0x66, 0x66, 0x69, 0x72, 0x6d, 0x54, 0x72 -.byte 0x75, 0x73, 0x74, 0x20, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x30, 0x82 -.byte 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05 -.byte 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xb4 -.byte 0x84, 0xcc, 0x33, 0x17, 0x2e, 0x6b, 0x94, 0x6c, 0x6b, 0x61, 0x52, 0xa0, 0xeb, 0xa3, 0xcf, 0x79 -.byte 0x94, 0x4c, 0xe5, 0x94, 0x80, 0x99, 0xcb, 0x55, 0x64, 0x44, 0x65, 0x8f, 0x67, 0x64, 0xe2, 0x06 -.byte 0xe3, 0x5c, 0x37, 0x49, 0xf6, 0x2f, 0x9b, 0x84, 0x84, 0x1e, 0x2d, 0xf2, 0x60, 0x9d, 0x30, 0x4e -.byte 0xcc, 0x84, 0x85, 0xe2, 0x2c, 0xcf, 0x1e, 0x9e, 0xfe, 0x36, 0xab, 0x33, 0x77, 0x35, 0x44, 0xd8 -.byte 0x35, 0x96, 0x1a, 0x3d, 0x36, 0xe8, 0x7a, 0x0e, 0xd8, 0xd5, 0x47, 0xa1, 0x6a, 0x69, 0x8b, 0xd9 -.byte 0xfc, 0xbb, 0x3a, 0xae, 0x79, 0x5a, 0xd5, 0xf4, 0xd6, 0x71, 0xbb, 0x9a, 0x90, 0x23, 0x6b, 0x9a -.byte 0xb7, 0x88, 0x74, 0x87, 0x0c, 0x1e, 0x5f, 0xb9, 0x9e, 0x2d, 0xfa, 0xab, 0x53, 0x2b, 0xdc, 0xbb -.byte 0x76, 0x3e, 0x93, 0x4c, 0x08, 0x08, 0x8c, 0x1e, 0xa2, 0x23, 0x1c, 0xd4, 0x6a, 0xad, 0x22, 0xba -.byte 0x99, 0x01, 0x2e, 0x6d, 0x65, 0xcb, 0xbe, 0x24, 0x66, 0x55, 0x24, 0x4b, 0x40, 0x44, 0xb1, 0x1b -.byte 0xd7, 0xe1, 0xc2, 0x85, 0xc0, 0xde, 0x10, 0x3f, 0x3d, 0xed, 0xb8, 0xfc, 0xf1, 0xf1, 0x23, 0x53 -.byte 0xdc, 0xbf, 0x65, 0x97, 0x6f, 0xd9, 0xf9, 0x40, 0x71, 0x8d, 0x7d, 0xbd, 0x95, 0xd4, 0xce, 0xbe -.byte 0xa0, 0x5e, 0x27, 0x23, 0xde, 0xfd, 0xa6, 0xd0, 0x26, 0x0e, 0x00, 0x29, 0xeb, 0x3c, 0x46, 0xf0 -.byte 0x3d, 0x60, 0xbf, 0x3f, 0x50, 0xd2, 0xdc, 0x26, 0x41, 0x51, 0x9e, 0x14, 0x37, 0x42, 0x04, 0xa3 -.byte 0x70, 0x57, 0xa8, 0x1b, 0x87, 0xed, 0x2d, 0xfa, 0x7b, 0xee, 0x8c, 0x0a, 0xe3, 0xa9, 0x66, 0x89 -.byte 0x19, 0xcb, 0x41, 0xf9, 0xdd, 0x44, 0x36, 0x61, 0xcf, 0xe2, 0x77, 0x46, 0xc8, 0x7d, 0xf6, 0xf4 -.byte 0x92, 0x81, 0x36, 0xfd, 0xdb, 0x34, 0xf1, 0x72, 0x7e, 0xf3, 0x0c, 0x16, 0xbd, 0xb4, 0x15, 0x02 -.byte 0x03, 0x01, 0x00, 0x01, 0x47, 0x00, 0x26, 0x02, 0x30, 0x45, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03 -.byte 0x55, 0x04, 0x06, 0x13, 0x02, 0x42, 0x4d, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0a -.byte 0x13, 0x10, 0x51, 0x75, 0x6f, 0x56, 0x61, 0x64, 0x69, 0x73, 0x20, 0x4c, 0x69, 0x6d, 0x69, 0x74 -.byte 0x65, 0x64, 0x31, 0x1b, 0x30, 0x19, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x12, 0x51, 0x75, 0x6f -.byte 0x56, 0x61, 0x64, 0x69, 0x73, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x32, 0x30 -.byte 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01 -.byte 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00 -.byte 0x9a, 0x18, 0xca, 0x4b, 0x94, 0x0d, 0x00, 0x2d, 0xaf, 0x03, 0x29, 0x8a, 0xf0, 0x0f, 0x81, 0xc8 -.byte 0xae, 0x4c, 0x19, 0x85, 0x1d, 0x08, 0x9f, 0xab, 0x29, 0x44, 0x85, 0xf3, 0x2f, 0x81, 0xad, 0x32 -.byte 0x1e, 0x90, 0x46, 0xbf, 0xa3, 0x86, 0x26, 0x1a, 0x1e, 0xfe, 0x7e, 0x1c, 0x18, 0x3a, 0x5c, 0x9c -.byte 0x60, 0x17, 0x2a, 0x3a, 0x74, 0x83, 0x33, 0x30, 0x7d, 0x61, 0x54, 0x11, 0xcb, 0xed, 0xab, 0xe0 -.byte 0xe6, 0xd2, 0xa2, 0x7e, 0xf5, 0x6b, 0x6f, 0x18, 0xb7, 0x0a, 0x0b, 0x2d, 0xfd, 0xe9, 0x3e, 0xef -.byte 0x0a, 0xc6, 0xb3, 0x10, 0xe9, 0xdc, 0xc2, 0x46, 0x17, 0xf8, 0x5d, 0xfd, 0xa4, 0xda, 0xff, 0x9e -.byte 0x49, 0x5a, 0x9c, 0xe6, 0x33, 0xe6, 0x24, 0x96, 0xf7, 0x3f, 0xba, 0x5b, 0x2b, 0x1c, 0x7a, 0x35 -.byte 0xc2, 0xd6, 0x67, 0xfe, 0xab, 0x66, 0x50, 0x8b, 0x6d, 0x28, 0x60, 0x2b, 0xef, 0xd7, 0x60, 0xc3 -.byte 0xc7, 0x93, 0xbc, 0x8d, 0x36, 0x91, 0xf3, 0x7f, 0xf8, 0xdb, 0x11, 0x13, 0xc4, 0x9c, 0x77, 0x76 -.byte 0xc1, 0xae, 0xb7, 0x02, 0x6a, 0x81, 0x7a, 0xa9, 0x45, 0x83, 0xe2, 0x05, 0xe6, 0xb9, 0x56, 0xc1 -.byte 0x94, 0x37, 0x8f, 0x48, 0x71, 0x63, 0x22, 0xec, 0x17, 0x65, 0x07, 0x95, 0x8a, 0x4b, 0xdf, 0x8f -.byte 0xc6, 0x5a, 0x0a, 0xe5, 0xb0, 0xe3, 0x5f, 0x5e, 0x6b, 0x11, 0xab, 0x0c, 0xf9, 0x85, 0xeb, 0x44 -.byte 0xe9, 0xf8, 0x04, 0x73, 0xf2, 0xe9, 0xfe, 0x5c, 0x98, 0x8c, 0xf5, 0x73, 0xaf, 0x6b, 0xb4, 0x7e -.byte 0xcd, 0xd4, 0x5c, 0x02, 0x2b, 0x4c, 0x39, 0xe1, 0xb2, 0x95, 0x95, 0x2d, 0x42, 0x87, 0xd7, 0xd5 -.byte 0xb3, 0x90, 0x43, 0xb7, 0x6c, 0x13, 0xf1, 0xde, 0xdd, 0xf6, 0xc4, 0xf8, 0x89, 0x3f, 0xd1, 0x75 -.byte 0xf5, 0x92, 0xc3, 0x91, 0xd5, 0x8a, 0x88, 0xd0, 0x90, 0xec, 0xdc, 0x6d, 0xde, 0x89, 0xc2, 0x65 -.byte 0x71, 0x96, 0x8b, 0x0d, 0x03, 0xfd, 0x9c, 0xbf, 0x5b, 0x16, 0xac, 0x92, 0xdb, 0xea, 0xfe, 0x79 -.byte 0x7c, 0xad, 0xeb, 0xaf, 0xf7, 0x16, 0xcb, 0xdb, 0xcd, 0x25, 0x2b, 0xe5, 0x1f, 0xfb, 0x9a, 0x9f -.byte 0xe2, 0x51, 0xcc, 0x3a, 0x53, 0x0c, 0x48, 0xe6, 0x0e, 0xbd, 0xc9, 0xb4, 0x76, 0x06, 0x52, 0xe6 -.byte 0x11, 0x13, 0x85, 0x72, 0x63, 0x03, 0x04, 0xe0, 0x04, 0x36, 0x2b, 0x20, 0x19, 0x02, 0xe8, 0x74 -.byte 0xa7, 0x1f, 0xb6, 0xc9, 0x56, 0x66, 0xf0, 0x75, 0x25, 0xdc, 0x67, 0xc1, 0x0e, 0x61, 0x60, 0x88 -.byte 0xb3, 0x3e, 0xd1, 0xa8, 0xfc, 0xa3, 0xda, 0x1d, 0xb0, 0xd1, 0xb1, 0x23, 0x54, 0xdf, 0x44, 0x76 -.byte 0x6d, 0xed, 0x41, 0xd8, 0xc1, 0xb2, 0x22, 0xb6, 0x53, 0x1c, 0xdf, 0x35, 0x1d, 0xdc, 0xa1, 0x77 -.byte 0x2a, 0x31, 0xe4, 0x2d, 0xf5, 0xe5, 0xe5, 0xdb, 0xc8, 0xe0, 0xff, 0xe5, 0x80, 0xd7, 0x0b, 0x63 -.byte 0xa0, 0xff, 0x33, 0xa1, 0x0f, 0xba, 0x2c, 0x15, 0x15, 0xea, 0x97, 0xb3, 0xd2, 0xa2, 0xb5, 0xbe -.byte 0xf2, 0x8c, 0x96, 0x1e, 0x1a, 0x8f, 0x1d, 0x6c, 0xa4, 0x61, 0x37, 0xb9, 0x86, 0x73, 0x33, 0xd7 -.byte 0x97, 0x96, 0x9e, 0x23, 0x7d, 0x82, 0xa4, 0x4c, 0x81, 0xe2, 0xa1, 0xd1, 0xba, 0x67, 0x5f, 0x95 -.byte 0x07, 0xa3, 0x27, 0x11, 0xee, 0x16, 0x10, 0x7b, 0xbc, 0x45, 0x4a, 0x4c, 0xb2, 0x04, 0xd2, 0xab -.byte 0xef, 0xd5, 0xfd, 0x0c, 0x51, 0xce, 0x50, 0x6a, 0x08, 0x31, 0xf9, 0x91, 0xda, 0x0c, 0x8f, 0x64 -.byte 0x5c, 0x03, 0xc3, 0x3a, 0x8b, 0x20, 0x3f, 0x6e, 0x8d, 0x67, 0x3d, 0x3a, 0xd6, 0xfe, 0x7d, 0x5b -.byte 0x88, 0xc9, 0x5e, 0xfb, 0xcc, 0x61, 0xdc, 0x8b, 0x33, 0x77, 0xd3, 0x44, 0x32, 0x35, 0x09, 0x62 -.byte 0x04, 0x92, 0x16, 0x10, 0xd8, 0x9e, 0x27, 0x47, 0xfb, 0x3b, 0x21, 0xe3, 0xf8, 0xeb, 0x1d, 0x5b -.byte 0x02, 0x03, 0x01, 0x00, 0x01, 0x47, 0x00, 0x26, 0x02, 0x30, 0x45, 0x31, 0x0b, 0x30, 0x09, 0x06 -.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x42, 0x4d, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04 -.byte 0x0a, 0x13, 0x10, 0x51, 0x75, 0x6f, 0x56, 0x61, 0x64, 0x69, 0x73, 0x20, 0x4c, 0x69, 0x6d, 0x69 -.byte 0x74, 0x65, 0x64, 0x31, 0x1b, 0x30, 0x19, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x12, 0x51, 0x75 -.byte 0x6f, 0x56, 0x61, 0x64, 0x69, 0x73, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x33 -.byte 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01 -.byte 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01 -.byte 0x00, 0xcc, 0x57, 0x42, 0x16, 0x54, 0x9c, 0xe6, 0x98, 0xd3, 0xd3, 0x4d, 0xee, 0xfe, 0xed, 0xc7 -.byte 0x9f, 0x43, 0x39, 0x4a, 0x65, 0xb3, 0xe8, 0x16, 0x88, 0x34, 0xdb, 0x0d, 0x59, 0x91, 0x74, 0xcf -.byte 0x92, 0xb8, 0x04, 0x40, 0xad, 0x02, 0x4b, 0x31, 0xab, 0xbc, 0x8d, 0x91, 0x68, 0xd8, 0x20, 0x0e -.byte 0x1a, 0x01, 0xe2, 0x1a, 0x7b, 0x4e, 0x17, 0x5d, 0xe2, 0x8a, 0xb7, 0x3f, 0x99, 0x1a, 0xcd, 0xeb -.byte 0x61, 0xab, 0xc2, 0x65, 0xa6, 0x1f, 0xb7, 0xb7, 0xbd, 0xb7, 0x8f, 0xfc, 0xfd, 0x70, 0x8f, 0x0b -.byte 0xa0, 0x67, 0xbe, 0x01, 0xa2, 0x59, 0xcf, 0x71, 0xe6, 0x0f, 0x29, 0x76, 0xff, 0xb1, 0x56, 0x79 -.byte 0x45, 0x2b, 0x1f, 0x9e, 0x7a, 0x54, 0xe8, 0xa3, 0x29, 0x35, 0x68, 0xa4, 0x01, 0x4f, 0x0f, 0xa4 -.byte 0x2e, 0x37, 0xef, 0x1b, 0xbf, 0xe3, 0x8f, 0x10, 0xa8, 0x72, 0xab, 0x58, 0x57, 0xe7, 0x54, 0x86 -.byte 0xc8, 0xc9, 0xf3, 0x5b, 0xda, 0x2c, 0xda, 0x5d, 0x8e, 0x6e, 0x3c, 0xa3, 0x3e, 0xda, 0xfb, 0x82 -.byte 0xe5, 0xdd, 0xf2, 0x5c, 0xb2, 0x05, 0x33, 0x6f, 0x8a, 0x36, 0xce, 0xd0, 0x13, 0x4e, 0xff, 0xbf -.byte 0x4a, 0x0c, 0x34, 0x4c, 0xa6, 0xc3, 0x21, 0xbd, 0x50, 0x04, 0x55, 0xeb, 0xb1, 0xbb, 0x9d, 0xfb -.byte 0x45, 0x1e, 0x64, 0x15, 0xde, 0x55, 0x01, 0x8c, 0x02, 0x76, 0xb5, 0xcb, 0xa1, 0x3f, 0x42, 0x69 -.byte 0xbc, 0x2f, 0xbd, 0x68, 0x43, 0x16, 0x56, 0x89, 0x2a, 0x37, 0x61, 0x91, 0xfd, 0xa6, 0xae, 0x4e -.byte 0xc0, 0xcb, 0x14, 0x65, 0x94, 0x37, 0x4b, 0x92, 0x06, 0xef, 0x04, 0xd0, 0xc8, 0x9c, 0x88, 0xdb -.byte 0x0b, 0x7b, 0x81, 0xaf, 0xb1, 0x3d, 0x2a, 0xc4, 0x65, 0x3a, 0x78, 0xb6, 0xee, 0xdc, 0x80, 0xb1 -.byte 0xd2, 0xd3, 0x99, 0x9c, 0x3a, 0xee, 0x6b, 0x5a, 0x6b, 0xb3, 0x8d, 0xb7, 0xd5, 0xce, 0x9c, 0xc2 -.byte 0xbe, 0xa5, 0x4b, 0x2f, 0x16, 0xb1, 0x9e, 0x68, 0x3b, 0x06, 0x6f, 0xae, 0x7d, 0x9f, 0xf8, 0xde -.byte 0xec, 0xcc, 0x29, 0xa7, 0x98, 0xa3, 0x25, 0x43, 0x2f, 0xef, 0xf1, 0x5f, 0x26, 0xe1, 0x88, 0x4d -.byte 0xf8, 0x5e, 0x6e, 0xd7, 0xd9, 0x14, 0x6e, 0x19, 0x33, 0x69, 0xa7, 0x3b, 0x84, 0x89, 0x93, 0xc4 -.byte 0x53, 0x55, 0x13, 0xa1, 0x51, 0x78, 0x40, 0xf8, 0xb8, 0xc9, 0xa2, 0xee, 0x7b, 0xba, 0x52, 0x42 -.byte 0x83, 0x9e, 0x14, 0xed, 0x05, 0x52, 0x5a, 0x59, 0x56, 0xa7, 0x97, 0xfc, 0x9d, 0x3f, 0x0a, 0x29 -.byte 0xd8, 0xdc, 0x4f, 0x91, 0x0e, 0x13, 0xbc, 0xde, 0x95, 0xa4, 0xdf, 0x8b, 0x99, 0xbe, 0xac, 0x9b -.byte 0x33, 0x88, 0xef, 0xb5, 0x81, 0xaf, 0x1b, 0xc6, 0x22, 0x53, 0xc8, 0xf6, 0xc7, 0xee, 0x97, 0x14 -.byte 0xb0, 0xc5, 0x7c, 0x78, 0x52, 0xc8, 0xf0, 0xce, 0x6e, 0x77, 0x60, 0x84, 0xa6, 0xe9, 0x2a, 0x76 -.byte 0x20, 0xed, 0x58, 0x01, 0x17, 0x30, 0x93, 0xe9, 0x1a, 0x8b, 0xe0, 0x73, 0x63, 0xd9, 0x6a, 0x92 -.byte 0x94, 0x49, 0x4e, 0xb4, 0xad, 0x4a, 0x85, 0xc4, 0xa3, 0x22, 0x30, 0xfc, 0x09, 0xed, 0x68, 0x22 -.byte 0x73, 0xa6, 0x88, 0x0c, 0x55, 0x21, 0x58, 0xc5, 0xe1, 0x3a, 0x9f, 0x2a, 0xdd, 0xca, 0xe1, 0x90 -.byte 0xe0, 0xd9, 0x73, 0xab, 0x6c, 0x80, 0xb8, 0xe8, 0x0b, 0x64, 0x93, 0xa0, 0x9c, 0x8c, 0x19, 0xff -.byte 0xb3, 0xd2, 0x0c, 0xec, 0x91, 0x26, 0x87, 0x8a, 0xb3, 0xa2, 0xe1, 0x70, 0x8f, 0x2c, 0x0a, 0xe5 -.byte 0xcd, 0x6d, 0x68, 0x51, 0xeb, 0xda, 0x3f, 0x05, 0x7f, 0x8b, 0x32, 0xe6, 0x13, 0x5c, 0x6b, 0xfe -.byte 0x5f, 0x40, 0xe2, 0x22, 0xc8, 0xb4, 0xb4, 0x64, 0x4f, 0xd6, 0xba, 0x7d, 0x48, 0x3e, 0xa8, 0x69 -.byte 0x0c, 0xd7, 0xbb, 0x86, 0x71, 0xc9, 0x73, 0xb8, 0x3f, 0x3b, 0x9d, 0x25, 0x4b, 0xda, 0xff, 0x40 -.byte 0xeb, 0x02, 0x03, 0x01, 0x00, 0x01, 0x47, 0x00, 0x26, 0x02, 0x30, 0x45, 0x31, 0x0b, 0x30, 0x09 -.byte 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x43, 0x48, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55 -.byte 0x04, 0x0a, 0x13, 0x0c, 0x53, 0x77, 0x69, 0x73, 0x73, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x41, 0x47 -.byte 0x31, 0x1f, 0x30, 0x1d, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x16, 0x53, 0x77, 0x69, 0x73, 0x73 -.byte 0x53, 0x69, 0x67, 0x6e, 0x20, 0x47, 0x6f, 0x6c, 0x64, 0x20, 0x43, 0x41, 0x20, 0x2d, 0x20, 0x47 -.byte 0x32, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01 -.byte 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02 -.byte 0x01, 0x00, 0xaf, 0xe4, 0xee, 0x7e, 0x8b, 0x24, 0x0e, 0x12, 0x6e, 0xa9, 0x50, 0x2d, 0x16, 0x44 -.byte 0x3b, 0x92, 0x92, 0x5c, 0xca, 0xb8, 0x5d, 0x84, 0x92, 0x42, 0x13, 0x2a, 0xbc, 0x65, 0x57, 0x82 -.byte 0x40, 0x3e, 0x57, 0x24, 0xcd, 0x50, 0x8b, 0x25, 0x2a, 0xb7, 0x6f, 0xfc, 0xef, 0xa2, 0xd0, 0xc0 -.byte 0x1f, 0x02, 0x24, 0x4a, 0x13, 0x96, 0x8f, 0x23, 0x13, 0xe6, 0x28, 0x58, 0x00, 0xa3, 0x47, 0xc7 -.byte 0x06, 0xa7, 0x84, 0x23, 0x2b, 0xbb, 0xbd, 0x96, 0x2b, 0x7f, 0x55, 0xcc, 0x8b, 0xc1, 0x57, 0x1f -.byte 0x0e, 0x62, 0x65, 0x0f, 0xdd, 0x3d, 0x56, 0x8a, 0x73, 0xda, 0xae, 0x7e, 0x6d, 0xba, 0x81, 0x1c -.byte 0x7e, 0x42, 0x8c, 0x20, 0x35, 0xd9, 0x43, 0x4d, 0x84, 0xfa, 0x84, 0xdb, 0x52, 0x2c, 0xf3, 0x0e -.byte 0x27, 0x77, 0x0b, 0x6b, 0xbf, 0x11, 0x2f, 0x72, 0x78, 0x9f, 0x2e, 0xd8, 0x3e, 0xe6, 0x18, 0x37 -.byte 0x5a, 0x2a, 0x72, 0xf9, 0xda, 0x62, 0x90, 0x92, 0x95, 0xca, 0x1f, 0x9c, 0xe9, 0xb3, 0x3c, 0x2b -.byte 0xcb, 0xf3, 0x01, 0x13, 0xbf, 0x5a, 0xcf, 0xc1, 0xb5, 0x0a, 0x60, 0xbd, 0xdd, 0xb5, 0x99, 0x64 -.byte 0x53, 0xb8, 0xa0, 0x96, 0xb3, 0x6f, 0xe2, 0x26, 0x77, 0x91, 0x8c, 0xe0, 0x62, 0x10, 0x02, 0x9f -.byte 0x34, 0x0f, 0xa4, 0xd5, 0x92, 0x33, 0x51, 0xde, 0xbe, 0x8d, 0xba, 0x84, 0x7a, 0x60, 0x3c, 0x6a -.byte 0xdb, 0x9f, 0x2b, 0xec, 0xde, 0xde, 0x01, 0x3f, 0x6e, 0x4d, 0xe5, 0x50, 0x86, 0xcb, 0xb4, 0xaf -.byte 0xed, 0x44, 0x40, 0xc5, 0xca, 0x5a, 0x8c, 0xda, 0xd2, 0x2b, 0x7c, 0xa8, 0xee, 0xbe, 0xa6, 0xe5 -.byte 0x0a, 0xaa, 0x0e, 0xa5, 0xdf, 0x05, 0x52, 0xb7, 0x55, 0xc7, 0x22, 0x5d, 0x32, 0x6a, 0x97, 0x97 -.byte 0x63, 0x13, 0xdb, 0xc9, 0xdb, 0x79, 0x36, 0x7b, 0x85, 0x3a, 0x4a, 0xc5, 0x52, 0x89, 0xf9, 0x24 -.byte 0xe7, 0x9d, 0x77, 0xa9, 0x82, 0xff, 0x55, 0x1c, 0xa5, 0x71, 0x69, 0x2b, 0xd1, 0x02, 0x24, 0xf2 -.byte 0xb3, 0x26, 0xd4, 0x6b, 0xda, 0x04, 0x55, 0xe5, 0xc1, 0x0a, 0xc7, 0x6d, 0x30, 0x37, 0x90, 0x2a -.byte 0xe4, 0x9e, 0x14, 0x33, 0x5e, 0x16, 0x17, 0x55, 0xc5, 0x5b, 0xb5, 0xcb, 0x34, 0x89, 0x92, 0xf1 -.byte 0x9d, 0x26, 0x8f, 0xa1, 0x07, 0xd4, 0xc6, 0xb2, 0x78, 0x50, 0xdb, 0x0c, 0x0c, 0x0b, 0x7c, 0x0b -.byte 0x8c, 0x41, 0xd7, 0xb9, 0xe9, 0xdd, 0x8c, 0x88, 0xf7, 0xa3, 0x4d, 0xb2, 0x32, 0xcc, 0xd8, 0x17 -.byte 0xda, 0xcd, 0xb7, 0xce, 0x66, 0x9d, 0xd4, 0xfd, 0x5e, 0xff, 0xbd, 0x97, 0x3e, 0x29, 0x75, 0xe7 -.byte 0x7e, 0xa7, 0x62, 0x58, 0xaf, 0x25, 0x34, 0xa5, 0x41, 0xc7, 0x3d, 0xbc, 0x0d, 0x50, 0xca, 0x03 -.byte 0x03, 0x0f, 0x08, 0x5a, 0x1f, 0x95, 0x73, 0x78, 0x62, 0xbf, 0xaf, 0x72, 0x14, 0x69, 0x0e, 0xa5 -.byte 0xe5, 0x03, 0x0e, 0x78, 0x8e, 0x26, 0x28, 0x42, 0xf0, 0x07, 0x0b, 0x62, 0x20, 0x10, 0x67, 0x39 -.byte 0x46, 0xfa, 0xa9, 0x03, 0xcc, 0x04, 0x38, 0x7a, 0x66, 0xef, 0x20, 0x83, 0xb5, 0x8c, 0x4a, 0x56 -.byte 0x8e, 0x91, 0x00, 0xfc, 0x8e, 0x5c, 0x82, 0xde, 0x88, 0xa0, 0xc3, 0xe2, 0x68, 0x6e, 0x7d, 0x8d -.byte 0xef, 0x3c, 0xdd, 0x65, 0xf4, 0x5d, 0xac, 0x51, 0xef, 0x24, 0x80, 0xae, 0xaa, 0x56, 0x97, 0x6f -.byte 0xf9, 0xad, 0x7d, 0xda, 0x61, 0x3f, 0x98, 0x77, 0x3c, 0xa5, 0x91, 0xb6, 0x1c, 0x8c, 0x26, 0xda -.byte 0x65, 0xa2, 0x09, 0x6d, 0xc1, 0xe2, 0x54, 0xe3, 0xb9, 0xca, 0x4c, 0x4c, 0x80, 0x8f, 0x77, 0x7b -.byte 0x60, 0x9a, 0x1e, 0xdf, 0xb6, 0xf2, 0x48, 0x1e, 0x0e, 0xba, 0x4e, 0x54, 0x6d, 0x98, 0xe0, 0xe1 -.byte 0xa2, 0x1a, 0xa2, 0x77, 0x50, 0xcf, 0xc4, 0x63, 0x92, 0xec, 0x47, 0x19, 0x9d, 0xeb, 0xe6, 0x6b -.byte 0xce, 0xc1, 0x02, 0x03, 0x01, 0x00, 0x01, 0x47, 0x00, 0x78, 0x00, 0x30, 0x45, 0x31, 0x0b, 0x30 -.byte 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03 -.byte 0x55, 0x04, 0x0a, 0x0c, 0x0b, 0x41, 0x66, 0x66, 0x69, 0x72, 0x6d, 0x54, 0x72, 0x75, 0x73, 0x74 -.byte 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x17, 0x41, 0x66, 0x66, 0x69, 0x72 -.byte 0x6d, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x50, 0x72, 0x65, 0x6d, 0x69, 0x75, 0x6d, 0x20, 0x45 -.byte 0x43, 0x43, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06 -.byte 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0x0d, 0x30, 0x5e, 0x1b, 0x15, 0x9d -.byte 0x03, 0xd0, 0xa1, 0x79, 0x35, 0xb7, 0x3a, 0x3c, 0x92, 0x7a, 0xca, 0x15, 0x1c, 0xcd, 0x62, 0xf3 -.byte 0x9c, 0x26, 0x5c, 0x07, 0x3d, 0xe5, 0x54, 0xfa, 0xa3, 0xd6, 0xcc, 0x12, 0xea, 0xf4, 0x14, 0x5f -.byte 0xe8, 0x8e, 0x19, 0xab, 0x2f, 0x2e, 0x48, 0xe6, 0xac, 0x18, 0x43, 0x78, 0xac, 0xd0, 0x37, 0xc3 -.byte 0xbd, 0xb2, 0xcd, 0x2c, 0xe6, 0x47, 0xe2, 0x1a, 0xe6, 0x63, 0xb8, 0x3d, 0x2e, 0x2f, 0x78, 0xc4 -.byte 0x4f, 0xdb, 0xf4, 0x0f, 0xa4, 0x68, 0x4c, 0x55, 0x72, 0x6b, 0x95, 0x1d, 0x4e, 0x18, 0x42, 0x95 -.byte 0x78, 0xcc, 0x37, 0x3c, 0x91, 0xe2, 0x9b, 0x65, 0x2b, 0x29, 0x48, 0x00, 0x78, 0x00, 0x30, 0x46 -.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x42, 0x45, 0x31, 0x19, 0x30 -.byte 0x17, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x10, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69 -.byte 0x67, 0x6e, 0x20, 0x6e, 0x76, 0x2d, 0x73, 0x61, 0x31, 0x1c, 0x30, 0x1a, 0x06, 0x03, 0x55, 0x04 -.byte 0x03, 0x13, 0x13, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x52, 0x6f -.byte 0x6f, 0x74, 0x20, 0x45, 0x34, 0x36, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce -.byte 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0x9c, 0x0e -.byte 0xb1, 0xcf, 0xb7, 0xe8, 0x9e, 0x52, 0x77, 0x75, 0x34, 0xfa, 0xa5, 0x46, 0xa7, 0xad, 0x32, 0x19 -.byte 0x32, 0xb4, 0x07, 0xa9, 0x27, 0xca, 0x94, 0xbb, 0x0c, 0xd2, 0x0a, 0x10, 0xc7, 0xda, 0x89, 0xb0 -.byte 0x97, 0x0c, 0x70, 0x13, 0x09, 0x01, 0x8e, 0xd8, 0xea, 0x47, 0xea, 0xbe, 0xb2, 0x80, 0x2b, 0xcd -.byte 0xfc, 0x28, 0x0d, 0xdb, 0xac, 0xbc, 0xa4, 0x86, 0x37, 0xed, 0x70, 0x08, 0x00, 0x75, 0xea, 0x93 -.byte 0x0b, 0x7b, 0x2e, 0x52, 0x9c, 0x23, 0x68, 0x23, 0x06, 0x43, 0xec, 0x92, 0x2f, 0x53, 0x84, 0xdb -.byte 0xfb, 0x47, 0x14, 0x07, 0xe8, 0x5f, 0x94, 0x67, 0x5d, 0xc9, 0x7a, 0x81, 0x3c, 0x20, 0x48, 0x00 -.byte 0x26, 0x02, 0x30, 0x46, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x42 -.byte 0x45, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x10, 0x47, 0x6c, 0x6f, 0x62 -.byte 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x6e, 0x76, 0x2d, 0x73, 0x61, 0x31, 0x1c, 0x30, 0x1a -.byte 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x13, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67 -.byte 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x52, 0x34, 0x36, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d -.byte 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02 -.byte 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xac, 0xac, 0x74, 0x32, 0xe8 -.byte 0xb3, 0x65, 0xe5, 0xba, 0xed, 0x43, 0x26, 0x1d, 0xa6, 0x89, 0x0d, 0x45, 0xba, 0x29, 0x88, 0xb2 -.byte 0xa4, 0x1d, 0x63, 0xdd, 0xd3, 0xc1, 0x2c, 0x09, 0x57, 0x89, 0x39, 0xa1, 0x55, 0xe9, 0x67, 0x34 -.byte 0x77, 0x0c, 0x6e, 0xe4, 0x55, 0x1d, 0x52, 0x25, 0xd2, 0x13, 0x6b, 0x5e, 0xe1, 0x1d, 0xa9, 0xb7 -.byte 0x7d, 0x89, 0x32, 0x5f, 0x0d, 0x9e, 0x9f, 0x2c, 0x7a, 0x63, 0x60, 0x40, 0x1f, 0xa6, 0xb0, 0xb6 -.byte 0x78, 0x8f, 0x99, 0x54, 0x96, 0x08, 0x58, 0xae, 0xe4, 0x06, 0xbc, 0x62, 0x05, 0x02, 0x16, 0xbf -.byte 0xaf, 0xa8, 0x23, 0x03, 0xb6, 0x94, 0x0f, 0xbc, 0x6e, 0x6c, 0xc2, 0xcb, 0xd5, 0xa6, 0xbb, 0x0c -.byte 0xe9, 0xf6, 0xc1, 0x02, 0xfb, 0x21, 0xde, 0x66, 0xdd, 0x17, 0xab, 0x74, 0x42, 0xef, 0xf0, 0x74 -.byte 0x2f, 0x25, 0xf4, 0xea, 0x6b, 0x55, 0x5b, 0x90, 0xdb, 0x9d, 0xdf, 0x5e, 0x87, 0x0a, 0x40, 0xfb -.byte 0xad, 0x19, 0x6b, 0xfb, 0xf7, 0xca, 0x60, 0x88, 0xde, 0xda, 0xc1, 0x8f, 0xd6, 0xae, 0xd5, 0x7f -.byte 0xd4, 0x3c, 0x83, 0xee, 0xd7, 0x16, 0x4c, 0x83, 0x45, 0x33, 0x6b, 0x27, 0xd0, 0x86, 0xd0, 0x1c -.byte 0x2d, 0x6b, 0xf3, 0xab, 0x7d, 0xf1, 0x85, 0xa9, 0xf5, 0x28, 0xd2, 0xad, 0xef, 0xf3, 0x84, 0x4b -.byte 0x1c, 0x87, 0xfc, 0x13, 0xa3, 0x3a, 0x72, 0xa2, 0x5a, 0x11, 0x2b, 0xd6, 0x27, 0x71, 0x27, 0xed -.byte 0x81, 0x2d, 0x6d, 0x66, 0x81, 0x92, 0x87, 0xb4, 0x1b, 0x58, 0x7a, 0xcc, 0x3f, 0x0a, 0xfa, 0x46 -.byte 0x4f, 0x4d, 0x78, 0x5c, 0xf8, 0x2b, 0x48, 0xe3, 0x04, 0x84, 0xcb, 0x5d, 0xf6, 0xb4, 0x6a, 0xb3 -.byte 0x65, 0xfc, 0x42, 0x9e, 0x51, 0x26, 0x23, 0x20, 0xcb, 0x3d, 0x14, 0xf9, 0x81, 0xed, 0x65, 0x16 -.byte 0x00, 0x4f, 0x1a, 0x64, 0x97, 0x66, 0x08, 0xcf, 0x8c, 0x7b, 0xe3, 0x2b, 0xc0, 0x9d, 0xf9, 0x14 -.byte 0xf2, 0x1b, 0xf1, 0x56, 0x6a, 0x16, 0xbf, 0x2c, 0x85, 0x85, 0xcd, 0x78, 0x38, 0x9a, 0xeb, 0x42 -.byte 0x6a, 0x02, 0x34, 0x18, 0x83, 0x17, 0x4e, 0x94, 0x56, 0xf8, 0xb6, 0x82, 0xb5, 0xf3, 0x96, 0xdd -.byte 0x3d, 0xf3, 0xbe, 0x7f, 0x20, 0x77, 0x3e, 0x7b, 0x19, 0x23, 0x6b, 0x2c, 0xd4, 0x72, 0x73, 0x43 -.byte 0x57, 0x7d, 0xe0, 0xf8, 0xd7, 0x69, 0x4f, 0x17, 0x36, 0x04, 0xf9, 0xc0, 0x90, 0x60, 0x37, 0x45 -.byte 0xde, 0xe6, 0x0c, 0xd8, 0x74, 0x8d, 0xae, 0x9c, 0xa2, 0x6d, 0x74, 0x5d, 0x42, 0xbe, 0x06, 0xf5 -.byte 0xd9, 0x64, 0x6e, 0x02, 0x10, 0xac, 0x89, 0xb0, 0x4c, 0x3b, 0x07, 0x4d, 0x40, 0x7e, 0x24, 0xc5 -.byte 0x8a, 0x98, 0x82, 0x79, 0x8e, 0xa4, 0xa7, 0x82, 0x20, 0x8d, 0x23, 0xfa, 0x27, 0x71, 0xc9, 0xdf -.byte 0xc6, 0x41, 0x74, 0xa0, 0x4d, 0xf6, 0x91, 0x16, 0xdc, 0x46, 0x8c, 0x5f, 0x29, 0x63, 0x31, 0x59 -.byte 0x71, 0x0c, 0xd8, 0x6f, 0xc2, 0xb6, 0x32, 0x7d, 0xfb, 0xe6, 0x5d, 0x53, 0xa6, 0x7e, 0x15, 0xfc -.byte 0xbb, 0x75, 0x7c, 0x5d, 0xec, 0xf8, 0xf6, 0x17, 0x1c, 0xec, 0xc7, 0x6b, 0x19, 0xcb, 0xf3, 0x7b -.byte 0xf0, 0x2b, 0x07, 0xa5, 0xd9, 0x6c, 0x79, 0x54, 0x76, 0x6c, 0x9d, 0x1c, 0xa6, 0x6e, 0x0e, 0xe9 -.byte 0x79, 0x0c, 0xa8, 0x23, 0x6a, 0xa3, 0xdf, 0x1b, 0x30, 0x31, 0x9f, 0xb1, 0x54, 0x7b, 0xfe, 0x6a -.byte 0xcb, 0x66, 0xaa, 0xdc, 0x65, 0xd0, 0xa2, 0x9e, 0x4a, 0x9a, 0x07, 0x21, 0x6b, 0x81, 0x8f, 0xdb -.byte 0xc4, 0x59, 0xfa, 0xde, 0x22, 0xc0, 0x04, 0x9c, 0xe3, 0xaa, 0x5b, 0x36, 0x93, 0xe8, 0x3d, 0xbd -.byte 0x7a, 0xa1, 0x9d, 0x0b, 0x76, 0xb1, 0x0b, 0xc7, 0x9d, 0xfd, 0xcf, 0x98, 0xa8, 0x06, 0xc2, 0xf8 -.byte 0x2a, 0xa3, 0xa1, 0x83, 0xa0, 0xb7, 0x25, 0x72, 0xa5, 0x02, 0xe3, 0x02, 0x03, 0x01, 0x00, 0x01 -.byte 0x49, 0x00, 0x26, 0x02, 0x30, 0x47, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13 -.byte 0x02, 0x43, 0x4e, 0x31, 0x11, 0x30, 0x0f, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x08, 0x55, 0x6e -.byte 0x69, 0x54, 0x72, 0x75, 0x73, 0x74, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c -.byte 0x1c, 0x55, 0x43, 0x41, 0x20, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x64, 0x65, 0x64, 0x20, 0x56, 0x61 -.byte 0x6c, 0x69, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x30, 0x82, 0x02 -.byte 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00 -.byte 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xa9, 0x09 -.byte 0x07, 0x28, 0x13, 0x02, 0xb0, 0x99, 0xe0, 0x64, 0xaa, 0x1e, 0x43, 0x16, 0x7a, 0x73, 0xb1, 0x91 -.byte 0xa0, 0x75, 0x3e, 0xa8, 0xfa, 0xe3, 0x38, 0x00, 0x7a, 0xec, 0x89, 0x6a, 0x20, 0x0f, 0x8b, 0xc5 -.byte 0xb0, 0x9b, 0x33, 0x03, 0x5a, 0x86, 0xc6, 0x58, 0x86, 0xd5, 0xc1, 0x85, 0xbb, 0x4f, 0xc6, 0x9c -.byte 0x40, 0x4d, 0xca, 0xbe, 0xee, 0x69, 0x96, 0xb8, 0xad, 0x81, 0x30, 0x9a, 0x7c, 0x92, 0x05, 0xeb -.byte 0x05, 0x2b, 0x9a, 0x48, 0xd0, 0xb8, 0x76, 0x3e, 0x96, 0xc8, 0x20, 0xbb, 0xd2, 0xb0, 0xf1, 0x8f -.byte 0xd8, 0xac, 0x45, 0x46, 0xff, 0xaa, 0x67, 0x60, 0xb4, 0x77, 0x7e, 0x6a, 0x1f, 0x3c, 0x1a, 0x52 -.byte 0x7a, 0x04, 0x3d, 0x07, 0x3c, 0x85, 0x0d, 0x84, 0xd0, 0x1f, 0x76, 0x0a, 0xf7, 0x6a, 0x14, 0xdf -.byte 0x72, 0xe3, 0x34, 0x7c, 0x57, 0x4e, 0x56, 0x01, 0x3e, 0x79, 0xf1, 0xaa, 0x29, 0x3b, 0x6c, 0xfa -.byte 0xf8, 0x8f, 0x6d, 0x4d, 0xc8, 0x35, 0xdf, 0xae, 0xeb, 0xdc, 0x24, 0xee, 0x79, 0x45, 0xa7, 0x85 -.byte 0xb6, 0x05, 0x88, 0xde, 0x88, 0x5d, 0x25, 0x7c, 0x97, 0x64, 0x67, 0x09, 0xd9, 0xbf, 0x5a, 0x15 -.byte 0x05, 0x86, 0xf3, 0x09, 0x1e, 0xec, 0x58, 0x32, 0x33, 0x11, 0xf3, 0x77, 0x64, 0xb0, 0x76, 0x1f -.byte 0xe4, 0x10, 0x35, 0x17, 0x1b, 0xf2, 0x0e, 0xb1, 0x6c, 0xa4, 0x2a, 0xa3, 0x73, 0xfc, 0x09, 0x1f -.byte 0x1e, 0x32, 0x19, 0x53, 0x11, 0xe7, 0xd9, 0xb3, 0x2c, 0x2e, 0x76, 0x2e, 0xa1, 0xa3, 0xde, 0x7e -.byte 0x6a, 0x88, 0x09, 0xe8, 0xf2, 0x07, 0x8a, 0xf8, 0xb2, 0xcd, 0x10, 0xe7, 0xe2, 0x73, 0x40, 0x93 -.byte 0xbb, 0x08, 0xd1, 0x3f, 0xe1, 0xfc, 0x0b, 0x94, 0xb3, 0x25, 0xef, 0x7c, 0xa6, 0xd7, 0xd1, 0xaf -.byte 0x9f, 0xff, 0x96, 0x9a, 0xf5, 0x91, 0x7b, 0x98, 0x0b, 0x77, 0xd4, 0x7e, 0xe8, 0x07, 0xd2, 0x62 -.byte 0xb5, 0x95, 0x39, 0xe3, 0xf3, 0xf1, 0x6d, 0x0f, 0x0e, 0x65, 0x84, 0x8a, 0x63, 0x54, 0xc5, 0x80 -.byte 0xb6, 0xe0, 0x9e, 0x4b, 0x7d, 0x47, 0x26, 0xa7, 0x01, 0x08, 0x5d, 0xd1, 0x88, 0x9e, 0xd7, 0xc3 -.byte 0x32, 0x44, 0xfa, 0x82, 0x4a, 0x0a, 0x68, 0x54, 0x7f, 0x38, 0x53, 0x03, 0xcc, 0xa4, 0x00, 0x33 -.byte 0x64, 0x51, 0x59, 0x0b, 0xa3, 0x82, 0x91, 0x7a, 0x5e, 0xec, 0x16, 0xc2, 0xf3, 0x2a, 0xe6, 0x62 -.byte 0xda, 0x2a, 0xdb, 0x59, 0x62, 0x10, 0x25, 0x4a, 0x2a, 0x81, 0x0b, 0x47, 0x07, 0x43, 0x06, 0x70 -.byte 0x87, 0xd2, 0xfa, 0x93, 0x11, 0x29, 0x7a, 0x48, 0x4d, 0xeb, 0x94, 0xc7, 0x70, 0x4d, 0xaf, 0x67 -.byte 0xd5, 0x51, 0xb1, 0x80, 0x20, 0x01, 0x01, 0xb4, 0x7a, 0x08, 0xa6, 0x90, 0x7f, 0x4e, 0xe0, 0xef -.byte 0x07, 0x41, 0x87, 0xaf, 0x6a, 0xa5, 0x5e, 0x8b, 0xfb, 0xcf, 0x50, 0xb2, 0x9a, 0x54, 0xaf, 0xc3 -.byte 0x89, 0xba, 0x58, 0x2d, 0xf5, 0x30, 0x98, 0xb1, 0x36, 0x72, 0x39, 0x7e, 0x49, 0x04, 0xfd, 0x29 -.byte 0xa7, 0x4c, 0x79, 0xe4, 0x05, 0x57, 0xdb, 0x94, 0xb9, 0x16, 0x53, 0x8d, 0x46, 0xb3, 0x1d, 0x95 -.byte 0x61, 0x57, 0x56, 0x7f, 0xaf, 0xf0, 0x16, 0x5b, 0x61, 0x58, 0x6f, 0x36, 0x50, 0x11, 0x0b, 0xd8 -.byte 0xac, 0x2b, 0x95, 0x16, 0x1a, 0x0e, 0x1f, 0x08, 0xcd, 0x36, 0x34, 0x65, 0x10, 0x62, 0x66, 0xd5 -.byte 0x80, 0x5f, 0x14, 0x20, 0x5f, 0x2d, 0x0c, 0xa0, 0x78, 0x0a, 0x68, 0xd6, 0x2c, 0xd7, 0xe9, 0x6f -.byte 0x2b, 0xd2, 0x4a, 0x05, 0x93, 0xfc, 0x9e, 0x6f, 0x6b, 0x67, 0xff, 0x88, 0xf1, 0x4e, 0xa5, 0x69 -.byte 0x4a, 0x52, 0x37, 0x05, 0xea, 0xc6, 0x16, 0x8d, 0xd2, 0xc4, 0x99, 0xd1, 0x82, 0x2b, 0x3b, 0xba -.byte 0x35, 0x75, 0xf7, 0x51, 0x51, 0x58, 0xf3, 0xc8, 0x07, 0xdd, 0xe4, 0xb4, 0x03, 0x7f, 0x02, 0x03 -.byte 0x01, 0x00, 0x01, 0x49, 0x00, 0x78, 0x00, 0x30, 0x47, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55 -.byte 0x04, 0x06, 0x13, 0x02, 0x43, 0x4e, 0x31, 0x1c, 0x30, 0x1a, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13 -.byte 0x13, 0x69, 0x54, 0x72, 0x75, 0x73, 0x43, 0x68, 0x69, 0x6e, 0x61, 0x20, 0x43, 0x6f, 0x2e, 0x2c -.byte 0x4c, 0x74, 0x64, 0x2e, 0x31, 0x1a, 0x30, 0x18, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x11, 0x76 -.byte 0x54, 0x72, 0x75, 0x73, 0x20, 0x45, 0x43, 0x43, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41 -.byte 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b -.byte 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0x65, 0x50, 0x4a, 0xae, 0x8c, 0x79, 0x96, 0x4a -.byte 0xaa, 0x1c, 0x08, 0xc3, 0xa3, 0xa2, 0xcd, 0xfe, 0x59, 0x56, 0x41, 0x77, 0xfd, 0x26, 0x94, 0x42 -.byte 0xbb, 0x1d, 0xcd, 0x08, 0xdb, 0x73, 0xb2, 0x5b, 0x75, 0xf3, 0xcf, 0x9c, 0x4e, 0x82, 0xf4, 0xbf -.byte 0xf8, 0x61, 0x26, 0x85, 0x6c, 0xd6, 0x85, 0x5b, 0x72, 0x70, 0xd2, 0xfd, 0xdb, 0x62, 0xb4, 0xdf -.byte 0x53, 0x8b, 0xbd, 0xb1, 0x44, 0x58, 0x62, 0x42, 0x09, 0xc7, 0xfa, 0x7f, 0x5b, 0x10, 0xe7, 0xfe -.byte 0x40, 0xfd, 0xc0, 0xd8, 0xc3, 0x2b, 0x32, 0xe7, 0x70, 0xa6, 0xb7, 0xa6, 0x20, 0x55, 0x1d, 0x7b -.byte 0x80, 0x5d, 0x4b, 0x8f, 0x67, 0x4c, 0xf1, 0x10, 0x49, 0x00, 0x26, 0x02, 0x30, 0x47, 0x31, 0x0b -.byte 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x22, 0x30, 0x20, 0x06 -.byte 0x03, 0x55, 0x04, 0x0a, 0x13, 0x19, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x20, 0x54, 0x72, 0x75 -.byte 0x73, 0x74, 0x20, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x20, 0x4c, 0x4c, 0x43, 0x31 -.byte 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x0b, 0x47, 0x54, 0x53, 0x20, 0x52, 0x6f -.byte 0x6f, 0x74, 0x20, 0x52, 0x31, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48 -.byte 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02 -.byte 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xb6, 0x11, 0x02, 0x8b, 0x1e, 0xe3, 0xa1, 0x77, 0x9b, 0x3b -.byte 0xdc, 0xbf, 0x94, 0x3e, 0xb7, 0x95, 0xa7, 0x40, 0x3c, 0xa1, 0xfd, 0x82, 0xf9, 0x7d, 0x32, 0x06 -.byte 0x82, 0x71, 0xf6, 0xf6, 0x8c, 0x7f, 0xfb, 0xe8, 0xdb, 0xbc, 0x6a, 0x2e, 0x97, 0x97, 0xa3, 0x8c -.byte 0x4b, 0xf9, 0x2b, 0xf6, 0xb1, 0xf9, 0xce, 0x84, 0x1d, 0xb1, 0xf9, 0xc5, 0x97, 0xde, 0xef, 0xb9 -.byte 0xf2, 0xa3, 0xe9, 0xbc, 0x12, 0x89, 0x5e, 0xa7, 0xaa, 0x52, 0xab, 0xf8, 0x23, 0x27, 0xcb, 0xa4 -.byte 0xb1, 0x9c, 0x63, 0xdb, 0xd7, 0x99, 0x7e, 0xf0, 0x0a, 0x5e, 0xeb, 0x68, 0xa6, 0xf4, 0xc6, 0x5a -.byte 0x47, 0x0d, 0x4d, 0x10, 0x33, 0xe3, 0x4e, 0xb1, 0x13, 0xa3, 0xc8, 0x18, 0x6c, 0x4b, 0xec, 0xfc -.byte 0x09, 0x90, 0xdf, 0x9d, 0x64, 0x29, 0x25, 0x23, 0x07, 0xa1, 0xb4, 0xd2, 0x3d, 0x2e, 0x60, 0xe0 -.byte 0xcf, 0xd2, 0x09, 0x87, 0xbb, 0xcd, 0x48, 0xf0, 0x4d, 0xc2, 0xc2, 0x7a, 0x88, 0x8a, 0xbb, 0xba -.byte 0xcf, 0x59, 0x19, 0xd6, 0xaf, 0x8f, 0xb0, 0x07, 0xb0, 0x9e, 0x31, 0xf1, 0x82, 0xc1, 0xc0, 0xdf -.byte 0x2e, 0xa6, 0x6d, 0x6c, 0x19, 0x0e, 0xb5, 0xd8, 0x7e, 0x26, 0x1a, 0x45, 0x03, 0x3d, 0xb0, 0x79 -.byte 0xa4, 0x94, 0x28, 0xad, 0x0f, 0x7f, 0x26, 0xe5, 0xa8, 0x08, 0xfe, 0x96, 0xe8, 0x3c, 0x68, 0x94 -.byte 0x53, 0xee, 0x83, 0x3a, 0x88, 0x2b, 0x15, 0x96, 0x09, 0xb2, 0xe0, 0x7a, 0x8c, 0x2e, 0x75, 0xd6 -.byte 0x9c, 0xeb, 0xa7, 0x56, 0x64, 0x8f, 0x96, 0x4f, 0x68, 0xae, 0x3d, 0x97, 0xc2, 0x84, 0x8f, 0xc0 -.byte 0xbc, 0x40, 0xc0, 0x0b, 0x5c, 0xbd, 0xf6, 0x87, 0xb3, 0x35, 0x6c, 0xac, 0x18, 0x50, 0x7f, 0x84 -.byte 0xe0, 0x4c, 0xcd, 0x92, 0xd3, 0x20, 0xe9, 0x33, 0xbc, 0x52, 0x99, 0xaf, 0x32, 0xb5, 0x29, 0xb3 -.byte 0x25, 0x2a, 0xb4, 0x48, 0xf9, 0x72, 0xe1, 0xca, 0x64, 0xf7, 0xe6, 0x82, 0x10, 0x8d, 0xe8, 0x9d -.byte 0xc2, 0x8a, 0x88, 0xfa, 0x38, 0x66, 0x8a, 0xfc, 0x63, 0xf9, 0x01, 0xf9, 0x78, 0xfd, 0x7b, 0x5c -.byte 0x77, 0xfa, 0x76, 0x87, 0xfa, 0xec, 0xdf, 0xb1, 0x0e, 0x79, 0x95, 0x57, 0xb4, 0xbd, 0x26, 0xef -.byte 0xd6, 0x01, 0xd1, 0xeb, 0x16, 0x0a, 0xbb, 0x8e, 0x0b, 0xb5, 0xc5, 0xc5, 0x8a, 0x55, 0xab, 0xd3 -.byte 0xac, 0xea, 0x91, 0x4b, 0x29, 0xcc, 0x19, 0xa4, 0x32, 0x25, 0x4e, 0x2a, 0xf1, 0x65, 0x44, 0xd0 -.byte 0x02, 0xce, 0xaa, 0xce, 0x49, 0xb4, 0xea, 0x9f, 0x7c, 0x83, 0xb0, 0x40, 0x7b, 0xe7, 0x43, 0xab -.byte 0xa7, 0x6c, 0xa3, 0x8f, 0x7d, 0x89, 0x81, 0xfa, 0x4c, 0xa5, 0xff, 0xd5, 0x8e, 0xc3, 0xce, 0x4b -.byte 0xe0, 0xb5, 0xd8, 0xb3, 0x8e, 0x45, 0xcf, 0x76, 0xc0, 0xed, 0x40, 0x2b, 0xfd, 0x53, 0x0f, 0xb0 -.byte 0xa7, 0xd5, 0x3b, 0x0d, 0xb1, 0x8a, 0xa2, 0x03, 0xde, 0x31, 0xad, 0xcc, 0x77, 0xea, 0x6f, 0x7b -.byte 0x3e, 0xd6, 0xdf, 0x91, 0x22, 0x12, 0xe6, 0xbe, 0xfa, 0xd8, 0x32, 0xfc, 0x10, 0x63, 0x14, 0x51 -.byte 0x72, 0xde, 0x5d, 0xd6, 0x16, 0x93, 0xbd, 0x29, 0x68, 0x33, 0xef, 0x3a, 0x66, 0xec, 0x07, 0x8a -.byte 0x26, 0xdf, 0x13, 0xd7, 0x57, 0x65, 0x78, 0x27, 0xde, 0x5e, 0x49, 0x14, 0x00, 0xa2, 0x00, 0x7f -.byte 0x9a, 0xa8, 0x21, 0xb6, 0xa9, 0xb1, 0x95, 0xb0, 0xa5, 0xb9, 0x0d, 0x16, 0x11, 0xda, 0xc7, 0x6c -.byte 0x48, 0x3c, 0x40, 0xe0, 0x7e, 0x0d, 0x5a, 0xcd, 0x56, 0x3c, 0xd1, 0x97, 0x05, 0xb9, 0xcb, 0x4b -.byte 0xed, 0x39, 0x4b, 0x9c, 0xc4, 0x3f, 0xd2, 0x55, 0x13, 0x6e, 0x24, 0xb0, 0xd6, 0x71, 0xfa, 0xf4 -.byte 0xc1, 0xba, 0xcc, 0xed, 0x1b, 0xf5, 0xfe, 0x81, 0x41, 0xd8, 0x00, 0x98, 0x3d, 0x3a, 0xc8, 0xae -.byte 0x7a, 0x98, 0x37, 0x18, 0x05, 0x95, 0x02, 0x03, 0x01, 0x00, 0x01, 0x49, 0x00, 0x26, 0x02, 0x30 -.byte 0x47, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x22 -.byte 0x30, 0x20, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x19, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x20 -.byte 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x20, 0x4c -.byte 0x4c, 0x43, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x0b, 0x47, 0x54, 0x53 -.byte 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x52, 0x32, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09 -.byte 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00 -.byte 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xce, 0xde, 0xfd, 0xa6, 0xfb, 0xec, 0xec -.byte 0x14, 0x34, 0x3c, 0x07, 0x06, 0x5a, 0x6c, 0x59, 0xf7, 0x19, 0x35, 0xdd, 0xf7, 0xc1, 0x9d, 0x55 -.byte 0xaa, 0xd3, 0xcd, 0x3b, 0xa4, 0x93, 0x72, 0xef, 0x0a, 0xfa, 0x6d, 0x9d, 0xf6, 0xf0, 0x85, 0x80 -.byte 0x5b, 0xa1, 0x48, 0x52, 0x9f, 0x39, 0xc5, 0xb7, 0xee, 0x28, 0xac, 0xef, 0xcb, 0x76, 0x68, 0x14 -.byte 0xb9, 0xdf, 0xad, 0x01, 0x6c, 0x99, 0x1f, 0xc4, 0x22, 0x1d, 0x9f, 0xfe, 0x72, 0x77, 0xe0, 0x2c -.byte 0x5b, 0xaf, 0xe4, 0x04, 0xbf, 0x4f, 0x72, 0xa0, 0x1a, 0x34, 0x98, 0xe8, 0x39, 0x68, 0xec, 0x95 -.byte 0x25, 0x7b, 0x76, 0xa1, 0xe6, 0x69, 0xb9, 0x85, 0x19, 0xbd, 0x89, 0x8c, 0xfe, 0xad, 0xed, 0x36 -.byte 0xea, 0x73, 0xbc, 0xff, 0x83, 0xe2, 0xcb, 0x7d, 0xc1, 0xd2, 0xce, 0x4a, 0xb3, 0x8d, 0x05, 0x9e -.byte 0x8b, 0x49, 0x93, 0xdf, 0xc1, 0x5b, 0xd0, 0x6e, 0x5e, 0xf0, 0x2e, 0x30, 0x2e, 0x82, 0xfc, 0xfa -.byte 0xbc, 0xb4, 0x17, 0x0a, 0x48, 0xe5, 0x88, 0x9b, 0xc5, 0x9b, 0x6b, 0xde, 0xb0, 0xca, 0xb4, 0x03 -.byte 0xf0, 0xda, 0xf4, 0x90, 0xb8, 0x65, 0x64, 0xf7, 0x5c, 0x4c, 0xad, 0xe8, 0x7e, 0x66, 0x5e, 0x99 -.byte 0xd7, 0xb8, 0xc2, 0x3e, 0xc8, 0xd0, 0x13, 0x9d, 0xad, 0xee, 0xe4, 0x45, 0x7b, 0x89, 0x55, 0xf7 -.byte 0x8a, 0x1f, 0x62, 0x52, 0x84, 0x12, 0xb3, 0xc2, 0x40, 0x97, 0xe3, 0x8a, 0x1f, 0x47, 0x91, 0xa6 -.byte 0x74, 0x5a, 0xd2, 0xf8, 0xb1, 0x63, 0x28, 0x10, 0xb8, 0xb3, 0x09, 0xb8, 0x56, 0x77, 0x40, 0xa2 -.byte 0x26, 0x98, 0x79, 0xc6, 0xfe, 0xdf, 0x25, 0xee, 0x3e, 0xe5, 0xa0, 0x7f, 0xd4, 0x61, 0x0f, 0x51 -.byte 0x4b, 0x3c, 0x3f, 0x8c, 0xda, 0xe1, 0x70, 0x74, 0xd8, 0xc2, 0x68, 0xa1, 0xf9, 0xc1, 0x0c, 0xe9 -.byte 0xa1, 0xe2, 0x7f, 0xbb, 0x55, 0x3c, 0x76, 0x06, 0xee, 0x6a, 0x4e, 0xcc, 0x92, 0x88, 0x30, 0x4d -.byte 0x9a, 0xbd, 0x4f, 0x0b, 0x48, 0x9a, 0x84, 0xb5, 0x98, 0xa3, 0xd5, 0xfb, 0x73, 0xc1, 0x57, 0x61 -.byte 0xdd, 0x28, 0x56, 0x75, 0x13, 0xae, 0x87, 0x8e, 0xe7, 0x0c, 0x51, 0x09, 0x10, 0x75, 0x88, 0x4c -.byte 0xbc, 0x8d, 0xf9, 0x7b, 0x3c, 0xd4, 0x22, 0x48, 0x1f, 0x2a, 0xdc, 0xeb, 0x6b, 0xbb, 0x44, 0xb1 -.byte 0xcb, 0x33, 0x71, 0x32, 0x46, 0xaf, 0xad, 0x4a, 0xf1, 0x8c, 0xe8, 0x74, 0x3a, 0xac, 0xe7, 0x1a -.byte 0x22, 0x73, 0x80, 0xd2, 0x30, 0xf7, 0x25, 0x42, 0xc7, 0x22, 0x3b, 0x3b, 0x12, 0xad, 0x96, 0x2e -.byte 0xc6, 0xc3, 0x76, 0x07, 0xaa, 0x20, 0xb7, 0x35, 0x49, 0x57, 0xe9, 0x92, 0x49, 0xe8, 0x76, 0x16 -.byte 0x72, 0x31, 0x67, 0x2b, 0x96, 0x7e, 0x8a, 0xa3, 0xc7, 0x94, 0x56, 0x22, 0xbf, 0x6a, 0x4b, 0x7e -.byte 0x01, 0x21, 0xb2, 0x23, 0x32, 0xdf, 0xe4, 0x9a, 0x44, 0x6d, 0x59, 0x5b, 0x5d, 0xf5, 0x00, 0xa0 -.byte 0x1c, 0x9b, 0xc6, 0x78, 0x97, 0x8d, 0x90, 0xff, 0x9b, 0xc8, 0xaa, 0xb4, 0xaf, 0x11, 0x51, 0x39 -.byte 0x5e, 0xd9, 0xfb, 0x67, 0xad, 0xd5, 0x5b, 0x11, 0x9d, 0x32, 0x9a, 0x1b, 0xbd, 0xd5, 0xba, 0x5b -.byte 0xa5, 0xc9, 0xcb, 0x25, 0x69, 0x53, 0x55, 0x27, 0x5c, 0xe0, 0xca, 0x36, 0xcb, 0x88, 0x61, 0xfb -.byte 0x1e, 0xb7, 0xd0, 0xcb, 0xee, 0x16, 0xfb, 0xd3, 0xa6, 0x4c, 0xde, 0x92, 0xa5, 0xd4, 0xe2, 0xdf -.byte 0xf5, 0x06, 0x54, 0xde, 0x2e, 0x9d, 0x4b, 0xb4, 0x93, 0x30, 0xaa, 0x81, 0xce, 0xdd, 0x1a, 0xdc -.byte 0x51, 0x73, 0x0d, 0x4f, 0x70, 0xe9, 0xe5, 0xb6, 0x16, 0x21, 0x19, 0x79, 0xb2, 0xe6, 0x89, 0x0b -.byte 0x75, 0x64, 0xca, 0xd5, 0xab, 0xbc, 0x09, 0xc1, 0x18, 0xa1, 0xff, 0xd4, 0x54, 0xa1, 0x85, 0x3c -.byte 0xfd, 0x14, 0x24, 0x03, 0xb2, 0x87, 0xd3, 0xa4, 0xb7, 0x02, 0x03, 0x01, 0x00, 0x01, 0x49, 0x00 -.byte 0x78, 0x00, 0x30, 0x47, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55 -.byte 0x53, 0x31, 0x22, 0x30, 0x20, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x19, 0x47, 0x6f, 0x6f, 0x67 -.byte 0x6c, 0x65, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65 -.byte 0x73, 0x20, 0x4c, 0x4c, 0x43, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x0b -.byte 0x47, 0x54, 0x53, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x52, 0x33, 0x30, 0x76, 0x30, 0x10, 0x06 -.byte 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03 -.byte 0x62, 0x00, 0x04, 0x1f, 0x4f, 0x33, 0x87, 0x33, 0x29, 0x8a, 0xa1, 0x84, 0xde, 0xcb, 0xc7, 0x21 -.byte 0x58, 0x41, 0x89, 0xea, 0x56, 0x9d, 0x2b, 0x4b, 0x85, 0xc6, 0x1d, 0x4c, 0x27, 0xbc, 0x7f, 0x26 -.byte 0x51, 0x72, 0x6f, 0xe2, 0x9f, 0xd6, 0xa3, 0xca, 0xcc, 0x45, 0x14, 0x46, 0x8b, 0xad, 0xef, 0x7e -.byte 0x86, 0x8c, 0xec, 0xb1, 0x7e, 0x2f, 0xff, 0xa9, 0x71, 0x9d, 0x18, 0x84, 0x45, 0x04, 0x41, 0x55 -.byte 0x6e, 0x2b, 0xea, 0x26, 0x7f, 0xbb, 0x90, 0x01, 0xe3, 0x4b, 0x19, 0xba, 0xe4, 0x54, 0x96, 0x45 -.byte 0x09, 0xb1, 0xd5, 0x6c, 0x91, 0x44, 0xad, 0x84, 0x13, 0x8e, 0x9a, 0x8c, 0x0d, 0x80, 0x0c, 0x32 -.byte 0xf6, 0xe0, 0x27, 0x49, 0x00, 0x78, 0x00, 0x30, 0x47, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55 -.byte 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x22, 0x30, 0x20, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13 -.byte 0x19, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x53, 0x65 -.byte 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x20, 0x4c, 0x4c, 0x43, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03 -.byte 0x55, 0x04, 0x03, 0x13, 0x0b, 0x47, 0x54, 0x53, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x52, 0x34 -.byte 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b -.byte 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0xf3, 0x74, 0x73, 0xa7, 0x68, 0x8b, 0x60, 0xae -.byte 0x43, 0xb8, 0x35, 0xc5, 0x81, 0x30, 0x7b, 0x4b, 0x49, 0x9d, 0xfb, 0xc1, 0x61, 0xce, 0xe6, 0xde -.byte 0x46, 0xbd, 0x6b, 0xd5, 0x61, 0x18, 0x35, 0xae, 0x40, 0xdd, 0x73, 0xf7, 0x89, 0x91, 0x30, 0x5a -.byte 0xeb, 0x3c, 0xee, 0x85, 0x7c, 0xa2, 0x40, 0x76, 0x3b, 0xa9, 0xc6, 0xb8, 0x47, 0xd8, 0x2a, 0xe7 -.byte 0x92, 0x91, 0x6a, 0x73, 0xe9, 0xb1, 0x72, 0x39, 0x9f, 0x29, 0x9f, 0xa2, 0x98, 0xd3, 0x5f, 0x5e -.byte 0x58, 0x86, 0x65, 0x0f, 0xa1, 0x84, 0x65, 0x06, 0xd1, 0xdc, 0x8b, 0xc9, 0xc7, 0x73, 0xc8, 0x8c -.byte 0x6a, 0x2f, 0xe5, 0xc4, 0xab, 0xd1, 0x1d, 0x8a, 0x4a, 0x00, 0x26, 0x02, 0x30, 0x48, 0x31, 0x0b -.byte 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x42, 0x4d, 0x31, 0x19, 0x30, 0x17, 0x06 -.byte 0x03, 0x55, 0x04, 0x0a, 0x13, 0x10, 0x51, 0x75, 0x6f, 0x56, 0x61, 0x64, 0x69, 0x73, 0x20, 0x4c -.byte 0x69, 0x6d, 0x69, 0x74, 0x65, 0x64, 0x31, 0x1e, 0x30, 0x1c, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13 -.byte 0x15, 0x51, 0x75, 0x6f, 0x56, 0x61, 0x64, 0x69, 0x73, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43 -.byte 0x41, 0x20, 0x31, 0x20, 0x47, 0x33, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86 -.byte 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82 -.byte 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xa0, 0xbe, 0x50, 0x10, 0x8e, 0xe9, 0xf2, 0x6c, 0x40 -.byte 0xb4, 0x04, 0x9c, 0x85, 0xb9, 0x31, 0xca, 0xdc, 0x2d, 0xe4, 0x11, 0xa9, 0x04, 0x3c, 0x1b, 0x55 -.byte 0xc1, 0xe7, 0x58, 0x30, 0x1d, 0x24, 0xb4, 0xc3, 0xef, 0x85, 0xde, 0x8c, 0x2c, 0xe1, 0xc1, 0x3d -.byte 0xdf, 0x82, 0xe6, 0x4f, 0xad, 0x47, 0x87, 0x6c, 0xec, 0x5b, 0x49, 0xc1, 0x4a, 0xd5, 0xbb, 0x8f -.byte 0xec, 0x87, 0xac, 0x7f, 0x82, 0x9a, 0x86, 0xec, 0x3d, 0x03, 0x99, 0x52, 0x01, 0xd2, 0x35, 0x9e -.byte 0xac, 0xda, 0xf0, 0x53, 0xc9, 0x66, 0x3c, 0xd4, 0xac, 0x02, 0x01, 0xda, 0x24, 0xd3, 0x3b, 0xa8 -.byte 0x02, 0x46, 0xaf, 0xa4, 0x1c, 0xe3, 0xf8, 0x73, 0x58, 0x76, 0xb7, 0xf6, 0x0e, 0x90, 0x0d, 0xb5 -.byte 0xf0, 0xcf, 0xcc, 0xfa, 0xf9, 0xc6, 0x4c, 0xe5, 0xc3, 0x86, 0x30, 0x0a, 0x8d, 0x17, 0x7e, 0x35 -.byte 0xeb, 0xc5, 0xdf, 0xbb, 0x0e, 0x9c, 0xc0, 0x8d, 0x87, 0xe3, 0x88, 0x38, 0x85, 0x67, 0xfa, 0x3e -.byte 0xc7, 0xab, 0xe0, 0x13, 0x9c, 0x05, 0x18, 0x98, 0xcf, 0x93, 0xf5, 0xb1, 0x92, 0xb4, 0xfc, 0x23 -.byte 0xd3, 0xcf, 0xd5, 0xc4, 0x27, 0x49, 0xe0, 0x9e, 0x3c, 0x9b, 0x08, 0xa3, 0x8b, 0x5d, 0x2a, 0x21 -.byte 0xe0, 0xfc, 0x39, 0xaa, 0x53, 0xda, 0x7d, 0x7e, 0xcf, 0x1a, 0x09, 0x53, 0xbc, 0x5d, 0x05, 0x04 -.byte 0xcf, 0xa1, 0x4a, 0x8f, 0x8b, 0x76, 0x82, 0x0d, 0xa1, 0xf8, 0xd2, 0xc7, 0x14, 0x77, 0x5b, 0x90 -.byte 0x36, 0x07, 0x81, 0x9b, 0x3e, 0x06, 0xfa, 0x52, 0x5e, 0x63, 0xc5, 0xa6, 0x00, 0xfe, 0xa5, 0xe9 -.byte 0x52, 0x1b, 0x52, 0xb5, 0x92, 0x39, 0x72, 0x03, 0x09, 0x62, 0xbd, 0xb0, 0x60, 0x16, 0x6e, 0xa6 -.byte 0xdd, 0x25, 0xc2, 0x03, 0x66, 0xdd, 0xf3, 0x04, 0xd1, 0x40, 0xe2, 0x4e, 0x8b, 0x86, 0xf4, 0x6f -.byte 0xe5, 0x83, 0xa0, 0x27, 0x84, 0x5e, 0x04, 0xc1, 0xf5, 0x90, 0xbd, 0x30, 0x3d, 0xc4, 0xef, 0xa8 -.byte 0x69, 0xbc, 0x38, 0x9b, 0xa4, 0xa4, 0x96, 0xd1, 0x62, 0xda, 0x69, 0xc0, 0x01, 0x96, 0xae, 0xcb -.byte 0xc4, 0x51, 0x34, 0xea, 0x0c, 0xaa, 0xff, 0x21, 0x8e, 0x59, 0x8f, 0x4a, 0x5c, 0xe4, 0x61, 0x9a -.byte 0xa7, 0xd2, 0xe9, 0x2a, 0x78, 0x8d, 0x51, 0x3d, 0x3a, 0x15, 0xee, 0xa2, 0x59, 0x8e, 0xa9, 0x5c -.byte 0xde, 0xc5, 0xf9, 0x90, 0x22, 0xe5, 0x88, 0x45, 0x71, 0xdd, 0x91, 0x99, 0x6c, 0x7a, 0x9f, 0x3d -.byte 0x3d, 0x98, 0x7c, 0x5e, 0xf6, 0xbe, 0x16, 0x68, 0xa0, 0x5e, 0xae, 0x0b, 0x23, 0xfc, 0x5a, 0x0f -.byte 0xaa, 0x22, 0x76, 0x2d, 0xc9, 0xa1, 0x10, 0x1d, 0xe4, 0xd3, 0x44, 0x23, 0x90, 0x88, 0x9f, 0xc6 -.byte 0x2a, 0xe6, 0xd7, 0xf5, 0x9a, 0xb3, 0x58, 0x1e, 0x2f, 0x30, 0x89, 0x08, 0x1b, 0x54, 0xa2, 0xb5 -.byte 0x98, 0x23, 0xec, 0x08, 0x77, 0x1c, 0x95, 0x5d, 0x61, 0xd1, 0xcb, 0x89, 0x9c, 0x5f, 0xa2, 0x4a -.byte 0x91, 0x9a, 0xef, 0x21, 0xaa, 0x49, 0x16, 0x08, 0xa8, 0xbd, 0x61, 0x28, 0x31, 0xc9, 0x74, 0xad -.byte 0x85, 0xf6, 0xd9, 0xc5, 0xb1, 0x8b, 0xd1, 0xe5, 0x10, 0x32, 0x4d, 0x5f, 0x8b, 0x20, 0x3a, 0x3c -.byte 0x49, 0x1f, 0x33, 0x85, 0x59, 0x0d, 0xdb, 0xcb, 0x09, 0x75, 0x43, 0x69, 0x73, 0xfb, 0x6b, 0x71 -.byte 0x7d, 0xf0, 0xdf, 0xc4, 0x4c, 0x7d, 0xc6, 0xa3, 0x2e, 0xc8, 0x95, 0x79, 0xcb, 0x73, 0xa2, 0x8e -.byte 0x4e, 0x4d, 0x24, 0xfb, 0x5e, 0xe4, 0x04, 0xbe, 0x72, 0x1b, 0xa6, 0x27, 0x2d, 0x49, 0x5a, 0x99 -.byte 0x7a, 0xd7, 0x5c, 0x09, 0x20, 0xb7, 0x7f, 0x94, 0xb9, 0x4f, 0xf1, 0x0d, 0x1c, 0x5e, 0x88, 0x42 -.byte 0x1b, 0x11, 0xb7, 0xe7, 0x91, 0xdb, 0x9e, 0x6c, 0xf4, 0x6a, 0xdf, 0x8c, 0x06, 0x98, 0x03, 0xad -.byte 0xcc, 0x28, 0xef, 0xa5, 0x47, 0xf3, 0x53, 0x02, 0x03, 0x01, 0x00, 0x01, 0x4a, 0x00, 0x26, 0x02 -.byte 0x30, 0x48, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x42, 0x4d, 0x31 -.byte 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x10, 0x51, 0x75, 0x6f, 0x56, 0x61, 0x64 -.byte 0x69, 0x73, 0x20, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x64, 0x31, 0x1e, 0x30, 0x1c, 0x06, 0x03 -.byte 0x55, 0x04, 0x03, 0x13, 0x15, 0x51, 0x75, 0x6f, 0x56, 0x61, 0x64, 0x69, 0x73, 0x20, 0x52, 0x6f -.byte 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x32, 0x20, 0x47, 0x33, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d -.byte 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02 -.byte 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xa1, 0xae, 0x25, 0xb2, 0x01 -.byte 0x18, 0xdc, 0x57, 0x88, 0x3f, 0x46, 0xeb, 0xf9, 0xaf, 0xe2, 0xeb, 0x23, 0x71, 0xe2, 0x9a, 0xd1 -.byte 0x61, 0x66, 0x21, 0x5f, 0xaa, 0xaf, 0x27, 0x51, 0xe5, 0x6e, 0x1b, 0x16, 0xd4, 0x2d, 0x7d, 0x50 -.byte 0xb0, 0x53, 0x77, 0xbd, 0x78, 0x3a, 0x60, 0xe2, 0x64, 0x02, 0x9b, 0x7c, 0x86, 0x9b, 0xd6, 0x1a -.byte 0x8e, 0xad, 0xff, 0x1f, 0x15, 0x7f, 0xd5, 0x95, 0x1e, 0x12, 0xcb, 0xe6, 0x14, 0x84, 0x04, 0xc1 -.byte 0xdf, 0x36, 0xb3, 0x16, 0x9f, 0x8a, 0xe3, 0xc9, 0xdb, 0x98, 0x34, 0xce, 0xd8, 0x33, 0x17, 0x28 -.byte 0x46, 0xfc, 0xa7, 0xc9, 0xf0, 0xd2, 0xb4, 0xd5, 0x4d, 0x09, 0x72, 0x49, 0xf9, 0xf2, 0x87, 0xe3 -.byte 0xa9, 0xda, 0x7d, 0xa1, 0x7d, 0x6b, 0xb2, 0x3a, 0x25, 0xa9, 0x6d, 0x52, 0x44, 0xac, 0xf8, 0xbe -.byte 0x6e, 0xfb, 0xdc, 0xa6, 0x73, 0x91, 0x90, 0x61, 0xa6, 0x03, 0x14, 0x20, 0xf2, 0xe7, 0x87, 0xa3 -.byte 0x88, 0xad, 0xad, 0xa0, 0x8c, 0xff, 0xa6, 0x0b, 0x25, 0x52, 0x25, 0xe7, 0x16, 0x01, 0xd5, 0xcb -.byte 0xb8, 0x35, 0x81, 0x0c, 0xa3, 0x3b, 0xf0, 0xe1, 0xe1, 0xfc, 0x5a, 0x5d, 0xce, 0x80, 0x71, 0x6d -.byte 0xf8, 0x49, 0xab, 0x3e, 0x3b, 0xba, 0xb8, 0xd7, 0x80, 0x01, 0xfb, 0xa5, 0xeb, 0x5b, 0xb3, 0xc5 -.byte 0x5e, 0x60, 0x2a, 0x31, 0xa0, 0xaf, 0x37, 0xe8, 0x20, 0x3a, 0x9f, 0xa8, 0x32, 0x2c, 0x0c, 0xcc -.byte 0x09, 0x1d, 0xd3, 0x9e, 0x8e, 0x5d, 0xbc, 0x4c, 0x98, 0xee, 0xc5, 0x1a, 0x68, 0x7b, 0xec, 0x53 -.byte 0xa6, 0xe9, 0x14, 0x35, 0xa3, 0xdf, 0xcd, 0x80, 0x9f, 0x0c, 0x48, 0xfb, 0x1c, 0xf4, 0xf1, 0xbf -.byte 0x4a, 0xb8, 0xfa, 0xd5, 0x8c, 0x71, 0x4a, 0xc7, 0x1f, 0xad, 0xfe, 0x41, 0x9a, 0xb3, 0x83, 0x5d -.byte 0xf2, 0x84, 0x56, 0xef, 0xa5, 0x57, 0x43, 0xce, 0x29, 0xad, 0x8c, 0xab, 0x55, 0xbf, 0xc4, 0xfb -.byte 0x5b, 0x01, 0xdd, 0x23, 0x21, 0xa1, 0x58, 0x00, 0x8e, 0xc3, 0xd0, 0x6a, 0x13, 0xed, 0x13, 0xe3 -.byte 0x12, 0x2b, 0x80, 0xdc, 0x67, 0xe6, 0x95, 0xb2, 0xcd, 0x1e, 0x22, 0x6e, 0x2a, 0xf8, 0x41, 0xd4 -.byte 0xf2, 0xca, 0x14, 0x07, 0x8d, 0x8a, 0x55, 0x12, 0xc6, 0x69, 0xf5, 0xb8, 0x86, 0x68, 0x2f, 0x53 -.byte 0x5e, 0xb0, 0xd2, 0xaa, 0x21, 0xc1, 0x98, 0xe6, 0x30, 0xe3, 0x67, 0x55, 0xc7, 0x9b, 0x6e, 0xac -.byte 0x19, 0xa8, 0x55, 0xa6, 0x45, 0x06, 0xd0, 0x23, 0x3a, 0xdb, 0xeb, 0x65, 0x5d, 0x2a, 0x11, 0x11 -.byte 0xf0, 0x3b, 0x4f, 0xca, 0x6d, 0xf4, 0x34, 0xc4, 0x71, 0xe4, 0xff, 0x00, 0x5a, 0xf6, 0x5c, 0xae -.byte 0x23, 0x60, 0x85, 0x73, 0xf1, 0xe4, 0x10, 0xb1, 0x25, 0xae, 0xd5, 0x92, 0xbb, 0x13, 0xc1, 0x0c -.byte 0xe0, 0x39, 0xda, 0xb4, 0x39, 0x57, 0xb5, 0xab, 0x35, 0xaa, 0x72, 0x21, 0x3b, 0x83, 0x35, 0xe7 -.byte 0x31, 0xdf, 0x7a, 0x21, 0x6e, 0xb8, 0x32, 0x08, 0x7d, 0x1d, 0x32, 0x91, 0x15, 0x4a, 0x62, 0x72 -.byte 0xcf, 0xe3, 0x77, 0xa1, 0xbc, 0xd5, 0x11, 0x1b, 0x76, 0x01, 0x67, 0x08, 0xe0, 0x41, 0x0b, 0xc3 -.byte 0xeb, 0x15, 0x6e, 0xf8, 0xa4, 0x19, 0xd9, 0xa2, 0xab, 0xaf, 0xe2, 0x27, 0x52, 0x56, 0x2b, 0x02 -.byte 0x8a, 0x2c, 0x14, 0x24, 0xf9, 0xbf, 0x42, 0x02, 0xbf, 0x26, 0xc8, 0xc6, 0x8f, 0xe0, 0x6e, 0x38 -.byte 0x7d, 0x53, 0x2d, 0xe5, 0xed, 0x98, 0xb3, 0x95, 0x63, 0x68, 0x7f, 0xf9, 0x35, 0xf4, 0xdf, 0x88 -.byte 0xc5, 0x60, 0x35, 0x92, 0xc0, 0x7c, 0x69, 0x1c, 0x61, 0x95, 0x16, 0xd0, 0xeb, 0xde, 0x0b, 0xaf -.byte 0x3e, 0x04, 0x10, 0x45, 0x65, 0x58, 0x50, 0x38, 0xaf, 0x48, 0xf2, 0x59, 0xb6, 0x16, 0xf2, 0x3c -.byte 0x0d, 0x90, 0x02, 0xc6, 0x70, 0x2e, 0x01, 0xad, 0x3c, 0x15, 0xd7, 0x02, 0x03, 0x01, 0x00, 0x01 -.byte 0x4a, 0x00, 0x26, 0x02, 0x30, 0x48, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13 -.byte 0x02, 0x42, 0x4d, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x10, 0x51, 0x75 -.byte 0x6f, 0x56, 0x61, 0x64, 0x69, 0x73, 0x20, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x64, 0x31, 0x1e -.byte 0x30, 0x1c, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x15, 0x51, 0x75, 0x6f, 0x56, 0x61, 0x64, 0x69 -.byte 0x73, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x33, 0x20, 0x47, 0x33, 0x30, 0x82 -.byte 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05 -.byte 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xb3 -.byte 0xcb, 0x0e, 0x10, 0x67, 0x8e, 0xea, 0x14, 0x97, 0xa7, 0x32, 0x2a, 0x0a, 0x56, 0x36, 0x7f, 0x68 -.byte 0x4c, 0xc7, 0xb3, 0x6f, 0x3a, 0x23, 0x14, 0x91, 0xff, 0x19, 0x7f, 0xa5, 0xca, 0xac, 0xee, 0xb3 -.byte 0x76, 0x9d, 0x7a, 0xe9, 0x8b, 0x1b, 0xab, 0x6b, 0x31, 0xdb, 0xfa, 0x0b, 0x53, 0x4c, 0xaf, 0xc5 -.byte 0xa5, 0x1a, 0x79, 0x3c, 0x8a, 0x4c, 0xff, 0xac, 0xdf, 0x25, 0xde, 0x4e, 0xd9, 0x82, 0x32, 0x0b -.byte 0x44, 0xde, 0xca, 0xdb, 0x8c, 0xac, 0xa3, 0x6e, 0x16, 0x83, 0x3b, 0xa6, 0x64, 0x4b, 0x32, 0x89 -.byte 0xfb, 0x16, 0x16, 0x38, 0x7e, 0xeb, 0x43, 0xe2, 0xd3, 0x74, 0x4a, 0xc2, 0x62, 0x0a, 0x73, 0x0a -.byte 0xdd, 0x49, 0xb3, 0x57, 0xd2, 0xb0, 0x0a, 0x85, 0x9d, 0x71, 0x3c, 0xde, 0xa3, 0xcb, 0xc0, 0x32 -.byte 0xf3, 0x01, 0x39, 0x20, 0x43, 0x1b, 0x35, 0xd1, 0x53, 0xb3, 0xb1, 0xee, 0xc5, 0x93, 0x69, 0x82 -.byte 0x3e, 0x16, 0xb5, 0x28, 0x46, 0xa1, 0xde, 0xea, 0x89, 0x09, 0xed, 0x43, 0xb8, 0x05, 0x46, 0x8a -.byte 0x86, 0xf5, 0x59, 0x47, 0xbe, 0x1b, 0x6f, 0x01, 0x21, 0x10, 0xb9, 0xfd, 0xa9, 0xd2, 0x28, 0xca -.byte 0x10, 0x39, 0x09, 0xca, 0x13, 0x36, 0xcf, 0x9c, 0xad, 0xad, 0x40, 0x74, 0x79, 0x2b, 0x02, 0x3f -.byte 0x34, 0xff, 0xfa, 0x20, 0x69, 0x7d, 0xd3, 0xee, 0x61, 0xf5, 0xba, 0xb3, 0xe7, 0x30, 0xd0, 0x37 -.byte 0x23, 0x86, 0x72, 0x61, 0x45, 0x29, 0x48, 0x59, 0x68, 0x6f, 0x77, 0xa6, 0x2e, 0x81, 0xbe, 0x07 -.byte 0x4d, 0x6f, 0xaf, 0xce, 0xc4, 0x45, 0x13, 0x91, 0x14, 0x70, 0x06, 0x8f, 0x1f, 0x9f, 0xf8, 0x87 -.byte 0x69, 0xb1, 0x0e, 0xef, 0xc3, 0x89, 0x19, 0xeb, 0xea, 0x1c, 0x61, 0xfc, 0x7a, 0x6c, 0x8a, 0xdc -.byte 0xd6, 0x03, 0x0b, 0x9e, 0x26, 0xba, 0x12, 0xdd, 0xd4, 0x54, 0x39, 0xab, 0x26, 0xa3, 0x33, 0xea -.byte 0x75, 0x81, 0xda, 0x2d, 0xcd, 0x0f, 0x4f, 0xe4, 0x03, 0xd1, 0xef, 0x15, 0x97, 0x1b, 0x6b, 0x90 -.byte 0xc5, 0x02, 0x90, 0x93, 0x66, 0x02, 0x21, 0xb1, 0x47, 0xde, 0x8b, 0x9a, 0x4a, 0x80, 0xb9, 0x55 -.byte 0x8f, 0xb5, 0xa2, 0x2f, 0xc0, 0xd6, 0x33, 0x67, 0xda, 0x7e, 0xc4, 0xa7, 0xb4, 0x04, 0x44, 0xeb -.byte 0x47, 0xfb, 0xe6, 0x58, 0xb9, 0xf7, 0x0c, 0xf0, 0x7b, 0x2b, 0xb1, 0xc0, 0x70, 0x29, 0xc3, 0x40 -.byte 0x62, 0x2d, 0x3b, 0x48, 0x69, 0xdc, 0x23, 0x3c, 0x48, 0xeb, 0x7b, 0x09, 0x79, 0xa9, 0x6d, 0xda -.byte 0xa8, 0x30, 0x98, 0xcf, 0x80, 0x72, 0x03, 0x88, 0xa6, 0x5b, 0x46, 0xae, 0x72, 0x79, 0x7c, 0x08 -.byte 0x03, 0x21, 0x65, 0xae, 0xb7, 0xe1, 0x1c, 0xa5, 0xb1, 0x2a, 0xa2, 0x31, 0xde, 0x66, 0x04, 0xf7 -.byte 0xc0, 0x74, 0xe8, 0x71, 0xde, 0xff, 0x3d, 0x59, 0xcc, 0x96, 0x26, 0x12, 0x8b, 0x85, 0x95, 0x57 -.byte 0x1a, 0xab, 0x6b, 0x75, 0x0b, 0x44, 0x3d, 0x11, 0x28, 0x3c, 0x7b, 0x61, 0xb7, 0xe2, 0x8f, 0x67 -.byte 0x4f, 0xe5, 0xec, 0x3c, 0x4c, 0x60, 0x80, 0x69, 0x57, 0x38, 0x1e, 0x01, 0x5b, 0x8d, 0x55, 0xe8 -.byte 0xc7, 0xdf, 0xc0, 0xcc, 0x77, 0x23, 0x34, 0x49, 0x75, 0x7c, 0xf6, 0x98, 0x11, 0xeb, 0x2d, 0xde -.byte 0xed, 0x41, 0x2e, 0x14, 0x05, 0x02, 0x7f, 0xe0, 0xfe, 0x20, 0xeb, 0x35, 0xe7, 0x11, 0xac, 0x22 -.byte 0xce, 0x57, 0x3d, 0xde, 0xc9, 0x30, 0x6d, 0x10, 0x03, 0x85, 0xcd, 0xf1, 0xff, 0x8c, 0x16, 0xb5 -.byte 0xc1, 0xb2, 0x3e, 0x88, 0x6c, 0x60, 0x7f, 0x90, 0x4f, 0x95, 0xf7, 0xf6, 0x2d, 0xad, 0x01, 0x39 -.byte 0x07, 0x04, 0xfa, 0x75, 0x80, 0x7d, 0xbf, 0x49, 0x50, 0xed, 0xef, 0xc9, 0xc4, 0x7c, 0x1c, 0xeb -.byte 0x80, 0x7e, 0xdb, 0xb6, 0xd0, 0xdd, 0x13, 0xfe, 0xc9, 0xd3, 0x9c, 0xd7, 0xb2, 0x97, 0xa9, 0x02 -.byte 0x03, 0x01, 0x00, 0x01, 0x4a, 0x00, 0x78, 0x00, 0x30, 0x48, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03 -.byte 0x55, 0x04, 0x06, 0x13, 0x02, 0x44, 0x45, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a -.byte 0x13, 0x0c, 0x44, 0x2d, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x47, 0x6d, 0x62, 0x48, 0x31, 0x22 -.byte 0x30, 0x20, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x19, 0x44, 0x2d, 0x54, 0x52, 0x55, 0x53, 0x54 -.byte 0x20, 0x42, 0x52, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x31, 0x20, 0x32, 0x30 -.byte 0x32, 0x30, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06 -.byte 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0xc6, 0xcb, 0xc7, 0x28, 0xd1, 0xfb -.byte 0x84, 0xf5, 0x9a, 0xef, 0x42, 0x14, 0x20, 0xe1, 0x43, 0x6b, 0x6e, 0x75, 0xad, 0xfc, 0x2b, 0x03 -.byte 0x84, 0xd4, 0x76, 0x93, 0x25, 0xd7, 0x59, 0x3b, 0x41, 0x65, 0x6b, 0x1e, 0xe6, 0x34, 0x2a, 0xbb -.byte 0x74, 0xf6, 0x12, 0xce, 0xe8, 0x6d, 0xe7, 0xab, 0xe4, 0x3c, 0x4e, 0x3f, 0x44, 0x08, 0x8b, 0xcd -.byte 0x16, 0x71, 0xcb, 0xbf, 0x92, 0x99, 0xf4, 0xa4, 0xd7, 0x3c, 0x50, 0x54, 0x52, 0x90, 0x85, 0x83 -.byte 0x78, 0x94, 0x67, 0x67, 0xa3, 0x1c, 0x09, 0x19, 0x3d, 0x75, 0x34, 0x85, 0xde, 0xed, 0x60, 0x7d -.byte 0xc7, 0x0c, 0xb4, 0x41, 0x52, 0xb9, 0x6e, 0xe5, 0xee, 0x42, 0x4a, 0x00, 0x26, 0x02, 0x30, 0x48 -.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x44, 0x45, 0x31, 0x15, 0x30 -.byte 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0c, 0x44, 0x2d, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20 -.byte 0x47, 0x6d, 0x62, 0x48, 0x31, 0x22, 0x30, 0x20, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x19, 0x44 -.byte 0x2d, 0x54, 0x52, 0x55, 0x53, 0x54, 0x20, 0x42, 0x52, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43 -.byte 0x41, 0x20, 0x32, 0x20, 0x32, 0x30, 0x32, 0x33, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09 -.byte 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00 -.byte 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xae, 0xff, 0x09, 0x59, 0x91, 0x80, 0x0a -.byte 0x4a, 0x68, 0xe6, 0x24, 0x3f, 0xb8, 0xa7, 0xe4, 0xc8, 0x3a, 0x0a, 0x3a, 0x16, 0xcd, 0xc9, 0x23 -.byte 0x61, 0xa0, 0x93, 0x71, 0xf2, 0xab, 0x8b, 0x73, 0x8f, 0xa0, 0x67, 0x65, 0x60, 0xd2, 0x54, 0x6b -.byte 0x63, 0x51, 0x6f, 0x49, 0x33, 0xe0, 0x72, 0x07, 0x13, 0x7d, 0x38, 0xcd, 0x06, 0x92, 0x07, 0x29 -.byte 0x52, 0x6b, 0x4e, 0x77, 0x6c, 0x04, 0xd3, 0x95, 0xfa, 0xdd, 0x4c, 0x8c, 0xd9, 0x5d, 0xc1, 0x61 -.byte 0x7d, 0x4b, 0xe7, 0x28, 0xb3, 0x44, 0x81, 0x7b, 0x51, 0xaf, 0xdd, 0x33, 0xb1, 0x68, 0x7c, 0xd6 -.byte 0x4e, 0x4c, 0xfe, 0x2b, 0x68, 0xb9, 0xca, 0x66, 0x69, 0xc4, 0xec, 0x5e, 0x57, 0x7f, 0xf7, 0x0d -.byte 0xc7, 0x9c, 0x36, 0x36, 0xe5, 0x07, 0x60, 0xac, 0xc0, 0x4c, 0xea, 0x08, 0x6c, 0xef, 0x06, 0x7c -.byte 0x4f, 0x5b, 0x28, 0x7a, 0x08, 0xfc, 0x93, 0x5d, 0x9b, 0xf6, 0x9c, 0xb4, 0x8b, 0x86, 0xba, 0x21 -.byte 0xb9, 0xf4, 0xf0, 0xe8, 0x59, 0x5a, 0x28, 0xa1, 0x34, 0x84, 0x1a, 0x25, 0x91, 0xb6, 0xb5, 0x8f -.byte 0xef, 0xb2, 0xf9, 0x80, 0xfa, 0xf9, 0x3d, 0x3c, 0x11, 0x72, 0xd8, 0xe3, 0x2f, 0x86, 0x76, 0xc5 -.byte 0x79, 0x2c, 0xc1, 0xa9, 0x90, 0x93, 0x46, 0x98, 0x67, 0xcb, 0x83, 0x6a, 0xa0, 0x50, 0x23, 0xa7 -.byte 0x3b, 0xf6, 0x81, 0x39, 0xe0, 0xed, 0xf0, 0xb9, 0xbf, 0x65, 0xf1, 0xd8, 0xcb, 0x7a, 0xfb, 0xef -.byte 0x73, 0x03, 0xce, 0x00, 0xf4, 0x7d, 0xd7, 0xe0, 0x5d, 0x3b, 0x66, 0xb8, 0xdc, 0x8e, 0xba, 0x83 -.byte 0xcb, 0x87, 0x76, 0x03, 0xfc, 0x25, 0xd9, 0xe7, 0x23, 0x6f, 0x06, 0xfd, 0x67, 0xf3, 0xe0, 0xff -.byte 0x84, 0xbc, 0x47, 0xbf, 0xb5, 0x16, 0x18, 0x46, 0x69, 0x14, 0xcc, 0x05, 0xf7, 0xdb, 0xd3, 0x49 -.byte 0xac, 0x6b, 0xcc, 0xab, 0xe4, 0xb5, 0x0b, 0x43, 0x24, 0x5e, 0x4b, 0x6b, 0x4d, 0x67, 0xdf, 0xd6 -.byte 0xb5, 0x3e, 0x4f, 0x78, 0x1f, 0x94, 0x71, 0x24, 0xea, 0xde, 0x70, 0xfc, 0xf1, 0x93, 0xfe, 0x9e -.byte 0x93, 0x5a, 0xe4, 0x94, 0x5a, 0x97, 0x54, 0x0c, 0x35, 0x7b, 0x5f, 0x6c, 0xee, 0x00, 0x1f, 0x24 -.byte 0xec, 0x03, 0xba, 0x02, 0xf5, 0x76, 0xf4, 0x9f, 0xd4, 0x9a, 0xed, 0x85, 0x2c, 0x38, 0x22, 0x2f -.byte 0xc7, 0xd8, 0x2f, 0x76, 0x11, 0x4f, 0xfd, 0x6c, 0x5c, 0xe8, 0xf5, 0x8e, 0x27, 0x87, 0x7f, 0x19 -.byte 0x4a, 0x21, 0x47, 0x90, 0x1d, 0x79, 0x8d, 0x1c, 0x5b, 0xf8, 0xcf, 0x4a, 0x85, 0xe4, 0xed, 0xb3 -.byte 0x5b, 0x8d, 0xbe, 0xc4, 0x64, 0x28, 0x5d, 0x41, 0xc4, 0x6e, 0xac, 0x38, 0x5a, 0x4f, 0x23, 0x74 -.byte 0x74, 0xa9, 0x12, 0xc3, 0xf6, 0xd2, 0xb9, 0x11, 0x15, 0x33, 0x07, 0x91, 0xd8, 0x3b, 0x37, 0x3a -.byte 0x63, 0x30, 0x06, 0xd1, 0xc5, 0x22, 0x36, 0x28, 0x62, 0x23, 0x10, 0xe0, 0x46, 0xcc, 0x97, 0xac -.byte 0xd6, 0x2b, 0x5d, 0x64, 0x24, 0xd5, 0xee, 0x1c, 0x0e, 0xde, 0xfb, 0x08, 0x5a, 0x75, 0x2a, 0xf6 -.byte 0x63, 0x6d, 0xce, 0x0b, 0x42, 0xbe, 0xd1, 0xba, 0x70, 0x1c, 0x9c, 0x21, 0xe5, 0x0f, 0x31, 0x69 -.byte 0x17, 0xd7, 0xfc, 0x0a, 0xb4, 0xde, 0xed, 0x80, 0x9c, 0xcb, 0x92, 0xb4, 0x8b, 0xf5, 0xde, 0x59 -.byte 0xa2, 0x58, 0x09, 0xa5, 0x63, 0x47, 0x0b, 0xe1, 0x41, 0x32, 0x34, 0x41, 0xd9, 0x9a, 0xb1, 0xd9 -.byte 0xa8, 0xb0, 0x1b, 0x5a, 0xde, 0x0d, 0x0d, 0xf4, 0xe2, 0xb2, 0x5d, 0x35, 0x80, 0xb9, 0x81, 0xd4 -.byte 0x84, 0x69, 0x91, 0x02, 0xcb, 0x75, 0xd0, 0x8d, 0xc5, 0xb5, 0x3d, 0x09, 0x91, 0x09, 0x8f, 0x14 -.byte 0xa1, 0x14, 0x74, 0x79, 0x3e, 0xd6, 0xc9, 0x15, 0x1d, 0xa4, 0x59, 0x59, 0x22, 0xdc, 0xf6, 0x8a -.byte 0x45, 0x3d, 0x3c, 0x12, 0xd6, 0x3e, 0x5d, 0x32, 0x2f, 0x02, 0x03, 0x01, 0x00, 0x01, 0x4a, 0x00 -.byte 0x78, 0x00, 0x30, 0x48, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x44 -.byte 0x45, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0c, 0x44, 0x2d, 0x54, 0x72 -.byte 0x75, 0x73, 0x74, 0x20, 0x47, 0x6d, 0x62, 0x48, 0x31, 0x22, 0x30, 0x20, 0x06, 0x03, 0x55, 0x04 -.byte 0x03, 0x13, 0x19, 0x44, 0x2d, 0x54, 0x52, 0x55, 0x53, 0x54, 0x20, 0x45, 0x56, 0x20, 0x52, 0x6f -.byte 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x31, 0x20, 0x32, 0x30, 0x32, 0x30, 0x30, 0x76, 0x30, 0x10 -.byte 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22 -.byte 0x03, 0x62, 0x00, 0x04, 0xf1, 0x0b, 0xdd, 0x86, 0x43, 0x20, 0x19, 0xdf, 0x97, 0x85, 0xe8, 0x22 -.byte 0x4a, 0x9b, 0xcf, 0x9d, 0x98, 0xbf, 0xb4, 0x05, 0x26, 0xc9, 0xcb, 0xe3, 0xa6, 0xd2, 0x8f, 0xc5 -.byte 0x9e, 0x78, 0x7b, 0x31, 0x89, 0xa9, 0x89, 0xad, 0x27, 0x3c, 0x65, 0x10, 0x82, 0xfc, 0xdf, 0xc3 -.byte 0x9d, 0x4e, 0xf0, 0x33, 0x23, 0xc4, 0xd2, 0x32, 0xf5, 0x1c, 0xb0, 0xdf, 0x33, 0x17, 0x5d, 0xc5 -.byte 0xf0, 0xb1, 0x8a, 0xf9, 0xef, 0xb9, 0xb7, 0x14, 0xca, 0x29, 0x4a, 0xc2, 0x0f, 0xa9, 0x7f, 0x75 -.byte 0x65, 0x49, 0x2a, 0x30, 0x67, 0xf4, 0x64, 0xf7, 0xd6, 0x1a, 0x77, 0xda, 0xc3, 0xc2, 0x97, 0x61 -.byte 0x42, 0x7b, 0x49, 0xad, 0x4a, 0x00, 0x26, 0x02, 0x30, 0x48, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03 -.byte 0x55, 0x04, 0x06, 0x13, 0x02, 0x44, 0x45, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a -.byte 0x13, 0x0c, 0x44, 0x2d, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x47, 0x6d, 0x62, 0x48, 0x31, 0x22 -.byte 0x30, 0x20, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x19, 0x44, 0x2d, 0x54, 0x52, 0x55, 0x53, 0x54 -.byte 0x20, 0x45, 0x56, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x32, 0x20, 0x32, 0x30 -.byte 0x32, 0x33, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d -.byte 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82 -.byte 0x02, 0x01, 0x00, 0xd8, 0x8e, 0xa3, 0x89, 0x80, 0x0b, 0xb2, 0x57, 0x52, 0xdc, 0xa9, 0x53, 0x4c -.byte 0x37, 0xb9, 0x7f, 0x63, 0x17, 0x13, 0xef, 0xa7, 0x5b, 0x23, 0x5b, 0x69, 0x75, 0xb0, 0x99, 0x0a -.byte 0x17, 0xc1, 0x8b, 0xc4, 0xdb, 0xa8, 0xe0, 0xcc, 0x31, 0xba, 0xc2, 0xf2, 0xcd, 0x5d, 0xe9, 0xb7 -.byte 0xf8, 0x1d, 0xaf, 0x6a, 0xc4, 0x95, 0x87, 0xd7, 0x47, 0xc9, 0x95, 0xd8, 0x82, 0x04, 0x50, 0x3d -.byte 0x81, 0x08, 0xff, 0xe4, 0x3d, 0xb3, 0xb1, 0xd6, 0xc5, 0xb2, 0xfd, 0x88, 0x09, 0xdb, 0x9c, 0x84 -.byte 0xec, 0x25, 0x17, 0x14, 0x87, 0x7f, 0x30, 0x78, 0x9b, 0x6a, 0x58, 0xc9, 0xb6, 0x73, 0x28, 0x3c -.byte 0x34, 0xf7, 0x99, 0xf7, 0x7f, 0xd3, 0xa6, 0xf8, 0x1c, 0x45, 0x7c, 0xad, 0x2c, 0x8c, 0x94, 0x3f -.byte 0xd8, 0x67, 0x10, 0x53, 0x7e, 0x22, 0xcd, 0x4e, 0x25, 0x51, 0xf0, 0x25, 0x24, 0x35, 0x11, 0x5e -.byte 0x10, 0xc6, 0xec, 0x87, 0x66, 0x89, 0x81, 0x68, 0xba, 0xcc, 0x2b, 0x9d, 0x47, 0x73, 0x1f, 0xbd -.byte 0xcd, 0x91, 0xa4, 0x72, 0x6a, 0x9c, 0xa2, 0x1b, 0x18, 0xa0, 0x6f, 0xec, 0x50, 0xf4, 0x7d, 0x40 -.byte 0xc2, 0xa8, 0x30, 0xcf, 0xbd, 0x73, 0xc8, 0x13, 0x2b, 0x10, 0x13, 0x1e, 0x8b, 0x9a, 0xa8, 0x3a -.byte 0x94, 0x73, 0xd3, 0x18, 0x69, 0x0a, 0x4a, 0xff, 0xc1, 0x01, 0x03, 0xff, 0x79, 0x7f, 0xb5, 0x48 -.byte 0x7f, 0x7b, 0xee, 0xe8, 0x29, 0x6f, 0x36, 0x4c, 0x95, 0x61, 0x86, 0xd8, 0xf9, 0xa2, 0x73, 0x8a -.byte 0xee, 0xae, 0x2f, 0x96, 0xee, 0x68, 0xcd, 0x3d, 0x4d, 0x28, 0x42, 0xf9, 0x45, 0x2b, 0x32, 0x1b -.byte 0x46, 0x55, 0x16, 0x6a, 0xa6, 0x4b, 0x29, 0xf9, 0xbb, 0x95, 0x56, 0xbf, 0x46, 0x1d, 0xec, 0x1d -.byte 0x93, 0x1d, 0xc0, 0x65, 0xb2, 0x1f, 0xa1, 0x43, 0xae, 0x56, 0x9e, 0xa0, 0xb1, 0x8f, 0x6b, 0x12 -.byte 0xb7, 0x60, 0x6d, 0x78, 0x0b, 0xca, 0x8a, 0x5c, 0xed, 0x1e, 0x96, 0x0e, 0x83, 0xa6, 0x48, 0x95 -.byte 0x8d, 0x3b, 0xa3, 0x21, 0xc4, 0xae, 0x58, 0xc6, 0x00, 0xb2, 0x84, 0xb4, 0x23, 0xa4, 0x96, 0x86 -.byte 0x35, 0xb8, 0xd8, 0x9e, 0xd8, 0xac, 0x34, 0x49, 0x98, 0x63, 0x95, 0xc5, 0xcb, 0x6d, 0x48, 0x47 -.byte 0xe2, 0xf2, 0x2e, 0x18, 0x1e, 0xd0, 0x31, 0xab, 0xdd, 0x74, 0xec, 0xf9, 0xdc, 0x8c, 0xb8, 0x1c -.byte 0x8e, 0x68, 0x23, 0xba, 0xd0, 0xf3, 0x50, 0xdc, 0xcf, 0x65, 0x8f, 0x73, 0x3a, 0x32, 0xc7, 0x7c -.byte 0xfe, 0xca, 0x82, 0x22, 0x4f, 0xbe, 0x8e, 0x62, 0x47, 0x66, 0xe5, 0xcd, 0x87, 0xe2, 0xe8, 0xd5 -.byte 0x0f, 0x18, 0x9f, 0xe5, 0x04, 0x72, 0x4b, 0x46, 0x3c, 0x10, 0xf2, 0x44, 0xc2, 0x64, 0x56, 0x71 -.byte 0x4e, 0x75, 0xe8, 0x9c, 0xc9, 0x26, 0x74, 0xc5, 0x7d, 0x59, 0xd1, 0x0a, 0x5b, 0x0f, 0x6d, 0xfe -.byte 0x9e, 0x75, 0x1c, 0x18, 0xc6, 0x1a, 0x3a, 0x7c, 0xd8, 0x0d, 0x04, 0xcc, 0xcd, 0xb7, 0x45, 0x65 -.byte 0x7a, 0xb1, 0x8f, 0xb8, 0xae, 0x84, 0x48, 0x3e, 0xb3, 0x7a, 0x4d, 0xa8, 0x03, 0xe2, 0xe2, 0x7e -.byte 0x01, 0x16, 0x59, 0x68, 0x18, 0x43, 0x33, 0xb0, 0xd2, 0xdc, 0xb0, 0x1a, 0x43, 0x35, 0xee, 0xa5 -.byte 0xda, 0xa9, 0x46, 0x5c, 0xae, 0x86, 0x81, 0x41, 0x01, 0x4a, 0x74, 0x26, 0xec, 0x9f, 0x06, 0xbf -.byte 0xc2, 0x05, 0x37, 0x64, 0x75, 0x78, 0x29, 0x68, 0xfd, 0xc5, 0xf5, 0xeb, 0xfe, 0x47, 0xf9, 0xe4 -.byte 0x85, 0xb0, 0xe1, 0x7b, 0x31, 0x9d, 0xa6, 0x7f, 0x72, 0xa3, 0xb9, 0xc4, 0x2c, 0x2e, 0xcc, 0x99 -.byte 0x57, 0x0e, 0x21, 0x0c, 0x45, 0x01, 0x94, 0x65, 0xeb, 0x65, 0x09, 0xc6, 0x63, 0x22, 0x0b, 0x33 -.byte 0x49, 0x92, 0x48, 0x3c, 0xfc, 0xcd, 0xce, 0xb0, 0x3e, 0x8e, 0x9e, 0x8b, 0xf8, 0xfe, 0x49, 0xc5 -.byte 0x35, 0x72, 0x47, 0x02, 0x03, 0x01, 0x00, 0x01, 0x4a, 0x00, 0x26, 0x01, 0x30, 0x48, 0x31, 0x0b -.byte 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x20, 0x30, 0x1e, 0x06 -.byte 0x03, 0x55, 0x04, 0x0a, 0x13, 0x17, 0x53, 0x65, 0x63, 0x75, 0x72, 0x65, 0x54, 0x72, 0x75, 0x73 -.byte 0x74, 0x20, 0x43, 0x6f, 0x72, 0x70, 0x6f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x31, 0x17, 0x30 -.byte 0x15, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x0e, 0x53, 0x65, 0x63, 0x75, 0x72, 0x65, 0x54, 0x72 -.byte 0x75, 0x73, 0x74, 0x20, 0x43, 0x41, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86 -.byte 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82 -.byte 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xab, 0xa4, 0x81, 0xe5, 0x95, 0xcd, 0xf5, 0xf6, 0x14 -.byte 0x8e, 0xc2, 0x4f, 0xca, 0xd4, 0xe2, 0x78, 0x95, 0x58, 0x9c, 0x41, 0xe1, 0x0d, 0x99, 0x40, 0x24 -.byte 0x17, 0x39, 0x91, 0x33, 0x66, 0xe9, 0xbe, 0xe1, 0x83, 0xaf, 0x62, 0x5c, 0x89, 0xd1, 0xfc, 0x24 -.byte 0x5b, 0x61, 0xb3, 0xe0, 0x11, 0x11, 0x41, 0x1c, 0x1d, 0x6e, 0xf0, 0xb8, 0xbb, 0xf8, 0xde, 0xa7 -.byte 0x81, 0xba, 0xa6, 0x48, 0xc6, 0x9f, 0x1d, 0xbd, 0xbe, 0x8e, 0xa9, 0x41, 0x3e, 0xb8, 0x94, 0xed -.byte 0x29, 0x1a, 0xd4, 0x8e, 0xd2, 0x03, 0x1d, 0x03, 0xef, 0x6d, 0x0d, 0x67, 0x1c, 0x57, 0xd7, 0x06 -.byte 0xad, 0xca, 0xc8, 0xf5, 0xfe, 0x0e, 0xaf, 0x66, 0x25, 0x48, 0x04, 0x96, 0x0b, 0x5d, 0xa3, 0xba -.byte 0x16, 0xc3, 0x08, 0x4f, 0xd1, 0x46, 0xf8, 0x14, 0x5c, 0xf2, 0xc8, 0x5e, 0x01, 0x99, 0x6d, 0xfd -.byte 0x88, 0xcc, 0x86, 0xa8, 0xc1, 0x6f, 0x31, 0x42, 0x6c, 0x52, 0x3e, 0x68, 0xcb, 0xf3, 0x19, 0x34 -.byte 0xdf, 0xbb, 0x87, 0x18, 0x56, 0x80, 0x26, 0xc4, 0xd0, 0xdc, 0xc0, 0x6f, 0xdf, 0xde, 0xa0, 0xc2 -.byte 0x91, 0x16, 0xa0, 0x64, 0x11, 0x4b, 0x44, 0xbc, 0x1e, 0xf6, 0xe7, 0xfa, 0x63, 0xde, 0x66, 0xac -.byte 0x76, 0xa4, 0x71, 0xa3, 0xec, 0x36, 0x94, 0x68, 0x7a, 0x77, 0xa4, 0xb1, 0xe7, 0x0e, 0x2f, 0x81 -.byte 0x7a, 0xe2, 0xb5, 0x72, 0x86, 0xef, 0xa2, 0x6b, 0x8b, 0xf0, 0x0f, 0xdb, 0xd3, 0x59, 0x3f, 0xba -.byte 0x72, 0xbc, 0x44, 0x24, 0x9c, 0xe3, 0x73, 0xb3, 0xf7, 0xaf, 0x57, 0x2f, 0x42, 0x26, 0x9d, 0xa9 -.byte 0x74, 0xba, 0x00, 0x52, 0xf2, 0x4b, 0xcd, 0x53, 0x7c, 0x47, 0x0b, 0x36, 0x85, 0x0e, 0x66, 0xa9 -.byte 0x08, 0x97, 0x16, 0x34, 0x57, 0xc1, 0x66, 0xf7, 0x80, 0xe3, 0xed, 0x70, 0x54, 0xc7, 0x93, 0xe0 -.byte 0x2e, 0x28, 0x15, 0x59, 0x87, 0xba, 0xbb, 0x02, 0x03, 0x01, 0x00, 0x01, 0x4c, 0x00, 0x26, 0x02 -.byte 0x30, 0x4a, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31 -.byte 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x09, 0x49, 0x64, 0x65, 0x6e, 0x54, 0x72 -.byte 0x75, 0x73, 0x74, 0x31, 0x27, 0x30, 0x25, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x1e, 0x49, 0x64 -.byte 0x65, 0x6e, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x43, 0x6f, 0x6d, 0x6d, 0x65, 0x72, 0x63, 0x69 -.byte 0x61, 0x6c, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x31, 0x30, 0x82, 0x02, 0x22 -.byte 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03 -.byte 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xa7, 0x50, 0x19 -.byte 0xde, 0x3f, 0x99, 0x3d, 0xd4, 0x33, 0x46, 0xf1, 0x6f, 0x51, 0x61, 0x82, 0xb2, 0xa9, 0x4f, 0x8f -.byte 0x67, 0x89, 0x5d, 0x84, 0xd9, 0x53, 0xdd, 0x0c, 0x28, 0xd9, 0xd7, 0xf0, 0xff, 0xae, 0x95, 0x43 -.byte 0x72, 0x99, 0xf9, 0xb5, 0x5d, 0x7c, 0x8a, 0xc1, 0x42, 0xe1, 0x31, 0x50, 0x74, 0xd1, 0x81, 0x0d -.byte 0x7c, 0xcd, 0x9b, 0x21, 0xab, 0x43, 0xe2, 0xac, 0xad, 0x5e, 0x86, 0x6e, 0xf3, 0x09, 0x8a, 0x1f -.byte 0x5a, 0x32, 0xbd, 0xa2, 0xeb, 0x94, 0xf9, 0xe8, 0x5c, 0x0a, 0xec, 0xff, 0x98, 0xd2, 0xaf, 0x71 -.byte 0xb3, 0xb4, 0x53, 0x9f, 0x4e, 0x87, 0xef, 0x92, 0xbc, 0xbd, 0xec, 0x4f, 0x32, 0x30, 0x88, 0x4b -.byte 0x17, 0x5e, 0x57, 0xc4, 0x53, 0xc2, 0xf6, 0x02, 0x97, 0x8d, 0xd9, 0x62, 0x2b, 0xbf, 0x24, 0x1f -.byte 0x62, 0x8d, 0xdf, 0xc3, 0xb8, 0x29, 0x4b, 0x49, 0x78, 0x3c, 0x93, 0x60, 0x88, 0x22, 0xfc, 0x99 -.byte 0xda, 0x36, 0xc8, 0xc2, 0xa2, 0xd4, 0x2c, 0x54, 0x00, 0x67, 0x35, 0x6e, 0x73, 0xbf, 0x02, 0x58 -.byte 0xf0, 0xa4, 0xdd, 0xe5, 0xb0, 0xa2, 0x26, 0x7a, 0xca, 0xe0, 0x36, 0xa5, 0x19, 0x16, 0xf5, 0xfd -.byte 0xb7, 0xef, 0xae, 0x3f, 0x40, 0xf5, 0x6d, 0x5a, 0x04, 0xfd, 0xce, 0x34, 0xca, 0x24, 0xdc, 0x74 -.byte 0x23, 0x1b, 0x5d, 0x33, 0x13, 0x12, 0x5d, 0xc4, 0x01, 0x25, 0xf6, 0x30, 0xdd, 0x02, 0x5d, 0x9f -.byte 0xe0, 0xd5, 0x47, 0xbd, 0xb4, 0xeb, 0x1b, 0xa1, 0xbb, 0x49, 0x49, 0xd8, 0x9f, 0x5b, 0x02, 0xf3 -.byte 0x8a, 0xe4, 0x24, 0x90, 0xe4, 0x62, 0x4f, 0x4f, 0xc1, 0xaf, 0x8b, 0x0e, 0x74, 0x17, 0xa8, 0xd1 -.byte 0x72, 0x88, 0x6a, 0x7a, 0x01, 0x49, 0xcc, 0xb4, 0x46, 0x79, 0xc6, 0x17, 0xb1, 0xda, 0x98, 0x1e -.byte 0x07, 0x59, 0xfa, 0x75, 0x21, 0x85, 0x65, 0xdd, 0x90, 0x56, 0xce, 0xfb, 0xab, 0xa5, 0x60, 0x9d -.byte 0xc4, 0x9d, 0xf9, 0x52, 0xb0, 0x8b, 0xbd, 0x87, 0xf9, 0x8f, 0x2b, 0x23, 0x0a, 0x23, 0x76, 0x3b -.byte 0xf7, 0x33, 0xe1, 0xc9, 0x00, 0xf3, 0x69, 0xf9, 0x4b, 0xa2, 0xe0, 0x4e, 0xbc, 0x7e, 0x93, 0x39 -.byte 0x84, 0x07, 0xf7, 0x44, 0x70, 0x7e, 0xfe, 0x07, 0x5a, 0xe5, 0xb1, 0xac, 0xd1, 0x18, 0xcc, 0xf2 -.byte 0x35, 0xe5, 0x49, 0x49, 0x08, 0xca, 0x56, 0xc9, 0x3d, 0xfb, 0x0f, 0x18, 0x7d, 0x8b, 0x3b, 0xc1 -.byte 0x13, 0xc2, 0x4d, 0x8f, 0xc9, 0x4f, 0x0e, 0x37, 0xe9, 0x1f, 0xa1, 0x0e, 0x6a, 0xdf, 0x62, 0x2e -.byte 0xcb, 0x35, 0x06, 0x51, 0x79, 0x2c, 0xc8, 0x25, 0x38, 0xf4, 0xfa, 0x4b, 0xa7, 0x89, 0x5c, 0x9c -.byte 0xd2, 0xe3, 0x0d, 0x39, 0x86, 0x4a, 0x74, 0x7c, 0xd5, 0x59, 0x87, 0xc2, 0x3f, 0x4e, 0x0c, 0x5c -.byte 0x52, 0xf4, 0x3d, 0xf7, 0x52, 0x82, 0xf1, 0xea, 0xa3, 0xac, 0xfd, 0x49, 0x34, 0x1a, 0x28, 0xf3 -.byte 0x41, 0x88, 0x3a, 0x13, 0xee, 0xe8, 0xde, 0xff, 0x99, 0x1d, 0x5f, 0xba, 0xcb, 0xe8, 0x1e, 0xf2 -.byte 0xb9, 0x50, 0x60, 0xc0, 0x31, 0xd3, 0x73, 0xe5, 0xef, 0xbe, 0xa0, 0xed, 0x33, 0x0b, 0x74, 0xbe -.byte 0x20, 0x20, 0xc4, 0x67, 0x6c, 0xf0, 0x08, 0x03, 0x7a, 0x55, 0x80, 0x7f, 0x46, 0x4e, 0x96, 0xa7 -.byte 0xf4, 0x1e, 0x3e, 0xe1, 0xf6, 0xd8, 0x09, 0xe1, 0x33, 0x64, 0x2b, 0x63, 0xd7, 0x32, 0x5e, 0x9f -.byte 0xf9, 0xc0, 0x7b, 0x0f, 0x78, 0x6f, 0x97, 0xbc, 0x93, 0x9a, 0xf9, 0x9c, 0x12, 0x90, 0x78, 0x7a -.byte 0x80, 0x87, 0x15, 0xd7, 0x72, 0x74, 0x9c, 0x55, 0x74, 0x78, 0xb1, 0xba, 0xe1, 0x6e, 0x70, 0x04 -.byte 0xba, 0x4f, 0xa0, 0xba, 0x68, 0xc3, 0x7b, 0xff, 0x31, 0xf0, 0x73, 0x3d, 0x3d, 0x94, 0x2a, 0xb1 -.byte 0x0b, 0x41, 0x0e, 0xa0, 0xfe, 0x4d, 0x88, 0x65, 0x6b, 0x79, 0x33, 0xb4, 0xd7, 0x02, 0x03, 0x01 -.byte 0x00, 0x01, 0x4c, 0x00, 0x26, 0x01, 0x30, 0x4a, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04 -.byte 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x17 -.byte 0x53, 0x65, 0x63, 0x75, 0x72, 0x65, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x43, 0x6f, 0x72, 0x70 -.byte 0x6f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x03 -.byte 0x13, 0x10, 0x53, 0x65, 0x63, 0x75, 0x72, 0x65, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20 -.byte 0x43, 0x41, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d -.byte 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82 -.byte 0x01, 0x01, 0x00, 0xaf, 0x35, 0x2e, 0xd8, 0xac, 0x6c, 0x55, 0x69, 0x06, 0x71, 0xe5, 0x13, 0x68 -.byte 0x24, 0xb3, 0x4f, 0xd8, 0xcc, 0x21, 0x47, 0xf8, 0xf1, 0x60, 0x38, 0x89, 0x89, 0x03, 0xe9, 0xbd -.byte 0xea, 0x5e, 0x46, 0x53, 0x09, 0xdc, 0x5c, 0xf5, 0x5a, 0xe8, 0xf7, 0x45, 0x2a, 0x02, 0xeb, 0x31 -.byte 0x61, 0xd7, 0x29, 0x33, 0x4c, 0xce, 0xc7, 0x7c, 0x0a, 0x37, 0x7e, 0x0f, 0xba, 0x32, 0x98, 0xe1 -.byte 0x1d, 0x97, 0xaf, 0x8f, 0xc7, 0xdc, 0xc9, 0x38, 0x96, 0xf3, 0xdb, 0x1a, 0xfc, 0x51, 0xed, 0x68 -.byte 0xc6, 0xd0, 0x6e, 0xa4, 0x7c, 0x24, 0xd1, 0xae, 0x42, 0xc8, 0x96, 0x50, 0x63, 0x2e, 0xe0, 0xfe -.byte 0x75, 0xfe, 0x98, 0xa7, 0x5f, 0x49, 0x2e, 0x95, 0xe3, 0x39, 0x33, 0x64, 0x8e, 0x1e, 0xa4, 0x5f -.byte 0x90, 0xd2, 0x67, 0x3c, 0xb2, 0xd9, 0xfe, 0x41, 0xb9, 0x55, 0xa7, 0x09, 0x8e, 0x72, 0x05, 0x1e -.byte 0x8b, 0xdd, 0x44, 0x85, 0x82, 0x42, 0xd0, 0x49, 0xc0, 0x1d, 0x60, 0xf0, 0xd1, 0x17, 0x2c, 0x95 -.byte 0xeb, 0xf6, 0xa5, 0xc1, 0x92, 0xa3, 0xc5, 0xc2, 0xa7, 0x08, 0x60, 0x0d, 0x60, 0x04, 0x10, 0x96 -.byte 0x79, 0x9e, 0x16, 0x34, 0xe6, 0xa9, 0xb6, 0xfa, 0x25, 0x45, 0x39, 0xc8, 0x1e, 0x65, 0xf9, 0x93 -.byte 0xf5, 0xaa, 0xf1, 0x52, 0xdc, 0x99, 0x98, 0x3d, 0xa5, 0x86, 0x1a, 0x0c, 0x35, 0x33, 0xfa, 0x4b -.byte 0xa5, 0x04, 0x06, 0x15, 0x1c, 0x31, 0x80, 0xef, 0xaa, 0x18, 0x6b, 0xc2, 0x7b, 0xd7, 0xda, 0xce -.byte 0xf9, 0x33, 0x20, 0xd5, 0xf5, 0xbd, 0x6a, 0x33, 0x2d, 0x81, 0x04, 0xfb, 0xb0, 0x5c, 0xd4, 0x9c -.byte 0xa3, 0xe2, 0x5c, 0x1d, 0xe3, 0xa9, 0x42, 0x75, 0x5e, 0x7b, 0xd4, 0x77, 0xef, 0x39, 0x54, 0xba -.byte 0xc9, 0x0a, 0x18, 0x1b, 0x12, 0x99, 0x49, 0x2f, 0x88, 0x4b, 0xfd, 0x50, 0x62, 0xd1, 0x73, 0xe7 -.byte 0x8f, 0x7a, 0x43, 0x02, 0x03, 0x01, 0x00, 0x01, 0x4e, 0x00, 0x26, 0x01, 0x30, 0x4c, 0x31, 0x20 -.byte 0x30, 0x1e, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x17, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53 -.byte 0x69, 0x67, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x2d, 0x20, 0x52, 0x33 -.byte 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0a, 0x47, 0x6c, 0x6f, 0x62, 0x61 -.byte 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x0a -.byte 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d -.byte 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01 -.byte 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xcc, 0x25, 0x76, 0x90, 0x79 -.byte 0x06, 0x78, 0x22, 0x16, 0xf5, 0xc0, 0x83, 0xb6, 0x84, 0xca, 0x28, 0x9e, 0xfd, 0x05, 0x76, 0x11 -.byte 0xc5, 0xad, 0x88, 0x72, 0xfc, 0x46, 0x02, 0x43, 0xc7, 0xb2, 0x8a, 0x9d, 0x04, 0x5f, 0x24, 0xcb -.byte 0x2e, 0x4b, 0xe1, 0x60, 0x82, 0x46, 0xe1, 0x52, 0xab, 0x0c, 0x81, 0x47, 0x70, 0x6c, 0xdd, 0x64 -.byte 0xd1, 0xeb, 0xf5, 0x2c, 0xa3, 0x0f, 0x82, 0x3d, 0x0c, 0x2b, 0xae, 0x97, 0xd7, 0xb6, 0x14, 0x86 -.byte 0x10, 0x79, 0xbb, 0x3b, 0x13, 0x80, 0x77, 0x8c, 0x08, 0xe1, 0x49, 0xd2, 0x6a, 0x62, 0x2f, 0x1f -.byte 0x5e, 0xfa, 0x96, 0x68, 0xdf, 0x89, 0x27, 0x95, 0x38, 0x9f, 0x06, 0xd7, 0x3e, 0xc9, 0xcb, 0x26 -.byte 0x59, 0x0d, 0x73, 0xde, 0xb0, 0xc8, 0xe9, 0x26, 0x0e, 0x83, 0x15, 0xc6, 0xef, 0x5b, 0x8b, 0xd2 -.byte 0x04, 0x60, 0xca, 0x49, 0xa6, 0x28, 0xf6, 0x69, 0x3b, 0xf6, 0xcb, 0xc8, 0x28, 0x91, 0xe5, 0x9d -.byte 0x8a, 0x61, 0x57, 0x37, 0xac, 0x74, 0x14, 0xdc, 0x74, 0xe0, 0x3a, 0xee, 0x72, 0x2f, 0x2e, 0x9c -.byte 0xfb, 0xd0, 0xbb, 0xbf, 0xf5, 0x3d, 0x00, 0xe1, 0x06, 0x33, 0xe8, 0x82, 0x2b, 0xae, 0x53, 0xa6 -.byte 0x3a, 0x16, 0x73, 0x8c, 0xdd, 0x41, 0x0e, 0x20, 0x3a, 0xc0, 0xb4, 0xa7, 0xa1, 0xe9, 0xb2, 0x4f -.byte 0x90, 0x2e, 0x32, 0x60, 0xe9, 0x57, 0xcb, 0xb9, 0x04, 0x92, 0x68, 0x68, 0xe5, 0x38, 0x26, 0x60 -.byte 0x75, 0xb2, 0x9f, 0x77, 0xff, 0x91, 0x14, 0xef, 0xae, 0x20, 0x49, 0xfc, 0xad, 0x40, 0x15, 0x48 -.byte 0xd1, 0x02, 0x31, 0x61, 0x19, 0x5e, 0xb8, 0x97, 0xef, 0xad, 0x77, 0xb7, 0x64, 0x9a, 0x7a, 0xbf -.byte 0x5f, 0xc1, 0x13, 0xef, 0x9b, 0x62, 0xfb, 0x0d, 0x6c, 0xe0, 0x54, 0x69, 0x16, 0xa9, 0x03, 0xda -.byte 0x6e, 0xe9, 0x83, 0x93, 0x71, 0x76, 0xc6, 0x69, 0x85, 0x82, 0x17, 0x02, 0x03, 0x01, 0x00, 0x01 -.byte 0x4e, 0x00, 0x26, 0x02, 0x30, 0x4c, 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13 -.byte 0x17, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74 -.byte 0x20, 0x43, 0x41, 0x20, 0x2d, 0x20, 0x52, 0x36, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04 -.byte 0x0a, 0x13, 0x0a, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x31, 0x13, 0x30 -.byte 0x11, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x0a, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69 -.byte 0x67, 0x6e, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d -.byte 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82 -.byte 0x02, 0x01, 0x00, 0x95, 0x07, 0xe8, 0x73, 0xca, 0x66, 0xf9, 0xec, 0x14, 0xca, 0x7b, 0x3c, 0xf7 -.byte 0x0d, 0x08, 0xf1, 0xb4, 0x45, 0x0b, 0x2c, 0x82, 0xb4, 0x48, 0xc6, 0xeb, 0x5b, 0x3c, 0xae, 0x83 -.byte 0xb8, 0x41, 0x92, 0x33, 0x14, 0xa4, 0x6f, 0x7f, 0xe9, 0x2a, 0xcc, 0xc6, 0xb0, 0x88, 0x6b, 0xc5 -.byte 0xb6, 0x89, 0xd1, 0xc6, 0xb2, 0xff, 0x14, 0xce, 0x51, 0x14, 0x21, 0xec, 0x4a, 0xdd, 0x1b, 0x5a -.byte 0xc6, 0xd6, 0x87, 0xee, 0x4d, 0x3a, 0x15, 0x06, 0xed, 0x64, 0x66, 0x0b, 0x92, 0x80, 0xca, 0x44 -.byte 0xde, 0x73, 0x94, 0x4e, 0xf3, 0xa7, 0x89, 0x7f, 0x4f, 0x78, 0x63, 0x08, 0xc8, 0x12, 0x50, 0x6d -.byte 0x42, 0x66, 0x2f, 0x4d, 0xb9, 0x79, 0x28, 0x4d, 0x52, 0x1a, 0x8a, 0x1a, 0x80, 0xb7, 0x19, 0x81 -.byte 0x0e, 0x7e, 0xc4, 0x8a, 0xbc, 0x64, 0x4c, 0x21, 0x1c, 0x43, 0x68, 0xd7, 0x3d, 0x3c, 0x8a, 0xc5 -.byte 0xb2, 0x66, 0xd5, 0x90, 0x9a, 0xb7, 0x31, 0x06, 0xc5, 0xbe, 0xe2, 0x6d, 0x32, 0x06, 0xa6, 0x1e -.byte 0xf9, 0xb9, 0xeb, 0xaa, 0xa3, 0xb8, 0xbf, 0xbe, 0x82, 0x63, 0x50, 0xd0, 0xf0, 0x18, 0x89, 0xdf -.byte 0xe4, 0x0f, 0x79, 0xf5, 0xea, 0xa2, 0x1f, 0x2a, 0xd2, 0x70, 0x2e, 0x7b, 0xe7, 0xbc, 0x93, 0xbb -.byte 0x6d, 0x53, 0xe2, 0x48, 0x7c, 0x8c, 0x10, 0x07, 0x38, 0xff, 0x66, 0xb2, 0x77, 0x61, 0x7e, 0xe0 -.byte 0xea, 0x8c, 0x3c, 0xaa, 0xb4, 0xa4, 0xf6, 0xf3, 0x95, 0x4a, 0x12, 0x07, 0x6d, 0xfd, 0x8c, 0xb2 -.byte 0x89, 0xcf, 0xd0, 0xa0, 0x61, 0x77, 0xc8, 0x58, 0x74, 0xb0, 0xd4, 0x23, 0x3a, 0xf7, 0x5d, 0x3a -.byte 0xca, 0xa2, 0xdb, 0x9d, 0x09, 0xde, 0x5d, 0x44, 0x2d, 0x90, 0xf1, 0x81, 0xcd, 0x57, 0x92, 0xfa -.byte 0x7e, 0xbc, 0x50, 0x04, 0x63, 0x34, 0xdf, 0x6b, 0x93, 0x18, 0xbe, 0x6b, 0x36, 0xb2, 0x39, 0xe4 -.byte 0xac, 0x24, 0x36, 0xb7, 0xf0, 0xef, 0xb6, 0x1c, 0x13, 0x57, 0x93, 0xb6, 0xde, 0xb2, 0xf8, 0xe2 -.byte 0x85, 0xb7, 0x73, 0xa2, 0xb8, 0x35, 0xaa, 0x45, 0xf2, 0xe0, 0x9d, 0x36, 0xa1, 0x6f, 0x54, 0x8a -.byte 0xf1, 0x72, 0x56, 0x6e, 0x2e, 0x88, 0xc5, 0x51, 0x42, 0x44, 0x15, 0x94, 0xee, 0xa3, 0xc5, 0x38 -.byte 0x96, 0x9b, 0x4e, 0x4e, 0x5a, 0x0b, 0x47, 0xf3, 0x06, 0x36, 0x49, 0x77, 0x30, 0xbc, 0x71, 0x37 -.byte 0xe5, 0xa6, 0xec, 0x21, 0x08, 0x75, 0xfc, 0xe6, 0x61, 0x16, 0x3f, 0x77, 0xd5, 0xd9, 0x91, 0x97 -.byte 0x84, 0x0a, 0x6c, 0xd4, 0x02, 0x4d, 0x74, 0xc0, 0x14, 0xed, 0xfd, 0x39, 0xfb, 0x83, 0xf2, 0x5e -.byte 0x14, 0xa1, 0x04, 0xb0, 0x0b, 0xe9, 0xfe, 0xee, 0x8f, 0xe1, 0x6e, 0x0b, 0xb2, 0x08, 0xb3, 0x61 -.byte 0x66, 0x09, 0x6a, 0xb1, 0x06, 0x3a, 0x65, 0x96, 0x59, 0xc0, 0xf0, 0x35, 0xfd, 0xc9, 0xda, 0x28 -.byte 0x8d, 0x1a, 0x11, 0x87, 0x70, 0x81, 0x0a, 0xa8, 0x9a, 0x75, 0x1d, 0x9e, 0x3a, 0x86, 0x05, 0x00 -.byte 0x9e, 0xdb, 0x80, 0xd6, 0x25, 0xf9, 0xdc, 0x05, 0x9e, 0x27, 0x59, 0x4c, 0x76, 0x39, 0x5b, 0xea -.byte 0xf9, 0xa5, 0xa1, 0xd8, 0x83, 0x0f, 0xd1, 0xff, 0xdf, 0x30, 0x11, 0xf9, 0x85, 0xcf, 0x33, 0x48 -.byte 0xf5, 0xca, 0x6d, 0x64, 0x14, 0x2c, 0x7a, 0x58, 0x4f, 0xd3, 0x4b, 0x08, 0x49, 0xc5, 0x95, 0x64 -.byte 0x1a, 0x63, 0x0e, 0x79, 0x3d, 0xf5, 0xb3, 0x8c, 0xca, 0x58, 0xad, 0x9c, 0x42, 0x45, 0x79, 0x6e -.byte 0x0e, 0x87, 0x19, 0x5c, 0x54, 0xb1, 0x65, 0xb6, 0xbf, 0x8c, 0x9b, 0xdc, 0x13, 0xe9, 0x0d, 0x6f -.byte 0xb8, 0x2e, 0xdc, 0x67, 0x6e, 0xc9, 0x8b, 0x11, 0xb5, 0x84, 0x14, 0x8a, 0x00, 0x19, 0x70, 0x83 -.byte 0x79, 0x91, 0x97, 0x91, 0xd4, 0x1a, 0x27, 0xbf, 0x37, 0x1e, 0x32, 0x07, 0xd8, 0x14, 0x63, 0x3c -.byte 0x28, 0x4c, 0xaf, 0x02, 0x03, 0x01, 0x00, 0x01, 0x4e, 0x00, 0x78, 0x00, 0x30, 0x4c, 0x31, 0x2e -.byte 0x30, 0x2c, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x25, 0x41, 0x74, 0x6f, 0x73, 0x20, 0x54, 0x72 -.byte 0x75, 0x73, 0x74, 0x65, 0x64, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43 -.byte 0x41, 0x20, 0x45, 0x43, 0x43, 0x20, 0x54, 0x4c, 0x53, 0x20, 0x32, 0x30, 0x32, 0x31, 0x31, 0x0d -.byte 0x30, 0x0b, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x04, 0x41, 0x74, 0x6f, 0x73, 0x31, 0x0b, 0x30 -.byte 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x44, 0x45, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07 -.byte 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62 -.byte 0x00, 0x04, 0x96, 0x86, 0x58, 0x28, 0x37, 0x0a, 0x67, 0xd0, 0xa0, 0xde, 0x24, 0x19, 0x19, 0xe1 -.byte 0xe4, 0x05, 0x07, 0x1f, 0x97, 0xed, 0xe8, 0x64, 0x82, 0xb9, 0xf6, 0xc4, 0x71, 0x50, 0xce, 0x8a -.byte 0x0c, 0xff, 0xd7, 0xb5, 0x76, 0xbb, 0xa1, 0x6c, 0x93, 0x6c, 0x83, 0xa2, 0x68, 0x6e, 0xa5, 0xd9 -.byte 0xbe, 0x2c, 0x88, 0x95, 0x41, 0xcd, 0x5d, 0xdd, 0xb1, 0xca, 0x83, 0x63, 0x83, 0xcc, 0xc0, 0xbe -.byte 0x74, 0xd9, 0xe0, 0x9d, 0xa4, 0xee, 0x4a, 0x4e, 0x56, 0xe0, 0x98, 0x29, 0x41, 0x93, 0x52, 0x10 -.byte 0xd5, 0x24, 0x38, 0x02, 0x32, 0x67, 0xf1, 0x94, 0x12, 0x6f, 0xef, 0xd7, 0xc5, 0xde, 0x2e, 0xfd -.byte 0x19, 0x80, 0x4e, 0x00, 0x26, 0x02, 0x30, 0x4c, 0x31, 0x2e, 0x30, 0x2c, 0x06, 0x03, 0x55, 0x04 -.byte 0x03, 0x0c, 0x25, 0x41, 0x74, 0x6f, 0x73, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x65, 0x64, 0x52 -.byte 0x6f, 0x6f, 0x74, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x52, 0x53, 0x41, 0x20 -.byte 0x54, 0x4c, 0x53, 0x20, 0x32, 0x30, 0x32, 0x31, 0x31, 0x0d, 0x30, 0x0b, 0x06, 0x03, 0x55, 0x04 -.byte 0x0a, 0x0c, 0x04, 0x41, 0x74, 0x6f, 0x73, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06 -.byte 0x13, 0x02, 0x44, 0x45, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86 -.byte 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a -.byte 0x02, 0x82, 0x02, 0x01, 0x00, 0xb6, 0x80, 0x0e, 0xc4, 0x79, 0xbd, 0x05, 0x8c, 0x7d, 0xb0, 0xa3 -.byte 0x9d, 0x4d, 0x22, 0x4d, 0xcb, 0xf0, 0x41, 0x97, 0x4d, 0x59, 0xe0, 0xd1, 0xfe, 0x56, 0x8c, 0x97 -.byte 0xf2, 0xd7, 0xbd, 0x8f, 0x6c, 0xb7, 0x23, 0x8f, 0x5f, 0xd5, 0xc4, 0xd8, 0x41, 0xcb, 0xf2, 0x02 -.byte 0x1e, 0x71, 0xe5, 0xe9, 0xf6, 0x5e, 0xcb, 0x08, 0x2a, 0x5e, 0x30, 0xf2, 0x2d, 0x66, 0xc7, 0x84 -.byte 0x1b, 0x64, 0x57, 0x38, 0x9d, 0x75, 0x2d, 0x56, 0xc6, 0x2f, 0x61, 0xef, 0x96, 0xfc, 0x20, 0x46 -.byte 0xbd, 0xeb, 0xd4, 0x7b, 0x3f, 0x3f, 0x7c, 0x47, 0x38, 0x04, 0xa9, 0x1b, 0xaa, 0x52, 0xdf, 0x13 -.byte 0x37, 0xd3, 0x15, 0x15, 0x4e, 0xbd, 0x5f, 0x7c, 0xaf, 0xad, 0x63, 0xc7, 0x79, 0xdc, 0x08, 0x7b -.byte 0xd5, 0xa0, 0xe5, 0xf7, 0x5b, 0x75, 0xac, 0x80, 0x55, 0x99, 0x92, 0x61, 0x9b, 0xcd, 0x2a, 0x17 -.byte 0x7d, 0xdb, 0x8f, 0xf4, 0xb5, 0x6a, 0xea, 0x17, 0x4a, 0x64, 0x28, 0x66, 0x15, 0x29, 0x6c, 0x02 -.byte 0xf1, 0x6b, 0xd5, 0xba, 0xa3, 0x33, 0xdc, 0x5a, 0x67, 0xa7, 0x05, 0xe2, 0xbf, 0x65, 0xb6, 0x16 -.byte 0xb0, 0x10, 0xed, 0xcd, 0x50, 0x33, 0xc9, 0x70, 0x50, 0xec, 0x19, 0x8e, 0xb0, 0xc7, 0xf2, 0x74 -.byte 0x5b, 0x6b, 0x44, 0xc6, 0x7d, 0x96, 0xb9, 0x98, 0x08, 0x59, 0x66, 0xde, 0x29, 0x01, 0x9b, 0xf4 -.byte 0x2a, 0x6d, 0xd3, 0x15, 0x3a, 0x90, 0x6a, 0x67, 0xf1, 0xb4, 0x6b, 0x66, 0xd9, 0x21, 0xeb, 0xca -.byte 0xd9, 0x62, 0x7c, 0x46, 0x10, 0x5c, 0xde, 0x75, 0x49, 0x67, 0x9e, 0x42, 0xf9, 0xfe, 0x75, 0xa9 -.byte 0xa3, 0xad, 0xff, 0x76, 0x0a, 0x67, 0x40, 0xe3, 0xc5, 0xf7, 0x8d, 0xc7, 0x85, 0x9a, 0x59, 0x9e -.byte 0x62, 0x9a, 0x6a, 0xed, 0x45, 0x87, 0x98, 0x67, 0xb2, 0xd5, 0x4a, 0x3c, 0xd7, 0xb4, 0x3b, 0x00 -.byte 0x0d, 0xc0, 0x8f, 0x1f, 0xe1, 0x40, 0xc4, 0xae, 0x6c, 0x21, 0xdc, 0x49, 0x7e, 0x7e, 0xca, 0xb2 -.byte 0x8d, 0x6d, 0xb6, 0xbf, 0x93, 0x2f, 0xa1, 0x5c, 0x3e, 0x8f, 0xca, 0xed, 0x80, 0x8e, 0x58, 0xe1 -.byte 0xdb, 0x57, 0xcf, 0x85, 0x36, 0x38, 0xb2, 0x71, 0xa4, 0x09, 0x8c, 0x92, 0x89, 0x08, 0x88, 0x48 -.byte 0xf1, 0x40, 0x63, 0x18, 0xb2, 0x5b, 0x8c, 0x5a, 0xe3, 0xc3, 0xd3, 0x17, 0xaa, 0xab, 0x19, 0xa3 -.byte 0x2c, 0x1b, 0xe4, 0xd5, 0xc6, 0xe2, 0x66, 0x7a, 0xd7, 0x82, 0x19, 0xa6, 0x3b, 0x16, 0x2c, 0x2f -.byte 0x71, 0x87, 0x5f, 0x45, 0x9e, 0x95, 0x73, 0x93, 0xc2, 0x42, 0x81, 0x21, 0x13, 0x96, 0xd7, 0x9d -.byte 0xbb, 0x93, 0x68, 0x15, 0xfa, 0x9d, 0xa4, 0x1d, 0x8c, 0xf2, 0x81, 0xe0, 0x58, 0x06, 0xbd, 0xc9 -.byte 0xb6, 0xe3, 0xf6, 0x89, 0x5d, 0x89, 0xf9, 0xac, 0x44, 0xa1, 0xcb, 0x6b, 0xfa, 0x16, 0xf1, 0xc7 -.byte 0x50, 0x3d, 0x24, 0xda, 0xf7, 0xc3, 0xe4, 0x87, 0xd5, 0x56, 0xf1, 0x4f, 0x90, 0x30, 0xfa, 0x45 -.byte 0x09, 0x59, 0xda, 0x34, 0xce, 0xe0, 0x13, 0x1c, 0x04, 0x7c, 0x00, 0xd4, 0x9b, 0x86, 0xa4, 0x40 -.byte 0xbc, 0xd9, 0xdc, 0x4c, 0x57, 0x7e, 0xae, 0xb7, 0x33, 0xb6, 0x5e, 0x76, 0xe1, 0x65, 0x8b, 0x66 -.byte 0xdf, 0x8d, 0xca, 0xd7, 0x98, 0xaf, 0xce, 0x36, 0x98, 0x8c, 0x9c, 0x83, 0x99, 0x03, 0x70, 0xf3 -.byte 0xaf, 0x74, 0xed, 0xc6, 0x0e, 0x36, 0xe7, 0xbd, 0xec, 0xc1, 0x73, 0xa7, 0x94, 0x5a, 0xcb, 0x92 -.byte 0x64, 0x82, 0xa6, 0x00, 0xc1, 0x70, 0xa1, 0x6e, 0x2c, 0x29, 0xe1, 0x58, 0x57, 0xec, 0x5a, 0x7c -.byte 0x99, 0x6b, 0x25, 0xa4, 0x90, 0x3a, 0x80, 0xf4, 0x20, 0x9d, 0x9a, 0xce, 0xc7, 0x2d, 0xf9, 0xb2 -.byte 0x4b, 0x29, 0x95, 0x83, 0xe9, 0x35, 0x8d, 0xa7, 0x49, 0x48, 0xa7, 0x0f, 0x4c, 0x19, 0x91, 0xd0 -.byte 0xf5, 0xbf, 0x10, 0xe0, 0x71, 0x02, 0x03, 0x01, 0x00, 0x01, 0x4f, 0x00, 0x26, 0x02, 0x30, 0x4d -.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x41, 0x54, 0x31, 0x23, 0x30 -.byte 0x21, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x1a, 0x65, 0x2d, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x72 -.byte 0x63, 0x65, 0x20, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x20, 0x47, 0x6d -.byte 0x62, 0x48, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x10, 0x47, 0x4c, 0x4f -.byte 0x42, 0x41, 0x4c, 0x54, 0x52, 0x55, 0x53, 0x54, 0x20, 0x32, 0x30, 0x32, 0x30, 0x30, 0x82, 0x02 -.byte 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00 -.byte 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xae, 0x2e -.byte 0x56, 0xad, 0x1b, 0x1c, 0xef, 0xf6, 0x95, 0x8f, 0xa0, 0x77, 0x1b, 0x2b, 0xd3, 0x63, 0x8f, 0x84 -.byte 0x4d, 0x45, 0xa2, 0x0f, 0x9f, 0x5b, 0x45, 0xab, 0x59, 0x7b, 0x51, 0x34, 0xf9, 0xec, 0x8b, 0x8a -.byte 0x78, 0xc5, 0xdd, 0x6b, 0xaf, 0xbd, 0xc4, 0xdf, 0x93, 0x45, 0x1e, 0xbf, 0x91, 0x38, 0x0b, 0xae -.byte 0x0e, 0x16, 0xe7, 0x41, 0x73, 0xf8, 0xdb, 0xbb, 0xd1, 0xb8, 0x51, 0xe0, 0xcb, 0x83, 0x3b, 0x73 -.byte 0x38, 0x6e, 0x77, 0x8a, 0x0f, 0x59, 0x63, 0x26, 0xcd, 0xa7, 0x2a, 0xce, 0x54, 0xfb, 0xb8, 0xe2 -.byte 0xc0, 0x7c, 0x47, 0xce, 0x60, 0x7c, 0x3f, 0xb2, 0x73, 0xf2, 0xc0, 0x19, 0xb6, 0x8a, 0x92, 0x87 -.byte 0x35, 0x0d, 0x90, 0x28, 0xa2, 0xe4, 0x15, 0x04, 0x63, 0x3e, 0xba, 0xaf, 0xee, 0x7c, 0x5e, 0xcc -.byte 0xa6, 0x8b, 0x50, 0xb2, 0x38, 0xf7, 0x41, 0x63, 0xca, 0xce, 0xff, 0x69, 0x8f, 0x68, 0x0e, 0x95 -.byte 0x36, 0xe5, 0xcc, 0xb9, 0x8c, 0x09, 0xca, 0x4b, 0xdd, 0x31, 0x90, 0x96, 0xc8, 0xcc, 0x1f, 0xfd -.byte 0x56, 0x96, 0x34, 0xdb, 0x8e, 0x1c, 0xea, 0x2c, 0xbe, 0x85, 0x2e, 0x63, 0xdd, 0xaa, 0xa9, 0x95 -.byte 0xd3, 0xfd, 0x29, 0x95, 0x13, 0xf0, 0xc8, 0x98, 0x93, 0xd9, 0x2d, 0x16, 0x47, 0x90, 0x11, 0x83 -.byte 0xa2, 0x3a, 0x22, 0xa2, 0x28, 0x57, 0xa2, 0xeb, 0xfe, 0xc0, 0x8c, 0x28, 0xa0, 0xa6, 0x7d, 0xe7 -.byte 0x2a, 0x42, 0x3b, 0x82, 0x80, 0x63, 0xa5, 0x63, 0x1f, 0x19, 0xcc, 0x7c, 0xb2, 0x66, 0xa8, 0xc2 -.byte 0xd3, 0x6d, 0x37, 0x6f, 0xe2, 0x7e, 0x06, 0x51, 0xd9, 0x45, 0x84, 0x1f, 0x12, 0xce, 0x24, 0x52 -.byte 0x64, 0x85, 0x0b, 0x48, 0x80, 0x4e, 0x87, 0xb1, 0x22, 0x22, 0x30, 0xaa, 0xeb, 0xae, 0xbe, 0xe0 -.byte 0x02, 0xe0, 0x40, 0xe8, 0xb0, 0x42, 0x80, 0x03, 0x51, 0xaa, 0xb4, 0x7e, 0xaa, 0x44, 0xd7, 0x43 -.byte 0x61, 0xf3, 0xa2, 0x6b, 0x16, 0x89, 0x49, 0xa4, 0xa3, 0xa4, 0x2b, 0x8a, 0x02, 0xc4, 0x78, 0xf4 -.byte 0x68, 0x8a, 0xc1, 0xe4, 0x7a, 0x36, 0xb1, 0x6f, 0x1b, 0x96, 0x1b, 0x77, 0x49, 0x8d, 0xd4, 0xc9 -.byte 0x06, 0x72, 0x8f, 0xcf, 0x53, 0xe3, 0xdc, 0x17, 0x85, 0x20, 0x4a, 0xdc, 0x98, 0x27, 0xd3, 0x91 -.byte 0x26, 0x2b, 0x47, 0x1e, 0x69, 0x07, 0xaf, 0xde, 0xa2, 0xe4, 0xe4, 0xd4, 0x6b, 0x0b, 0xb3, 0x5e -.byte 0x7c, 0xd4, 0x24, 0x80, 0x47, 0x29, 0x69, 0x3b, 0x6e, 0xe8, 0xac, 0xfd, 0x40, 0xeb, 0xd8, 0xed -.byte 0x71, 0x71, 0x2b, 0xf2, 0xe8, 0x58, 0x1d, 0xeb, 0x41, 0x97, 0x22, 0xc5, 0x1f, 0xd4, 0x39, 0xd0 -.byte 0x27, 0x8f, 0x87, 0xe3, 0x18, 0xf4, 0xe0, 0xa9, 0x46, 0x0d, 0xf5, 0x74, 0x3a, 0x82, 0x2e, 0xd0 -.byte 0x6e, 0x2c, 0x91, 0xa3, 0x31, 0x5c, 0x3b, 0x46, 0xea, 0x7b, 0x04, 0x10, 0x56, 0x5e, 0x80, 0x1d -.byte 0xf5, 0xa5, 0x65, 0xe8, 0x82, 0xfc, 0xe2, 0x07, 0x8c, 0x62, 0x45, 0xf5, 0x20, 0xde, 0x46, 0x70 -.byte 0x86, 0xa1, 0xbc, 0x93, 0xd3, 0x1e, 0x74, 0xa6, 0x6c, 0xb0, 0x2c, 0xf7, 0x03, 0x0c, 0x88, 0x0c -.byte 0xcb, 0xd4, 0x72, 0x53, 0x86, 0xbc, 0x60, 0x46, 0xf3, 0x98, 0x6a, 0xc2, 0xf1, 0xbf, 0x43, 0xf9 -.byte 0x70, 0x20, 0x77, 0xca, 0x37, 0x41, 0x79, 0x55, 0x52, 0x63, 0x8d, 0x5b, 0x12, 0x9f, 0xc5, 0x68 -.byte 0xc4, 0x88, 0x9d, 0xac, 0xf2, 0x30, 0xab, 0xb7, 0xa3, 0x31, 0x97, 0x67, 0xad, 0x8f, 0x17, 0x0f -.byte 0x6c, 0xc7, 0x73, 0xed, 0x24, 0x94, 0x6b, 0xc8, 0x83, 0x9a, 0xd0, 0x9a, 0x37, 0x49, 0x04, 0xab -.byte 0xb1, 0x16, 0xc8, 0x6c, 0x49, 0x49, 0x2d, 0xab, 0xa1, 0xd0, 0x8c, 0x92, 0xf2, 0x41, 0x4a, 0x79 -.byte 0x21, 0x25, 0xdb, 0x63, 0xd7, 0xb6, 0x9c, 0xa7, 0x7e, 0x42, 0x69, 0xfb, 0x3a, 0x63, 0x02, 0x03 -.byte 0x01, 0x00, 0x01, 0x4f, 0x00, 0x26, 0x01, 0x30, 0x4d, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55 -.byte 0x04, 0x06, 0x13, 0x02, 0x44, 0x45, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c -.byte 0x0c, 0x44, 0x2d, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x47, 0x6d, 0x62, 0x48, 0x31, 0x27, 0x30 -.byte 0x25, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x1e, 0x44, 0x2d, 0x54, 0x52, 0x55, 0x53, 0x54, 0x20 -.byte 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x20, 0x33, 0x20, 0x43, 0x41, 0x20 -.byte 0x32, 0x20, 0x32, 0x30, 0x30, 0x39, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86 -.byte 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82 -.byte 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xd3, 0xb2, 0x4a, 0xcf, 0x7a, 0x47, 0xef, 0x75, 0x9b -.byte 0x23, 0xfa, 0x3a, 0x2f, 0xd6, 0x50, 0x45, 0x89, 0x35, 0x3a, 0xc6, 0x6b, 0xdb, 0xfe, 0xdb, 0x00 -.byte 0x68, 0xa8, 0xe0, 0x03, 0x11, 0x1d, 0x37, 0x50, 0x08, 0x9f, 0x4d, 0x4a, 0x68, 0x94, 0x35, 0xb3 -.byte 0x53, 0xd1, 0x94, 0x63, 0xa7, 0x20, 0x56, 0xaf, 0xde, 0x51, 0x78, 0xec, 0x2a, 0x3d, 0xf3, 0x48 -.byte 0x48, 0x50, 0x3e, 0x0a, 0xdf, 0x46, 0x55, 0x8b, 0x27, 0x6d, 0xc3, 0x10, 0x4d, 0x0d, 0x91, 0x52 -.byte 0x43, 0xd8, 0x87, 0xe0, 0x5d, 0x4e, 0x36, 0xb5, 0x21, 0xca, 0x5f, 0x39, 0x40, 0x04, 0x5f, 0x5b -.byte 0x7e, 0xcc, 0xa3, 0xc6, 0x2b, 0xa9, 0x40, 0x1e, 0xd9, 0x36, 0x84, 0xd6, 0x48, 0xf3, 0x92, 0x1e -.byte 0x34, 0x46, 0x20, 0x24, 0xc1, 0xa4, 0x51, 0x8e, 0x4a, 0x1a, 0xef, 0x50, 0x3f, 0x69, 0x5d, 0x19 -.byte 0x7f, 0x45, 0xc3, 0xc7, 0x01, 0x8f, 0x51, 0xc9, 0x23, 0xe8, 0x72, 0xae, 0xb4, 0xbc, 0x56, 0x09 -.byte 0x7f, 0x12, 0xcb, 0x1c, 0xb1, 0xaf, 0x29, 0x90, 0x0a, 0xc9, 0x55, 0xcc, 0x0f, 0xd3, 0xb4, 0x1a -.byte 0xed, 0x47, 0x35, 0x5a, 0x4a, 0xed, 0x9c, 0x73, 0x04, 0x21, 0xd0, 0xaa, 0xbd, 0x0c, 0x13, 0xb5 -.byte 0x00, 0xca, 0x26, 0x6c, 0xc4, 0x6b, 0x0c, 0x94, 0x5a, 0x95, 0x94, 0xda, 0x50, 0x9a, 0xf1, 0xff -.byte 0xa5, 0x2b, 0x66, 0x31, 0xa4, 0xc9, 0x38, 0xa0, 0xdf, 0x1d, 0x1f, 0xb8, 0x09, 0x2e, 0xf3, 0xa7 -.byte 0xe8, 0x67, 0x52, 0xab, 0x95, 0x1f, 0xe0, 0x46, 0x3e, 0xd8, 0xa4, 0xc3, 0xca, 0x5a, 0xc5, 0x31 -.byte 0x80, 0xe8, 0x48, 0x9a, 0x9f, 0x94, 0x69, 0xfe, 0x19, 0xdd, 0xd8, 0x73, 0x7c, 0x81, 0xca, 0x96 -.byte 0xde, 0x8e, 0xed, 0xb3, 0x32, 0x05, 0x65, 0x84, 0x34, 0xe6, 0xe6, 0xfd, 0x57, 0x10, 0xb5, 0x5f -.byte 0x76, 0xbf, 0x2f, 0xb0, 0x10, 0x0d, 0xc5, 0x02, 0x03, 0x01, 0x00, 0x01, 0x4f, 0x00, 0x26, 0x02 -.byte 0x30, 0x4d, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31 -.byte 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x09, 0x49, 0x64, 0x65, 0x6e, 0x54, 0x72 -.byte 0x75, 0x73, 0x74, 0x31, 0x2a, 0x30, 0x28, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x21, 0x49, 0x64 -.byte 0x65, 0x6e, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x20, 0x53 -.byte 0x65, 0x63, 0x74, 0x6f, 0x72, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x31, 0x30 -.byte 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01 -.byte 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00 -.byte 0xb6, 0x22, 0x94, 0xfc, 0xa4, 0x48, 0xaf, 0xe8, 0x47, 0x6b, 0x0a, 0xfb, 0x27, 0x76, 0xe4, 0xf2 -.byte 0x3f, 0x8a, 0x3b, 0x7a, 0x4a, 0x2c, 0x31, 0x2a, 0x8c, 0x8d, 0xb0, 0xa9, 0xc3, 0x31, 0x6b, 0xa8 -.byte 0x77, 0x76, 0x84, 0x26, 0xb6, 0xac, 0x81, 0x42, 0x0d, 0x08, 0xeb, 0x55, 0x58, 0xbb, 0x7a, 0xf8 -.byte 0xbc, 0x65, 0x7d, 0xf2, 0xa0, 0x6d, 0x8b, 0xa8, 0x47, 0xe9, 0x62, 0x76, 0x1e, 0x11, 0xee, 0x08 -.byte 0x14, 0xd1, 0xb2, 0x44, 0x16, 0xf4, 0xea, 0xd0, 0xfa, 0x1e, 0x2f, 0x5e, 0xdb, 0xcb, 0x73, 0x41 -.byte 0xae, 0xbc, 0x00, 0xb0, 0x4a, 0x2b, 0x40, 0xb2, 0xac, 0xe1, 0x3b, 0x4b, 0xc2, 0x2d, 0x9d, 0xe4 -.byte 0xa1, 0x9b, 0xec, 0x1a, 0x3a, 0x1e, 0xf0, 0x08, 0xb3, 0xd0, 0xe4, 0x24, 0x35, 0x07, 0x9f, 0x9c -.byte 0xb4, 0xc9, 0x52, 0x6d, 0xdb, 0x07, 0xca, 0x8f, 0xb5, 0x5b, 0xf0, 0x83, 0xf3, 0x4f, 0xc7, 0x2d -.byte 0xa5, 0xc8, 0xad, 0xcb, 0x95, 0x20, 0xa4, 0x31, 0x28, 0x57, 0x58, 0x5a, 0xe4, 0x8d, 0x1b, 0x9a -.byte 0xab, 0x9e, 0x0d, 0x0c, 0xf2, 0x0a, 0x33, 0x39, 0x22, 0x39, 0x0a, 0x97, 0x2e, 0xf3, 0x53, 0x77 -.byte 0xb9, 0x44, 0x45, 0xfd, 0x84, 0xcb, 0x36, 0x20, 0x81, 0x59, 0x2d, 0x9a, 0x6f, 0x6d, 0x48, 0x48 -.byte 0x61, 0xca, 0x4c, 0xdf, 0x53, 0xd1, 0xaf, 0x52, 0xbc, 0x44, 0x9f, 0xab, 0x2f, 0x6b, 0x83, 0x72 -.byte 0xef, 0x75, 0x80, 0xda, 0x06, 0x33, 0x1b, 0x5d, 0xc8, 0xda, 0x63, 0xc6, 0x4d, 0xcd, 0xac, 0x66 -.byte 0x31, 0xcd, 0xd1, 0xde, 0x3e, 0x87, 0x10, 0x36, 0xe1, 0xb9, 0xa4, 0x7a, 0xef, 0x60, 0x50, 0xb2 -.byte 0xcb, 0xca, 0xa6, 0x56, 0xe0, 0x37, 0xaf, 0xab, 0x34, 0x13, 0x39, 0x25, 0xe8, 0x39, 0x66, 0xe4 -.byte 0x98, 0x7a, 0xaa, 0x12, 0x98, 0x9c, 0x59, 0x66, 0x86, 0x3e, 0xad, 0xf1, 0xb0, 0xca, 0x3e, 0x06 -.byte 0x0f, 0x7b, 0xf0, 0x11, 0x4b, 0x37, 0xa0, 0x44, 0x6d, 0x7b, 0xcb, 0xa8, 0x8c, 0x71, 0xf4, 0xd5 -.byte 0xb5, 0x91, 0x36, 0xcc, 0xf0, 0x15, 0xc6, 0x2b, 0xde, 0x51, 0x17, 0xb1, 0x97, 0x4c, 0x50, 0x3d -.byte 0xb1, 0x95, 0x59, 0x7c, 0x05, 0x7d, 0x2d, 0x21, 0xd5, 0x00, 0xbf, 0x01, 0x67, 0xa2, 0x5e, 0x7b -.byte 0xa6, 0x5c, 0xf2, 0xf7, 0x22, 0xf1, 0x90, 0x0d, 0x93, 0xdb, 0xaa, 0x44, 0x51, 0x66, 0xcc, 0x7d -.byte 0x76, 0x03, 0xeb, 0x6a, 0xa8, 0x2a, 0x38, 0x19, 0x97, 0x76, 0x0d, 0x6b, 0x8a, 0x61, 0xf9, 0xbc -.byte 0xf6, 0xee, 0x76, 0xfd, 0x70, 0x2b, 0xdd, 0x29, 0x3c, 0xf8, 0x0a, 0x1e, 0x5b, 0x42, 0x1c, 0x8b -.byte 0x56, 0x2f, 0x55, 0x1b, 0x1c, 0xa1, 0x2e, 0xb5, 0xc7, 0x16, 0xe6, 0xf8, 0xaa, 0x3c, 0x92, 0x8e -.byte 0x69, 0xb6, 0x01, 0xc1, 0xb5, 0x86, 0x9d, 0x89, 0x0f, 0x0b, 0x38, 0x94, 0x54, 0xe8, 0xea, 0xdc -.byte 0x9e, 0x3d, 0x25, 0xbc, 0x53, 0x26, 0xed, 0xd5, 0xab, 0x39, 0xaa, 0xc5, 0x40, 0x4c, 0x54, 0xab -.byte 0xb2, 0xb4, 0xd9, 0xd9, 0xf8, 0xd7, 0x72, 0xdb, 0x1c, 0xbc, 0x6d, 0xbd, 0x65, 0x5f, 0xef, 0x88 -.byte 0x35, 0x2a, 0x66, 0x2f, 0xee, 0xf6, 0xb3, 0x65, 0xf0, 0x33, 0x8d, 0x7c, 0x98, 0x41, 0x69, 0x46 -.byte 0x0f, 0x43, 0x1c, 0x69, 0xfa, 0x9b, 0xb5, 0xd0, 0x61, 0x6a, 0xcd, 0xca, 0x4b, 0xd9, 0x4c, 0x90 -.byte 0x46, 0xab, 0x15, 0x59, 0xa1, 0x47, 0x54, 0x29, 0x2e, 0x83, 0x28, 0x5f, 0x1c, 0xc2, 0xa2, 0xab -.byte 0x72, 0x17, 0x00, 0x06, 0x8e, 0x45, 0xec, 0x8b, 0xe2, 0x33, 0x3d, 0x7f, 0xda, 0x19, 0x44, 0xe4 -.byte 0x62, 0x72, 0xc3, 0xdf, 0x22, 0xc6, 0xf2, 0x56, 0xd4, 0xdd, 0x5f, 0x95, 0x72, 0xed, 0x6d, 0x5f -.byte 0xf7, 0x48, 0x03, 0x5b, 0xfd, 0xc5, 0x2a, 0xa0, 0xf6, 0x73, 0x23, 0x84, 0x10, 0x1b, 0x01, 0xe7 -.byte 0x02, 0x03, 0x01, 0x00, 0x01, 0x4f, 0x00, 0x26, 0x02, 0x30, 0x4d, 0x31, 0x0b, 0x30, 0x09, 0x06 -.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x17, 0x30, 0x15, 0x06, 0x03, 0x55, 0x04 -.byte 0x0a, 0x13, 0x0e, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x2c, 0x20, 0x49, 0x6e, 0x63 -.byte 0x2e, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x1c, 0x44, 0x69, 0x67, 0x69 -.byte 0x43, 0x65, 0x72, 0x74, 0x20, 0x54, 0x4c, 0x53, 0x20, 0x52, 0x53, 0x41, 0x34, 0x30, 0x39, 0x36 -.byte 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x47, 0x35, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09 -.byte 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00 -.byte 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xb3, 0xd0, 0xf4, 0xc9, 0x79, 0x11, 0x9d -.byte 0xfd, 0xfc, 0x66, 0x81, 0xe7, 0xcc, 0xd5, 0xe4, 0xbc, 0xec, 0x81, 0x3e, 0x6a, 0x35, 0x8e, 0x2e -.byte 0xb7, 0xe7, 0xde, 0xaf, 0xf9, 0x07, 0x4d, 0xcf, 0x30, 0x9d, 0xea, 0x09, 0x0b, 0x99, 0xbd, 0x6c -.byte 0x57, 0xda, 0x18, 0x4a, 0xb8, 0x78, 0xac, 0x3a, 0x39, 0xa8, 0xa6, 0x48, 0xac, 0x2e, 0x72, 0xe5 -.byte 0xbd, 0xeb, 0xf1, 0x1a, 0xcd, 0xe7, 0xa4, 0x03, 0xa9, 0x3f, 0x11, 0xb4, 0xd8, 0x2f, 0x89, 0x16 -.byte 0xfb, 0x94, 0x01, 0x3d, 0xbb, 0x2f, 0xf8, 0x13, 0x05, 0xa1, 0x78, 0x1c, 0x8e, 0x28, 0xe0, 0x45 -.byte 0xe0, 0x83, 0xf4, 0x59, 0x1b, 0x95, 0xb3, 0xae, 0x7e, 0x03, 0x45, 0xe5, 0xbe, 0xc2, 0x42, 0xfe -.byte 0xee, 0xf2, 0x3c, 0xb6, 0x85, 0x13, 0x98, 0x32, 0x9d, 0x16, 0xa8, 0x29, 0xc2, 0x0b, 0x1c, 0x38 -.byte 0xdc, 0x9f, 0x31, 0x77, 0x5c, 0xbf, 0x27, 0xa3, 0xfc, 0x27, 0xac, 0xb7, 0x2b, 0xbd, 0x74, 0x9b -.byte 0x17, 0x2d, 0xf2, 0x81, 0xda, 0x5d, 0xb0, 0xe1, 0x23, 0x17, 0x3e, 0x88, 0x4a, 0x12, 0x23, 0xd0 -.byte 0xea, 0xcf, 0x9d, 0xde, 0x03, 0x17, 0xb1, 0x42, 0x4a, 0xa0, 0x16, 0x4c, 0xa4, 0x6d, 0x93, 0xe9 -.byte 0x3f, 0x3a, 0xee, 0x3a, 0x7c, 0x9d, 0x58, 0x9d, 0xf4, 0x4e, 0x8f, 0xfc, 0x3b, 0x23, 0xc8, 0x6d -.byte 0xb8, 0xe2, 0x05, 0xda, 0xcc, 0xeb, 0xec, 0xc3, 0x31, 0xf4, 0xd7, 0xa7, 0x29, 0x54, 0x80, 0xcf -.byte 0x44, 0x5b, 0x4c, 0x6f, 0x30, 0x9e, 0xf3, 0xcc, 0xdd, 0x1f, 0x94, 0x43, 0x9d, 0x4d, 0x7f, 0x70 -.byte 0x70, 0x0d, 0xd4, 0x3a, 0xd1, 0x37, 0xf0, 0x6c, 0x9d, 0x9b, 0xc0, 0x14, 0x93, 0x58, 0xef, 0xcd -.byte 0x41, 0x38, 0x75, 0xbc, 0x13, 0x03, 0x95, 0x7c, 0x7f, 0xe3, 0x5c, 0xe9, 0xd5, 0x0d, 0xd5, 0xe2 -.byte 0x7c, 0x10, 0x62, 0xaa, 0x6b, 0xf0, 0x3d, 0x76, 0xf3, 0x3f, 0xa3, 0xe8, 0xb0, 0xc1, 0xfd, 0xef -.byte 0xaa, 0x57, 0x4d, 0xac, 0x86, 0xa7, 0x18, 0xb4, 0x29, 0xc1, 0x2c, 0x0e, 0xbf, 0x64, 0xbe, 0x29 -.byte 0x8c, 0xd8, 0x02, 0x2d, 0xcd, 0x5c, 0x2f, 0xf2, 0x7f, 0xef, 0x15, 0xf4, 0x0c, 0x15, 0xac, 0x0a -.byte 0xb0, 0xf1, 0xd3, 0x0d, 0x4f, 0x6a, 0x4d, 0x77, 0x97, 0x01, 0xa0, 0xf1, 0x66, 0xb7, 0xb7, 0xce -.byte 0xef, 0xce, 0xec, 0xec, 0xa5, 0x75, 0xca, 0xac, 0xe3, 0xe1, 0x63, 0xf7, 0xb8, 0xa1, 0x04, 0xc8 -.byte 0xbc, 0x7b, 0x3f, 0x5d, 0x2d, 0x16, 0x22, 0x56, 0xed, 0x48, 0x49, 0xfe, 0xa7, 0x2f, 0x79, 0x30 -.byte 0x25, 0x9b, 0xba, 0x6b, 0x2d, 0x3f, 0x9d, 0x3b, 0xc4, 0x17, 0xe7, 0x1d, 0x2e, 0xfb, 0xf2, 0xcf -.byte 0xa6, 0xfc, 0xe3, 0x14, 0x2c, 0x96, 0x98, 0x21, 0x8c, 0xb4, 0x91, 0xe9, 0x19, 0x60, 0x83, 0xf2 -.byte 0x30, 0x2b, 0x06, 0x73, 0x50, 0xd5, 0x98, 0x3b, 0x06, 0xe9, 0xc7, 0x8a, 0x0c, 0x60, 0x8c, 0x28 -.byte 0xf8, 0x52, 0x9b, 0x6e, 0xe1, 0xf6, 0x4d, 0xbb, 0x06, 0x24, 0x9b, 0xd7, 0x2b, 0x26, 0x3f, 0xfd -.byte 0x2a, 0x2f, 0x71, 0xf5, 0xd6, 0x24, 0xbe, 0x7f, 0x31, 0x9e, 0x0f, 0x6d, 0xe8, 0x8f, 0x4f, 0x4d -.byte 0xa3, 0x3f, 0xff, 0x35, 0xea, 0xdf, 0x49, 0x5e, 0x41, 0x8f, 0x86, 0xf9, 0xf1, 0x77, 0x79, 0x4b -.byte 0x1b, 0xb4, 0xa3, 0x5e, 0x2f, 0xfb, 0x46, 0x02, 0xd0, 0x66, 0x13, 0x5e, 0x5e, 0x85, 0x4f, 0xce -.byte 0xd8, 0x70, 0x88, 0x7b, 0xce, 0x01, 0xb5, 0x96, 0x97, 0xd7, 0xcd, 0x7d, 0xfd, 0x82, 0xf8, 0xc2 -.byte 0x24, 0xc1, 0xca, 0x01, 0x39, 0x4f, 0x8d, 0xa2, 0xc1, 0x14, 0x40, 0x1f, 0x9c, 0x66, 0xd5, 0x0c -.byte 0x09, 0x46, 0xd6, 0xf2, 0xd0, 0xd1, 0x48, 0x76, 0x56, 0x3a, 0x43, 0xcb, 0xb6, 0x0a, 0x11, 0x39 -.byte 0xba, 0x8c, 0x13, 0x6c, 0x06, 0xb5, 0x9e, 0xcf, 0xeb, 0x02, 0x03, 0x01, 0x00, 0x01, 0x50, 0x00 -.byte 0x26, 0x02, 0x30, 0x4e, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x4e -.byte 0x4f, 0x31, 0x1d, 0x30, 0x1b, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x14, 0x42, 0x75, 0x79, 0x70 -.byte 0x61, 0x73, 0x73, 0x20, 0x41, 0x53, 0x2d, 0x39, 0x38, 0x33, 0x31, 0x36, 0x33, 0x33, 0x32, 0x37 -.byte 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x17, 0x42, 0x75, 0x79, 0x70, 0x61 -.byte 0x73, 0x73, 0x20, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x20, 0x32, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20 -.byte 0x43, 0x41, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d -.byte 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82 -.byte 0x02, 0x01, 0x00, 0xd7, 0xc7, 0x5e, 0xf7, 0xc1, 0x07, 0xd4, 0x77, 0xfb, 0x43, 0x21, 0xf4, 0xf4 -.byte 0xf5, 0x69, 0xe4, 0xee, 0x32, 0x01, 0xdb, 0xa3, 0x86, 0x1f, 0xe4, 0x59, 0x0d, 0xba, 0xe7, 0x75 -.byte 0x83, 0x52, 0xeb, 0xea, 0x1c, 0x61, 0x15, 0x48, 0xbb, 0x1d, 0x07, 0xca, 0x8c, 0xae, 0xb0, 0xdc -.byte 0x96, 0x9d, 0xea, 0xc3, 0x60, 0x92, 0x86, 0x82, 0x28, 0x73, 0x9c, 0x56, 0x06, 0xff, 0x4b, 0x64 -.byte 0xf0, 0x0c, 0x2a, 0x37, 0x49, 0xb5, 0xe5, 0xcf, 0x0c, 0x7c, 0xee, 0xf1, 0x4a, 0xbb, 0x73, 0x30 -.byte 0x65, 0xf3, 0xd5, 0x2f, 0x83, 0xb6, 0x7e, 0xe3, 0xe7, 0xf5, 0x9e, 0xab, 0x60, 0xf9, 0xd3, 0xf1 -.byte 0x9d, 0x92, 0x74, 0x8a, 0xe4, 0x1c, 0x96, 0xac, 0x5b, 0x80, 0xe9, 0xb5, 0xf4, 0x31, 0x87, 0xa3 -.byte 0x51, 0xfc, 0xc7, 0x7e, 0xa1, 0x6f, 0x8e, 0x53, 0x77, 0xd4, 0x97, 0xc1, 0x55, 0x33, 0x92, 0x3e -.byte 0x18, 0x2f, 0x75, 0xd4, 0xad, 0x86, 0x49, 0xcb, 0x95, 0xaf, 0x54, 0x06, 0x6c, 0xd8, 0x06, 0x13 -.byte 0x8d, 0x5b, 0xff, 0xe1, 0x26, 0x19, 0x59, 0xc0, 0x24, 0xba, 0x81, 0x71, 0x79, 0x90, 0x44, 0x50 -.byte 0x68, 0x24, 0x94, 0x5f, 0xb8, 0xb3, 0x11, 0xf1, 0x29, 0x41, 0x61, 0xa3, 0x41, 0xcb, 0x23, 0x36 -.byte 0xd5, 0xc1, 0xf1, 0x32, 0x50, 0x10, 0x4e, 0x7f, 0xf4, 0x86, 0x93, 0xec, 0x84, 0xd3, 0x8e, 0xbc -.byte 0x4b, 0xbf, 0x5c, 0x01, 0x4e, 0x07, 0x3d, 0xdc, 0x14, 0x8a, 0x94, 0x0a, 0xa4, 0xea, 0x73, 0xfb -.byte 0x0b, 0x51, 0xe8, 0x13, 0x07, 0x18, 0xfa, 0x0e, 0xf1, 0x2b, 0xd1, 0x54, 0x15, 0x7d, 0x3c, 0xe1 -.byte 0xf7, 0xb4, 0x19, 0x42, 0x67, 0x62, 0x5e, 0x77, 0xe0, 0xa2, 0x55, 0xec, 0xb6, 0xd9, 0x69, 0x17 -.byte 0xd5, 0x3a, 0xaf, 0x44, 0xed, 0x4a, 0xc5, 0x9e, 0xe4, 0x7a, 0x27, 0x7c, 0xe5, 0x75, 0xd7, 0xaa -.byte 0xcb, 0x25, 0xe7, 0xdf, 0x6b, 0x0a, 0xdb, 0x0f, 0x4d, 0x93, 0x4e, 0xa8, 0xa0, 0xcd, 0x7b, 0x2e -.byte 0xf2, 0x59, 0x01, 0x6a, 0xb7, 0x0d, 0xb8, 0x07, 0x81, 0x7e, 0x8b, 0x38, 0x1b, 0x38, 0xe6, 0x0a -.byte 0x57, 0x99, 0x3d, 0xee, 0x21, 0xe8, 0xa3, 0xf5, 0x0c, 0x16, 0xdd, 0x8b, 0xec, 0x34, 0x8e, 0x9c -.byte 0x2a, 0x1c, 0x00, 0x15, 0x17, 0x8d, 0x68, 0x83, 0xd2, 0x70, 0x9f, 0x18, 0x08, 0xcd, 0x11, 0x68 -.byte 0xd5, 0xc9, 0x6b, 0x52, 0xcd, 0xc4, 0x46, 0x8f, 0xdc, 0xb5, 0xf3, 0xd8, 0x57, 0x73, 0x1e, 0xe9 -.byte 0x94, 0x39, 0x04, 0xbf, 0xd3, 0xde, 0x38, 0xde, 0xb4, 0x53, 0xec, 0x69, 0x1c, 0xa2, 0x7e, 0xc4 -.byte 0x8f, 0xe4, 0x1b, 0x70, 0xad, 0xf2, 0xa2, 0xf9, 0xfb, 0xf7, 0x16, 0x64, 0x66, 0x69, 0x9f, 0x49 -.byte 0x51, 0xa2, 0xe2, 0x15, 0x18, 0x67, 0x06, 0x4a, 0x7f, 0xd5, 0x6c, 0xb5, 0x4d, 0xb3, 0x33, 0xe0 -.byte 0x61, 0xeb, 0x5d, 0xbe, 0xe9, 0x98, 0x0f, 0x32, 0xd7, 0x1d, 0x4b, 0x3c, 0x2e, 0x5a, 0x01, 0x52 -.byte 0x91, 0x09, 0xf2, 0xdf, 0xea, 0x8d, 0xd8, 0x06, 0x40, 0x63, 0xaa, 0x11, 0xe4, 0xfe, 0xc3, 0x37 -.byte 0x9e, 0x14, 0x52, 0x3f, 0xf4, 0xe2, 0xcc, 0xf2, 0x61, 0x93, 0xd1, 0xfd, 0x67, 0x6b, 0xd7, 0x52 -.byte 0xae, 0xbf, 0x68, 0xab, 0x40, 0x43, 0xa0, 0x57, 0x35, 0x53, 0x78, 0xf0, 0x53, 0xf8, 0x61, 0x42 -.byte 0x07, 0x64, 0xc6, 0xd7, 0x6f, 0x9b, 0x4c, 0x38, 0x0d, 0x63, 0xac, 0x62, 0xaf, 0x36, 0x8b, 0xa2 -.byte 0x73, 0x0a, 0x0d, 0xf5, 0x21, 0xbd, 0x74, 0xaa, 0x4d, 0xea, 0x72, 0x03, 0x49, 0xdb, 0xc7, 0x5f -.byte 0x1d, 0x62, 0x63, 0xc7, 0xfd, 0xdd, 0x91, 0xec, 0x33, 0xee, 0xf5, 0x6d, 0xb4, 0x6e, 0x30, 0x68 -.byte 0xde, 0xc8, 0xd6, 0x26, 0xb0, 0x75, 0x5e, 0x7b, 0xb4, 0x07, 0x20, 0x98, 0xa1, 0x76, 0x32, 0xb8 -.byte 0x4d, 0x6c, 0x4f, 0x02, 0x03, 0x01, 0x00, 0x01, 0x50, 0x00, 0x26, 0x02, 0x30, 0x4e, 0x31, 0x0b -.byte 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x4e, 0x4f, 0x31, 0x1d, 0x30, 0x1b, 0x06 -.byte 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x14, 0x42, 0x75, 0x79, 0x70, 0x61, 0x73, 0x73, 0x20, 0x41, 0x53 -.byte 0x2d, 0x39, 0x38, 0x33, 0x31, 0x36, 0x33, 0x33, 0x32, 0x37, 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03 -.byte 0x55, 0x04, 0x03, 0x0c, 0x17, 0x42, 0x75, 0x79, 0x70, 0x61, 0x73, 0x73, 0x20, 0x43, 0x6c, 0x61 -.byte 0x73, 0x73, 0x20, 0x33, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x30, 0x82, 0x02, 0x22 -.byte 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03 -.byte 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xa5, 0xda, 0x0a -.byte 0x95, 0x16, 0x50, 0xe3, 0x95, 0xf2, 0x5e, 0x9d, 0x76, 0x31, 0x06, 0x32, 0x7a, 0x9b, 0xf1, 0x10 -.byte 0x76, 0xb8, 0x00, 0x9a, 0xb5, 0x52, 0x36, 0xcd, 0x24, 0x47, 0xb0, 0x9f, 0x18, 0x64, 0xbc, 0x9a -.byte 0xf6, 0xfa, 0xd5, 0x79, 0xd8, 0x90, 0x62, 0x4c, 0x22, 0x2f, 0xde, 0x38, 0x3d, 0xd6, 0xe0, 0xa8 -.byte 0xe9, 0x1c, 0x2c, 0xdb, 0x78, 0x11, 0xe9, 0x8e, 0x68, 0x51, 0x15, 0x72, 0xc7, 0xf3, 0x33, 0x87 -.byte 0xe4, 0xa0, 0x5d, 0x0b, 0x5c, 0xe0, 0x57, 0x07, 0x2a, 0x30, 0xf5, 0xcd, 0xc4, 0x37, 0x77, 0x28 -.byte 0x4d, 0x18, 0x91, 0xe6, 0xbf, 0xd5, 0x52, 0xfd, 0x71, 0x2d, 0x70, 0x3e, 0xe7, 0xc6, 0xc4, 0x8a -.byte 0xe3, 0xf0, 0x28, 0x0b, 0xf4, 0x76, 0x98, 0xa1, 0x8b, 0x87, 0x55, 0xb2, 0x3a, 0x13, 0xfc, 0xb7 -.byte 0x3e, 0x27, 0x37, 0x8e, 0x22, 0xe3, 0xa8, 0x4f, 0x2a, 0xef, 0x60, 0xbb, 0x3d, 0xb7, 0x39, 0xc3 -.byte 0x0e, 0x01, 0x47, 0x99, 0x5d, 0x12, 0x4f, 0xdb, 0x43, 0xfa, 0x57, 0xa1, 0xed, 0xf9, 0x9d, 0xbe -.byte 0x11, 0x47, 0x26, 0x5b, 0x13, 0x98, 0xab, 0x5d, 0x16, 0x8a, 0xb0, 0x37, 0x1c, 0x57, 0x9d, 0x45 -.byte 0xff, 0x88, 0x96, 0x36, 0xbf, 0xbb, 0xca, 0x07, 0x7b, 0x6f, 0x87, 0x63, 0xd7, 0xd0, 0x32, 0x6a -.byte 0xd6, 0x5d, 0x6c, 0x0c, 0xf1, 0xb3, 0x6e, 0x39, 0xe2, 0x6b, 0x31, 0x2e, 0x39, 0x00, 0x27, 0x14 -.byte 0xde, 0x38, 0xc0, 0xec, 0x19, 0x66, 0x86, 0x12, 0xe8, 0x9d, 0x72, 0x16, 0x13, 0x64, 0x52, 0xc7 -.byte 0xa9, 0x37, 0x1c, 0xfd, 0x82, 0x30, 0xed, 0x84, 0x18, 0x1d, 0xf4, 0xae, 0x5c, 0xff, 0x70, 0x13 -.byte 0x00, 0xeb, 0xb1, 0xf5, 0x33, 0x7a, 0x4b, 0xd6, 0x55, 0xf8, 0x05, 0x8d, 0x4b, 0x69, 0xb0, 0xf5 -.byte 0xb3, 0x28, 0x36, 0x5c, 0x14, 0xc4, 0x51, 0x73, 0x4d, 0x6b, 0x0b, 0xf1, 0x34, 0x07, 0xdb, 0x17 -.byte 0x39, 0xd7, 0xdc, 0x28, 0x7b, 0x6b, 0xf5, 0x9f, 0xf3, 0x2e, 0xc1, 0x4f, 0x17, 0x2a, 0x10, 0xf3 -.byte 0xcc, 0xca, 0xe8, 0xeb, 0xfd, 0x6b, 0xab, 0x2e, 0x9a, 0x9f, 0x2d, 0x82, 0x6e, 0x04, 0xd4, 0x52 -.byte 0x01, 0x93, 0x2d, 0x3d, 0x86, 0xfc, 0x7e, 0xfc, 0xdf, 0xef, 0x42, 0x1d, 0xa6, 0x6b, 0xef, 0xb9 -.byte 0x20, 0xc6, 0xf7, 0xbd, 0xa0, 0xa7, 0x95, 0xfd, 0xa7, 0xe6, 0x89, 0x24, 0xd8, 0xcc, 0x8c, 0x34 -.byte 0x6c, 0xe2, 0x23, 0x2f, 0xd9, 0x12, 0x1a, 0x21, 0xb9, 0x55, 0x91, 0x6f, 0x0b, 0x91, 0x79, 0x19 -.byte 0x0c, 0xad, 0x40, 0x88, 0x0b, 0x70, 0xe2, 0x7a, 0xd2, 0x0e, 0xd8, 0x68, 0x48, 0xbb, 0x82, 0x13 -.byte 0x39, 0x10, 0x58, 0xe9, 0xd8, 0x2a, 0x07, 0xc6, 0x12, 0xdb, 0x58, 0xdb, 0xd2, 0x3b, 0x55, 0x10 -.byte 0x47, 0x05, 0x15, 0x67, 0x62, 0x7e, 0x18, 0x63, 0xa6, 0x46, 0x3f, 0x09, 0x0e, 0x54, 0x32, 0x5e -.byte 0xbf, 0x0d, 0x62, 0x7a, 0x27, 0xef, 0x80, 0xe8, 0xdb, 0xd9, 0x4b, 0x06, 0x5a, 0x37, 0x5a, 0x25 -.byte 0xd0, 0x08, 0x12, 0x77, 0xd4, 0x6f, 0x09, 0x50, 0x97, 0x3d, 0xc8, 0x1d, 0xc3, 0xdf, 0x8c, 0x45 -.byte 0x30, 0x56, 0xc6, 0xd3, 0x64, 0xab, 0x66, 0xf3, 0xc0, 0x5e, 0x96, 0x9c, 0xc3, 0xc4, 0xef, 0xc3 -.byte 0x7c, 0x6b, 0x8b, 0x3a, 0x79, 0x7f, 0xb3, 0x49, 0xcf, 0x3d, 0xe2, 0x89, 0x9f, 0xa0, 0x30, 0x4b -.byte 0x85, 0xb9, 0x9c, 0x94, 0x24, 0x79, 0x8f, 0x7d, 0x6b, 0xa9, 0x45, 0x68, 0x0f, 0x2b, 0xd0, 0xf1 -.byte 0xda, 0x1c, 0xcb, 0x69, 0xb8, 0xca, 0x49, 0x62, 0x6d, 0xc8, 0xd0, 0x63, 0x62, 0xdd, 0x60, 0x0f -.byte 0x58, 0xaa, 0x8f, 0xa1, 0xbc, 0x05, 0xa5, 0x66, 0xa2, 0xcf, 0x1b, 0x76, 0xb2, 0x84, 0x64, 0xb1 -.byte 0x4c, 0x39, 0x52, 0xc0, 0x30, 0xba, 0xf0, 0x8c, 0x4b, 0x02, 0xb0, 0xb6, 0xb7, 0x02, 0x03, 0x01 -.byte 0x00, 0x01, 0x50, 0x00, 0x78, 0x00, 0x30, 0x4e, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04 -.byte 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x09 -.byte 0x43, 0x6f, 0x6d, 0x6d, 0x53, 0x63, 0x6f, 0x70, 0x65, 0x31, 0x2b, 0x30, 0x29, 0x06, 0x03, 0x55 -.byte 0x04, 0x03, 0x0c, 0x22, 0x43, 0x6f, 0x6d, 0x6d, 0x53, 0x63, 0x6f, 0x70, 0x65, 0x20, 0x50, 0x75 -.byte 0x62, 0x6c, 0x69, 0x63, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x45, 0x43, 0x43, 0x20, 0x52 -.byte 0x6f, 0x6f, 0x74, 0x2d, 0x30, 0x31, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce -.byte 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0x4b, 0x36 -.byte 0xe9, 0xae, 0x57, 0x5e, 0xa8, 0x70, 0xd7, 0xd0, 0x8f, 0x74, 0x62, 0x77, 0xc3, 0x5e, 0x7a, 0xaa -.byte 0xe5, 0xb6, 0xa2, 0xf1, 0x78, 0xfd, 0x02, 0x7e, 0x57, 0xdd, 0x91, 0x79, 0x9c, 0x6c, 0xb9, 0x52 -.byte 0x88, 0x54, 0xbc, 0x2f, 0x04, 0xbe, 0xb8, 0xcd, 0xf6, 0x10, 0xd1, 0x29, 0xec, 0xb5, 0xd0, 0xa0 -.byte 0xc3, 0xf0, 0x89, 0x70, 0x19, 0xbb, 0x51, 0x65, 0xc5, 0x43, 0x9c, 0xc3, 0x9b, 0x63, 0x9d, 0x20 -.byte 0x83, 0x3e, 0x06, 0x0b, 0xa6, 0x42, 0x44, 0x85, 0x11, 0xa7, 0x4a, 0x3a, 0x2d, 0xe9, 0xd6, 0x68 -.byte 0x2f, 0x48, 0x4e, 0x53, 0x2b, 0x07, 0x3f, 0x4d, 0xbd, 0xb9, 0xac, 0x77, 0x39, 0x57, 0x50, 0x00 -.byte 0x78, 0x00, 0x30, 0x4e, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55 -.byte 0x53, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x09, 0x43, 0x6f, 0x6d, 0x6d -.byte 0x53, 0x63, 0x6f, 0x70, 0x65, 0x31, 0x2b, 0x30, 0x29, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x22 -.byte 0x43, 0x6f, 0x6d, 0x6d, 0x53, 0x63, 0x6f, 0x70, 0x65, 0x20, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x63 -.byte 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x45, 0x43, 0x43, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x2d -.byte 0x30, 0x32, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06 -.byte 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0x78, 0x30, 0x81, 0xe8, 0x63, 0x1e -.byte 0xe5, 0xeb, 0x71, 0x51, 0x0f, 0xf7, 0x07, 0x07, 0xca, 0x39, 0x99, 0x7c, 0x4e, 0xd5, 0x0f, 0xcc -.byte 0x30, 0x30, 0x0b, 0x8f, 0x66, 0x93, 0x3e, 0xcf, 0xbd, 0xc5, 0x86, 0xbd, 0xf9, 0xb1, 0xb7, 0xb4 -.byte 0x3e, 0xb4, 0x07, 0xc8, 0xf3, 0x96, 0x31, 0xf3, 0xed, 0xa4, 0x4f, 0xf8, 0xa3, 0x4e, 0x8d, 0x29 -.byte 0x15, 0x58, 0xb8, 0xd5, 0x6f, 0x7f, 0xee, 0x6c, 0x22, 0xb5, 0xb0, 0xaf, 0x48, 0x45, 0x0a, 0xbd -.byte 0xa8, 0x49, 0x94, 0xbf, 0x84, 0x43, 0xb0, 0xdb, 0x84, 0x4a, 0x03, 0x23, 0x19, 0x67, 0x6a, 0x6f -.byte 0xc1, 0x6e, 0xbc, 0x06, 0x39, 0x37, 0xd1, 0x88, 0x22, 0xf7, 0x50, 0x00, 0x26, 0x02, 0x30, 0x4e -.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x12, 0x30 -.byte 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x09, 0x43, 0x6f, 0x6d, 0x6d, 0x53, 0x63, 0x6f, 0x70 -.byte 0x65, 0x31, 0x2b, 0x30, 0x29, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x22, 0x43, 0x6f, 0x6d, 0x6d -.byte 0x53, 0x63, 0x6f, 0x70, 0x65, 0x20, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x20, 0x54, 0x72, 0x75 -.byte 0x73, 0x74, 0x20, 0x52, 0x53, 0x41, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x2d, 0x30, 0x31, 0x30, 0x82 -.byte 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05 -.byte 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xb0 -.byte 0x48, 0x65, 0xa3, 0x0d, 0x1d, 0x42, 0xe3, 0x91, 0x6d, 0x9d, 0x84, 0xa4, 0x61, 0x96, 0x12, 0xc2 -.byte 0xed, 0xc3, 0xda, 0x23, 0x34, 0x19, 0x76, 0xf6, 0xea, 0xfd, 0x55, 0x5a, 0xf6, 0x55, 0x01, 0x53 -.byte 0x0f, 0xf2, 0xcc, 0x8c, 0x97, 0x4f, 0xb9, 0x50, 0xcb, 0xb3, 0x01, 0x44, 0x56, 0x96, 0xfd, 0x9b -.byte 0x28, 0xec, 0x7b, 0x74, 0x0b, 0xe7, 0x42, 0x6b, 0x55, 0xce, 0xc9, 0x61, 0xb2, 0xe8, 0xad, 0x40 -.byte 0x3c, 0xba, 0xb9, 0x41, 0x0a, 0x05, 0x4f, 0x1b, 0x26, 0x85, 0x8f, 0x43, 0xb5, 0x40, 0xb5, 0x85 -.byte 0xd1, 0xd4, 0x71, 0xdc, 0x83, 0x41, 0xf3, 0xf6, 0x45, 0xc7, 0x80, 0xa2, 0x84, 0x50, 0x97, 0x46 -.byte 0xce, 0xa0, 0x0c, 0xc4, 0x60, 0x56, 0x04, 0x1d, 0x07, 0x5b, 0x46, 0xa5, 0x0e, 0xb2, 0x4b, 0xa4 -.byte 0x0e, 0xa5, 0x7c, 0xee, 0xf8, 0xd4, 0x62, 0x03, 0xb9, 0x93, 0x6a, 0x8a, 0x14, 0xb8, 0x70, 0xf8 -.byte 0x2e, 0x82, 0x46, 0x38, 0x23, 0x0e, 0x74, 0xc7, 0x6b, 0x41, 0xb7, 0xd0, 0x29, 0xa3, 0x9d, 0x80 -.byte 0xb0, 0x7e, 0x77, 0x93, 0x63, 0x42, 0xfb, 0x34, 0x83, 0x3b, 0x73, 0xa3, 0x5a, 0x21, 0x36, 0xeb -.byte 0x47, 0xfa, 0x18, 0x17, 0xd9, 0xba, 0x66, 0xc2, 0x93, 0xa4, 0x8f, 0xfc, 0x5d, 0xa4, 0xad, 0xfc -.byte 0x50, 0x6a, 0x95, 0xac, 0xbc, 0x24, 0x33, 0xd1, 0xbd, 0x88, 0x7f, 0x86, 0xf5, 0xf5, 0xb2, 0x73 -.byte 0x2a, 0x8f, 0x7c, 0xaf, 0x08, 0xf2, 0x1a, 0x98, 0x3f, 0xa9, 0x81, 0x65, 0x3f, 0xc1, 0x8c, 0x89 -.byte 0xc5, 0x96, 0x30, 0x9a, 0x0a, 0xcf, 0xf4, 0xd4, 0xc8, 0x34, 0xed, 0x9d, 0x2f, 0xbc, 0x8d, 0x38 -.byte 0x86, 0x53, 0xee, 0x97, 0x9f, 0xa9, 0xb2, 0x63, 0x94, 0x17, 0x8d, 0x0f, 0xdc, 0x66, 0x2a, 0x7c -.byte 0x52, 0x51, 0x75, 0xcb, 0x99, 0x8e, 0xe8, 0x3d, 0x5c, 0xbf, 0x9e, 0x3b, 0x28, 0x8d, 0x83, 0x02 -.byte 0x0f, 0xa9, 0x9f, 0x72, 0xe2, 0x2c, 0x2b, 0xb3, 0xdc, 0x66, 0x97, 0x00, 0x40, 0xd0, 0xa4, 0x54 -.byte 0x8e, 0x9b, 0x5d, 0x7b, 0x45, 0x36, 0x26, 0xd6, 0x72, 0x43, 0xeb, 0xcf, 0xc0, 0xea, 0x0d, 0xdc -.byte 0xce, 0x12, 0xe6, 0x7d, 0x38, 0x9f, 0x05, 0x27, 0xa8, 0x97, 0x3e, 0xe9, 0x51, 0xc6, 0x6c, 0x05 -.byte 0x28, 0xc1, 0x02, 0x0f, 0xe9, 0x18, 0x6d, 0xec, 0xbd, 0x9c, 0x06, 0xd4, 0xa7, 0x49, 0xf4, 0x54 -.byte 0x05, 0x6b, 0x6c, 0x30, 0xf1, 0xeb, 0x03, 0xd5, 0xea, 0x3d, 0x6a, 0x76, 0xc2, 0xcb, 0x1a, 0x28 -.byte 0x49, 0x4d, 0x7f, 0x64, 0xe0, 0xfa, 0x2b, 0xda, 0x73, 0x83, 0x81, 0xff, 0x91, 0x03, 0xbd, 0x94 -.byte 0xbb, 0xe4, 0xb8, 0x8e, 0x9c, 0x32, 0x63, 0xcd, 0x9f, 0xbb, 0x68, 0x81, 0xb1, 0x84, 0x5b, 0xaf -.byte 0x36, 0xbf, 0x77, 0xee, 0x1d, 0x7f, 0xf7, 0x49, 0x9b, 0x52, 0xec, 0xd2, 0x77, 0x5a, 0x7d, 0x91 -.byte 0x9d, 0x4d, 0xc2, 0x39, 0x2d, 0xe4, 0xba, 0x82, 0xf8, 0x6f, 0xf2, 0x4e, 0x1e, 0x0f, 0x4e, 0xe6 -.byte 0x3f, 0x59, 0xa5, 0x23, 0xdc, 0x3d, 0x87, 0xa8, 0x28, 0x58, 0x28, 0xd1, 0xf1, 0x1b, 0x36, 0xdb -.byte 0x4f, 0xc4, 0xff, 0xe1, 0x8c, 0x5b, 0x72, 0x8c, 0xc7, 0x26, 0x03, 0x27, 0xa3, 0x39, 0x0a, 0x01 -.byte 0xaa, 0xc0, 0xb2, 0x31, 0x60, 0x83, 0x22, 0xa1, 0x4f, 0x12, 0x09, 0x01, 0x11, 0xaf, 0x34, 0xd4 -.byte 0xcf, 0xd7, 0xae, 0x62, 0xd3, 0x05, 0x07, 0xb4, 0x31, 0x75, 0xe0, 0x0d, 0x6d, 0x57, 0x4f, 0x69 -.byte 0x87, 0xf9, 0x57, 0xa9, 0xba, 0x15, 0xf6, 0xc8, 0x52, 0x6d, 0xa1, 0xcb, 0x9c, 0x1f, 0xe5, 0xfc -.byte 0x78, 0xa8, 0x35, 0x9a, 0x9f, 0x41, 0x14, 0xce, 0xa5, 0xb4, 0xce, 0x94, 0x08, 0x1c, 0x09, 0xad -.byte 0x56, 0xe5, 0xda, 0xb6, 0x49, 0x9a, 0x4a, 0xea, 0x63, 0x18, 0x53, 0x9c, 0x2c, 0x2e, 0xc3, 0x02 -.byte 0x03, 0x01, 0x00, 0x01, 0x50, 0x00, 0x26, 0x02, 0x30, 0x4e, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03 -.byte 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a -.byte 0x0c, 0x09, 0x43, 0x6f, 0x6d, 0x6d, 0x53, 0x63, 0x6f, 0x70, 0x65, 0x31, 0x2b, 0x30, 0x29, 0x06 -.byte 0x03, 0x55, 0x04, 0x03, 0x0c, 0x22, 0x43, 0x6f, 0x6d, 0x6d, 0x53, 0x63, 0x6f, 0x70, 0x65, 0x20 -.byte 0x50, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x52, 0x53, 0x41 -.byte 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x2d, 0x30, 0x32, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09 -.byte 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00 -.byte 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xe1, 0xfa, 0x0e, 0xfb, 0x68, 0x00, 0x12 -.byte 0xc8, 0x4d, 0xd5, 0xac, 0x22, 0xc4, 0x35, 0x01, 0x3b, 0xc5, 0x54, 0xe5, 0x59, 0x76, 0x63, 0xa5 -.byte 0x7f, 0xeb, 0xc1, 0xc4, 0x6a, 0x98, 0xbd, 0x32, 0x8d, 0x17, 0x80, 0xeb, 0x5d, 0xba, 0xd1, 0x62 -.byte 0x3d, 0x25, 0x23, 0x19, 0x35, 0x14, 0xe9, 0x7f, 0x89, 0xa7, 0x1b, 0x62, 0x3c, 0xd6, 0x50, 0xe7 -.byte 0x34, 0x95, 0x03, 0x32, 0xb1, 0xb4, 0x93, 0x22, 0x3d, 0xa7, 0xe2, 0xb1, 0xed, 0xe6, 0x7b, 0x4e -.byte 0x2e, 0x87, 0x9b, 0x0d, 0x33, 0x75, 0x0a, 0xde, 0xaa, 0x35, 0xe7, 0x7e, 0xe5, 0x36, 0x98, 0xa2 -.byte 0xae, 0x25, 0x9e, 0x95, 0xb3, 0x32, 0x96, 0xa4, 0x2b, 0x58, 0x1e, 0xef, 0x3f, 0xfe, 0x62, 0x34 -.byte 0x48, 0x51, 0xd1, 0xb4, 0x8d, 0x42, 0xad, 0x60, 0xda, 0x49, 0x6a, 0x95, 0x70, 0xdd, 0xd2, 0x00 -.byte 0xe2, 0xcc, 0x57, 0x63, 0x02, 0x7b, 0x96, 0xdd, 0x49, 0x97, 0x5b, 0x92, 0x4e, 0x95, 0xd3, 0xf9 -.byte 0xcb, 0x29, 0x1f, 0x18, 0x4a, 0xf8, 0x01, 0x2a, 0xd2, 0x63, 0x09, 0x6e, 0x24, 0xe9, 0x89, 0xd2 -.byte 0xe5, 0xc7, 0x22, 0x4c, 0xdc, 0x73, 0x86, 0x47, 0x00, 0xaa, 0x0d, 0x88, 0x8e, 0xae, 0x85, 0x7d -.byte 0x4a, 0xe9, 0xbb, 0x33, 0x4f, 0x0e, 0x52, 0x70, 0x9d, 0x95, 0xe3, 0x7c, 0x6d, 0x96, 0x5b, 0x2d -.byte 0x3d, 0x5f, 0xa1, 0x83, 0x46, 0x5d, 0xb6, 0xe3, 0x25, 0xb8, 0x7c, 0xa7, 0x19, 0x80, 0x1c, 0xea -.byte 0x65, 0x43, 0xdc, 0x91, 0x79, 0x36, 0x2c, 0x74, 0x7c, 0xf2, 0x67, 0x06, 0xc9, 0x89, 0xc9, 0xdb -.byte 0xbf, 0xda, 0x68, 0xbf, 0x23, 0xed, 0xdc, 0x6b, 0xad, 0x28, 0x83, 0x79, 0x2f, 0xec, 0x38, 0xa5 -.byte 0x0d, 0x37, 0x01, 0x67, 0x27, 0x9a, 0xe9, 0x33, 0xd9, 0x33, 0x5f, 0x37, 0xa1, 0xc5, 0xf0, 0xab -.byte 0x3d, 0xfa, 0x78, 0xb0, 0xe7, 0x2c, 0x9f, 0xf6, 0x3e, 0x9f, 0x60, 0xe0, 0xef, 0x48, 0xe9, 0x90 -.byte 0x45, 0x1e, 0x05, 0x51, 0x78, 0x1a, 0x2c, 0x12, 0x2c, 0x5c, 0x28, 0xac, 0x0d, 0xa2, 0x23, 0x9e -.byte 0x34, 0x8f, 0x05, 0xe6, 0xa2, 0x33, 0xce, 0x11, 0x77, 0x13, 0xd4, 0x0e, 0xa4, 0x1e, 0x42, 0x1f -.byte 0x86, 0xcd, 0x70, 0xfe, 0xd9, 0x2e, 0x15, 0x3d, 0x1d, 0xbb, 0xb8, 0xf2, 0x53, 0x57, 0xdb, 0xcc -.byte 0xc6, 0x74, 0x29, 0x9c, 0x18, 0xb3, 0x36, 0x75, 0x38, 0x2e, 0x0f, 0x54, 0xa1, 0xf8, 0x92, 0x1f -.byte 0x89, 0x96, 0x4f, 0xbb, 0xd4, 0xee, 0x9d, 0xe9, 0x3b, 0x36, 0x42, 0xb5, 0x0a, 0x3b, 0x2a, 0xd4 -.byte 0x64, 0x79, 0x36, 0x10, 0xe1, 0xf9, 0x91, 0x03, 0x2b, 0x7b, 0x20, 0x54, 0xcd, 0x0d, 0x19, 0x1a -.byte 0xc8, 0x41, 0x32, 0x34, 0xd1, 0xb0, 0x99, 0xe1, 0x90, 0x1e, 0x01, 0x40, 0x36, 0xb5, 0xb7, 0xfa -.byte 0xa9, 0xe5, 0x77, 0x75, 0xa4, 0x22, 0x81, 0x5d, 0xb0, 0x8b, 0xe4, 0x27, 0x12, 0x0f, 0x54, 0x88 -.byte 0xc6, 0xdb, 0x85, 0x74, 0xe6, 0xb7, 0xc0, 0xd7, 0xa6, 0x29, 0xfa, 0xdb, 0xde, 0xf3, 0x93, 0x97 -.byte 0x27, 0x04, 0x55, 0x2f, 0x0a, 0x6f, 0x37, 0xc5, 0x3d, 0x13, 0xaf, 0x0a, 0x00, 0xa9, 0x2c, 0x8b -.byte 0x1c, 0x81, 0x28, 0xd7, 0xef, 0x86, 0x31, 0xa9, 0xae, 0xf2, 0x6e, 0xb8, 0xca, 0x6a, 0x2c, 0x54 -.byte 0x47, 0xd8, 0x2a, 0x88, 0x2e, 0xaf, 0xc1, 0x07, 0x10, 0x78, 0xac, 0x11, 0xa2, 0x2f, 0x42, 0xf0 -.byte 0x37, 0xc5, 0xf2, 0xb8, 0x56, 0xdd, 0x0e, 0x62, 0x2d, 0xce, 0x2d, 0x56, 0x7e, 0x55, 0xf2, 0xa7 -.byte 0x44, 0xf6, 0x2b, 0x32, 0xf4, 0x23, 0xa8, 0x47, 0xe8, 0xd4, 0x2a, 0x01, 0x78, 0xcf, 0x6a, 0xc3 -.byte 0x37, 0xa8, 0x9e, 0x65, 0xd2, 0x2c, 0xe5, 0xfa, 0xba, 0x33, 0xc1, 0x06, 0x44, 0xf6, 0xe6, 0xcf -.byte 0xa5, 0x0d, 0xa7, 0x66, 0x08, 0x34, 0x8a, 0x2c, 0xf3, 0x02, 0x03, 0x01, 0x00, 0x01, 0x50, 0x00 -.byte 0x78, 0x00, 0x30, 0x4e, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55 -.byte 0x53, 0x31, 0x17, 0x30, 0x15, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0e, 0x44, 0x69, 0x67, 0x69 -.byte 0x43, 0x65, 0x72, 0x74, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x26, 0x30, 0x24, 0x06, 0x03 -.byte 0x55, 0x04, 0x03, 0x13, 0x1d, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x54, 0x4c -.byte 0x53, 0x20, 0x45, 0x43, 0x43, 0x20, 0x50, 0x33, 0x38, 0x34, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20 -.byte 0x47, 0x35, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06 -.byte 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0xc1, 0x44, 0xa1, 0xcf, 0x11, 0x97 -.byte 0x50, 0x9a, 0xde, 0x23, 0x82, 0x35, 0x07, 0xcd, 0xd0, 0xcb, 0x18, 0x9d, 0xd2, 0xf1, 0x7f, 0x77 -.byte 0x35, 0x4f, 0x3b, 0xdd, 0x94, 0x72, 0x52, 0xed, 0xc2, 0x3b, 0xf8, 0xec, 0xfa, 0x7b, 0x6b, 0x58 -.byte 0x20, 0xec, 0x99, 0xae, 0xc9, 0xfc, 0x68, 0xb3, 0x75, 0xb9, 0xdb, 0x09, 0xec, 0xc8, 0x13, 0xf5 -.byte 0x4e, 0xc6, 0x0a, 0x1d, 0x66, 0x30, 0x4c, 0xbb, 0x1f, 0x47, 0x0a, 0x3c, 0x61, 0x10, 0x42, 0x29 -.byte 0x7c, 0xa5, 0x08, 0x0e, 0xe0, 0x22, 0xe9, 0xd3, 0x35, 0x68, 0xce, 0x9b, 0x63, 0x9f, 0x84, 0xb5 -.byte 0x99, 0x4d, 0x58, 0xa0, 0x8e, 0xf5, 0x54, 0xe7, 0x95, 0xc9, 0x50, 0x00, 0x78, 0x00, 0x30, 0x4e -.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x18, 0x30 -.byte 0x16, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0f, 0x53, 0x53, 0x4c, 0x20, 0x43, 0x6f, 0x72, 0x70 -.byte 0x6f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03, 0x55, 0x04, 0x03 -.byte 0x0c, 0x1c, 0x53, 0x53, 0x4c, 0x2e, 0x63, 0x6f, 0x6d, 0x20, 0x54, 0x4c, 0x53, 0x20, 0x45, 0x43 -.byte 0x43, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x32, 0x30, 0x32, 0x32, 0x30, 0x76 -.byte 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04 -.byte 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0x45, 0x29, 0x35, 0x73, 0xfa, 0xc2, 0xb8, 0x23, 0xce, 0x14 -.byte 0x7d, 0xa8, 0xb1, 0x4d, 0xa0, 0x5b, 0x36, 0xee, 0x2a, 0x2c, 0x53, 0xc3, 0x60, 0x09, 0x35, 0xb2 -.byte 0x24, 0x66, 0x26, 0x69, 0xc0, 0xb3, 0x95, 0xd6, 0x5d, 0x92, 0x40, 0x19, 0x0e, 0xc6, 0xa5, 0x13 -.byte 0x70, 0xf4, 0xef, 0x12, 0x51, 0x28, 0x5d, 0xe7, 0xcc, 0xbd, 0xf9, 0x3c, 0x85, 0xc1, 0xcf, 0x94 -.byte 0x90, 0xc9, 0x2b, 0xce, 0x92, 0x42, 0x58, 0x59, 0x67, 0xfd, 0x94, 0x27, 0x10, 0x64, 0x8c, 0x4f -.byte 0x04, 0xb1, 0x4d, 0x49, 0xe4, 0x7b, 0x4f, 0x9b, 0xf5, 0xe7, 0x08, 0xf8, 0x03, 0x88, 0xf7, 0xa7 -.byte 0xc3, 0x92, 0x4b, 0x19, 0x54, 0x81, 0x50, 0x00, 0x26, 0x02, 0x30, 0x4e, 0x31, 0x0b, 0x30, 0x09 -.byte 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x18, 0x30, 0x16, 0x06, 0x03, 0x55 -.byte 0x04, 0x0a, 0x0c, 0x0f, 0x53, 0x53, 0x4c, 0x20, 0x43, 0x6f, 0x72, 0x70, 0x6f, 0x72, 0x61, 0x74 -.byte 0x69, 0x6f, 0x6e, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x1c, 0x53, 0x53 -.byte 0x4c, 0x2e, 0x63, 0x6f, 0x6d, 0x20, 0x54, 0x4c, 0x53, 0x20, 0x52, 0x53, 0x41, 0x20, 0x52, 0x6f -.byte 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x32, 0x30, 0x32, 0x32, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d -.byte 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02 -.byte 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xd0, 0xa4, 0x09, 0x72, 0x4f -.byte 0x40, 0x88, 0x12, 0x61, 0x3e, 0x35, 0x23, 0x9e, 0xee, 0xf6, 0x74, 0xcf, 0x2f, 0x7b, 0x58, 0x3d -.byte 0xce, 0x3c, 0x0d, 0x10, 0x28, 0x90, 0x2f, 0x97, 0xf7, 0x8c, 0x48, 0xd8, 0xa0, 0xd8, 0x25, 0xb1 -.byte 0x4c, 0xb0, 0x11, 0x4c, 0x17, 0x73, 0x50, 0xd0, 0x22, 0x4a, 0x63, 0xbb, 0x81, 0xd3, 0x29, 0x6e -.byte 0xd5, 0xb5, 0x09, 0x3e, 0x26, 0x18, 0x7f, 0xb2, 0x12, 0x7f, 0x93, 0x98, 0xb7, 0xaf, 0xf0, 0x36 -.byte 0xbf, 0xf2, 0xee, 0x18, 0x9e, 0x9c, 0x3b, 0x52, 0xc5, 0x47, 0x19, 0x5d, 0x74, 0xf3, 0x64, 0x66 -.byte 0xd5, 0x5d, 0xc7, 0x68, 0xb4, 0xbf, 0x1b, 0x1c, 0x06, 0xa3, 0xbc, 0x8f, 0x40, 0x23, 0xb6, 0x1e -.byte 0xc6, 0x84, 0xbd, 0x51, 0xc4, 0x1b, 0x39, 0xc1, 0x95, 0xd2, 0x29, 0xec, 0x4b, 0xae, 0x7b, 0x2d -.byte 0xbf, 0x39, 0xfd, 0xb4, 0x62, 0xde, 0x96, 0x7b, 0x41, 0xc6, 0x9c, 0xa0, 0xe0, 0x06, 0x72, 0xfb -.byte 0xf0, 0x07, 0x97, 0x09, 0x39, 0x81, 0x74, 0xaf, 0xf7, 0x34, 0x59, 0x11, 0x57, 0x0a, 0xc2, 0x5b -.byte 0xc1, 0x24, 0xf4, 0x31, 0x73, 0x30, 0x82, 0xc6, 0x9d, 0xba, 0x02, 0xf7, 0x3e, 0x7c, 0x44, 0x5f -.byte 0x83, 0x0d, 0xf3, 0xf1, 0xdd, 0x20, 0x69, 0x16, 0x09, 0x50, 0xe2, 0xd4, 0x55, 0xb6, 0xe0, 0x80 -.byte 0x72, 0x76, 0x6e, 0x4c, 0x47, 0xb7, 0x75, 0x55, 0x59, 0xb4, 0x53, 0x74, 0xd9, 0x94, 0xc6, 0x41 -.byte 0xad, 0x58, 0x8a, 0x31, 0x66, 0x0f, 0x1e, 0xa2, 0x1b, 0x29, 0x40, 0x4e, 0x2f, 0xdf, 0x7b, 0xe6 -.byte 0x16, 0x2c, 0x2d, 0xfc, 0xbf, 0xec, 0xf3, 0xb4, 0xfa, 0xbe, 0x18, 0xf6, 0x9b, 0x49, 0xd4, 0xee -.byte 0x05, 0x6e, 0xd9, 0x34, 0xf3, 0x9c, 0xf1, 0xec, 0x01, 0x8b, 0xd1, 0x20, 0xc6, 0x0f, 0xa0, 0xb5 -.byte 0xbc, 0x17, 0x4e, 0x48, 0x7b, 0x51, 0xc2, 0xfc, 0xe9, 0x5c, 0x69, 0x37, 0x47, 0x66, 0xb3, 0x68 -.byte 0xf8, 0x15, 0x28, 0xf0, 0xb9, 0xd3, 0xa4, 0x15, 0xcc, 0x5a, 0x4f, 0xba, 0x52, 0x70, 0xa3, 0x12 -.byte 0x45, 0xdd, 0xc6, 0xba, 0x4e, 0xfb, 0xc2, 0xd0, 0xf7, 0xa8, 0x52, 0x27, 0x6d, 0x6e, 0x79, 0xb5 -.byte 0x8c, 0xfc, 0x7b, 0x8c, 0xc1, 0x16, 0x4c, 0xee, 0x80, 0x7f, 0xbe, 0xf0, 0x76, 0xbe, 0x41, 0x53 -.byte 0x12, 0x33, 0xae, 0x5a, 0x38, 0x42, 0xab, 0xd7, 0x0f, 0x3e, 0x41, 0x8d, 0x76, 0x07, 0x32, 0xd5 -.byte 0xab, 0x89, 0xf6, 0x4e, 0x67, 0xd9, 0xb1, 0x42, 0x75, 0x23, 0x6e, 0xf3, 0xcd, 0x42, 0xb2, 0xfc -.byte 0x55, 0xf5, 0x53, 0x87, 0x17, 0x3b, 0xc0, 0x33, 0x58, 0xf1, 0x52, 0xd2, 0xf9, 0x80, 0xa4, 0xf0 -.byte 0xe8, 0xf0, 0x3b, 0x8b, 0x38, 0xcc, 0xa4, 0xc6, 0x90, 0x7f, 0x0f, 0x9c, 0xfd, 0x8b, 0xd1, 0xa3 -.byte 0xcf, 0xda, 0x83, 0xa7, 0x69, 0xc9, 0x50, 0x36, 0xd5, 0x5c, 0x05, 0xd2, 0x0a, 0x41, 0x74, 0xdb -.byte 0x63, 0x11, 0x37, 0xc1, 0xa5, 0xa0, 0x96, 0x4b, 0x1e, 0x8c, 0x16, 0x12, 0x77, 0xae, 0x94, 0x34 -.byte 0x7b, 0x1e, 0x7f, 0xc2, 0x66, 0x00, 0xe4, 0xaa, 0x83, 0xea, 0x8a, 0x90, 0xad, 0xce, 0x36, 0x44 -.byte 0x4d, 0xd1, 0x51, 0xe9, 0xbc, 0x1f, 0xf3, 0x6a, 0x05, 0xfd, 0xc0, 0x74, 0x1f, 0x25, 0x19, 0x40 -.byte 0x51, 0x6e, 0xea, 0x82, 0x51, 0x40, 0xdf, 0x9b, 0xb9, 0x08, 0x2a, 0x06, 0x02, 0xd5, 0x23, 0x1c -.byte 0x13, 0xd6, 0xe9, 0xdb, 0xdb, 0xc6, 0xb0, 0x7a, 0xcb, 0x7b, 0x27, 0x9b, 0xfb, 0xe0, 0xd5, 0x46 -.byte 0x24, 0xed, 0x10, 0x4b, 0x63, 0x4b, 0xa5, 0x05, 0x8f, 0xba, 0xb8, 0x1d, 0x2b, 0xa6, 0xfa, 0x91 -.byte 0xe2, 0x92, 0x52, 0xbd, 0xec, 0xeb, 0x67, 0x97, 0x6d, 0x9a, 0x2d, 0x9f, 0x81, 0x32, 0x05, 0x67 -.byte 0x32, 0xfb, 0x48, 0x08, 0x3f, 0xd9, 0x25, 0xb8, 0x04, 0x25, 0x2f, 0x02, 0x03, 0x01, 0x00, 0x01 -.byte 0x51, 0x00, 0x26, 0x02, 0x30, 0x4f, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13 -.byte 0x02, 0x54, 0x57, 0x31, 0x23, 0x30, 0x21, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x1a, 0x43, 0x68 -.byte 0x75, 0x6e, 0x67, 0x68, 0x77, 0x61, 0x20, 0x54, 0x65, 0x6c, 0x65, 0x63, 0x6f, 0x6d, 0x20, 0x43 -.byte 0x6f, 0x2e, 0x2c, 0x20, 0x4c, 0x74, 0x64, 0x2e, 0x31, 0x1b, 0x30, 0x19, 0x06, 0x03, 0x55, 0x04 -.byte 0x03, 0x0c, 0x12, 0x48, 0x69, 0x50, 0x4b, 0x49, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41 -.byte 0x20, 0x2d, 0x20, 0x47, 0x31, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48 -.byte 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02 -.byte 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xf4, 0x1e, 0x7f, 0x52, 0x73, 0x32, 0x0c, 0x73, 0xe4, 0xbd -.byte 0x13, 0x74, 0xa3, 0xd4, 0x30, 0xa8, 0xd0, 0xae, 0x4b, 0xd8, 0xb6, 0xdf, 0x75, 0x47, 0x66, 0xf4 -.byte 0x7c, 0xe7, 0x39, 0x04, 0x1e, 0x6a, 0x70, 0x20, 0xd2, 0x5a, 0x47, 0x72, 0x67, 0x55, 0xf4, 0xa5 -.byte 0xe8, 0x9d, 0xd5, 0x1e, 0x21, 0xa1, 0xf0, 0x67, 0xba, 0xcc, 0x21, 0x68, 0xbe, 0x44, 0x53, 0xbf -.byte 0x8d, 0xf9, 0xe2, 0xdc, 0x2f, 0x55, 0xc8, 0x37, 0x3f, 0x1f, 0xa4, 0xc0, 0x9c, 0xb3, 0xe4, 0x77 -.byte 0x5c, 0xa0, 0x46, 0xfe, 0x77, 0xfa, 0x1a, 0xa0, 0x38, 0xea, 0xed, 0x9a, 0x72, 0xde, 0x2b, 0xbd -.byte 0x94, 0x57, 0x3a, 0xba, 0xec, 0x79, 0xe7, 0x5f, 0x7d, 0x42, 0x64, 0x39, 0x7a, 0x26, 0x36, 0xf7 -.byte 0x24, 0xf0, 0xd5, 0x2f, 0xba, 0x95, 0x98, 0x11, 0x66, 0xad, 0x97, 0x35, 0xd6, 0x75, 0x01, 0x80 -.byte 0xe0, 0xaf, 0xf4, 0x84, 0x61, 0x8c, 0x0d, 0x1e, 0x5f, 0x7c, 0x87, 0x96, 0x5e, 0x41, 0xaf, 0xeb -.byte 0x87, 0xea, 0xf8, 0x5d, 0xf1, 0x2e, 0x88, 0x05, 0x3e, 0x4c, 0x22, 0xbb, 0xda, 0x1f, 0x2a, 0xdd -.byte 0x52, 0x46, 0x64, 0x39, 0xf3, 0x42, 0xce, 0xd9, 0x9e, 0x0c, 0xb3, 0xb0, 0x77, 0x97, 0x64, 0x9c -.byte 0xc0, 0xf4, 0xa3, 0x2e, 0x1f, 0x95, 0x07, 0xb0, 0x17, 0xdf, 0x30, 0xdb, 0x00, 0x18, 0x96, 0x4c -.byte 0xa1, 0x81, 0x4b, 0xdd, 0x04, 0x6d, 0x53, 0xa3, 0x3d, 0xfc, 0x07, 0xac, 0xd4, 0xc5, 0x37, 0x82 -.byte 0xeb, 0xe4, 0x95, 0x08, 0x19, 0x28, 0x82, 0xd2, 0x42, 0x3a, 0xa3, 0xd8, 0x53, 0xec, 0x79, 0x89 -.byte 0x60, 0x48, 0x60, 0xc8, 0x72, 0x92, 0x50, 0xdc, 0x03, 0x8f, 0x83, 0x3f, 0xb2, 0x42, 0x57, 0x5a -.byte 0xdb, 0x6a, 0xe9, 0x11, 0x97, 0xdd, 0x85, 0x28, 0xbc, 0x30, 0x4c, 0xab, 0xe3, 0xc2, 0xb1, 0x45 -.byte 0x44, 0x47, 0x1f, 0xe0, 0x8a, 0x16, 0x07, 0x96, 0xd2, 0x21, 0x0f, 0x53, 0xc0, 0xed, 0xa9, 0x7e -.byte 0xd4, 0x4e, 0xec, 0x9b, 0x09, 0xec, 0xaf, 0x42, 0xac, 0x30, 0xd6, 0xbf, 0xd1, 0x10, 0x45, 0xe0 -.byte 0xa6, 0x16, 0xb2, 0xa5, 0xc5, 0xd3, 0x4f, 0x73, 0x94, 0x33, 0x71, 0x02, 0xa1, 0x6a, 0xa3, 0xd6 -.byte 0x33, 0x97, 0x4f, 0x21, 0x63, 0x1e, 0x5b, 0x8f, 0xd9, 0xc1, 0x5e, 0x45, 0x71, 0x77, 0x0f, 0x81 -.byte 0x5d, 0x5f, 0x21, 0x9a, 0xad, 0x83, 0xcc, 0xfa, 0x5e, 0xd6, 0x8d, 0x23, 0x5f, 0x1b, 0x3d, 0x41 -.byte 0xaf, 0x20, 0x75, 0x66, 0x5a, 0x4a, 0xf6, 0x9f, 0xfb, 0xab, 0x18, 0xf7, 0x71, 0xc0, 0xb6, 0x1d -.byte 0x31, 0xec, 0x3b, 0x20, 0xeb, 0xcb, 0xe2, 0xb8, 0xf5, 0xae, 0x92, 0xb2, 0xf7, 0xe1, 0x84, 0x4b -.byte 0xf2, 0xa2, 0xf2, 0x93, 0x9a, 0x22, 0x9e, 0xd3, 0x14, 0x6f, 0x36, 0x54, 0xbd, 0x1f, 0x5e, 0x59 -.byte 0x15, 0xb9, 0x73, 0xa8, 0xc1, 0x7c, 0x6f, 0x7b, 0x62, 0xe9, 0x16, 0x6c, 0x47, 0x5a, 0x65, 0xf3 -.byte 0x0e, 0x11, 0x9b, 0x46, 0xd9, 0xfd, 0x6d, 0xdc, 0xd6, 0x9c, 0xc0, 0xb4, 0x7d, 0xa5, 0xb0, 0xdd -.byte 0x3f, 0x56, 0x6f, 0xa1, 0xf9, 0xf6, 0xe4, 0x12, 0x48, 0xfd, 0x06, 0x7f, 0x12, 0x57, 0xb6, 0xa9 -.byte 0x23, 0x4f, 0x5b, 0x03, 0xc3, 0xe0, 0x71, 0x2a, 0x23, 0xb7, 0xf7, 0xb0, 0xb1, 0x3b, 0xbc, 0x98 -.byte 0xbd, 0xd6, 0x98, 0xa8, 0x0c, 0x6b, 0xf6, 0x8e, 0x12, 0x67, 0xa6, 0xf2, 0xb2, 0x58, 0xe4, 0x02 -.byte 0x09, 0x13, 0x3c, 0xa9, 0xbb, 0x10, 0xb4, 0xd2, 0x30, 0x45, 0xf1, 0xec, 0xf7, 0x00, 0x11, 0xdf -.byte 0x65, 0xf8, 0xdc, 0x2b, 0x43, 0x55, 0xbf, 0x16, 0x97, 0xc4, 0x0f, 0xd5, 0x2c, 0x61, 0x84, 0xaa -.byte 0x72, 0x86, 0xfe, 0xe6, 0x3a, 0x7e, 0xc2, 0x3f, 0x7d, 0xee, 0xfc, 0x2f, 0x14, 0x3e, 0xe6, 0x85 -.byte 0xdd, 0x50, 0x6f, 0xb7, 0x49, 0xed, 0x02, 0x03, 0x01, 0x00, 0x01, 0x51, 0x00, 0x26, 0x02, 0x30 -.byte 0x4f, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x29 -.byte 0x30, 0x27, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x20, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x65 -.byte 0x74, 0x20, 0x53, 0x65, 0x63, 0x75, 0x72, 0x69, 0x74, 0x79, 0x20, 0x52, 0x65, 0x73, 0x65, 0x61 -.byte 0x72, 0x63, 0x68, 0x20, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55 -.byte 0x04, 0x03, 0x13, 0x0c, 0x49, 0x53, 0x52, 0x47, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x58, 0x31 -.byte 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01 -.byte 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01 -.byte 0x00, 0xad, 0xe8, 0x24, 0x73, 0xf4, 0x14, 0x37, 0xf3, 0x9b, 0x9e, 0x2b, 0x57, 0x28, 0x1c, 0x87 -.byte 0xbe, 0xdc, 0xb7, 0xdf, 0x38, 0x90, 0x8c, 0x6e, 0x3c, 0xe6, 0x57, 0xa0, 0x78, 0xf7, 0x75, 0xc2 -.byte 0xa2, 0xfe, 0xf5, 0x6a, 0x6e, 0xf6, 0x00, 0x4f, 0x28, 0xdb, 0xde, 0x68, 0x86, 0x6c, 0x44, 0x93 -.byte 0xb6, 0xb1, 0x63, 0xfd, 0x14, 0x12, 0x6b, 0xbf, 0x1f, 0xd2, 0xea, 0x31, 0x9b, 0x21, 0x7e, 0xd1 -.byte 0x33, 0x3c, 0xba, 0x48, 0xf5, 0xdd, 0x79, 0xdf, 0xb3, 0xb8, 0xff, 0x12, 0xf1, 0x21, 0x9a, 0x4b -.byte 0xc1, 0x8a, 0x86, 0x71, 0x69, 0x4a, 0x66, 0x66, 0x6c, 0x8f, 0x7e, 0x3c, 0x70, 0xbf, 0xad, 0x29 -.byte 0x22, 0x06, 0xf3, 0xe4, 0xc0, 0xe6, 0x80, 0xae, 0xe2, 0x4b, 0x8f, 0xb7, 0x99, 0x7e, 0x94, 0x03 -.byte 0x9f, 0xd3, 0x47, 0x97, 0x7c, 0x99, 0x48, 0x23, 0x53, 0xe8, 0x38, 0xae, 0x4f, 0x0a, 0x6f, 0x83 -.byte 0x2e, 0xd1, 0x49, 0x57, 0x8c, 0x80, 0x74, 0xb6, 0xda, 0x2f, 0xd0, 0x38, 0x8d, 0x7b, 0x03, 0x70 -.byte 0x21, 0x1b, 0x75, 0xf2, 0x30, 0x3c, 0xfa, 0x8f, 0xae, 0xdd, 0xda, 0x63, 0xab, 0xeb, 0x16, 0x4f -.byte 0xc2, 0x8e, 0x11, 0x4b, 0x7e, 0xcf, 0x0b, 0xe8, 0xff, 0xb5, 0x77, 0x2e, 0xf4, 0xb2, 0x7b, 0x4a -.byte 0xe0, 0x4c, 0x12, 0x25, 0x0c, 0x70, 0x8d, 0x03, 0x29, 0xa0, 0xe1, 0x53, 0x24, 0xec, 0x13, 0xd9 -.byte 0xee, 0x19, 0xbf, 0x10, 0xb3, 0x4a, 0x8c, 0x3f, 0x89, 0xa3, 0x61, 0x51, 0xde, 0xac, 0x87, 0x07 -.byte 0x94, 0xf4, 0x63, 0x71, 0xec, 0x2e, 0xe2, 0x6f, 0x5b, 0x98, 0x81, 0xe1, 0x89, 0x5c, 0x34, 0x79 -.byte 0x6c, 0x76, 0xef, 0x3b, 0x90, 0x62, 0x79, 0xe6, 0xdb, 0xa4, 0x9a, 0x2f, 0x26, 0xc5, 0xd0, 0x10 -.byte 0xe1, 0x0e, 0xde, 0xd9, 0x10, 0x8e, 0x16, 0xfb, 0xb7, 0xf7, 0xa8, 0xf7, 0xc7, 0xe5, 0x02, 0x07 -.byte 0x98, 0x8f, 0x36, 0x08, 0x95, 0xe7, 0xe2, 0x37, 0x96, 0x0d, 0x36, 0x75, 0x9e, 0xfb, 0x0e, 0x72 -.byte 0xb1, 0x1d, 0x9b, 0xbc, 0x03, 0xf9, 0x49, 0x05, 0xd8, 0x81, 0xdd, 0x05, 0xb4, 0x2a, 0xd6, 0x41 -.byte 0xe9, 0xac, 0x01, 0x76, 0x95, 0x0a, 0x0f, 0xd8, 0xdf, 0xd5, 0xbd, 0x12, 0x1f, 0x35, 0x2f, 0x28 -.byte 0x17, 0x6c, 0xd2, 0x98, 0xc1, 0xa8, 0x09, 0x64, 0x77, 0x6e, 0x47, 0x37, 0xba, 0xce, 0xac, 0x59 -.byte 0x5e, 0x68, 0x9d, 0x7f, 0x72, 0xd6, 0x89, 0xc5, 0x06, 0x41, 0x29, 0x3e, 0x59, 0x3e, 0xdd, 0x26 -.byte 0xf5, 0x24, 0xc9, 0x11, 0xa7, 0x5a, 0xa3, 0x4c, 0x40, 0x1f, 0x46, 0xa1, 0x99, 0xb5, 0xa7, 0x3a -.byte 0x51, 0x6e, 0x86, 0x3b, 0x9e, 0x7d, 0x72, 0xa7, 0x12, 0x05, 0x78, 0x59, 0xed, 0x3e, 0x51, 0x78 -.byte 0x15, 0x0b, 0x03, 0x8f, 0x8d, 0xd0, 0x2f, 0x05, 0xb2, 0x3e, 0x7b, 0x4a, 0x1c, 0x4b, 0x73, 0x05 -.byte 0x12, 0xfc, 0xc6, 0xea, 0xe0, 0x50, 0x13, 0x7c, 0x43, 0x93, 0x74, 0xb3, 0xca, 0x74, 0xe7, 0x8e -.byte 0x1f, 0x01, 0x08, 0xd0, 0x30, 0xd4, 0x5b, 0x71, 0x36, 0xb4, 0x07, 0xba, 0xc1, 0x30, 0x30, 0x5c -.byte 0x48, 0xb7, 0x82, 0x3b, 0x98, 0xa6, 0x7d, 0x60, 0x8a, 0xa2, 0xa3, 0x29, 0x82, 0xcc, 0xba, 0xbd -.byte 0x83, 0x04, 0x1b, 0xa2, 0x83, 0x03, 0x41, 0xa1, 0xd6, 0x05, 0xf1, 0x1b, 0xc2, 0xb6, 0xf0, 0xa8 -.byte 0x7c, 0x86, 0x3b, 0x46, 0xa8, 0x48, 0x2a, 0x88, 0xdc, 0x76, 0x9a, 0x76, 0xbf, 0x1f, 0x6a, 0xa5 -.byte 0x3d, 0x19, 0x8f, 0xeb, 0x38, 0xf3, 0x64, 0xde, 0xc8, 0x2b, 0x0d, 0x0a, 0x28, 0xff, 0xf7, 0xdb -.byte 0xe2, 0x15, 0x42, 0xd4, 0x22, 0xd0, 0x27, 0x5d, 0xe1, 0x79, 0xfe, 0x18, 0xe7, 0x70, 0x88, 0xad -.byte 0x4e, 0xe6, 0xd9, 0x8b, 0x3a, 0xc6, 0xdd, 0x27, 0x51, 0x6e, 0xff, 0xbc, 0x64, 0xf5, 0x33, 0x43 -.byte 0x4f, 0x02, 0x03, 0x01, 0x00, 0x01, 0x51, 0x00, 0x78, 0x00, 0x30, 0x4f, 0x31, 0x0b, 0x30, 0x09 -.byte 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x29, 0x30, 0x27, 0x06, 0x03, 0x55 -.byte 0x04, 0x0a, 0x13, 0x20, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x65, 0x74, 0x20, 0x53, 0x65, 0x63 -.byte 0x75, 0x72, 0x69, 0x74, 0x79, 0x20, 0x52, 0x65, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x20, 0x47 -.byte 0x72, 0x6f, 0x75, 0x70, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x0c, 0x49 -.byte 0x53, 0x52, 0x47, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x58, 0x32, 0x30, 0x76, 0x30, 0x10, 0x06 -.byte 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03 -.byte 0x62, 0x00, 0x04, 0xcd, 0x9b, 0xd5, 0x9f, 0x80, 0x83, 0x0a, 0xec, 0x09, 0x4a, 0xf3, 0x16, 0x4a -.byte 0x3e, 0x5c, 0xcf, 0x77, 0xac, 0xde, 0x67, 0x05, 0x0d, 0x1d, 0x07, 0xb6, 0xdc, 0x16, 0xfb, 0x5a -.byte 0x8b, 0x14, 0xdb, 0xe2, 0x71, 0x60, 0xc4, 0xba, 0x45, 0x95, 0x11, 0x89, 0x8e, 0xea, 0x06, 0xdf -.byte 0xf7, 0x2a, 0x16, 0x1c, 0xa4, 0xb9, 0xc5, 0xc5, 0x32, 0xe0, 0x03, 0xe0, 0x1e, 0x82, 0x18, 0x38 -.byte 0x8b, 0xd7, 0x45, 0xd8, 0x0a, 0x6a, 0x6e, 0xe6, 0x00, 0x77, 0xfb, 0x02, 0x51, 0x7d, 0x22, 0xd8 -.byte 0x0a, 0x6e, 0x9a, 0x5b, 0x77, 0xdf, 0xf0, 0xfa, 0x41, 0xec, 0x39, 0xdc, 0x75, 0xca, 0x68, 0x07 -.byte 0x0c, 0x1f, 0xea, 0x52, 0x00, 0x26, 0x01, 0x30, 0x50, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55 -.byte 0x04, 0x06, 0x13, 0x02, 0x44, 0x45, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c -.byte 0x0c, 0x44, 0x2d, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x47, 0x6d, 0x62, 0x48, 0x31, 0x2a, 0x30 -.byte 0x28, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x21, 0x44, 0x2d, 0x54, 0x52, 0x55, 0x53, 0x54, 0x20 -.byte 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x20, 0x33, 0x20, 0x43, 0x41, 0x20 -.byte 0x32, 0x20, 0x45, 0x56, 0x20, 0x32, 0x30, 0x30, 0x39, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06 -.byte 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f -.byte 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0x99, 0xf1, 0x84, 0x34, 0x70, 0xba -.byte 0x2f, 0xb7, 0x30, 0xa0, 0x8e, 0xbd, 0x7c, 0x04, 0xcf, 0xbe, 0x62, 0xbc, 0x99, 0xfd, 0x82, 0x97 -.byte 0xd2, 0x7a, 0x0a, 0x67, 0x96, 0x38, 0x09, 0xf6, 0x10, 0x4e, 0x95, 0x22, 0x73, 0x99, 0x8d, 0xda -.byte 0x15, 0x2d, 0xe7, 0x05, 0xfc, 0x19, 0x73, 0x22, 0xb7, 0x8e, 0x98, 0x00, 0xbc, 0x3c, 0x3d, 0xac -.byte 0xa1, 0x6c, 0xfb, 0xd6, 0x79, 0x25, 0x4b, 0xad, 0xf0, 0xcc, 0x64, 0xda, 0x88, 0x3e, 0x29, 0xb8 -.byte 0x0f, 0x09, 0xd3, 0x34, 0xdd, 0x33, 0xf5, 0x62, 0xd1, 0xe1, 0xcd, 0x19, 0xe9, 0xee, 0x18, 0x4f -.byte 0x4c, 0x58, 0xae, 0xe2, 0x1e, 0xd6, 0x0c, 0x5b, 0x15, 0x5a, 0xd8, 0x3a, 0xb8, 0xc4, 0x18, 0x64 -.byte 0x1e, 0xe3, 0x33, 0xb2, 0xb5, 0x89, 0x77, 0x4e, 0x0c, 0xbf, 0xd9, 0x94, 0x6b, 0x13, 0x97, 0x6f -.byte 0x12, 0xa3, 0xfe, 0x99, 0xa9, 0x04, 0xcc, 0x15, 0xec, 0x60, 0x68, 0x36, 0xed, 0x08, 0x7b, 0xb7 -.byte 0xf5, 0xbf, 0x93, 0xed, 0x66, 0x31, 0x83, 0x8c, 0xc6, 0x71, 0x34, 0x87, 0x4e, 0x17, 0xea, 0xaf -.byte 0x8b, 0x91, 0x8d, 0x1c, 0x56, 0x41, 0xae, 0x22, 0x37, 0x5e, 0x37, 0xf2, 0x1d, 0xd9, 0xd1, 0x2d -.byte 0x0d, 0x2f, 0x69, 0x51, 0xa7, 0xbe, 0x66, 0xa6, 0x8a, 0x3a, 0x2a, 0xbd, 0xc7, 0x1a, 0xb1, 0xe1 -.byte 0x14, 0xf0, 0xbe, 0x3a, 0x1d, 0xb9, 0xcf, 0x5b, 0xb1, 0x6a, 0xfe, 0xb4, 0xb1, 0x46, 0x20, 0xa2 -.byte 0xfb, 0x1e, 0x3b, 0x70, 0xef, 0x93, 0x98, 0x7d, 0x8c, 0x73, 0x96, 0xf2, 0xc5, 0xef, 0x85, 0x70 -.byte 0xad, 0x29, 0x26, 0xfc, 0x1e, 0x04, 0x3e, 0x1c, 0xa0, 0xd8, 0x0f, 0xcb, 0x52, 0x83, 0x62, 0x7c -.byte 0xee, 0x8b, 0x53, 0x95, 0x90, 0xa9, 0x57, 0xa2, 0xea, 0x61, 0x05, 0xd8, 0xf9, 0x4d, 0xc4, 0x27 -.byte 0xfa, 0x6e, 0xad, 0xed, 0xf9, 0xd7, 0x51, 0xf7, 0x6b, 0xa5, 0x02, 0x03, 0x01, 0x00, 0x01, 0x52 -.byte 0x00, 0x26, 0x02, 0x30, 0x50, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02 -.byte 0x54, 0x57, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x09, 0x54, 0x41, 0x49 -.byte 0x57, 0x41, 0x4e, 0x2d, 0x43, 0x41, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13 -.byte 0x07, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x31, 0x1b, 0x30, 0x19, 0x06, 0x03, 0x55, 0x04 -.byte 0x03, 0x13, 0x12, 0x54, 0x57, 0x43, 0x41, 0x20, 0x43, 0x59, 0x42, 0x45, 0x52, 0x20, 0x52, 0x6f -.byte 0x6f, 0x74, 0x20, 0x43, 0x41, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48 -.byte 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02 -.byte 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xc6, 0xf8, 0xca, 0x1e, 0xd9, 0x09, 0x20, 0x7e, 0x1d, 0x6c -.byte 0x4e, 0xce, 0x8f, 0xe3, 0x47, 0x33, 0x44, 0x9c, 0xc7, 0xc9, 0x69, 0xaa, 0x3a, 0x5b, 0x78, 0xee -.byte 0x70, 0xd2, 0x92, 0xf8, 0x04, 0xb3, 0x52, 0x52, 0x1d, 0x67, 0x72, 0x28, 0xa1, 0xdf, 0x8b, 0x5d -.byte 0x95, 0x0a, 0xfe, 0xea, 0xcd, 0xed, 0xf7, 0x29, 0xce, 0xf0, 0x6f, 0x7f, 0xac, 0xcd, 0x3d, 0xef -.byte 0xb3, 0x1c, 0x45, 0x6a, 0xf7, 0x28, 0x90, 0xf1, 0x61, 0x57, 0xc5, 0x0c, 0xc4, 0xa3, 0x50, 0x5d -.byte 0xde, 0xd4, 0xb5, 0xcb, 0x19, 0xca, 0x80, 0xb9, 0x75, 0xce, 0x29, 0xce, 0xd2, 0x85, 0x22, 0xec -.byte 0x02, 0x63, 0xcc, 0x44, 0x30, 0x20, 0xda, 0xea, 0x91, 0x5b, 0x56, 0xe6, 0x1d, 0x1c, 0xd5, 0x9d -.byte 0x66, 0xc7, 0x3f, 0xdf, 0x86, 0xca, 0x4b, 0x53, 0xc4, 0xd9, 0x8d, 0xb2, 0x1d, 0xea, 0xf8, 0xdc -.byte 0x27, 0x53, 0xa3, 0x47, 0xe1, 0x61, 0xcc, 0x7d, 0xb5, 0xb0, 0xf8, 0xee, 0x73, 0x91, 0xc5, 0xce -.byte 0x73, 0x6f, 0xce, 0xee, 0x10, 0x1f, 0x1a, 0x06, 0xcf, 0xe9, 0x27, 0x60, 0xc5, 0x4f, 0x19, 0xe4 -.byte 0xeb, 0xce, 0x22, 0x26, 0x45, 0xd7, 0x60, 0x99, 0xdd, 0xce, 0x4f, 0x37, 0xe0, 0x7f, 0xe7, 0x63 -.byte 0xad, 0xb0, 0xb8, 0x59, 0xb8, 0xd0, 0x06, 0x68, 0x35, 0x60, 0xd3, 0x36, 0xae, 0x71, 0x43, 0x04 -.byte 0xf1, 0x69, 0x65, 0x78, 0x7c, 0xf3, 0x1f, 0xf3, 0xca, 0x28, 0x9f, 0x5a, 0x20, 0x95, 0x66, 0xb4 -.byte 0xcd, 0xb7, 0xee, 0x8f, 0x78, 0xa4, 0x45, 0x18, 0xe9, 0x26, 0x2f, 0x8d, 0x9b, 0x29, 0x28, 0xb1 -.byte 0xa4, 0xb7, 0x3a, 0x6d, 0xb9, 0xd4, 0x1c, 0x38, 0x72, 0x45, 0x58, 0xb1, 0x5e, 0xeb, 0xf0, 0x28 -.byte 0x9b, 0xb7, 0x82, 0xca, 0xfd, 0xcf, 0xd6, 0x33, 0x0f, 0x9f, 0xfb, 0x97, 0x9e, 0xb1, 0x1c, 0x9c -.byte 0x9e, 0xea, 0x5f, 0x5e, 0xdb, 0xaa, 0xdd, 0x54, 0xe9, 0x30, 0x21, 0x28, 0x6d, 0x8e, 0x79, 0xf3 -.byte 0x75, 0x92, 0x8c, 0x26, 0xfe, 0xdc, 0xc5, 0xf6, 0xc3, 0xb0, 0xdf, 0x44, 0x59, 0x43, 0xa3, 0xb6 -.byte 0x03, 0x28, 0xf6, 0x08, 0x30, 0xaa, 0x0d, 0x33, 0xe1, 0xef, 0x9c, 0xa9, 0x07, 0x22, 0xe3, 0x59 -.byte 0x5b, 0x40, 0x8f, 0xda, 0x88, 0xb7, 0x69, 0x08, 0xa8, 0xb7, 0x23, 0x2e, 0x44, 0x09, 0x59, 0x37 -.byte 0x5b, 0xc7, 0xe3, 0x17, 0xf2, 0x22, 0xeb, 0x6e, 0x39, 0x52, 0xc5, 0xde, 0x54, 0xa7, 0x98, 0xc9 -.byte 0x4b, 0x20, 0x95, 0xdc, 0x46, 0x89, 0x5f, 0xb4, 0x12, 0xf9, 0x85, 0x29, 0x8e, 0xeb, 0xc8, 0x27 -.byte 0x15, 0x20, 0xc0, 0x4b, 0xd4, 0xcc, 0x7c, 0x0c, 0x6c, 0x34, 0x0c, 0x26, 0x9b, 0x26, 0x31, 0xa6 -.byte 0x3c, 0xa7, 0xf6, 0xd9, 0xd0, 0x4b, 0xa2, 0x64, 0xff, 0x3b, 0x99, 0x41, 0x72, 0xc1, 0xe0, 0x70 -.byte 0x97, 0xf1, 0x24, 0xbb, 0x2b, 0xc4, 0x74, 0x22, 0xb1, 0xac, 0x6b, 0x22, 0x32, 0x24, 0xd3, 0x78 -.byte 0x2a, 0xc0, 0xc0, 0xa1, 0x2f, 0xf1, 0x52, 0x05, 0xc9, 0x3f, 0xef, 0x76, 0x66, 0xe2, 0x45, 0xd8 -.byte 0x0d, 0x3d, 0xad, 0x95, 0xc8, 0xc7, 0x89, 0x26, 0xc8, 0x0f, 0xae, 0xa7, 0x03, 0x2e, 0xfb, 0xc1 -.byte 0x5f, 0xfa, 0x20, 0xe1, 0x70, 0xad, 0xb0, 0x65, 0x20, 0x37, 0x33, 0x60, 0xb0, 0xd5, 0xaf, 0xd7 -.byte 0x0c, 0x1c, 0xc2, 0x90, 0x70, 0xd7, 0x4a, 0x18, 0xbc, 0x7e, 0x01, 0xb0, 0xb0, 0xeb, 0x15, 0x1e -.byte 0x44, 0x06, 0xcd, 0xa4, 0x4f, 0xe8, 0x0c, 0xd1, 0xc3, 0x20, 0x10, 0xe1, 0x54, 0x65, 0x9e, 0xb6 -.byte 0x51, 0xd0, 0x1a, 0x76, 0x6b, 0x42, 0x5a, 0x58, 0x76, 0x34, 0xea, 0xb7, 0x37, 0x19, 0xae, 0x2e -.byte 0x75, 0xf9, 0x96, 0xe5, 0xc1, 0x59, 0xf7, 0x94, 0x57, 0x29, 0x25, 0x8d, 0x3a, 0x4c, 0xab, 0x4d -.byte 0x9a, 0x41, 0xd0, 0x5f, 0x26, 0x03, 0x02, 0x03, 0x01, 0x00, 0x01, 0x52, 0x00, 0x5b, 0x00, 0x30 -.byte 0x50, 0x31, 0x24, 0x30, 0x22, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x1b, 0x47, 0x6c, 0x6f, 0x62 -.byte 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x45, 0x43, 0x43, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20 -.byte 0x43, 0x41, 0x20, 0x2d, 0x20, 0x52, 0x34, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x0a -.byte 0x13, 0x0a, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x31, 0x13, 0x30, 0x11 -.byte 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x0a, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67 -.byte 0x6e, 0x30, 0x59, 0x30, 0x13, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x08 -.byte 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x03, 0x01, 0x07, 0x03, 0x42, 0x00, 0x04, 0xb8, 0xc6, 0x79, 0xd3 -.byte 0x8f, 0x6c, 0x25, 0x0e, 0x9f, 0x2e, 0x39, 0x19, 0x1c, 0x03, 0xa4, 0xae, 0x9a, 0xe5, 0x39, 0x07 -.byte 0x09, 0x16, 0xca, 0x63, 0xb1, 0xb9, 0x86, 0xf8, 0x8a, 0x57, 0xc1, 0x57, 0xce, 0x42, 0xfa, 0x73 -.byte 0xa1, 0xf7, 0x65, 0x42, 0xff, 0x1e, 0xc1, 0x00, 0xb2, 0x6e, 0x73, 0x0e, 0xff, 0xc7, 0x21, 0xe5 -.byte 0x18, 0xa4, 0xaa, 0xd9, 0x71, 0x3f, 0xa8, 0xd4, 0xb9, 0xce, 0x8c, 0x1d, 0x52, 0x00, 0x78, 0x00 -.byte 0x30, 0x50, 0x31, 0x24, 0x30, 0x22, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x1b, 0x47, 0x6c, 0x6f -.byte 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x45, 0x43, 0x43, 0x20, 0x52, 0x6f, 0x6f, 0x74 -.byte 0x20, 0x43, 0x41, 0x20, 0x2d, 0x20, 0x52, 0x35, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04 -.byte 0x0a, 0x13, 0x0a, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x31, 0x13, 0x30 -.byte 0x11, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x0a, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x69 -.byte 0x67, 0x6e, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06 -.byte 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0x47, 0x45, 0x0e, 0x96, 0xfb, 0x7d -.byte 0x5d, 0xbf, 0xe9, 0x39, 0xd1, 0x21, 0xf8, 0x9f, 0x0b, 0xb6, 0xd5, 0x7b, 0x1e, 0x92, 0x3a, 0x48 -.byte 0x59, 0x1c, 0xf0, 0x62, 0x31, 0x2d, 0xc0, 0x7a, 0x28, 0xfe, 0x1a, 0xa7, 0x5c, 0xb3, 0xb6, 0xcc -.byte 0x97, 0xe7, 0x45, 0xd4, 0x58, 0xfa, 0xd1, 0x77, 0x6d, 0x43, 0xa2, 0xc0, 0x87, 0x65, 0x34, 0x0a -.byte 0x1f, 0x7a, 0xdd, 0xeb, 0x3c, 0x33, 0xa1, 0xc5, 0x9d, 0x4d, 0xa4, 0x6f, 0x41, 0x95, 0x38, 0x7f -.byte 0xc9, 0x1e, 0x84, 0xeb, 0xd1, 0x9e, 0x49, 0x92, 0x87, 0x94, 0x87, 0x0c, 0x3a, 0x85, 0x4a, 0x66 -.byte 0x9f, 0x9d, 0x59, 0x93, 0x4d, 0x97, 0x61, 0x06, 0x86, 0x4a, 0x53, 0x00, 0x26, 0x02, 0x30, 0x51 -.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x45, 0x53, 0x31, 0x42, 0x30 -.byte 0x40, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x39, 0x41, 0x75, 0x74, 0x6f, 0x72, 0x69, 0x64, 0x61 -.byte 0x64, 0x20, 0x64, 0x65, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x63, 0x69 -.byte 0x6f, 0x6e, 0x20, 0x46, 0x69, 0x72, 0x6d, 0x61, 0x70, 0x72, 0x6f, 0x66, 0x65, 0x73, 0x69, 0x6f -.byte 0x6e, 0x61, 0x6c, 0x20, 0x43, 0x49, 0x46, 0x20, 0x41, 0x36, 0x32, 0x36, 0x33, 0x34, 0x30, 0x36 -.byte 0x38, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01 -.byte 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02 -.byte 0x01, 0x00, 0xca, 0x96, 0x6b, 0x8e, 0xea, 0xf8, 0xfb, 0xf1, 0xa2, 0x35, 0xe0, 0x7f, 0x4c, 0xda -.byte 0xe0, 0xc3, 0x52, 0xd7, 0x7d, 0xb6, 0x10, 0xc8, 0x02, 0x5e, 0xb3, 0x43, 0x2a, 0xc4, 0x4f, 0x6a -.byte 0xb2, 0xca, 0x1c, 0x5d, 0x28, 0x9a, 0x78, 0x11, 0x1a, 0x69, 0x59, 0x57, 0xaf, 0xb5, 0x20, 0x42 -.byte 0xe4, 0x8b, 0x0f, 0xe6, 0xdf, 0x5b, 0xa6, 0x03, 0x92, 0x2f, 0xf5, 0x11, 0xe4, 0x62, 0xd7, 0x32 -.byte 0x71, 0x38, 0xd9, 0x04, 0x0c, 0x71, 0xab, 0x3d, 0x51, 0x7e, 0x0f, 0x07, 0xdf, 0x63, 0x05, 0x5c -.byte 0xe9, 0xbf, 0x94, 0x6f, 0xc1, 0x29, 0x82, 0xc0, 0xb4, 0xda, 0x51, 0xb0, 0xc1, 0x3c, 0xbb, 0xad -.byte 0x37, 0x4a, 0x5c, 0xca, 0xf1, 0x4b, 0x36, 0x0e, 0x24, 0xab, 0xbf, 0xc3, 0x84, 0x77, 0xfd, 0xa8 -.byte 0x50, 0xf4, 0xb1, 0xe7, 0xc6, 0x2f, 0xd2, 0x2d, 0x59, 0x8d, 0x7a, 0x0a, 0x4e, 0x96, 0x69, 0x52 -.byte 0x02, 0xaa, 0x36, 0x98, 0xec, 0xfc, 0xfa, 0x14, 0x83, 0x0c, 0x37, 0x1f, 0xc9, 0x92, 0x37, 0x7f -.byte 0xd7, 0x81, 0x2d, 0xe5, 0xc4, 0xb9, 0xe0, 0x3e, 0x34, 0xfe, 0x67, 0xf4, 0x3e, 0x66, 0xd1, 0xd3 -.byte 0xf4, 0x40, 0xcf, 0x5e, 0x62, 0x34, 0x0f, 0x70, 0x06, 0x3e, 0x20, 0x18, 0x5a, 0xce, 0xf7, 0x72 -.byte 0x1b, 0x25, 0x6c, 0x93, 0x74, 0x14, 0x93, 0xa3, 0x73, 0xb1, 0x0e, 0xaa, 0x87, 0x10, 0x23, 0x59 -.byte 0x5f, 0x20, 0x05, 0x19, 0x47, 0xed, 0x68, 0x8e, 0x92, 0x12, 0xca, 0x5d, 0xfc, 0xd6, 0x2b, 0xb2 -.byte 0x92, 0x3c, 0x20, 0xcf, 0xe1, 0x5f, 0xaf, 0x20, 0xbe, 0xa0, 0x76, 0x7f, 0x76, 0xe5, 0xec, 0x1a -.byte 0x86, 0x61, 0x33, 0x3e, 0xe7, 0x7b, 0xb4, 0x3f, 0xa0, 0x0f, 0x8e, 0xa2, 0xb9, 0x6a, 0x6f, 0xb9 -.byte 0x87, 0x26, 0x6f, 0x41, 0x6c, 0x88, 0xa6, 0x50, 0xfd, 0x6a, 0x63, 0x0b, 0xf5, 0x93, 0x16, 0x1b -.byte 0x19, 0x8f, 0xb2, 0xed, 0x9b, 0x9b, 0xc9, 0x90, 0xf5, 0x01, 0x0c, 0xdf, 0x19, 0x3d, 0x0f, 0x3e -.byte 0x38, 0x23, 0xc9, 0x2f, 0x8f, 0x0c, 0xd1, 0x02, 0xfe, 0x1b, 0x55, 0xd6, 0x4e, 0xd0, 0x8d, 0x3c -.byte 0xaf, 0x4f, 0xa4, 0xf3, 0xfe, 0xaf, 0x2a, 0xd3, 0x05, 0x9d, 0x79, 0x08, 0xa1, 0xcb, 0x57, 0x31 -.byte 0xb4, 0x9c, 0xc8, 0x90, 0xb2, 0x67, 0xf4, 0x18, 0x16, 0x93, 0x3a, 0xfc, 0x47, 0xd8, 0xd1, 0x78 -.byte 0x96, 0x31, 0x1f, 0xba, 0x2b, 0x0c, 0x5f, 0x5d, 0x99, 0xad, 0x63, 0x89, 0x5a, 0x24, 0x20, 0x76 -.byte 0xd8, 0xdf, 0xfd, 0xab, 0x4e, 0xa6, 0x22, 0xaa, 0x9d, 0x5e, 0xe6, 0x27, 0x8a, 0x7d, 0x68, 0x29 -.byte 0xa3, 0xe7, 0x8a, 0xb8, 0xda, 0x11, 0xbb, 0x17, 0x2d, 0x99, 0x9d, 0x13, 0x24, 0x46, 0xf7, 0xc5 -.byte 0xe2, 0xd8, 0x9f, 0x8e, 0x7f, 0xc7, 0x8f, 0x74, 0x6d, 0x5a, 0xb2, 0xe8, 0x72, 0xf5, 0xac, 0xee -.byte 0x24, 0x10, 0xad, 0x2f, 0x14, 0xda, 0xff, 0x2d, 0x9a, 0x46, 0x71, 0x47, 0xbe, 0x42, 0xdf, 0xbb -.byte 0x01, 0xdb, 0xf4, 0x7f, 0xd3, 0x28, 0x8f, 0x31, 0x59, 0x5b, 0xd3, 0xc9, 0x02, 0xa6, 0xb4, 0x52 -.byte 0xca, 0x6e, 0x97, 0xfb, 0x43, 0xc5, 0x08, 0x26, 0x6f, 0x8a, 0xf4, 0xbb, 0xfd, 0x9f, 0x28, 0xaa -.byte 0x0d, 0xd5, 0x45, 0xf3, 0x13, 0x3a, 0x1d, 0xd8, 0xc0, 0x78, 0x8f, 0x41, 0x67, 0x3c, 0x1e, 0x94 -.byte 0x64, 0xae, 0x7b, 0x0b, 0xc5, 0xe8, 0xd9, 0x01, 0x88, 0x39, 0x1a, 0x97, 0x86, 0x64, 0x41, 0xd5 -.byte 0x3b, 0x87, 0x0c, 0x6e, 0xfa, 0x0f, 0xc6, 0xbd, 0x48, 0x14, 0xbf, 0x39, 0x4d, 0xd4, 0x9e, 0x41 -.byte 0xb6, 0x8f, 0x96, 0x1d, 0x63, 0x96, 0x93, 0xd9, 0x95, 0x06, 0x78, 0x31, 0x68, 0x9e, 0x37, 0x06 -.byte 0x3b, 0x80, 0x89, 0x45, 0x61, 0x39, 0x23, 0xc7, 0x1b, 0x44, 0xa3, 0x15, 0xe5, 0x1c, 0xf8, 0x92 -.byte 0x30, 0xbb, 0x02, 0x03, 0x01, 0x00, 0x01, 0x53, 0x00, 0x26, 0x01, 0x30, 0x51, 0x31, 0x0b, 0x30 -.byte 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x4a, 0x50, 0x31, 0x23, 0x30, 0x21, 0x06, 0x03 -.byte 0x55, 0x04, 0x0a, 0x13, 0x1a, 0x43, 0x79, 0x62, 0x65, 0x72, 0x74, 0x72, 0x75, 0x73, 0x74, 0x20 -.byte 0x4a, 0x61, 0x70, 0x61, 0x6e, 0x20, 0x43, 0x6f, 0x2e, 0x2c, 0x20, 0x4c, 0x74, 0x64, 0x2e, 0x31 -.byte 0x1d, 0x30, 0x1b, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x14, 0x53, 0x65, 0x63, 0x75, 0x72, 0x65 -.byte 0x53, 0x69, 0x67, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x31, 0x32, 0x30, 0x82 -.byte 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05 -.byte 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xba -.byte 0x39, 0xc1, 0x37, 0x7a, 0x68, 0x45, 0x2b, 0x14, 0xb4, 0xeb, 0xe4, 0x13, 0xeb, 0x57, 0x75, 0x23 -.byte 0x4d, 0x8f, 0x24, 0x2d, 0x16, 0xe8, 0xae, 0x8e, 0xc9, 0x7d, 0xa4, 0x57, 0x3b, 0x2a, 0x76, 0x25 -.byte 0x33, 0x83, 0x6c, 0xea, 0x32, 0x8a, 0x94, 0x9b, 0x4e, 0x3c, 0x96, 0xe4, 0xfd, 0x51, 0xbf, 0x99 -.byte 0xc9, 0x93, 0x7e, 0xbf, 0xf9, 0xad, 0xa7, 0xb2, 0x48, 0x2b, 0x07, 0x1c, 0x27, 0xf5, 0x4c, 0xbc -.byte 0x70, 0x12, 0x77, 0xa4, 0x85, 0x54, 0xb5, 0xfd, 0x90, 0x7a, 0xe4, 0xa3, 0xe4, 0x51, 0x58, 0x03 -.byte 0xcd, 0x10, 0x79, 0x79, 0xee, 0x6b, 0x93, 0x1f, 0x64, 0x8e, 0x6b, 0x64, 0xab, 0xa3, 0x13, 0xe3 -.byte 0x71, 0xfe, 0x7d, 0xab, 0x9c, 0xdd, 0x27, 0x53, 0x37, 0xb3, 0xaa, 0x18, 0xc2, 0x59, 0x26, 0xec -.byte 0x5b, 0x1f, 0xd2, 0xe6, 0x65, 0x7c, 0xef, 0x93, 0xbd, 0xd8, 0x58, 0x5c, 0x0b, 0xc0, 0xe3, 0x65 -.byte 0x6f, 0x3c, 0xc7, 0xca, 0x59, 0xe3, 0xfe, 0x6e, 0x5f, 0xac, 0x83, 0xbe, 0xfd, 0x5d, 0x25, 0x4e -.byte 0x2a, 0x29, 0x3b, 0xd6, 0x0b, 0xab, 0x17, 0x32, 0x78, 0xa4, 0xe1, 0x3e, 0x94, 0x46, 0xbe, 0x62 -.byte 0x6e, 0x9b, 0xde, 0x46, 0xa8, 0xb1, 0x16, 0xe7, 0x85, 0x6e, 0xf4, 0x08, 0x40, 0x45, 0x11, 0xa0 -.byte 0x9e, 0x54, 0x44, 0x84, 0xf7, 0xd8, 0x36, 0xce, 0xf5, 0x50, 0x47, 0xdc, 0x2c, 0x30, 0x9b, 0xee -.byte 0xc0, 0xf5, 0x96, 0xd2, 0xfe, 0x09, 0x86, 0xc7, 0x06, 0x59, 0xae, 0x4f, 0xae, 0x8e, 0x11, 0x98 -.byte 0x7b, 0xf3, 0x0b, 0x52, 0xaa, 0x62, 0x26, 0xaa, 0x21, 0xdf, 0x8e, 0x25, 0x33, 0x79, 0x97, 0x16 -.byte 0x49, 0x8d, 0xf5, 0x3e, 0xd5, 0x47, 0x9f, 0x37, 0x31, 0x49, 0x33, 0x72, 0x05, 0x4d, 0x0c, 0xb6 -.byte 0x55, 0x8c, 0xf1, 0x57, 0x8f, 0x8a, 0x87, 0xd1, 0xad, 0xc5, 0x11, 0x12, 0x39, 0xa0, 0xad, 0x02 -.byte 0x03, 0x01, 0x00, 0x01, 0x53, 0x00, 0x26, 0x02, 0x30, 0x51, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03 -.byte 0x55, 0x04, 0x06, 0x13, 0x02, 0x4a, 0x50, 0x31, 0x23, 0x30, 0x21, 0x06, 0x03, 0x55, 0x04, 0x0a -.byte 0x13, 0x1a, 0x43, 0x79, 0x62, 0x65, 0x72, 0x74, 0x72, 0x75, 0x73, 0x74, 0x20, 0x4a, 0x61, 0x70 -.byte 0x61, 0x6e, 0x20, 0x43, 0x6f, 0x2e, 0x2c, 0x20, 0x4c, 0x74, 0x64, 0x2e, 0x31, 0x1d, 0x30, 0x1b -.byte 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x14, 0x53, 0x65, 0x63, 0x75, 0x72, 0x65, 0x53, 0x69, 0x67 -.byte 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x31, 0x34, 0x30, 0x82, 0x02, 0x22, 0x30 -.byte 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82 -.byte 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xc5, 0xd2, 0x7a, 0xa1 -.byte 0xd6, 0x8a, 0xbf, 0x16, 0x31, 0xd0, 0x98, 0xd1, 0x3a, 0x94, 0xfc, 0x5a, 0xb8, 0x6e, 0x22, 0xc1 -.byte 0x62, 0xf7, 0xa7, 0x0a, 0x27, 0xef, 0x50, 0xf6, 0x2e, 0xb1, 0x9e, 0x68, 0x12, 0xf0, 0x6c, 0x24 -.byte 0x63, 0x39, 0xf1, 0xf0, 0xdf, 0x10, 0xc6, 0xde, 0xb7, 0x52, 0x20, 0xd5, 0x52, 0x5b, 0x42, 0x99 -.byte 0x9e, 0xf3, 0xa0, 0xbe, 0x52, 0x1f, 0x5f, 0xcc, 0x67, 0x6d, 0xa7, 0x2e, 0x50, 0xa2, 0xc1, 0x97 -.byte 0x8d, 0xb6, 0xf8, 0x95, 0xf5, 0xb0, 0xba, 0xdc, 0x9d, 0xe0, 0xbe, 0xcb, 0xdf, 0xf7, 0x38, 0xf2 -.byte 0x47, 0xf5, 0xa6, 0x9a, 0x92, 0x95, 0x2a, 0x62, 0x59, 0x50, 0x0b, 0xa2, 0xb1, 0x35, 0xe7, 0x65 -.byte 0xb2, 0x61, 0xb2, 0xea, 0x92, 0x71, 0x69, 0xe4, 0x29, 0xf0, 0x4f, 0x81, 0x81, 0x04, 0x3c, 0xb2 -.byte 0xa5, 0x5b, 0xd4, 0xc5, 0xa8, 0x59, 0x67, 0x7b, 0x55, 0x1c, 0x49, 0xab, 0x7a, 0x9d, 0xc2, 0xe7 -.byte 0x73, 0x4d, 0xef, 0xcd, 0x09, 0xc2, 0xc4, 0x57, 0x12, 0xdb, 0x01, 0x0e, 0x23, 0x79, 0x09, 0x07 -.byte 0x3b, 0xa2, 0xe8, 0xfc, 0x8a, 0xcf, 0x8f, 0xc0, 0x46, 0x24, 0x9c, 0x38, 0x27, 0xe0, 0x83, 0x9d -.byte 0x1b, 0xa0, 0xbf, 0x78, 0x15, 0x10, 0xeb, 0x86, 0x4e, 0x0a, 0x5a, 0xfd, 0xdf, 0xda, 0x2c, 0x82 -.byte 0x7e, 0xee, 0xca, 0xf6, 0x29, 0xe1, 0xfa, 0x71, 0xa1, 0xf7, 0x88, 0x68, 0x9c, 0x9c, 0xf0, 0x8d -.byte 0xbe, 0x0f, 0x49, 0x91, 0xd8, 0xea, 0x3a, 0xf9, 0xfd, 0xd0, 0x68, 0x71, 0xdb, 0xe9, 0xb5, 0x2b -.byte 0x4e, 0x82, 0x92, 0x6f, 0x66, 0x1f, 0xe0, 0xf0, 0xdc, 0x4c, 0xec, 0xca, 0xd1, 0xea, 0xba, 0x74 -.byte 0x06, 0xf9, 0xb3, 0x84, 0x90, 0x94, 0xd1, 0x5f, 0x8e, 0x73, 0x19, 0x10, 0x5d, 0x02, 0xe5, 0x70 -.byte 0xa5, 0xc0, 0x10, 0xd0, 0x10, 0x7c, 0x6f, 0xc5, 0x58, 0x49, 0xb4, 0xb0, 0x6e, 0x9a, 0xda, 0x7d -.byte 0x95, 0xf5, 0xcc, 0xda, 0x02, 0xaf, 0xb8, 0x2c, 0x7d, 0x79, 0x8f, 0xbe, 0x43, 0xf1, 0xf9, 0x28 -.byte 0x28, 0x8d, 0x09, 0x43, 0xf8, 0x08, 0xdd, 0x6b, 0xc8, 0x8b, 0x2c, 0x24, 0xb1, 0x8d, 0x52, 0x07 -.byte 0xbd, 0x78, 0x9b, 0xcb, 0xca, 0x68, 0xb2, 0xa4, 0xdd, 0x0c, 0x4c, 0x79, 0x60, 0xc6, 0x99, 0xd1 -.byte 0x93, 0xf1, 0x30, 0x1a, 0x07, 0xd3, 0xae, 0x22, 0xc2, 0xea, 0xce, 0xf1, 0x84, 0x09, 0xcc, 0xe0 -.byte 0x14, 0x6e, 0x7f, 0x3f, 0x7e, 0xd2, 0x82, 0x85, 0xac, 0xdc, 0xa9, 0x16, 0x4e, 0x85, 0xa0, 0x60 -.byte 0xcb, 0xf6, 0x9c, 0xd7, 0xc8, 0xb3, 0x8e, 0xed, 0xc6, 0x9b, 0x98, 0x75, 0x0d, 0x55, 0xe8, 0x5f -.byte 0xe5, 0x95, 0x8b, 0x02, 0xa4, 0xae, 0x43, 0x29, 0x28, 0x11, 0xa4, 0xe6, 0x12, 0x30, 0x01, 0x4b -.byte 0x75, 0x6b, 0x1e, 0x66, 0x9d, 0x79, 0x2f, 0xa5, 0x76, 0x2f, 0x1d, 0x40, 0xb4, 0x6d, 0xc9, 0x7d -.byte 0x79, 0x08, 0xec, 0xd1, 0x6a, 0xb6, 0x5d, 0x2a, 0xb2, 0xa5, 0x66, 0xbd, 0x6b, 0x85, 0xf4, 0x74 -.byte 0x56, 0xc3, 0xf5, 0xe7, 0x75, 0x52, 0x28, 0x2c, 0xa5, 0xff, 0x66, 0x47, 0xa5, 0xd4, 0xfe, 0xfe -.byte 0x9e, 0x54, 0xbf, 0x65, 0x7e, 0x01, 0xd6, 0x30, 0x8f, 0xa5, 0x36, 0x9c, 0xa2, 0x50, 0x1c, 0xee -.byte 0x38, 0x80, 0x01, 0x48, 0xc6, 0xc7, 0x74, 0xf4, 0xc6, 0xac, 0xc3, 0x40, 0x49, 0x16, 0x61, 0x74 -.byte 0x2c, 0xaf, 0x8c, 0x6f, 0x35, 0xed, 0x7b, 0x18, 0x00, 0x5b, 0x36, 0x3c, 0x9c, 0x50, 0x0d, 0xca -.byte 0x92, 0x33, 0x10, 0xf1, 0x26, 0x49, 0x6d, 0xdf, 0x75, 0x24, 0x37, 0x82, 0x22, 0xd7, 0xe8, 0x96 -.byte 0xfd, 0x15, 0x4b, 0x02, 0x96, 0x3e, 0x07, 0x72, 0x95, 0x7e, 0xab, 0x3d, 0x4c, 0x2e, 0xd7, 0xca -.byte 0xf0, 0xdf, 0xe0, 0x58, 0x3f, 0x2d, 0x2f, 0x04, 0x9a, 0x38, 0xa3, 0x01, 0x02, 0x03, 0x01, 0x00 -.byte 0x01, 0x53, 0x00, 0x78, 0x00, 0x30, 0x51, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06 -.byte 0x13, 0x02, 0x4a, 0x50, 0x31, 0x23, 0x30, 0x21, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x1a, 0x43 -.byte 0x79, 0x62, 0x65, 0x72, 0x74, 0x72, 0x75, 0x73, 0x74, 0x20, 0x4a, 0x61, 0x70, 0x61, 0x6e, 0x20 -.byte 0x43, 0x6f, 0x2e, 0x2c, 0x20, 0x4c, 0x74, 0x64, 0x2e, 0x31, 0x1d, 0x30, 0x1b, 0x06, 0x03, 0x55 -.byte 0x04, 0x03, 0x13, 0x14, 0x53, 0x65, 0x63, 0x75, 0x72, 0x65, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x52 -.byte 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x31, 0x35, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86 -.byte 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04 -.byte 0x0b, 0x50, 0x74, 0x8d, 0x64, 0x32, 0x99, 0x99, 0xb3, 0xd2, 0x60, 0x08, 0xb8, 0x22, 0x8e, 0x46 -.byte 0x74, 0x2c, 0x78, 0xc0, 0x2b, 0x44, 0x2d, 0x6d, 0x5f, 0x1d, 0xc9, 0xae, 0x4b, 0x52, 0x20, 0x83 -.byte 0x3d, 0xb8, 0x14, 0x6d, 0x53, 0x87, 0x60, 0x9e, 0x5f, 0x6c, 0x85, 0xdb, 0x06, 0x14, 0x95, 0xe0 -.byte 0xc7, 0x28, 0xff, 0x9d, 0x5f, 0xe4, 0xaa, 0xf1, 0xb3, 0x8b, 0x6d, 0xed, 0x4f, 0x2f, 0x4b, 0xc9 -.byte 0x4a, 0x94, 0x91, 0x64, 0x75, 0xfe, 0x01, 0xec, 0xc1, 0xd8, 0xeb, 0x7a, 0x94, 0x78, 0x56, 0x18 -.byte 0x43, 0x5f, 0x6b, 0x81, 0xcb, 0xf6, 0xbc, 0xda, 0xb4, 0x0c, 0xb6, 0x29, 0x93, 0x08, 0x69, 0x8f -.byte 0x53, 0x00, 0x26, 0x01, 0x30, 0x51, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13 -.byte 0x02, 0x50, 0x4c, 0x31, 0x28, 0x30, 0x26, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x1f, 0x4b, 0x72 -.byte 0x61, 0x6a, 0x6f, 0x77, 0x61, 0x20, 0x49, 0x7a, 0x62, 0x61, 0x20, 0x52, 0x6f, 0x7a, 0x6c, 0x69 -.byte 0x63, 0x7a, 0x65, 0x6e, 0x69, 0x6f, 0x77, 0x61, 0x20, 0x53, 0x2e, 0x41, 0x2e, 0x31, 0x18, 0x30 -.byte 0x16, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x0f, 0x53, 0x5a, 0x41, 0x46, 0x49, 0x52, 0x20, 0x52 -.byte 0x4f, 0x4f, 0x54, 0x20, 0x43, 0x41, 0x32, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a -.byte 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30 -.byte 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xb7, 0xbc, 0x3e, 0x50, 0xa8, 0x4b, 0xcd, 0x40 -.byte 0xb5, 0xce, 0x61, 0xe7, 0x96, 0xca, 0xb4, 0xa1, 0xda, 0x0c, 0x22, 0xb0, 0xfa, 0xb5, 0x7b, 0x76 -.byte 0x00, 0x77, 0x8c, 0x0b, 0xcf, 0x7d, 0xa8, 0x86, 0xcc, 0x26, 0x51, 0xe4, 0x20, 0x3d, 0x85, 0x0c -.byte 0xd6, 0x58, 0xe3, 0xe7, 0xf4, 0x2a, 0x18, 0x9d, 0xda, 0xd1, 0xae, 0x26, 0xee, 0xeb, 0x53, 0xdc -.byte 0xf4, 0x90, 0xd6, 0x13, 0x4a, 0x0c, 0x90, 0x3c, 0xc3, 0xf4, 0xda, 0xd2, 0x8e, 0x0d, 0x92, 0x3a -.byte 0xdc, 0xb1, 0xb1, 0xff, 0x38, 0xde, 0xc3, 0xba, 0x2d, 0x5f, 0x80, 0xb9, 0x02, 0xbd, 0x4a, 0x9d -.byte 0x1b, 0x0f, 0xb4, 0xc3, 0xc2, 0xc1, 0x67, 0x03, 0xdd, 0xdc, 0x1b, 0x9c, 0x3d, 0xb3, 0xb0, 0xde -.byte 0x00, 0x1e, 0xa8, 0x34, 0x47, 0xbb, 0x9a, 0xeb, 0xfe, 0x0b, 0x14, 0xbd, 0x36, 0x84, 0xda, 0x0d -.byte 0x20, 0xbf, 0xfa, 0x5b, 0xcb, 0xa9, 0x16, 0x20, 0xad, 0x39, 0x60, 0xee, 0x2f, 0x75, 0xb6, 0xe7 -.byte 0x97, 0x9c, 0xf9, 0x3e, 0xfd, 0x7e, 0x4d, 0x6f, 0x4d, 0x2f, 0xef, 0x88, 0x0d, 0x6a, 0xfa, 0xdd -.byte 0xf1, 0x3d, 0x6e, 0x20, 0xa5, 0xa0, 0x12, 0xb4, 0x4d, 0x70, 0xb9, 0xce, 0xd7, 0x72, 0x3b, 0x89 -.byte 0x93, 0xa7, 0x80, 0x84, 0x1c, 0x27, 0x49, 0x72, 0x49, 0xb5, 0xff, 0x3b, 0x95, 0x9e, 0xc1, 0xcc -.byte 0xc8, 0x01, 0xec, 0xe8, 0x0e, 0x8a, 0x0a, 0x96, 0xe7, 0xb3, 0xa6, 0x87, 0xe5, 0xd6, 0xf9, 0x05 -.byte 0x2b, 0x0d, 0x97, 0x40, 0x70, 0x3c, 0xba, 0xac, 0x75, 0x5a, 0x9c, 0xd5, 0x4d, 0x9d, 0x02, 0x0a -.byte 0xd2, 0x4b, 0x9b, 0x66, 0x4b, 0x46, 0x07, 0x17, 0x65, 0xad, 0x9f, 0x6c, 0x88, 0x00, 0xdc, 0x22 -.byte 0x89, 0xe0, 0xe1, 0x64, 0xd4, 0x67, 0xbc, 0x31, 0x79, 0x61, 0x3c, 0xbb, 0xca, 0x41, 0xcd, 0x5c -.byte 0x6a, 0x00, 0xc8, 0x3c, 0x38, 0x8e, 0x58, 0xaf, 0x02, 0x03, 0x01, 0x00, 0x01, 0x53, 0x00, 0x26 -.byte 0x02, 0x30, 0x51, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x54, 0x57 -.byte 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x09, 0x54, 0x41, 0x49, 0x57, 0x41 -.byte 0x4e, 0x2d, 0x43, 0x41, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x07, 0x52 -.byte 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x31, 0x1c, 0x30, 0x1a, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13 -.byte 0x13, 0x54, 0x57, 0x43, 0x41, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x52, 0x6f, 0x6f -.byte 0x74, 0x20, 0x43, 0x41, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86 -.byte 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a -.byte 0x02, 0x82, 0x02, 0x01, 0x00, 0xb0, 0x05, 0xdb, 0xc8, 0xeb, 0x8c, 0xc4, 0x6e, 0x8a, 0x21, 0xef -.byte 0x8e, 0x4d, 0x9c, 0x71, 0x0a, 0x1f, 0x52, 0x70, 0xed, 0x6d, 0x82, 0x9c, 0x97, 0xc5, 0xd7, 0x4c -.byte 0x4e, 0x45, 0x49, 0xcb, 0x40, 0x42, 0xb5, 0x12, 0x34, 0x6c, 0x19, 0xc2, 0x74, 0xa4, 0x31, 0x5f -.byte 0x85, 0x02, 0x97, 0xec, 0x43, 0x33, 0x0a, 0x53, 0xd2, 0x9c, 0x8c, 0x8e, 0xb7, 0xb8, 0x79, 0xdb -.byte 0x2b, 0xd5, 0x6a, 0xf2, 0x8e, 0x66, 0xc4, 0xee, 0x2b, 0x01, 0x07, 0x92, 0xd4, 0xb3, 0xd0, 0x02 -.byte 0xdf, 0x50, 0xf6, 0x55, 0xaf, 0x66, 0x0e, 0xcb, 0xe0, 0x47, 0x60, 0x2f, 0x2b, 0x32, 0x39, 0x35 -.byte 0x52, 0x3a, 0x28, 0x83, 0xf8, 0x7b, 0x16, 0xc6, 0x18, 0xb8, 0x62, 0xd6, 0x47, 0x25, 0x91, 0xce -.byte 0xf0, 0x19, 0x12, 0x4d, 0xad, 0x63, 0xf5, 0xd3, 0x3f, 0x75, 0x5f, 0x29, 0xf0, 0xa1, 0x30, 0x1c -.byte 0x2a, 0xa0, 0x98, 0xa6, 0x15, 0xbd, 0xee, 0xfd, 0x19, 0x36, 0xf0, 0xe2, 0x91, 0x43, 0x8f, 0xfa -.byte 0xca, 0xd6, 0x10, 0x27, 0x49, 0x4c, 0xef, 0xdd, 0xc1, 0xf1, 0x85, 0x70, 0x9b, 0xca, 0xea, 0xa8 -.byte 0x5a, 0x43, 0xfc, 0x6d, 0x86, 0x6f, 0x73, 0xe9, 0x37, 0x45, 0xa9, 0xf0, 0x36, 0xc7, 0xcc, 0x88 -.byte 0x75, 0x1e, 0xbb, 0x6c, 0x06, 0xff, 0x9b, 0x6b, 0x3e, 0x17, 0xec, 0x61, 0xaa, 0x71, 0x7c, 0xc6 -.byte 0x1d, 0xa2, 0xf7, 0x49, 0xe9, 0x15, 0xb5, 0x3c, 0xd6, 0xa1, 0x61, 0xf5, 0x11, 0xf7, 0x05, 0x6f -.byte 0x1d, 0xfd, 0x11, 0xbe, 0xd0, 0x30, 0x07, 0xc2, 0x29, 0xb0, 0x09, 0x4e, 0x26, 0xdc, 0xe3, 0xa2 -.byte 0xa8, 0x91, 0x6a, 0x1f, 0xc2, 0x91, 0x45, 0x88, 0x5c, 0xe5, 0x98, 0xb8, 0x71, 0xa5, 0x15, 0x19 -.byte 0xc9, 0x7c, 0x75, 0x11, 0xcc, 0x70, 0x74, 0x4f, 0x2d, 0x9b, 0x1d, 0x91, 0x44, 0xfd, 0x56, 0x28 -.byte 0xa0, 0xfe, 0xbb, 0x86, 0x6a, 0xc8, 0xfa, 0x5c, 0x0b, 0x58, 0xdc, 0xc6, 0x4b, 0x76, 0xc8, 0xab -.byte 0x22, 0xd9, 0x73, 0x0f, 0xa5, 0xf4, 0x5a, 0x02, 0x89, 0x3f, 0x4f, 0x9e, 0x22, 0x82, 0xee, 0xa2 -.byte 0x74, 0x53, 0x2a, 0x3d, 0x53, 0x27, 0x69, 0x1d, 0x6c, 0x8e, 0x32, 0x2c, 0x64, 0x00, 0x26, 0x63 -.byte 0x61, 0x36, 0x4e, 0xa3, 0x46, 0xb7, 0x3f, 0x7d, 0xb3, 0x2d, 0xac, 0x6d, 0x90, 0xa2, 0x95, 0xa2 -.byte 0xce, 0xcf, 0xda, 0x82, 0xe7, 0x07, 0x34, 0x19, 0x96, 0xe9, 0xb8, 0x21, 0xaa, 0x29, 0x7e, 0xa6 -.byte 0x38, 0xbe, 0x8e, 0x29, 0x4a, 0x21, 0x66, 0x79, 0x1f, 0xb3, 0xc3, 0xb5, 0x09, 0x67, 0xde, 0xd6 -.byte 0xd4, 0x07, 0x46, 0xf3, 0x2a, 0xda, 0xe6, 0x22, 0x37, 0x60, 0xcb, 0x81, 0xb6, 0x0f, 0xa0, 0x0f -.byte 0xe9, 0xc8, 0x95, 0x7f, 0xbf, 0x55, 0x91, 0x05, 0x7a, 0xcf, 0x3d, 0x15, 0xc0, 0x6f, 0xde, 0x09 -.byte 0x94, 0x01, 0x83, 0xd7, 0x34, 0x1b, 0xcc, 0x40, 0xa5, 0xf0, 0xb8, 0x9b, 0x67, 0xd5, 0x98, 0x91 -.byte 0x3b, 0xa7, 0x84, 0x78, 0x95, 0x26, 0xa4, 0x5a, 0x08, 0xf8, 0x2b, 0x74, 0xb4, 0x00, 0x04, 0x3c -.byte 0xdf, 0xb8, 0x14, 0x8e, 0xe8, 0xdf, 0xa9, 0x8d, 0x6c, 0x67, 0x92, 0x33, 0x1d, 0xc0, 0xb7, 0xd2 -.byte 0xec, 0x92, 0xc8, 0xbe, 0x09, 0xbf, 0x2c, 0x29, 0x05, 0x6f, 0x02, 0x6b, 0x9e, 0xef, 0xbc, 0xbf -.byte 0x2a, 0xbc, 0x5b, 0xc0, 0x50, 0x8f, 0x41, 0x70, 0x71, 0x87, 0xb2, 0x4d, 0xb7, 0x04, 0xa9, 0x84 -.byte 0xa3, 0x32, 0xaf, 0xae, 0xee, 0x6b, 0x17, 0x8b, 0xb2, 0xb1, 0xfe, 0x6c, 0xe1, 0x90, 0x8c, 0x88 -.byte 0xa8, 0x97, 0x48, 0xce, 0xc8, 0x4d, 0xcb, 0xf3, 0x06, 0xcf, 0x5f, 0x6a, 0x0a, 0x42, 0xb1, 0x1e -.byte 0x1e, 0x77, 0x2f, 0x8e, 0xa0, 0xe6, 0x92, 0x0e, 0x06, 0xfc, 0x05, 0x22, 0xd2, 0x26, 0xe1, 0x31 -.byte 0x51, 0x7d, 0x32, 0xdc, 0x0f, 0x02, 0x03, 0x01, 0x00, 0x01, 0x54, 0x00, 0x26, 0x02, 0x30, 0x52 -.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x53, 0x4b, 0x31, 0x13, 0x30 -.byte 0x11, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x0a, 0x42, 0x72, 0x61, 0x74, 0x69, 0x73, 0x6c, 0x61 -.byte 0x76, 0x61, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0a, 0x44, 0x69, 0x73 -.byte 0x69, 0x67, 0x20, 0x61, 0x2e, 0x73, 0x2e, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x03 -.byte 0x13, 0x10, 0x43, 0x41, 0x20, 0x44, 0x69, 0x73, 0x69, 0x67, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20 -.byte 0x52, 0x32, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d -.byte 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82 -.byte 0x02, 0x01, 0x00, 0xa2, 0xa3, 0xc4, 0x00, 0x09, 0xd6, 0x85, 0x5d, 0x2d, 0x6d, 0x14, 0xf6, 0xc2 -.byte 0xc3, 0x73, 0x9e, 0x35, 0xc2, 0x71, 0x55, 0x7e, 0x81, 0xfb, 0xab, 0x46, 0x50, 0xe0, 0xc1, 0x7c -.byte 0x49, 0x78, 0xe6, 0xab, 0x79, 0x58, 0x3c, 0xda, 0xff, 0x7c, 0x1c, 0x9f, 0xd8, 0x97, 0x02, 0x78 -.byte 0x3e, 0x6b, 0x41, 0x04, 0xe9, 0x41, 0xbd, 0xbe, 0x03, 0x2c, 0x45, 0xf6, 0x2f, 0x64, 0xd4, 0xab -.byte 0x5d, 0xa3, 0x47, 0x3d, 0x64, 0x9b, 0xe9, 0x68, 0x9a, 0xc6, 0xcc, 0x1b, 0x3f, 0xba, 0xbe, 0xb2 -.byte 0x8b, 0x34, 0x02, 0x2e, 0x98, 0x55, 0x19, 0xfc, 0x8c, 0x6f, 0xaa, 0x5f, 0xda, 0x4c, 0xce, 0x4d -.byte 0x03, 0x21, 0xa3, 0xd8, 0xd2, 0x34, 0x93, 0x56, 0x96, 0xcb, 0x4c, 0x0c, 0x00, 0x16, 0x3c, 0x5f -.byte 0x1a, 0xcd, 0xc8, 0xc7, 0x6c, 0xa6, 0xad, 0xd3, 0x31, 0xa7, 0xbc, 0xe8, 0xe5, 0xe1, 0x66, 0xd6 -.byte 0xd2, 0xfb, 0x03, 0xb4, 0x41, 0x65, 0xc9, 0x10, 0xae, 0x0e, 0x05, 0x63, 0xc6, 0x80, 0x6a, 0x69 -.byte 0x30, 0xfd, 0xd2, 0xee, 0x90, 0xef, 0x0d, 0x27, 0xdf, 0x9f, 0x95, 0x73, 0xf4, 0xe1, 0x25, 0xda -.byte 0x6c, 0x16, 0xde, 0x41, 0x38, 0x34, 0xea, 0x8b, 0xfc, 0xd1, 0xe8, 0x04, 0x14, 0x61, 0x2d, 0x41 -.byte 0x7e, 0xac, 0xc7, 0x77, 0x4e, 0xcb, 0x51, 0x54, 0xfb, 0x5e, 0x92, 0x18, 0x1b, 0x04, 0x5a, 0x68 -.byte 0xc6, 0xc9, 0xc4, 0xfa, 0xb7, 0x13, 0xa0, 0x98, 0xb7, 0x11, 0x2b, 0xb7, 0xd6, 0x57, 0xcc, 0x7c -.byte 0x9e, 0x17, 0xd1, 0xcb, 0x25, 0xfe, 0x86, 0x4e, 0x24, 0x2e, 0x56, 0x0c, 0x78, 0x4d, 0x9e, 0x01 -.byte 0x12, 0xa6, 0x2b, 0xa7, 0x01, 0x65, 0x6e, 0x7c, 0x62, 0x1d, 0x84, 0x84, 0xdf, 0xea, 0xc0, 0x6b -.byte 0xb5, 0xa5, 0x2a, 0x95, 0x83, 0xc3, 0x53, 0x11, 0x0c, 0x73, 0x1d, 0x0b, 0xb2, 0x46, 0x90, 0xd1 -.byte 0x42, 0x3a, 0xce, 0x40, 0x6e, 0x95, 0xad, 0xff, 0xc6, 0x94, 0xad, 0x6e, 0x97, 0x84, 0x8e, 0x7d -.byte 0x6f, 0x9e, 0x8a, 0x80, 0x0d, 0x49, 0x6d, 0x73, 0xe2, 0x7b, 0x92, 0x1e, 0xc3, 0xf3, 0xc1, 0xf3 -.byte 0xeb, 0x2e, 0x05, 0x6f, 0xd9, 0x1b, 0xcf, 0x37, 0x76, 0x04, 0xc8, 0xb4, 0x5a, 0xe4, 0x17, 0xa7 -.byte 0xcb, 0xdd, 0x76, 0x1f, 0xd0, 0x19, 0x76, 0xe8, 0x2c, 0x05, 0xb3, 0xd6, 0x9c, 0x34, 0xd8, 0x96 -.byte 0xdc, 0x61, 0x87, 0x91, 0x05, 0xe4, 0x44, 0x08, 0x33, 0xc1, 0xda, 0xb9, 0x08, 0x65, 0xd4, 0xae -.byte 0xb2, 0x36, 0x0d, 0xeb, 0xba, 0x38, 0xba, 0x0c, 0xe5, 0x9b, 0x9e, 0xeb, 0x8d, 0x66, 0xdd, 0x99 -.byte 0xcf, 0xd6, 0x89, 0x41, 0xf6, 0x04, 0x92, 0x8a, 0x29, 0x29, 0x6d, 0x6b, 0x3a, 0x1c, 0xe7, 0x75 -.byte 0x7d, 0x02, 0x71, 0x0e, 0xf3, 0xc0, 0xe7, 0xbd, 0xcb, 0x19, 0xdd, 0x9d, 0x60, 0xb2, 0xc2, 0x66 -.byte 0x60, 0xb6, 0xb1, 0x04, 0xee, 0xc9, 0xe6, 0x86, 0xb9, 0x9a, 0x66, 0x40, 0xa8, 0xe7, 0x11, 0xed -.byte 0x81, 0x45, 0x03, 0x8b, 0xf6, 0x67, 0x59, 0xe8, 0xc1, 0x06, 0x11, 0xbd, 0xdd, 0xcf, 0x80, 0x02 -.byte 0x4f, 0x65, 0x40, 0x78, 0x5c, 0x47, 0x50, 0xc8, 0x9b, 0xe6, 0x1f, 0x81, 0x7b, 0xe4, 0x44, 0xa8 -.byte 0x5b, 0x85, 0x9a, 0xe2, 0xde, 0x5a, 0xd5, 0xc7, 0xf9, 0x3a, 0x44, 0x66, 0x4b, 0xe4, 0x32, 0x54 -.byte 0x7c, 0xe4, 0x6c, 0x9c, 0xb3, 0x0e, 0x3d, 0x17, 0xa2, 0xb2, 0x34, 0x12, 0xd6, 0x7e, 0xb2, 0xa8 -.byte 0x49, 0xbb, 0xd1, 0x7a, 0x28, 0x40, 0xbe, 0xa2, 0x16, 0x1f, 0xdf, 0xe4, 0x37, 0x1f, 0x11, 0x73 -.byte 0xfb, 0x90, 0x0a, 0x65, 0x43, 0xa2, 0x0d, 0x7c, 0xf8, 0x06, 0x01, 0x55, 0x33, 0x7d, 0xb0, 0x0d -.byte 0xb8, 0xf4, 0xf5, 0xae, 0xa5, 0x42, 0x57, 0x7c, 0x36, 0x11, 0x8c, 0x7b, 0x5e, 0xc4, 0x03, 0x9d -.byte 0x8c, 0x79, 0x9d, 0x02, 0x03, 0x01, 0x00, 0x01, 0x56, 0x00, 0x26, 0x02, 0x30, 0x54, 0x31, 0x0b -.byte 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x43, 0x4e, 0x31, 0x26, 0x30, 0x24, 0x06 -.byte 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x1d, 0x42, 0x45, 0x49, 0x4a, 0x49, 0x4e, 0x47, 0x20, 0x43, 0x45 -.byte 0x52, 0x54, 0x49, 0x46, 0x49, 0x43, 0x41, 0x54, 0x45, 0x20, 0x41, 0x55, 0x54, 0x48, 0x4f, 0x52 -.byte 0x49, 0x54, 0x59, 0x31, 0x1d, 0x30, 0x1b, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x14, 0x42, 0x4a -.byte 0x43, 0x41, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43 -.byte 0x41, 0x31, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d -.byte 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82 -.byte 0x02, 0x01, 0x00, 0xf1, 0x66, 0x08, 0xbd, 0xd9, 0xc5, 0x15, 0x61, 0xcb, 0x84, 0x04, 0x41, 0xa5 -.byte 0x69, 0x37, 0x77, 0x1d, 0xc1, 0xb0, 0x7b, 0xfa, 0xc3, 0x77, 0x48, 0x90, 0x13, 0x72, 0x64, 0xd1 -.byte 0xb8, 0x7c, 0x90, 0x35, 0x9d, 0x18, 0x79, 0x88, 0xe3, 0x97, 0x01, 0x3c, 0x47, 0x81, 0xf2, 0x0e -.byte 0xa2, 0x98, 0x0d, 0x9e, 0x3f, 0x37, 0xe0, 0x19, 0xb2, 0x90, 0xf2, 0x46, 0x1c, 0x92, 0xb1, 0x3a -.byte 0x61, 0xce, 0xfa, 0xb7, 0x46, 0x9e, 0x03, 0x86, 0xd7, 0x33, 0x6e, 0xed, 0xf7, 0x45, 0x8c, 0x76 -.byte 0x37, 0xde, 0x6e, 0x96, 0x91, 0xf7, 0xd7, 0x7e, 0x2b, 0x87, 0x17, 0xd5, 0x8b, 0x35, 0xee, 0x84 -.byte 0x91, 0x72, 0x57, 0xdc, 0x60, 0xc3, 0xc3, 0xb9, 0xe7, 0xc7, 0x67, 0x24, 0x23, 0x4f, 0x63, 0x0a -.byte 0x63, 0xf6, 0x66, 0x7d, 0x4b, 0x55, 0xa7, 0x3f, 0x78, 0x64, 0x49, 0x69, 0x12, 0x97, 0xe0, 0x4c -.byte 0x0d, 0xd3, 0x09, 0xa0, 0x32, 0x30, 0x3a, 0xfa, 0x9f, 0xc0, 0xf2, 0x9c, 0xc5, 0x12, 0x2a, 0x2e -.byte 0x1c, 0xb5, 0x04, 0x33, 0xda, 0xa4, 0x38, 0x11, 0x6a, 0xde, 0xc6, 0x18, 0xf6, 0x47, 0x3a, 0x22 -.byte 0x41, 0x87, 0x22, 0xfc, 0xc4, 0x89, 0x28, 0x54, 0xd8, 0x8c, 0xa5, 0x30, 0x0a, 0xf8, 0x17, 0x16 -.byte 0xca, 0xac, 0x37, 0xfd, 0x79, 0xa7, 0x91, 0x17, 0x78, 0x38, 0x99, 0xad, 0x58, 0xed, 0xb2, 0xde -.byte 0xcc, 0x89, 0x7d, 0x03, 0x9c, 0xb3, 0x89, 0x65, 0xe7, 0xe3, 0x3b, 0xb1, 0x22, 0x86, 0x8f, 0x06 -.byte 0x6d, 0x78, 0x07, 0xfd, 0x91, 0x12, 0x7f, 0xb0, 0x6b, 0x1c, 0x89, 0x0d, 0xf9, 0xb8, 0xcb, 0x74 -.byte 0x5b, 0x07, 0xc2, 0xc8, 0xf4, 0x35, 0xd1, 0x64, 0x63, 0x7a, 0xe9, 0x6e, 0x9a, 0x28, 0xd6, 0x30 -.byte 0xbd, 0xe6, 0x1b, 0xdd, 0x15, 0xaf, 0x84, 0xea, 0x9c, 0xc7, 0xca, 0xf5, 0x0e, 0xea, 0xf2, 0x5d -.byte 0x29, 0x87, 0x8f, 0x69, 0x73, 0x39, 0xbe, 0x2e, 0x24, 0x6f, 0x45, 0x21, 0xac, 0xc5, 0xd4, 0x69 -.byte 0x25, 0x06, 0x83, 0xad, 0x7a, 0x48, 0x85, 0x13, 0x2c, 0x0d, 0x06, 0xb8, 0x6c, 0x79, 0x56, 0xfc -.byte 0xa3, 0x67, 0x32, 0x81, 0xf5, 0x57, 0xa5, 0xca, 0x57, 0x42, 0x69, 0xe9, 0x5c, 0x24, 0x61, 0xef -.byte 0xe2, 0x30, 0x18, 0x4e, 0x44, 0x98, 0x55, 0x6f, 0x7a, 0xc2, 0x93, 0xd8, 0x19, 0xb6, 0xde, 0x7c -.byte 0x47, 0x8a, 0x11, 0x4e, 0x49, 0x47, 0xdb, 0x28, 0x94, 0x02, 0x0b, 0x94, 0x4a, 0x2c, 0xf9, 0x12 -.byte 0xd0, 0x4f, 0xe8, 0x31, 0x7e, 0x6c, 0x7a, 0xbf, 0xa6, 0x3f, 0x9b, 0x39, 0x3d, 0x02, 0x16, 0xa3 -.byte 0x18, 0xb3, 0x67, 0xac, 0x5b, 0x3f, 0x2c, 0x83, 0x2b, 0x67, 0x39, 0x81, 0x5c, 0xb9, 0x7e, 0x94 -.byte 0xd5, 0x64, 0xdd, 0x9e, 0x8f, 0x6e, 0xae, 0xe8, 0x7c, 0x5b, 0xb4, 0xd7, 0x6a, 0x47, 0x48, 0xd7 -.byte 0x7e, 0xb3, 0xd4, 0x2d, 0x8e, 0x56, 0x76, 0x4e, 0xcf, 0x69, 0xf1, 0x6e, 0x44, 0x6c, 0xd4, 0x24 -.byte 0xea, 0x8d, 0x24, 0xa1, 0x18, 0xbf, 0xbd, 0x57, 0xfe, 0xa9, 0x99, 0x35, 0xb5, 0xdb, 0x10, 0x77 -.byte 0xb8, 0x3d, 0x48, 0xba, 0xd6, 0xc1, 0xe7, 0xf1, 0x23, 0x3e, 0xd7, 0xdf, 0x85, 0x9d, 0x27, 0x3c -.byte 0xd4, 0x40, 0xbd, 0x0a, 0x0c, 0xbd, 0xf5, 0xe7, 0x8d, 0x25, 0xd6, 0x81, 0x74, 0x87, 0x46, 0xd4 -.byte 0x29, 0x75, 0xa2, 0x42, 0x6c, 0xf7, 0x73, 0x89, 0xe7, 0x7d, 0xbf, 0x7a, 0x4a, 0x1f, 0xd3, 0x22 -.byte 0xc9, 0x15, 0x55, 0xcf, 0xdf, 0x6f, 0x7c, 0x55, 0xd0, 0xa4, 0x8b, 0x07, 0x11, 0x37, 0x5f, 0x83 -.byte 0xa6, 0x26, 0x57, 0xa6, 0x01, 0x5b, 0x7e, 0xfe, 0x58, 0x68, 0x07, 0xa9, 0xe9, 0x7a, 0xd9, 0xb9 -.byte 0xe8, 0xff, 0x50, 0x1f, 0xab, 0xc2, 0xb4, 0xc0, 0xce, 0xe8, 0xea, 0xfd, 0x0f, 0xbd, 0x8d, 0x4d -.byte 0xb8, 0xbc, 0x71, 0x02, 0x03, 0x01, 0x00, 0x01, 0x56, 0x00, 0x78, 0x00, 0x30, 0x54, 0x31, 0x0b -.byte 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x43, 0x4e, 0x31, 0x26, 0x30, 0x24, 0x06 -.byte 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x1d, 0x42, 0x45, 0x49, 0x4a, 0x49, 0x4e, 0x47, 0x20, 0x43, 0x45 -.byte 0x52, 0x54, 0x49, 0x46, 0x49, 0x43, 0x41, 0x54, 0x45, 0x20, 0x41, 0x55, 0x54, 0x48, 0x4f, 0x52 -.byte 0x49, 0x54, 0x59, 0x31, 0x1d, 0x30, 0x1b, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x14, 0x42, 0x4a -.byte 0x43, 0x41, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43 -.byte 0x41, 0x32, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06 -.byte 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0x9d, 0xcb, 0x80, 0x91, 0x8d, 0x53 -.byte 0x67, 0xb5, 0xb9, 0x50, 0xb1, 0x03, 0xf8, 0xe5, 0x49, 0x1f, 0x41, 0x22, 0x09, 0xb0, 0x51, 0x52 -.byte 0x58, 0xd6, 0x2b, 0x34, 0x8f, 0xc5, 0x12, 0x46, 0x14, 0xc5, 0x8b, 0x2f, 0x2c, 0x84, 0xff, 0x2c -.byte 0x6e, 0xa8, 0xd5, 0xf1, 0x09, 0xe3, 0x03, 0x21, 0x14, 0xc4, 0x43, 0x3d, 0x7c, 0xc1, 0x2c, 0xc4 -.byte 0x4b, 0x6a, 0x4a, 0xcd, 0xe9, 0x87, 0xe0, 0x7d, 0xf6, 0x22, 0xbe, 0xfa, 0x4a, 0x51, 0xb8, 0x30 -.byte 0x8a, 0xfd, 0xe1, 0xde, 0x18, 0x12, 0x0a, 0xf6, 0x47, 0xb7, 0xe7, 0x17, 0xbf, 0x27, 0x8a, 0xd4 -.byte 0x41, 0x4c, 0x96, 0x3c, 0x60, 0x96, 0xc1, 0xfd, 0x15, 0x1c, 0x58, 0x00, 0x26, 0x02, 0x30, 0x56 -.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x43, 0x4e, 0x31, 0x30, 0x30 -.byte 0x2e, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x27, 0x43, 0x68, 0x69, 0x6e, 0x61, 0x20, 0x46, 0x69 -.byte 0x6e, 0x61, 0x6e, 0x63, 0x69, 0x61, 0x6c, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63 -.byte 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x31 -.byte 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x0c, 0x43, 0x46, 0x43, 0x41, 0x20, 0x45 -.byte 0x56, 0x20, 0x52, 0x4f, 0x4f, 0x54, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86 -.byte 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82 -.byte 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xd7, 0x5d, 0x6b, 0xcd, 0x10, 0x3f, 0x1f, 0x05, 0x59 -.byte 0xd5, 0x05, 0x4d, 0x37, 0xb1, 0x0e, 0xec, 0x98, 0x2b, 0x8e, 0x15, 0x1d, 0xfa, 0x93, 0x4b, 0x17 -.byte 0x82, 0x21, 0x71, 0x10, 0x52, 0xd7, 0x51, 0x64, 0x70, 0x16, 0xc2, 0x55, 0x69, 0x4d, 0x8e, 0x15 -.byte 0x6d, 0x9f, 0xbf, 0x0c, 0x1b, 0xc2, 0xe0, 0xa3, 0x67, 0xd6, 0x0c, 0xac, 0xcf, 0x22, 0xae, 0xaf -.byte 0x77, 0x54, 0x2a, 0x4b, 0x4c, 0x8a, 0x53, 0x52, 0x7a, 0xc3, 0xee, 0x2e, 0xde, 0xb3, 0x71, 0x25 -.byte 0xc1, 0xe9, 0x5d, 0x3d, 0xee, 0xa1, 0x2f, 0xa3, 0xf7, 0x2a, 0x3c, 0xc9, 0x23, 0x1d, 0x6a, 0xab -.byte 0x1d, 0xa1, 0xa7, 0xf1, 0xf3, 0xec, 0xa0, 0xd5, 0x44, 0xcf, 0x15, 0xcf, 0x72, 0x2f, 0x1d, 0x63 -.byte 0x97, 0xe8, 0x99, 0xf9, 0xfd, 0x93, 0xa4, 0x54, 0x80, 0x4c, 0x52, 0xd4, 0x52, 0xab, 0x2e, 0x49 -.byte 0xdf, 0x90, 0xcd, 0xb8, 0x5f, 0xbe, 0x3f, 0xde, 0xa1, 0xca, 0x4d, 0x20, 0xd4, 0x25, 0xe8, 0x84 -.byte 0x29, 0x53, 0xb7, 0xb1, 0x88, 0x1f, 0xff, 0xfa, 0xda, 0x90, 0x9f, 0x0a, 0xa9, 0x2d, 0x41, 0x3f -.byte 0xb1, 0xf1, 0x18, 0x29, 0xee, 0x16, 0x59, 0x2c, 0x34, 0x49, 0x1a, 0xa8, 0x06, 0xd7, 0xa8, 0x88 -.byte 0xd2, 0x03, 0x72, 0x7a, 0x32, 0xe2, 0xea, 0x68, 0x4d, 0x6e, 0x2c, 0x96, 0x65, 0x7b, 0xca, 0x59 -.byte 0xfa, 0xf2, 0xe2, 0xdd, 0xee, 0x30, 0x2c, 0xfb, 0xcc, 0x46, 0xac, 0xc4, 0x63, 0xeb, 0x6f, 0x7f -.byte 0x36, 0x2b, 0x34, 0x73, 0x12, 0x94, 0x7f, 0xdf, 0xcc, 0x26, 0x9e, 0xf1, 0x72, 0x5d, 0x50, 0x65 -.byte 0x59, 0x8f, 0x69, 0xb3, 0x87, 0x5e, 0x32, 0x6f, 0xc3, 0x18, 0x8a, 0xb5, 0x95, 0x8f, 0xb0, 0x7a -.byte 0x37, 0xde, 0x5a, 0x45, 0x3b, 0xc7, 0x36, 0xe1, 0xef, 0x67, 0xd1, 0x39, 0xd3, 0x97, 0x5b, 0x73 -.byte 0x62, 0x19, 0x48, 0x2d, 0x87, 0x1c, 0x06, 0xfb, 0x74, 0x98, 0x20, 0x49, 0x73, 0xf0, 0x05, 0xd2 -.byte 0x1b, 0xb1, 0xa0, 0xa3, 0xb7, 0x1b, 0x70, 0xd3, 0x88, 0x69, 0xb9, 0x5a, 0xd6, 0x38, 0xf4, 0x62 -.byte 0xdc, 0x25, 0x8b, 0x78, 0xbf, 0xf8, 0xe8, 0x7e, 0xb8, 0x5c, 0xc9, 0x95, 0x4f, 0x5f, 0xa7, 0x2d -.byte 0xb9, 0x20, 0x6b, 0xcf, 0x6b, 0xdd, 0xf5, 0x0d, 0xf4, 0x82, 0xb7, 0xf4, 0xb2, 0x66, 0x2e, 0x10 -.byte 0x28, 0xf6, 0x97, 0x5a, 0x7b, 0x96, 0x16, 0x8f, 0x01, 0x19, 0x2d, 0x6c, 0x6e, 0x7f, 0x39, 0x58 -.byte 0x06, 0x64, 0x83, 0x01, 0x83, 0x83, 0xc3, 0x4d, 0x92, 0xdd, 0x32, 0xc6, 0x87, 0xa4, 0x37, 0xe9 -.byte 0x16, 0xce, 0xaa, 0x2d, 0x68, 0xaf, 0x0a, 0x81, 0x65, 0x3a, 0x70, 0xc1, 0x9b, 0xad, 0x4d, 0x6d -.byte 0x54, 0xca, 0x2a, 0x2d, 0x4b, 0x85, 0x1b, 0xb3, 0x80, 0xe6, 0x70, 0x45, 0x0d, 0x6b, 0x5e, 0x35 -.byte 0xf0, 0x7f, 0x3b, 0xb8, 0x9c, 0xe4, 0x04, 0x70, 0x89, 0x12, 0x25, 0x93, 0xda, 0x0a, 0x99, 0x22 -.byte 0x60, 0x6a, 0x63, 0x60, 0x4e, 0x76, 0x06, 0x98, 0x4e, 0xbd, 0x83, 0xad, 0x1d, 0x58, 0x8a, 0x25 -.byte 0x85, 0xd2, 0xc7, 0x65, 0x1e, 0x2d, 0x8e, 0xc6, 0xdf, 0xb6, 0xc6, 0xe1, 0x7f, 0x8a, 0x04, 0x21 -.byte 0x15, 0x29, 0x74, 0xf0, 0x3e, 0x9c, 0x90, 0x9d, 0x0c, 0x2e, 0xf1, 0x8a, 0x3e, 0x5a, 0xaa, 0x0c -.byte 0x09, 0x1e, 0xc7, 0xd5, 0x3c, 0xa3, 0xed, 0x97, 0xc3, 0x1e, 0x34, 0xfa, 0x38, 0xf9, 0x08, 0x0e -.byte 0xe3, 0xc0, 0x5d, 0x2b, 0x83, 0xd1, 0x56, 0x6a, 0xc9, 0xb6, 0xa8, 0x54, 0x53, 0x2e, 0x78, 0x32 -.byte 0x67, 0x3d, 0x82, 0x7f, 0x74, 0xd0, 0xfb, 0xe1, 0xb6, 0x05, 0x60, 0xb9, 0x70, 0xdb, 0x8e, 0x0b -.byte 0xf9, 0x13, 0x58, 0x6f, 0x71, 0x60, 0x10, 0x52, 0x10, 0xb9, 0xc1, 0x41, 0x09, 0xef, 0x72, 0x1f -.byte 0x67, 0x31, 0x78, 0xff, 0x96, 0x05, 0x8d, 0x02, 0x03, 0x01, 0x00, 0x01, 0x58, 0x00, 0x26, 0x01 -.byte 0x30, 0x56, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31 -.byte 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x0a, 0x65, 0x6d, 0x53, 0x69, 0x67, 0x6e -.byte 0x20, 0x50, 0x4b, 0x49, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0b, 0x65 -.byte 0x4d, 0x75, 0x64, 0x68, 0x72, 0x61, 0x20, 0x49, 0x6e, 0x63, 0x31, 0x1c, 0x30, 0x1a, 0x06, 0x03 -.byte 0x55, 0x04, 0x03, 0x13, 0x13, 0x65, 0x6d, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74 -.byte 0x20, 0x43, 0x41, 0x20, 0x2d, 0x20, 0x43, 0x31, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09 -.byte 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00 -.byte 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xcf, 0xeb, 0xa9, 0xb9, 0xf1, 0x99, 0x05 -.byte 0xcc, 0xd8, 0x28, 0x21, 0x4a, 0xf3, 0x73, 0x34, 0x51, 0x84, 0x56, 0x10, 0xf5, 0xa0, 0x4f, 0x2c -.byte 0x12, 0xe3, 0xfa, 0x13, 0x9a, 0x27, 0xd0, 0xcf, 0xf9, 0x79, 0x1a, 0x74, 0x5f, 0x1d, 0x79, 0x39 -.byte 0xfc, 0x5b, 0xf8, 0x70, 0x8e, 0xe0, 0x92, 0x52, 0xf7, 0xe4, 0x25, 0xf9, 0x54, 0x83, 0xd9, 0x1d -.byte 0xd3, 0xc8, 0x5a, 0x85, 0x3f, 0x5e, 0xc7, 0xb6, 0x07, 0xee, 0x3e, 0xc0, 0xce, 0x9a, 0xaf, 0xac -.byte 0x56, 0x42, 0x2a, 0x39, 0x25, 0x70, 0xd6, 0xbf, 0xb5, 0x7b, 0x36, 0xad, 0xac, 0xf6, 0x73, 0xdc -.byte 0xcd, 0xd7, 0x1d, 0x8a, 0x83, 0xa5, 0xfb, 0x2b, 0x90, 0x15, 0x37, 0x6b, 0x1c, 0x26, 0x47, 0xdc -.byte 0x3b, 0x29, 0x56, 0x93, 0x6a, 0xb3, 0xc1, 0x6a, 0x3a, 0x9d, 0x3d, 0xf5, 0xc1, 0x97, 0x38, 0x58 -.byte 0x05, 0x8b, 0x1c, 0x11, 0xe3, 0xe4, 0xb4, 0xb8, 0x5d, 0x85, 0x1d, 0x83, 0xfe, 0x78, 0x5f, 0x0b -.byte 0x45, 0x68, 0x18, 0x48, 0xa5, 0x46, 0x73, 0x34, 0x3b, 0xfe, 0x0f, 0xc8, 0x76, 0xbb, 0xc7, 0x18 -.byte 0xf3, 0x05, 0xd1, 0x86, 0xf3, 0x85, 0xed, 0xe7, 0xb9, 0xd9, 0x32, 0xad, 0x55, 0x88, 0xce, 0xa6 -.byte 0xb6, 0x91, 0xb0, 0x4f, 0xac, 0x7e, 0x15, 0x23, 0x96, 0xf6, 0x3f, 0xf0, 0x20, 0x34, 0x16, 0xde -.byte 0x0a, 0xc6, 0xc4, 0x04, 0x45, 0x79, 0x7f, 0xa7, 0xfd, 0xbe, 0xd2, 0xa9, 0xa5, 0xaf, 0x9c, 0xc5 -.byte 0x23, 0x2a, 0xf7, 0x3c, 0x21, 0x6c, 0xbd, 0xaf, 0x8f, 0x4e, 0xc5, 0x3a, 0xb2, 0xf3, 0x34, 0x12 -.byte 0xfc, 0xdf, 0x80, 0x1a, 0x49, 0xa4, 0xd4, 0xa9, 0x95, 0xf7, 0x9e, 0x89, 0x5e, 0xa2, 0x89, 0xac -.byte 0x94, 0xcb, 0xa8, 0x68, 0x9b, 0xaf, 0x8a, 0x65, 0x27, 0xcd, 0x89, 0xee, 0xdd, 0x8c, 0xb5, 0x6b -.byte 0x29, 0x70, 0x43, 0xa0, 0x69, 0x0b, 0xe4, 0xb9, 0x0f, 0x02, 0x03, 0x01, 0x00, 0x01, 0x59, 0x00 -.byte 0x26, 0x01, 0x30, 0x57, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x42 -.byte 0x45, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x10, 0x47, 0x6c, 0x6f, 0x62 -.byte 0x61, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x6e, 0x76, 0x2d, 0x73, 0x61, 0x31, 0x10, 0x30, 0x0e -.byte 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x07, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x31, 0x1b -.byte 0x30, 0x19, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x12, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53 -.byte 0x69, 0x67, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x30, 0x82, 0x01, 0x22, 0x30 -.byte 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82 -.byte 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xda, 0x0e, 0xe6, 0x99 -.byte 0x8d, 0xce, 0xa3, 0xe3, 0x4f, 0x8a, 0x7e, 0xfb, 0xf1, 0x8b, 0x83, 0x25, 0x6b, 0xea, 0x48, 0x1f -.byte 0xf1, 0x2a, 0xb0, 0xb9, 0x95, 0x11, 0x04, 0xbd, 0xf0, 0x63, 0xd1, 0xe2, 0x67, 0x66, 0xcf, 0x1c -.byte 0xdd, 0xcf, 0x1b, 0x48, 0x2b, 0xee, 0x8d, 0x89, 0x8e, 0x9a, 0xaf, 0x29, 0x80, 0x65, 0xab, 0xe9 -.byte 0xc7, 0x2d, 0x12, 0xcb, 0xab, 0x1c, 0x4c, 0x70, 0x07, 0xa1, 0x3d, 0x0a, 0x30, 0xcd, 0x15, 0x8d -.byte 0x4f, 0xf8, 0xdd, 0xd4, 0x8c, 0x50, 0x15, 0x1c, 0xef, 0x50, 0xee, 0xc4, 0x2e, 0xf7, 0xfc, 0xe9 -.byte 0x52, 0xf2, 0x91, 0x7d, 0xe0, 0x6d, 0xd5, 0x35, 0x30, 0x8e, 0x5e, 0x43, 0x73, 0xf2, 0x41, 0xe9 -.byte 0xd5, 0x6a, 0xe3, 0xb2, 0x89, 0x3a, 0x56, 0x39, 0x38, 0x6f, 0x06, 0x3c, 0x88, 0x69, 0x5b, 0x2a -.byte 0x4d, 0xc5, 0xa7, 0x54, 0xb8, 0x6c, 0x89, 0xcc, 0x9b, 0xf9, 0x3c, 0xca, 0xe5, 0xfd, 0x89, 0xf5 -.byte 0x12, 0x3c, 0x92, 0x78, 0x96, 0xd6, 0xdc, 0x74, 0x6e, 0x93, 0x44, 0x61, 0xd1, 0x8d, 0xc7, 0x46 -.byte 0xb2, 0x75, 0x0e, 0x86, 0xe8, 0x19, 0x8a, 0xd5, 0x6d, 0x6c, 0xd5, 0x78, 0x16, 0x95, 0xa2, 0xe9 -.byte 0xc8, 0x0a, 0x38, 0xeb, 0xf2, 0x24, 0x13, 0x4f, 0x73, 0x54, 0x93, 0x13, 0x85, 0x3a, 0x1b, 0xbc -.byte 0x1e, 0x34, 0xb5, 0x8b, 0x05, 0x8c, 0xb9, 0x77, 0x8b, 0xb1, 0xdb, 0x1f, 0x20, 0x91, 0xab, 0x09 -.byte 0x53, 0x6e, 0x90, 0xce, 0x7b, 0x37, 0x74, 0xb9, 0x70, 0x47, 0x91, 0x22, 0x51, 0x63, 0x16, 0x79 -.byte 0xae, 0xb1, 0xae, 0x41, 0x26, 0x08, 0xc8, 0x19, 0x2b, 0xd1, 0x46, 0xaa, 0x48, 0xd6, 0x64, 0x2a -.byte 0xd7, 0x83, 0x34, 0xff, 0x2c, 0x2a, 0xc1, 0x6c, 0x19, 0x43, 0x4a, 0x07, 0x85, 0xe7, 0xd3, 0x7c -.byte 0xf6, 0x21, 0x68, 0xef, 0xea, 0xf2, 0x52, 0x9f, 0x7f, 0x93, 0x90, 0xcf, 0x02, 0x03, 0x01, 0x00 -.byte 0x01, 0x5c, 0x00, 0x26, 0x02, 0x30, 0x5a, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06 -.byte 0x13, 0x02, 0x43, 0x4e, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x1c, 0x54 -.byte 0x72, 0x75, 0x73, 0x74, 0x41, 0x73, 0x69, 0x61, 0x20, 0x54, 0x65, 0x63, 0x68, 0x6e, 0x6f, 0x6c -.byte 0x6f, 0x67, 0x69, 0x65, 0x73, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x24, 0x30, 0x22, 0x06 -.byte 0x03, 0x55, 0x04, 0x03, 0x0c, 0x1b, 0x54, 0x72, 0x75, 0x73, 0x74, 0x41, 0x73, 0x69, 0x61, 0x20 -.byte 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x47 -.byte 0x33, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01 -.byte 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02 -.byte 0x01, 0x00, 0xc0, 0x31, 0x82, 0x61, 0x92, 0xe4, 0x94, 0x1b, 0x0a, 0x2a, 0x65, 0xd0, 0xbe, 0x06 -.byte 0xa9, 0x87, 0x3b, 0x51, 0x12, 0xea, 0x70, 0x41, 0xae, 0xe2, 0xfb, 0x74, 0xea, 0x0a, 0x8d, 0xb9 -.byte 0xb3, 0x4c, 0xdc, 0x8f, 0xb7, 0x13, 0x52, 0x4f, 0x54, 0x18, 0xe1, 0x2c, 0x73, 0x95, 0x91, 0xc5 -.byte 0x66, 0x3b, 0x6a, 0xcf, 0xac, 0x63, 0x6d, 0x87, 0x53, 0xf0, 0xf7, 0xf1, 0x39, 0xb7, 0xa0, 0x43 -.byte 0x63, 0xb0, 0xc4, 0x03, 0x5d, 0x57, 0xa9, 0xe7, 0x44, 0xce, 0xc4, 0xa1, 0x83, 0x65, 0xf6, 0x50 -.byte 0x3e, 0xb1, 0x7e, 0x16, 0xb8, 0x3a, 0x8a, 0x02, 0xd0, 0x96, 0x1f, 0x00, 0xcd, 0x05, 0x21, 0xef -.byte 0x06, 0x6d, 0xdd, 0x21, 0x9c, 0x19, 0x43, 0x45, 0xa1, 0xc5, 0xe8, 0x80, 0xca, 0xc2, 0xad, 0x40 -.byte 0x62, 0x17, 0x06, 0xc6, 0xaa, 0xbc, 0xf3, 0xd6, 0xe6, 0xfc, 0x50, 0x7e, 0x66, 0x42, 0x1f, 0x3c -.byte 0x8b, 0xa6, 0x79, 0x79, 0x86, 0x40, 0x35, 0x9f, 0x20, 0xef, 0x3f, 0xeb, 0x8b, 0x47, 0x1f, 0x8f -.byte 0x8e, 0xc5, 0xd4, 0x8e, 0xb6, 0x2c, 0xc9, 0x44, 0x04, 0xe3, 0xd4, 0x43, 0x75, 0x3f, 0xd5, 0x3f -.byte 0xaf, 0x1c, 0xcc, 0x7e, 0x46, 0x5f, 0xac, 0xdf, 0x64, 0x10, 0x8a, 0xef, 0x46, 0xf0, 0x90, 0xf0 -.byte 0x0f, 0x2d, 0xf4, 0x88, 0x0b, 0xb1, 0x29, 0xaa, 0xaf, 0x85, 0xaa, 0x49, 0x58, 0xa8, 0xbf, 0x63 -.byte 0xa0, 0x38, 0x91, 0xe6, 0xb3, 0xe6, 0x77, 0x68, 0xc4, 0xf9, 0x2a, 0x19, 0x84, 0xbb, 0x0e, 0xe1 -.byte 0xf5, 0xaf, 0x89, 0xec, 0xa5, 0x2f, 0x50, 0x20, 0x74, 0x1e, 0x12, 0x41, 0x73, 0x1e, 0x24, 0xd9 -.byte 0xca, 0xce, 0x2c, 0xa1, 0x59, 0x35, 0xc0, 0xc8, 0x1d, 0x46, 0x27, 0x61, 0x5a, 0x8f, 0xf9, 0x4d -.byte 0xd3, 0x72, 0x79, 0x66, 0x1e, 0x9f, 0x15, 0x90, 0x21, 0x2d, 0xfd, 0xed, 0x8b, 0x56, 0x70, 0x03 -.byte 0x4a, 0x49, 0x3e, 0x7f, 0x69, 0x31, 0x12, 0x69, 0xc7, 0x1e, 0x5c, 0xca, 0x7a, 0x13, 0x8b, 0xe8 -.byte 0xe6, 0xf5, 0x60, 0x0f, 0xcc, 0x93, 0x2c, 0x84, 0x7f, 0xf1, 0xfc, 0x6a, 0xfc, 0x9b, 0x47, 0x9d -.byte 0xdb, 0xad, 0x88, 0x3d, 0xf3, 0x76, 0x75, 0x33, 0xd7, 0x4b, 0xa4, 0xc8, 0x8b, 0xf9, 0xf5, 0x43 -.byte 0x58, 0x4f, 0xcb, 0xc8, 0x03, 0x54, 0x8f, 0xa5, 0x85, 0x78, 0x04, 0x1a, 0xf3, 0x73, 0xf2, 0xd7 -.byte 0x87, 0x1d, 0x41, 0x9f, 0xe7, 0xd8, 0x17, 0xce, 0x1a, 0x9c, 0x0f, 0x4a, 0xfc, 0xdc, 0x44, 0x68 -.byte 0x54, 0x68, 0xe2, 0x41, 0x3c, 0xfe, 0x2c, 0x84, 0x86, 0x37, 0x3c, 0xcd, 0x3f, 0x2f, 0xa2, 0xdb -.byte 0xe7, 0xf7, 0x54, 0x03, 0x5f, 0x59, 0xd3, 0xf7, 0x91, 0x78, 0xc7, 0x8b, 0x77, 0x6a, 0x16, 0xe5 -.byte 0x49, 0x85, 0x90, 0x45, 0x72, 0x70, 0x2f, 0x91, 0x5d, 0xf8, 0x3e, 0x65, 0x40, 0x0b, 0x19, 0x99 -.byte 0xc9, 0x26, 0x20, 0x5a, 0x68, 0xc1, 0x35, 0xbf, 0x4f, 0xa7, 0x51, 0xf1, 0xd8, 0x11, 0x2b, 0x5b -.byte 0xe0, 0x9a, 0x9e, 0x28, 0x3b, 0x0a, 0x3a, 0x0a, 0x1f, 0xc1, 0x81, 0xe5, 0x2e, 0xf0, 0xa6, 0xb9 -.byte 0x69, 0xa5, 0x88, 0x94, 0xe6, 0x6b, 0x13, 0x7f, 0xd1, 0x64, 0x3f, 0x3d, 0x9c, 0x70, 0x46, 0xe5 -.byte 0xa2, 0x85, 0x7b, 0x58, 0x84, 0x27, 0xdc, 0xc4, 0x80, 0x3e, 0x67, 0x9a, 0x9a, 0xc7, 0x9a, 0x31 -.byte 0x0e, 0x30, 0xec, 0xe6, 0x17, 0x40, 0x95, 0xd9, 0x45, 0xed, 0x01, 0x96, 0xaa, 0xbf, 0x0c, 0xf3 -.byte 0x4b, 0xd1, 0x63, 0xf7, 0x13, 0x58, 0xc0, 0xb8, 0xf3, 0xfa, 0x67, 0xdd, 0x9b, 0x7d, 0x6d, 0x4a -.byte 0xff, 0x32, 0x4c, 0xb5, 0x25, 0x3b, 0xff, 0x1c, 0x67, 0x0f, 0x85, 0x22, 0x59, 0x05, 0x91, 0x91 -.byte 0x41, 0x77, 0x81, 0xd0, 0x85, 0x4c, 0x87, 0x10, 0x71, 0xff, 0x9e, 0x43, 0x1b, 0xae, 0x95, 0x75 -.byte 0x2d, 0x81, 0x02, 0x03, 0x01, 0x00, 0x01, 0x5c, 0x00, 0x78, 0x00, 0x30, 0x5a, 0x31, 0x0b, 0x30 -.byte 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x43, 0x4e, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03 -.byte 0x55, 0x04, 0x0a, 0x0c, 0x1c, 0x54, 0x72, 0x75, 0x73, 0x74, 0x41, 0x73, 0x69, 0x61, 0x20, 0x54 -.byte 0x65, 0x63, 0x68, 0x6e, 0x6f, 0x6c, 0x6f, 0x67, 0x69, 0x65, 0x73, 0x2c, 0x20, 0x49, 0x6e, 0x63 -.byte 0x2e, 0x31, 0x24, 0x30, 0x22, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x1b, 0x54, 0x72, 0x75, 0x73 -.byte 0x74, 0x41, 0x73, 0x69, 0x61, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x52, 0x6f, 0x6f -.byte 0x74, 0x20, 0x43, 0x41, 0x20, 0x47, 0x34, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48 -.byte 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0xf1 -.byte 0xb3, 0xcd, 0x38, 0xe4, 0x25, 0x43, 0xe5, 0xde, 0x19, 0x09, 0xbb, 0x81, 0x79, 0xa2, 0x15, 0x5f -.byte 0x15, 0x63, 0x01, 0xde, 0xc2, 0xab, 0xdd, 0xb3, 0xa6, 0x1b, 0x67, 0x4b, 0x80, 0x83, 0xaf, 0x99 -.byte 0xcb, 0xac, 0x17, 0xdb, 0x2b, 0x96, 0xca, 0x7c, 0x52, 0x55, 0xe2, 0x1a, 0xe1, 0x3d, 0x56, 0xf0 -.byte 0x2f, 0x16, 0x08, 0xfa, 0x15, 0xbc, 0x9b, 0xbb, 0x47, 0xe6, 0x3f, 0xee, 0xa8, 0xe1, 0x4c, 0x8c -.byte 0xf5, 0xd3, 0x36, 0xf9, 0x38, 0x5d, 0xab, 0x70, 0x9a, 0x47, 0x0d, 0xe2, 0x81, 0x41, 0x06, 0xeb -.byte 0x49, 0xf9, 0xb0, 0x29, 0xdd, 0x33, 0xec, 0x50, 0xa5, 0x7f, 0x79, 0x29, 0xb8, 0x20, 0x98, 0x5c -.byte 0x00, 0x26, 0x02, 0x30, 0x5a, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02 -.byte 0x46, 0x52, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x09, 0x44, 0x68, 0x69 -.byte 0x6d, 0x79, 0x6f, 0x74, 0x69, 0x73, 0x31, 0x1c, 0x30, 0x1a, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x0c -.byte 0x13, 0x30, 0x30, 0x30, 0x32, 0x20, 0x34, 0x38, 0x31, 0x34, 0x36, 0x33, 0x30, 0x38, 0x31, 0x30 -.byte 0x30, 0x30, 0x33, 0x36, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x10, 0x43 -.byte 0x65, 0x72, 0x74, 0x69, 0x67, 0x6e, 0x61, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x30 -.byte 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01 -.byte 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00 -.byte 0xcd, 0x18, 0x39, 0x65, 0x1a, 0x59, 0xb1, 0xea, 0x64, 0x16, 0x0e, 0x8c, 0x94, 0x24, 0x95, 0x7c -.byte 0x83, 0xd3, 0xc5, 0x39, 0x26, 0xdc, 0x0c, 0xef, 0x16, 0x57, 0x8d, 0xd7, 0xd8, 0xac, 0xa3, 0x42 -.byte 0x7f, 0x82, 0xca, 0xed, 0xcd, 0x5b, 0xdb, 0x0e, 0xb7, 0x2d, 0xed, 0x45, 0x08, 0x17, 0xb2, 0xd9 -.byte 0xb3, 0xcb, 0xd6, 0x17, 0x52, 0x72, 0x28, 0xdb, 0x8e, 0x4e, 0x9e, 0x8a, 0xb6, 0x0b, 0xf9, 0x9e -.byte 0x84, 0x9a, 0x4d, 0x76, 0xde, 0x22, 0x29, 0x5c, 0xd2, 0xb3, 0xd2, 0x06, 0x3e, 0x30, 0x39, 0xa9 -.byte 0x74, 0xa3, 0x92, 0x56, 0x1c, 0xa1, 0x6f, 0x4c, 0x0a, 0x20, 0x6d, 0x9f, 0x23, 0x7a, 0xb4, 0xc6 -.byte 0xda, 0x2c, 0xe4, 0x1d, 0x2c, 0xdc, 0xb3, 0x28, 0xd0, 0x13, 0xf2, 0x4c, 0x4e, 0x02, 0x49, 0xa1 -.byte 0x54, 0x40, 0x9e, 0xe6, 0xe5, 0x05, 0xa0, 0x2d, 0x84, 0xc8, 0xff, 0x98, 0x6c, 0xd0, 0xeb, 0x8a -.byte 0x1a, 0x84, 0x08, 0x1e, 0xb7, 0x68, 0x23, 0xee, 0x23, 0xd5, 0x70, 0xce, 0x6d, 0x51, 0x69, 0x10 -.byte 0xee, 0xa1, 0x7a, 0xc2, 0xd1, 0x22, 0x31, 0xc2, 0x82, 0x85, 0xd2, 0xf2, 0x55, 0x76, 0x50, 0x7c -.byte 0x25, 0x7a, 0xc9, 0x84, 0x5c, 0x0b, 0xac, 0xdd, 0x42, 0x4e, 0x2b, 0xe7, 0x82, 0xa2, 0x24, 0x89 -.byte 0xcb, 0x90, 0xb2, 0xd0, 0xee, 0x23, 0xba, 0x66, 0x4c, 0xbb, 0x62, 0xa4, 0xf9, 0x53, 0x5a, 0x64 -.byte 0x7b, 0x7c, 0x98, 0xfa, 0xa3, 0x48, 0x9e, 0x0f, 0x95, 0xae, 0xa7, 0x18, 0xf4, 0x6a, 0xec, 0x2e -.byte 0x03, 0x45, 0xaf, 0xf0, 0x74, 0xf8, 0x2a, 0xcd, 0x7a, 0x5d, 0xd1, 0xbe, 0x44, 0x26, 0x32, 0x29 -.byte 0xf1, 0xf1, 0xf5, 0x6c, 0xcc, 0x7e, 0x02, 0x21, 0x0b, 0x9f, 0x6f, 0xa4, 0x3f, 0xbe, 0x9d, 0x53 -.byte 0xe2, 0xcf, 0x7d, 0xa9, 0x2c, 0x7c, 0x58, 0x1a, 0x97, 0xe1, 0x3d, 0x37, 0x37, 0x18, 0x66, 0x28 -.byte 0xd2, 0x40, 0xc5, 0x51, 0x8a, 0x8c, 0xc3, 0x2d, 0xce, 0x53, 0x88, 0x24, 0x58, 0x64, 0x30, 0x16 -.byte 0xc5, 0xaa, 0xe0, 0xd6, 0x0a, 0xa6, 0x40, 0xdf, 0x78, 0xf6, 0xf5, 0x04, 0x7c, 0x69, 0x13, 0x84 -.byte 0xbc, 0xd1, 0xd1, 0xa7, 0x06, 0xcf, 0x01, 0xf7, 0x68, 0xc0, 0xa8, 0x57, 0xbb, 0x3a, 0x61, 0xad -.byte 0x04, 0x8c, 0x93, 0xe3, 0xad, 0xfc, 0xf0, 0xdb, 0x44, 0x6d, 0x59, 0xdc, 0x49, 0x59, 0xae, 0xac -.byte 0x9a, 0x99, 0x36, 0x30, 0x41, 0x7b, 0x76, 0x33, 0x22, 0x87, 0xa3, 0xc2, 0x92, 0x86, 0x6e, 0xf9 -.byte 0x70, 0xee, 0xae, 0x87, 0x87, 0x95, 0x1b, 0xc4, 0x7a, 0xbd, 0x31, 0xf3, 0xd4, 0xd2, 0xe5, 0x99 -.byte 0xff, 0xbe, 0x48, 0xec, 0x75, 0xf5, 0x78, 0x16, 0x1d, 0xa6, 0x70, 0xc1, 0x7f, 0x3c, 0x1b, 0xa1 -.byte 0x92, 0xfb, 0xcf, 0xc8, 0x3c, 0xd6, 0xc5, 0x93, 0x0a, 0x8f, 0xf5, 0x55, 0x3a, 0x76, 0x95, 0xce -.byte 0x59, 0x98, 0x8a, 0x09, 0x95, 0x77, 0x32, 0x9a, 0x83, 0xba, 0x2c, 0x04, 0x3a, 0x97, 0xbd, 0xd4 -.byte 0x2f, 0xbe, 0xd7, 0x6c, 0x9b, 0xa2, 0xca, 0x7d, 0x6d, 0x26, 0xc9, 0x55, 0xd5, 0xcf, 0xc3, 0x79 -.byte 0x52, 0x08, 0x09, 0x99, 0x07, 0x24, 0x2d, 0x64, 0x25, 0x6b, 0xa6, 0x21, 0x69, 0x9b, 0x6a, 0xdd -.byte 0x74, 0x4d, 0x6b, 0x97, 0x7a, 0x41, 0xbd, 0xab, 0x17, 0xf9, 0x90, 0x17, 0x48, 0x8f, 0x36, 0xf9 -.byte 0x2d, 0xd5, 0xc5, 0xdb, 0xee, 0xaa, 0x85, 0x45, 0x41, 0xfa, 0xcd, 0x3a, 0x45, 0xb1, 0x68, 0xe6 -.byte 0x36, 0x4c, 0x9b, 0x90, 0x57, 0xec, 0x23, 0xb9, 0x87, 0x08, 0xc2, 0xc4, 0x09, 0xf1, 0x97, 0x86 -.byte 0x2a, 0x28, 0x4d, 0xe2, 0x74, 0xc0, 0xda, 0xc4, 0x8c, 0xdb, 0xdf, 0xe2, 0xa1, 0x17, 0x59, 0xce -.byte 0x24, 0x59, 0x74, 0x31, 0xda, 0x7f, 0xfd, 0x30, 0x6d, 0xd9, 0xdc, 0xe1, 0x6a, 0xe1, 0xfc, 0x5f -.byte 0x02, 0x03, 0x01, 0x00, 0x01, 0x5c, 0x00, 0x26, 0x01, 0x30, 0x5a, 0x31, 0x0b, 0x30, 0x09, 0x06 -.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x49, 0x45, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04 -.byte 0x0a, 0x13, 0x09, 0x42, 0x61, 0x6c, 0x74, 0x69, 0x6d, 0x6f, 0x72, 0x65, 0x31, 0x13, 0x30, 0x11 -.byte 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x0a, 0x43, 0x79, 0x62, 0x65, 0x72, 0x54, 0x72, 0x75, 0x73 -.byte 0x74, 0x31, 0x22, 0x30, 0x20, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x19, 0x42, 0x61, 0x6c, 0x74 -.byte 0x69, 0x6d, 0x6f, 0x72, 0x65, 0x20, 0x43, 0x79, 0x62, 0x65, 0x72, 0x54, 0x72, 0x75, 0x73, 0x74 -.byte 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48 -.byte 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01 -.byte 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xa3, 0x04, 0xbb, 0x22, 0xab, 0x98, 0x3d, 0x57, 0xe8, 0x26 -.byte 0x72, 0x9a, 0xb5, 0x79, 0xd4, 0x29, 0xe2, 0xe1, 0xe8, 0x95, 0x80, 0xb1, 0xb0, 0xe3, 0x5b, 0x8e -.byte 0x2b, 0x29, 0x9a, 0x64, 0xdf, 0xa1, 0x5d, 0xed, 0xb0, 0x09, 0x05, 0x6d, 0xdb, 0x28, 0x2e, 0xce -.byte 0x62, 0xa2, 0x62, 0xfe, 0xb4, 0x88, 0xda, 0x12, 0xeb, 0x38, 0xeb, 0x21, 0x9d, 0xc0, 0x41, 0x2b -.byte 0x01, 0x52, 0x7b, 0x88, 0x77, 0xd3, 0x1c, 0x8f, 0xc7, 0xba, 0xb9, 0x88, 0xb5, 0x6a, 0x09, 0xe7 -.byte 0x73, 0xe8, 0x11, 0x40, 0xa7, 0xd1, 0xcc, 0xca, 0x62, 0x8d, 0x2d, 0xe5, 0x8f, 0x0b, 0xa6, 0x50 -.byte 0xd2, 0xa8, 0x50, 0xc3, 0x28, 0xea, 0xf5, 0xab, 0x25, 0x87, 0x8a, 0x9a, 0x96, 0x1c, 0xa9, 0x67 -.byte 0xb8, 0x3f, 0x0c, 0xd5, 0xf7, 0xf9, 0x52, 0x13, 0x2f, 0xc2, 0x1b, 0xd5, 0x70, 0x70, 0xf0, 0x8f -.byte 0xc0, 0x12, 0xca, 0x06, 0xcb, 0x9a, 0xe1, 0xd9, 0xca, 0x33, 0x7a, 0x77, 0xd6, 0xf8, 0xec, 0xb9 -.byte 0xf1, 0x68, 0x44, 0x42, 0x48, 0x13, 0xd2, 0xc0, 0xc2, 0xa4, 0xae, 0x5e, 0x60, 0xfe, 0xb6, 0xa6 -.byte 0x05, 0xfc, 0xb4, 0xdd, 0x07, 0x59, 0x02, 0xd4, 0x59, 0x18, 0x98, 0x63, 0xf5, 0xa5, 0x63, 0xe0 -.byte 0x90, 0x0c, 0x7d, 0x5d, 0xb2, 0x06, 0x7a, 0xf3, 0x85, 0xea, 0xeb, 0xd4, 0x03, 0xae, 0x5e, 0x84 -.byte 0x3e, 0x5f, 0xff, 0x15, 0xed, 0x69, 0xbc, 0xf9, 0x39, 0x36, 0x72, 0x75, 0xcf, 0x77, 0x52, 0x4d -.byte 0xf3, 0xc9, 0x90, 0x2c, 0xb9, 0x3d, 0xe5, 0xc9, 0x23, 0x53, 0x3f, 0x1f, 0x24, 0x98, 0x21, 0x5c -.byte 0x07, 0x99, 0x29, 0xbd, 0xc6, 0x3a, 0xec, 0xe7, 0x6e, 0x86, 0x3a, 0x6b, 0x97, 0x74, 0x63, 0x33 -.byte 0xbd, 0x68, 0x18, 0x31, 0xf0, 0x78, 0x8d, 0x76, 0xbf, 0xfc, 0x9e, 0x8e, 0x5d, 0x2a, 0x86, 0xa7 -.byte 0x4d, 0x90, 0xdc, 0x27, 0x1a, 0x39, 0x02, 0x03, 0x01, 0x00, 0x01, 0x5c, 0x00, 0x78, 0x00, 0x30 -.byte 0x5a, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x13 -.byte 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x0a, 0x65, 0x6d, 0x53, 0x69, 0x67, 0x6e, 0x20 -.byte 0x50, 0x4b, 0x49, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0b, 0x65, 0x4d -.byte 0x75, 0x64, 0x68, 0x72, 0x61, 0x20, 0x49, 0x6e, 0x63, 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55 -.byte 0x04, 0x03, 0x13, 0x17, 0x65, 0x6d, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x45, 0x43, 0x43, 0x20, 0x52 -.byte 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x2d, 0x20, 0x43, 0x33, 0x30, 0x76, 0x30, 0x10, 0x06 -.byte 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03 -.byte 0x62, 0x00, 0x04, 0xfd, 0xa5, 0x61, 0xae, 0x7b, 0x26, 0x10, 0x1d, 0xe9, 0xb7, 0x22, 0x30, 0xae -.byte 0x06, 0xf4, 0x81, 0xb3, 0xb1, 0x42, 0x71, 0x95, 0x39, 0xbc, 0xd3, 0x52, 0xe3, 0xaf, 0xaf, 0xf9 -.byte 0xf2, 0x97, 0x35, 0x92, 0x36, 0x46, 0x0e, 0x87, 0x95, 0x8d, 0xb9, 0x39, 0x5a, 0xe9, 0xbb, 0xdf -.byte 0xd0, 0xfe, 0xc8, 0x07, 0x41, 0x3c, 0xbb, 0x55, 0x6f, 0x83, 0xa3, 0x6a, 0xfb, 0x62, 0xb0, 0x81 -.byte 0x89, 0x02, 0x70, 0x7d, 0x48, 0xc5, 0x4a, 0xe3, 0xe9, 0x22, 0x54, 0x22, 0x4d, 0x93, 0xbb, 0x42 -.byte 0x0c, 0xaf, 0x77, 0x9c, 0x23, 0xa6, 0x7d, 0xd7, 0x61, 0x11, 0xce, 0x65, 0xc7, 0xf8, 0x7f, 0xfe -.byte 0xf5, 0xf2, 0xa9, 0x5f, 0x00, 0x26, 0x01, 0x30, 0x5d, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55 -.byte 0x04, 0x06, 0x13, 0x02, 0x4a, 0x50, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13 -.byte 0x1c, 0x53, 0x45, 0x43, 0x4f, 0x4d, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x53, 0x79, 0x73 -.byte 0x74, 0x65, 0x6d, 0x73, 0x20, 0x43, 0x4f, 0x2e, 0x2c, 0x4c, 0x54, 0x44, 0x2e, 0x31, 0x27, 0x30 -.byte 0x25, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x1e, 0x53, 0x65, 0x63, 0x75, 0x72, 0x69, 0x74, 0x79 -.byte 0x20, 0x43, 0x6f, 0x6d, 0x6d, 0x75, 0x6e, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x52 -.byte 0x6f, 0x6f, 0x74, 0x43, 0x41, 0x32, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86 -.byte 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82 -.byte 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xd0, 0x15, 0x39, 0x52, 0xb1, 0x52, 0xb3, 0xba, 0xc5 -.byte 0x59, 0x82, 0xc4, 0x5d, 0x52, 0xae, 0x3a, 0x43, 0x65, 0x80, 0x4b, 0xc7, 0xf2, 0x96, 0xbc, 0xdb -.byte 0x36, 0x97, 0xd6, 0xa6, 0x64, 0x8c, 0xa8, 0x5e, 0xf0, 0xe3, 0x0a, 0x1c, 0xf7, 0xdf, 0x97, 0x3d -.byte 0x4b, 0xae, 0xf6, 0x5d, 0xec, 0x21, 0xb5, 0x41, 0xab, 0xcd, 0xb9, 0x7e, 0x76, 0x9f, 0xbe, 0xf9 -.byte 0x3e, 0x36, 0x34, 0xa0, 0x3b, 0xc1, 0xf6, 0x31, 0x11, 0x45, 0x74, 0x93, 0x3d, 0x57, 0x80, 0xc5 -.byte 0xf9, 0x89, 0x99, 0xca, 0xe5, 0xab, 0x6a, 0xd4, 0xb5, 0xda, 0x41, 0x90, 0x10, 0xc1, 0xd6, 0xd6 -.byte 0x42, 0x89, 0xc2, 0xbf, 0xf4, 0x38, 0x12, 0x95, 0x4c, 0x54, 0x05, 0xf7, 0x36, 0xe4, 0x45, 0x83 -.byte 0x7b, 0x14, 0x65, 0xd6, 0xdc, 0x0c, 0x4d, 0xd1, 0xde, 0x7e, 0x0c, 0xab, 0x3b, 0xc4, 0x15, 0xbe -.byte 0x3a, 0x56, 0xa6, 0x5a, 0x6f, 0x76, 0x69, 0x52, 0xa9, 0x7a, 0xb9, 0xc8, 0xeb, 0x6a, 0x9a, 0x5d -.byte 0x52, 0xd0, 0x2d, 0x0a, 0x6b, 0x35, 0x16, 0x09, 0x10, 0x84, 0xd0, 0x6a, 0xca, 0x3a, 0x06, 0x00 -.byte 0x37, 0x47, 0xe4, 0x7e, 0x57, 0x4f, 0x3f, 0x8b, 0xeb, 0x67, 0xb8, 0x88, 0xaa, 0xc5, 0xbe, 0x53 -.byte 0x55, 0xb2, 0x91, 0xc4, 0x7d, 0xb9, 0xb0, 0x85, 0x19, 0x06, 0x78, 0x2e, 0xdb, 0x61, 0x1a, 0xfa -.byte 0x85, 0xf5, 0x4a, 0x91, 0xa1, 0xe7, 0x16, 0xd5, 0x8e, 0xa2, 0x39, 0xdf, 0x94, 0xb8, 0x70, 0x1f -.byte 0x28, 0x3f, 0x8b, 0xfc, 0x40, 0x5e, 0x63, 0x83, 0x3c, 0x83, 0x2a, 0x1a, 0x99, 0x6b, 0xcf, 0xde -.byte 0x59, 0x6a, 0x3b, 0xfc, 0x6f, 0x16, 0xd7, 0x1f, 0xfd, 0x4a, 0x10, 0xeb, 0x4e, 0x82, 0x16, 0x3a -.byte 0xac, 0x27, 0x0c, 0x53, 0xf1, 0xad, 0xd5, 0x24, 0xb0, 0x6b, 0x03, 0x50, 0xc1, 0x2d, 0x3c, 0x16 -.byte 0xdd, 0x44, 0x34, 0x27, 0x1a, 0x75, 0xfb, 0x02, 0x03, 0x01, 0x00, 0x01, 0x60, 0x00, 0x26, 0x02 -.byte 0x30, 0x5e, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x54, 0x57, 0x31 -.byte 0x23, 0x30, 0x21, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x1a, 0x43, 0x68, 0x75, 0x6e, 0x67, 0x68 -.byte 0x77, 0x61, 0x20, 0x54, 0x65, 0x6c, 0x65, 0x63, 0x6f, 0x6d, 0x20, 0x43, 0x6f, 0x2e, 0x2c, 0x20 -.byte 0x4c, 0x74, 0x64, 0x2e, 0x31, 0x2a, 0x30, 0x28, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x0c, 0x21, 0x65 -.byte 0x50, 0x4b, 0x49, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69 -.byte 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79 -.byte 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01 -.byte 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01 -.byte 0x00, 0xe1, 0x25, 0x0f, 0xee, 0x8d, 0xdb, 0x88, 0x33, 0x75, 0x67, 0xcd, 0xad, 0x1f, 0x7d, 0x3a -.byte 0x4e, 0x6d, 0x9d, 0xd3, 0x2f, 0x14, 0xf3, 0x63, 0x74, 0xcb, 0x01, 0x21, 0x6a, 0x37, 0xea, 0x84 -.byte 0x50, 0x07, 0x4b, 0x26, 0x5b, 0x09, 0x43, 0x6c, 0x21, 0x9e, 0x6a, 0xc8, 0xd5, 0x03, 0xf5, 0x60 -.byte 0x69, 0x8f, 0xcc, 0xf0, 0x22, 0xe4, 0x1f, 0xe7, 0xf7, 0x6a, 0x22, 0x31, 0xb7, 0x2c, 0x15, 0xf2 -.byte 0xe0, 0xfe, 0x00, 0x6a, 0x43, 0xff, 0x87, 0x65, 0xc6, 0xb5, 0x1a, 0xc1, 0xa7, 0x4c, 0x6d, 0x22 -.byte 0x70, 0x21, 0x8a, 0x31, 0xf2, 0x97, 0x74, 0x89, 0x09, 0x12, 0x26, 0x1c, 0x9e, 0xca, 0xd9, 0x12 -.byte 0xa2, 0x95, 0x3c, 0xda, 0xe9, 0x67, 0xbf, 0x08, 0xa0, 0x64, 0xe3, 0xd6, 0x42, 0xb7, 0x45, 0xef -.byte 0x97, 0xf4, 0xf6, 0xf5, 0xd7, 0xb5, 0x4a, 0x15, 0x02, 0x58, 0x7d, 0x98, 0x58, 0x4b, 0x60, 0xbc -.byte 0xcd, 0xd7, 0x0d, 0x9a, 0x13, 0x33, 0x53, 0xd1, 0x61, 0xf9, 0x7a, 0xd5, 0xd7, 0x78, 0xb3, 0x9a -.byte 0x33, 0xf7, 0x00, 0x86, 0xce, 0x1d, 0x4d, 0x94, 0x38, 0xaf, 0xa8, 0xec, 0x78, 0x51, 0x70, 0x8a -.byte 0x5c, 0x10, 0x83, 0x51, 0x21, 0xf7, 0x11, 0x3d, 0x34, 0x86, 0x5e, 0xe5, 0x48, 0xcd, 0x97, 0x81 -.byte 0x82, 0x35, 0x4c, 0x19, 0xec, 0x65, 0xf6, 0x6b, 0xc5, 0x05, 0xa1, 0xee, 0x47, 0x13, 0xd6, 0xb3 -.byte 0x21, 0x27, 0x94, 0x10, 0x0a, 0xd9, 0x24, 0x3b, 0xba, 0xbe, 0x44, 0x13, 0x46, 0x30, 0x3f, 0x97 -.byte 0x3c, 0xd8, 0xd7, 0xd7, 0x6a, 0xee, 0x3b, 0x38, 0xe3, 0x2b, 0xd4, 0x97, 0x0e, 0xb9, 0x1b, 0xe7 -.byte 0x07, 0x49, 0x7f, 0x37, 0x2a, 0xf9, 0x77, 0x78, 0xcf, 0x54, 0xed, 0x5b, 0x46, 0x9d, 0xa3, 0x80 -.byte 0x0e, 0x91, 0x43, 0xc1, 0xd6, 0x5b, 0x5f, 0x14, 0xba, 0x9f, 0xa6, 0x8d, 0x24, 0x47, 0x40, 0x59 -.byte 0xbf, 0x72, 0x38, 0xb2, 0x36, 0x6c, 0x37, 0xff, 0x99, 0xd1, 0x5d, 0x0e, 0x59, 0x0a, 0xab, 0x69 -.byte 0xf7, 0xc0, 0xb2, 0x04, 0x45, 0x7a, 0x54, 0x00, 0xae, 0xbe, 0x53, 0xf6, 0xb5, 0xe7, 0xe1, 0xf8 -.byte 0x3c, 0xa3, 0x31, 0xd2, 0xa9, 0xfe, 0x21, 0x52, 0x64, 0xc5, 0xa6, 0x67, 0xf0, 0x75, 0x07, 0x06 -.byte 0x94, 0x14, 0x81, 0x55, 0xc6, 0x27, 0xe4, 0x01, 0x8f, 0x17, 0xc1, 0x6a, 0x71, 0xd7, 0xbe, 0x4b -.byte 0xfb, 0x94, 0x58, 0x7d, 0x7e, 0x11, 0x33, 0xb1, 0x42, 0xf7, 0x62, 0x6c, 0x18, 0xd6, 0xcf, 0x09 -.byte 0x68, 0x3e, 0x7f, 0x6c, 0xf6, 0x1e, 0x8f, 0x62, 0xad, 0xa5, 0x63, 0xdb, 0x09, 0xa7, 0x1f, 0x22 -.byte 0x42, 0x41, 0x1e, 0x6f, 0x99, 0x8a, 0x3e, 0xd7, 0xf9, 0x3f, 0x40, 0x7a, 0x79, 0xb0, 0xa5, 0x01 -.byte 0x92, 0xd2, 0x9d, 0x3d, 0x08, 0x15, 0xa5, 0x10, 0x01, 0x2d, 0xb3, 0x32, 0x76, 0xa8, 0x95, 0x0d -.byte 0xb3, 0x7a, 0x9a, 0xfb, 0x07, 0x10, 0x78, 0x11, 0x6f, 0xe1, 0x8f, 0xc7, 0xba, 0x0f, 0x25, 0x1a -.byte 0x74, 0x2a, 0xe5, 0x1c, 0x98, 0x41, 0x99, 0xdf, 0x21, 0x87, 0xe8, 0x95, 0x06, 0x6a, 0x0a, 0xb3 -.byte 0x6a, 0x47, 0x76, 0x65, 0xf6, 0x3a, 0xcf, 0x8f, 0x62, 0x17, 0x19, 0x7b, 0x0a, 0x28, 0xcd, 0x1a -.byte 0xd2, 0x83, 0x1e, 0x21, 0xc7, 0x2c, 0xbf, 0xbe, 0xff, 0x61, 0x68, 0xb7, 0x67, 0x1b, 0xbb, 0x78 -.byte 0x4d, 0x8d, 0xce, 0x67, 0xe5, 0xe4, 0xc1, 0x8e, 0xb7, 0x23, 0x66, 0xe2, 0x9d, 0x90, 0x75, 0x34 -.byte 0x98, 0xa9, 0x36, 0x2b, 0x8a, 0x9a, 0x94, 0xb9, 0x9d, 0xec, 0xcc, 0x8a, 0xb1, 0xf8, 0x25, 0x89 -.byte 0x5c, 0x5a, 0xb6, 0x2f, 0x8c, 0x1f, 0x6d, 0x79, 0x24, 0xa7, 0x52, 0x68, 0xc3, 0x84, 0x35, 0xe2 -.byte 0x66, 0x8d, 0x63, 0x0e, 0x25, 0x4d, 0xd5, 0x19, 0xb2, 0xe6, 0x79, 0x37, 0xa7, 0x22, 0x9d, 0x54 -.byte 0x31, 0x02, 0x03, 0x01, 0x00, 0x01, 0x61, 0x00, 0x78, 0x00, 0x30, 0x5f, 0x31, 0x0b, 0x30, 0x09 -.byte 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x47, 0x42, 0x31, 0x18, 0x30, 0x16, 0x06, 0x03, 0x55 -.byte 0x04, 0x0a, 0x13, 0x0f, 0x53, 0x65, 0x63, 0x74, 0x69, 0x67, 0x6f, 0x20, 0x4c, 0x69, 0x6d, 0x69 -.byte 0x74, 0x65, 0x64, 0x31, 0x36, 0x30, 0x34, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x2d, 0x53, 0x65 -.byte 0x63, 0x74, 0x69, 0x67, 0x6f, 0x20, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x20, 0x53, 0x65, 0x72 -.byte 0x76, 0x65, 0x72, 0x20, 0x41, 0x75, 0x74, 0x68, 0x65, 0x6e, 0x74, 0x69, 0x63, 0x61, 0x74, 0x69 -.byte 0x6f, 0x6e, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x45, 0x34, 0x36, 0x30, 0x76, 0x30, 0x10, 0x06 -.byte 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03 -.byte 0x62, 0x00, 0x04, 0x76, 0xfa, 0x99, 0xa9, 0x6e, 0x20, 0xed, 0xf9, 0xd7, 0x77, 0xe3, 0x07, 0x3b -.byte 0xa8, 0xdb, 0x3d, 0x5f, 0x38, 0xe8, 0xab, 0x55, 0xa6, 0x56, 0x4f, 0xd6, 0x48, 0xea, 0xec, 0x7f -.byte 0x2d, 0xaa, 0xc3, 0xb2, 0xc5, 0x79, 0xec, 0x99, 0x61, 0x7f, 0x10, 0x79, 0xc7, 0x02, 0x5a, 0xf9 -.byte 0x04, 0x37, 0xf5, 0x34, 0x35, 0x2b, 0x77, 0xce, 0x7f, 0x20, 0x8f, 0x52, 0xa3, 0x00, 0x89, 0xec -.byte 0xd5, 0xa7, 0xa2, 0x6d, 0x5b, 0xe3, 0x4b, 0x92, 0x93, 0xa0, 0x80, 0xf5, 0x01, 0x94, 0xdc, 0xf0 -.byte 0x68, 0x07, 0x1e, 0xcd, 0xee, 0xfe, 0x25, 0x52, 0xb5, 0x20, 0x43, 0x1c, 0x1b, 0xfe, 0xeb, 0x19 -.byte 0xce, 0x43, 0xa3, 0x61, 0x00, 0x26, 0x02, 0x30, 0x5f, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55 -.byte 0x04, 0x06, 0x13, 0x02, 0x47, 0x42, 0x31, 0x18, 0x30, 0x16, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13 -.byte 0x0f, 0x53, 0x65, 0x63, 0x74, 0x69, 0x67, 0x6f, 0x20, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x64 -.byte 0x31, 0x36, 0x30, 0x34, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x2d, 0x53, 0x65, 0x63, 0x74, 0x69 -.byte 0x67, 0x6f, 0x20, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x20, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72 -.byte 0x20, 0x41, 0x75, 0x74, 0x68, 0x65, 0x6e, 0x74, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20 -.byte 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x52, 0x34, 0x36, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09 -.byte 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00 -.byte 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0x93, 0xbe, 0xd5, 0x36, 0x52, 0x75, 0xd8 -.byte 0x01, 0x23, 0xa0, 0x1c, 0x47, 0x42, 0x49, 0xee, 0x63, 0xb6, 0xb7, 0x21, 0xfd, 0xc4, 0x95, 0xd5 -.byte 0x48, 0x2b, 0x26, 0x7c, 0x14, 0x53, 0x10, 0xda, 0x79, 0xfd, 0x2b, 0xb7, 0x2d, 0xa4, 0xd4, 0x2c -.byte 0xfa, 0xea, 0x32, 0xdd, 0x49, 0xc2, 0xb9, 0xbd, 0x0f, 0x48, 0x3d, 0x7b, 0x5a, 0x98, 0x54, 0xaf -.byte 0x9e, 0x5d, 0x31, 0x74, 0x4f, 0x07, 0xfc, 0x50, 0x21, 0xdd, 0xa4, 0xcf, 0x68, 0x4f, 0x1b, 0x12 -.byte 0x63, 0x6d, 0x25, 0x99, 0x4c, 0x2a, 0x99, 0xf3, 0x48, 0x30, 0x61, 0xfa, 0x81, 0x7c, 0x1e, 0xa7 -.byte 0x08, 0x4a, 0xdc, 0x3e, 0x2b, 0x1c, 0x1f, 0x18, 0x4c, 0x71, 0xaa, 0x35, 0x8c, 0xad, 0xf8, 0x6e -.byte 0xe8, 0x3b, 0x4a, 0xd9, 0xe5, 0x94, 0x02, 0xd6, 0x89, 0x84, 0x13, 0xaa, 0x6d, 0xc8, 0x4f, 0x33 -.byte 0xcc, 0x50, 0x96, 0x37, 0x92, 0x33, 0xdc, 0x5f, 0x88, 0xe7, 0x9f, 0x54, 0xd9, 0x48, 0xf0, 0x98 -.byte 0x43, 0xd6, 0x66, 0xfd, 0x9f, 0x17, 0x38, 0x43, 0xc5, 0x01, 0x51, 0x0b, 0xd7, 0xe3, 0x23, 0x0f -.byte 0x14, 0x5d, 0x5b, 0x14, 0xe7, 0x4b, 0xbe, 0xdd, 0xf4, 0xc8, 0xda, 0x03, 0x37, 0xd1, 0xd6, 0x39 -.byte 0xa1, 0x21, 0x51, 0x30, 0x83, 0xb0, 0x6d, 0xd7, 0x30, 0x4e, 0x96, 0x5b, 0x91, 0xf0, 0x70, 0x24 -.byte 0xab, 0xbf, 0x45, 0x81, 0x64, 0x43, 0x0d, 0xbd, 0x21, 0x3a, 0x2f, 0x3c, 0xe9, 0x9e, 0x0d, 0xcb -.byte 0x20, 0xb5, 0x42, 0x27, 0xcc, 0xda, 0x6f, 0x9b, 0xee, 0x64, 0x30, 0x90, 0x39, 0xcd, 0x93, 0x65 -.byte 0x81, 0x21, 0x31, 0xb5, 0x23, 0x50, 0x33, 0x37, 0x22, 0xe3, 0x38, 0xed, 0xf8, 0x31, 0x30, 0xcc -.byte 0x45, 0xfe, 0x62, 0xf9, 0xd1, 0x5d, 0x32, 0x79, 0x42, 0x87, 0xdf, 0x6a, 0xcc, 0x56, 0x19, 0x40 -.byte 0x4d, 0xce, 0xaa, 0xbb, 0xf9, 0xb5, 0x76, 0x49, 0x94, 0xf1, 0x27, 0xf8, 0x91, 0xa5, 0x83, 0xe5 -.byte 0x06, 0xb3, 0x63, 0x0e, 0x80, 0xdc, 0xe0, 0x12, 0x55, 0x80, 0xa6, 0x3b, 0x66, 0xb4, 0x39, 0x87 -.byte 0x2d, 0xc8, 0xf0, 0xd0, 0xd1, 0x14, 0xe9, 0xe4, 0x0d, 0x4d, 0x0e, 0xf6, 0x5d, 0x57, 0x72, 0xc5 -.byte 0x3b, 0x1c, 0x47, 0x56, 0x9d, 0xe2, 0xd5, 0xfb, 0x81, 0x61, 0x8c, 0xcc, 0x4d, 0x80, 0x90, 0x34 -.byte 0x5b, 0xb7, 0xd7, 0x14, 0x75, 0xdc, 0xd8, 0x04, 0x48, 0x9f, 0xc0, 0xc1, 0x28, 0x88, 0xb4, 0xe9 -.byte 0x1c, 0xca, 0xa7, 0xb1, 0xf1, 0x56, 0xb7, 0x7b, 0x49, 0x4c, 0x59, 0xe5, 0x20, 0x15, 0xa8, 0x84 -.byte 0x02, 0x29, 0xfa, 0x38, 0x94, 0x69, 0x9a, 0x49, 0x06, 0x8f, 0xcd, 0x1f, 0x79, 0x14, 0x17, 0x12 -.byte 0x0c, 0x83, 0x7a, 0xde, 0x1f, 0xb1, 0x97, 0xee, 0xf9, 0x97, 0x78, 0x28, 0xa4, 0xc8, 0x44, 0x92 -.byte 0xe9, 0x7d, 0x26, 0x05, 0xa6, 0x58, 0x72, 0x9b, 0x79, 0x13, 0xd8, 0x11, 0x5f, 0xae, 0xc5, 0x38 -.byte 0x62, 0x34, 0x68, 0xb2, 0x86, 0x30, 0x8e, 0xf8, 0x90, 0x61, 0x9e, 0x32, 0x6c, 0xf5, 0x07, 0x36 -.byte 0xcd, 0xa2, 0x4c, 0x6e, 0xec, 0x8a, 0x36, 0xed, 0xf2, 0xe6, 0x99, 0x15, 0x44, 0x70, 0xc3, 0x7c -.byte 0xbc, 0x9c, 0x39, 0xc0, 0xb4, 0xe1, 0x6b, 0xf7, 0x83, 0x25, 0x23, 0x57, 0xd9, 0x12, 0x80, 0xe5 -.byte 0x49, 0xf0, 0x75, 0x0f, 0xef, 0x8d, 0xeb, 0x1c, 0x9b, 0x54, 0x28, 0xb4, 0x21, 0x3c, 0xfc, 0x7c -.byte 0x0a, 0xff, 0xef, 0x7b, 0x6b, 0x75, 0xff, 0x8b, 0x1d, 0xa0, 0x19, 0x05, 0xab, 0xfa, 0xf8, 0x2b -.byte 0x81, 0x42, 0xe8, 0x38, 0xba, 0xbb, 0xfb, 0xaa, 0xfd, 0x3d, 0xe0, 0xf3, 0xca, 0xdf, 0x4e, 0x97 -.byte 0x97, 0x29, 0xed, 0xf3, 0x18, 0x56, 0xe9, 0xa5, 0x96, 0xac, 0xbd, 0xc3, 0x90, 0x98, 0xb2, 0xe0 -.byte 0xf9, 0xa2, 0xd4, 0xa6, 0x47, 0x43, 0x7c, 0x6d, 0xcf, 0x02, 0x03, 0x01, 0x00, 0x01, 0x61, 0x00 -.byte 0x26, 0x01, 0x30, 0x5f, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x54 -.byte 0x57, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x09, 0x54, 0x41, 0x49, 0x57 -.byte 0x41, 0x4e, 0x2d, 0x43, 0x41, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x0c, 0x07 -.byte 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x31, 0x2a, 0x30, 0x28, 0x06, 0x03, 0x55, 0x04, 0x03 -.byte 0x0c, 0x21, 0x54, 0x57, 0x43, 0x41, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x65, 0x72, 0x74 -.byte 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72 -.byte 0x69, 0x74, 0x79, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7 -.byte 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02 -.byte 0x82, 0x01, 0x01, 0x00, 0xb0, 0x7e, 0x72, 0xb8, 0xa4, 0x03, 0x94, 0xe6, 0xa7, 0xde, 0x09, 0x38 -.byte 0x91, 0x4a, 0x11, 0x40, 0x87, 0xa7, 0x7c, 0x59, 0x64, 0x14, 0x7b, 0xb5, 0x11, 0x10, 0xdd, 0xfe -.byte 0xbf, 0xd5, 0xc0, 0xbb, 0x56, 0xe2, 0x85, 0x25, 0xf4, 0x35, 0x72, 0x0f, 0xf8, 0x53, 0xd0, 0x41 -.byte 0xe1, 0x44, 0x01, 0xc2, 0xb4, 0x1c, 0xc3, 0x31, 0x42, 0x16, 0x47, 0x85, 0x33, 0x22, 0x76, 0xb2 -.byte 0x0a, 0x6f, 0x0f, 0xe5, 0x25, 0x50, 0x4f, 0x85, 0x86, 0xbe, 0xbf, 0x98, 0x2e, 0x10, 0x67, 0x1e -.byte 0xbe, 0x11, 0x05, 0x86, 0x05, 0x90, 0xc4, 0x59, 0xd0, 0x7c, 0x78, 0x10, 0xb0, 0x80, 0x5c, 0xb7 -.byte 0xe1, 0xc7, 0x2b, 0x75, 0xcb, 0x7c, 0x9f, 0xae, 0xb5, 0xd1, 0x9d, 0x23, 0x37, 0x63, 0xa7, 0xdc -.byte 0x42, 0xa2, 0x2d, 0x92, 0x04, 0x1b, 0x50, 0xc1, 0x7b, 0xb8, 0x3e, 0x1b, 0xc9, 0x56, 0x04, 0x8b -.byte 0x2f, 0x52, 0x9b, 0xad, 0xa9, 0x56, 0xe9, 0xc1, 0xff, 0xad, 0xa9, 0x58, 0x87, 0x30, 0xb6, 0x81 -.byte 0xf7, 0x97, 0x45, 0xfc, 0x19, 0x57, 0x3b, 0x2b, 0x6f, 0xe4, 0x47, 0xf4, 0x99, 0x45, 0xfe, 0x1d -.byte 0xf1, 0xf8, 0x97, 0xa3, 0x88, 0x1d, 0x37, 0x1c, 0x5c, 0x8f, 0xe0, 0x76, 0x25, 0x9a, 0x50, 0xf8 -.byte 0xa0, 0x54, 0xff, 0x44, 0x90, 0x76, 0x23, 0xd2, 0x32, 0xc6, 0xc3, 0xab, 0x06, 0xbf, 0xfc, 0xfb -.byte 0xbf, 0xf3, 0xad, 0x7d, 0x92, 0x62, 0x02, 0x5b, 0x29, 0xd3, 0x35, 0xa3, 0x93, 0x9a, 0x43, 0x64 -.byte 0x60, 0x5d, 0xb2, 0xfa, 0x32, 0xff, 0x3b, 0x04, 0xaf, 0x4d, 0x40, 0x6a, 0xf9, 0xc7, 0xe3, 0xef -.byte 0x23, 0xfd, 0x6b, 0xcb, 0xe5, 0x0f, 0x8b, 0x38, 0x0d, 0xee, 0x0a, 0xfc, 0xfe, 0x0f, 0x98, 0x9f -.byte 0x30, 0x31, 0xdd, 0x6c, 0x52, 0x65, 0xf9, 0x8b, 0x81, 0xbe, 0x22, 0xe1, 0x1c, 0x58, 0x03, 0xba -.byte 0x91, 0x1b, 0x89, 0x07, 0x02, 0x03, 0x01, 0x00, 0x01, 0x63, 0x00, 0x78, 0x00, 0x30, 0x61, 0x31 -.byte 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x4a, 0x50, 0x31, 0x25, 0x30, 0x23 -.byte 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x1c, 0x53, 0x45, 0x43, 0x4f, 0x4d, 0x20, 0x54, 0x72, 0x75 -.byte 0x73, 0x74, 0x20, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x73, 0x20, 0x43, 0x4f, 0x2e, 0x2c, 0x4c -.byte 0x54, 0x44, 0x2e, 0x31, 0x2b, 0x30, 0x29, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x22, 0x53, 0x65 -.byte 0x63, 0x75, 0x72, 0x69, 0x74, 0x79, 0x20, 0x43, 0x6f, 0x6d, 0x6d, 0x75, 0x6e, 0x69, 0x63, 0x61 -.byte 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x45, 0x43, 0x43, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x43, 0x41, 0x31 -.byte 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b -.byte 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0xa4, 0xa5, 0x6f, 0x60, 0x03, 0x03, 0xc3, 0xbd -.byte 0x31, 0xf4, 0xd3, 0x17, 0x9c, 0x2b, 0x84, 0x75, 0xac, 0xe5, 0xfd, 0x3d, 0x57, 0x6e, 0xd7, 0x63 -.byte 0xbf, 0xe6, 0x04, 0x89, 0x92, 0x8e, 0x81, 0x9c, 0xe3, 0xe9, 0x47, 0x6e, 0xca, 0x90, 0x12, 0xc8 -.byte 0x13, 0xe0, 0xa7, 0x9d, 0xf7, 0x65, 0x74, 0x1f, 0x6c, 0x10, 0xb2, 0xe8, 0xe4, 0xe9, 0xef, 0x6d -.byte 0x85, 0x32, 0x99, 0x44, 0xb1, 0x5e, 0xfd, 0xcc, 0x76, 0x10, 0xd8, 0x5b, 0xbd, 0xa2, 0xc6, 0xf9 -.byte 0xd6, 0x42, 0xe4, 0x57, 0x76, 0xdc, 0x90, 0xc2, 0x35, 0xa9, 0x4b, 0x88, 0x3c, 0x12, 0x47, 0x6d -.byte 0x5c, 0xff, 0x49, 0x4f, 0x1a, 0x4a, 0x50, 0xb1, 0x63, 0x00, 0x26, 0x02, 0x30, 0x61, 0x31, 0x0b -.byte 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x54, 0x4e, 0x31, 0x37, 0x30, 0x35, 0x06 -.byte 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x2e, 0x41, 0x67, 0x65, 0x6e, 0x63, 0x65, 0x20, 0x4e, 0x61, 0x74 -.byte 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x65, 0x20, 0x64, 0x65, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66 -.byte 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x45, 0x6c, 0x65, 0x63, 0x74, 0x72, 0x6f, 0x6e -.byte 0x69, 0x71, 0x75, 0x65, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x10, 0x54 -.byte 0x75, 0x6e, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x30 -.byte 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01 -.byte 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00 -.byte 0xc3, 0xcd, 0xd3, 0xfc, 0xbd, 0x04, 0x53, 0xdd, 0x0c, 0x20, 0x3a, 0xd5, 0x88, 0x2e, 0x05, 0x4b -.byte 0x41, 0xf5, 0x83, 0x82, 0x7e, 0xf7, 0x59, 0x9f, 0x9e, 0x9e, 0x63, 0xe8, 0x73, 0xda, 0xf6, 0x06 -.byte 0xa9, 0x4f, 0x1f, 0xb4, 0xf9, 0x0b, 0x1f, 0x39, 0x8c, 0x9a, 0x20, 0xd0, 0x7e, 0x06, 0xd4, 0xec -.byte 0x34, 0xd9, 0x86, 0xbc, 0x75, 0x5b, 0x87, 0x88, 0xf0, 0xd2, 0xd9, 0xd4, 0xa3, 0x0a, 0xb2, 0x6c -.byte 0x1b, 0xeb, 0x49, 0x2c, 0x3e, 0xac, 0x5d, 0xd8, 0x94, 0x03, 0xa0, 0xec, 0x34, 0xe5, 0x30, 0xc4 -.byte 0x35, 0x7d, 0xfb, 0x26, 0x4d, 0x1b, 0x6e, 0x30, 0x54, 0xd8, 0xf5, 0x80, 0x45, 0x9c, 0x39, 0xad -.byte 0x9c, 0xc9, 0x25, 0x04, 0x4d, 0x9a, 0x90, 0x3e, 0x4e, 0x40, 0x6e, 0x8a, 0x6b, 0xcd, 0x29, 0x67 -.byte 0xc6, 0xcc, 0x2d, 0xe0, 0x74, 0xe8, 0x05, 0x57, 0x0a, 0x48, 0x50, 0xfa, 0x7a, 0x43, 0xda, 0x7e -.byte 0xec, 0x5b, 0x9a, 0x0e, 0x62, 0x76, 0xfe, 0xea, 0x9d, 0x1d, 0x85, 0x72, 0xec, 0x11, 0xbb, 0x35 -.byte 0xe8, 0x1f, 0x27, 0xbf, 0xc1, 0xa1, 0xc7, 0xbb, 0x48, 0x16, 0xdd, 0x56, 0xd7, 0xcc, 0x4e, 0xa0 -.byte 0xe1, 0xb9, 0xac, 0xdb, 0xd5, 0x83, 0x19, 0x1a, 0x85, 0xd1, 0x94, 0x97, 0xd7, 0xca, 0xa3, 0x65 -.byte 0x0b, 0xf3, 0x38, 0xf9, 0x02, 0xae, 0xdd, 0xf6, 0x67, 0xcf, 0xc9, 0x3f, 0xf5, 0x8a, 0x2c, 0x47 -.byte 0x1a, 0x99, 0x6f, 0x05, 0x0d, 0xfd, 0xd0, 0x1d, 0x82, 0x31, 0xfc, 0x29, 0xcc, 0x00, 0x58, 0x97 -.byte 0x91, 0x4c, 0x80, 0x00, 0x1c, 0x33, 0x85, 0x96, 0x2f, 0xcb, 0x41, 0xc2, 0x8b, 0x10, 0x84, 0xc3 -.byte 0x09, 0x24, 0x89, 0x1f, 0xb5, 0x0f, 0xd9, 0xd9, 0x77, 0x47, 0x18, 0x92, 0x94, 0x60, 0x5c, 0xc7 -.byte 0x99, 0x03, 0x3c, 0xfe, 0xf7, 0x95, 0xa7, 0x7d, 0x50, 0xa1, 0x80, 0xc2, 0xa9, 0x83, 0xad, 0x58 -.byte 0x96, 0x55, 0x21, 0xdb, 0x86, 0x59, 0xd4, 0xaf, 0xc6, 0xbc, 0xdd, 0x81, 0x6e, 0x07, 0xdb, 0x60 -.byte 0x62, 0xfe, 0xec, 0x10, 0x6e, 0xda, 0x68, 0x01, 0xf4, 0x83, 0x1b, 0xa9, 0x3e, 0xa2, 0x5b, 0x23 -.byte 0xd7, 0x64, 0xc6, 0xdf, 0xdc, 0xa2, 0x7d, 0xd8, 0x4b, 0xba, 0x82, 0xd2, 0x51, 0xf8, 0x66, 0xbf -.byte 0x06, 0x46, 0xe4, 0x79, 0x2a, 0x26, 0x36, 0x79, 0x8f, 0x1f, 0x4e, 0x99, 0x1d, 0xb2, 0x8f, 0x0c -.byte 0x0e, 0x1c, 0xff, 0xc9, 0x5d, 0xc0, 0xfd, 0x90, 0x10, 0xa6, 0xb1, 0x37, 0xf3, 0xcd, 0x3a, 0x24 -.byte 0x6e, 0xb4, 0x85, 0x90, 0xbf, 0x80, 0xb9, 0x0c, 0x8c, 0xd5, 0x9b, 0xd6, 0xc8, 0xf1, 0x56, 0x3f -.byte 0x1a, 0x80, 0x89, 0x7a, 0xa9, 0xe2, 0x1b, 0x32, 0x51, 0x2c, 0x3e, 0xf2, 0xdf, 0x7b, 0xf6, 0x5d -.byte 0x7a, 0x29, 0x19, 0x8e, 0xe5, 0xc8, 0xbd, 0x36, 0x71, 0x8b, 0x5d, 0x4c, 0xc2, 0x1d, 0x3f, 0xad -.byte 0x58, 0xa2, 0xcf, 0x3d, 0x70, 0x4d, 0xa6, 0x50, 0x98, 0x25, 0xdc, 0x23, 0xf9, 0xb8, 0x58, 0x41 -.byte 0x08, 0x71, 0xbf, 0x4f, 0xb8, 0x84, 0xa0, 0x8f, 0x00, 0x54, 0x15, 0xfc, 0x91, 0x6d, 0x58, 0xa7 -.byte 0x96, 0x3b, 0xeb, 0x4b, 0x96, 0x27, 0xcd, 0x6b, 0xa2, 0xa1, 0x86, 0xac, 0x0d, 0x7c, 0x54, 0xe6 -.byte 0x66, 0x4c, 0x66, 0x5f, 0x90, 0xbe, 0x21, 0x9a, 0x02, 0x46, 0x2d, 0xe4, 0x83, 0xc2, 0x80, 0xb9 -.byte 0xcf, 0x4b, 0x3e, 0xe8, 0x7f, 0x3c, 0x01, 0xec, 0x8f, 0x5e, 0xcd, 0x7f, 0xd2, 0x28, 0x42, 0x01 -.byte 0x95, 0x8a, 0xe2, 0x97, 0x3d, 0x10, 0x21, 0x7d, 0xf6, 0x9d, 0x1c, 0xc5, 0x34, 0xa1, 0xec, 0x2c -.byte 0x0e, 0x0a, 0x52, 0x2c, 0x12, 0x55, 0x70, 0x24, 0x3d, 0xcb, 0xc2, 0x14, 0x35, 0x43, 0x5d, 0x27 -.byte 0x4e, 0xbe, 0xc0, 0xbd, 0xaa, 0x7c, 0x96, 0xe7, 0xfc, 0x9e, 0x61, 0xad, 0x44, 0xd3, 0x00, 0x97 -.byte 0x02, 0x03, 0x01, 0x00, 0x01, 0x63, 0x00, 0x26, 0x01, 0x30, 0x61, 0x31, 0x0b, 0x30, 0x09, 0x06 -.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04 -.byte 0x0a, 0x13, 0x0c, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x49, 0x6e, 0x63, 0x31 -.byte 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x10, 0x77, 0x77, 0x77, 0x2e, 0x64, 0x69 -.byte 0x67, 0x69, 0x63, 0x65, 0x72, 0x74, 0x2e, 0x63, 0x6f, 0x6d, 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03 -.byte 0x55, 0x04, 0x03, 0x13, 0x17, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x47, 0x6c -.byte 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x30, 0x82, 0x01, 0x22 -.byte 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03 -.byte 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xe2, 0x3b, 0xe1 -.byte 0x11, 0x72, 0xde, 0xa8, 0xa4, 0xd3, 0xa3, 0x57, 0xaa, 0x50, 0xa2, 0x8f, 0x0b, 0x77, 0x90, 0xc9 -.byte 0xa2, 0xa5, 0xee, 0x12, 0xce, 0x96, 0x5b, 0x01, 0x09, 0x20, 0xcc, 0x01, 0x93, 0xa7, 0x4e, 0x30 -.byte 0xb7, 0x53, 0xf7, 0x43, 0xc4, 0x69, 0x00, 0x57, 0x9d, 0xe2, 0x8d, 0x22, 0xdd, 0x87, 0x06, 0x40 -.byte 0x00, 0x81, 0x09, 0xce, 0xce, 0x1b, 0x83, 0xbf, 0xdf, 0xcd, 0x3b, 0x71, 0x46, 0xe2, 0xd6, 0x66 -.byte 0xc7, 0x05, 0xb3, 0x76, 0x27, 0x16, 0x8f, 0x7b, 0x9e, 0x1e, 0x95, 0x7d, 0xee, 0xb7, 0x48, 0xa3 -.byte 0x08, 0xda, 0xd6, 0xaf, 0x7a, 0x0c, 0x39, 0x06, 0x65, 0x7f, 0x4a, 0x5d, 0x1f, 0xbc, 0x17, 0xf8 -.byte 0xab, 0xbe, 0xee, 0x28, 0xd7, 0x74, 0x7f, 0x7a, 0x78, 0x99, 0x59, 0x85, 0x68, 0x6e, 0x5c, 0x23 -.byte 0x32, 0x4b, 0xbf, 0x4e, 0xc0, 0xe8, 0x5a, 0x6d, 0xe3, 0x70, 0xbf, 0x77, 0x10, 0xbf, 0xfc, 0x01 -.byte 0xf6, 0x85, 0xd9, 0xa8, 0x44, 0x10, 0x58, 0x32, 0xa9, 0x75, 0x18, 0xd5, 0xd1, 0xa2, 0xbe, 0x47 -.byte 0xe2, 0x27, 0x6a, 0xf4, 0x9a, 0x33, 0xf8, 0x49, 0x08, 0x60, 0x8b, 0xd4, 0x5f, 0xb4, 0x3a, 0x84 -.byte 0xbf, 0xa1, 0xaa, 0x4a, 0x4c, 0x7d, 0x3e, 0xcf, 0x4f, 0x5f, 0x6c, 0x76, 0x5e, 0xa0, 0x4b, 0x37 -.byte 0x91, 0x9e, 0xdc, 0x22, 0xe6, 0x6d, 0xce, 0x14, 0x1a, 0x8e, 0x6a, 0xcb, 0xfe, 0xcd, 0xb3, 0x14 -.byte 0x64, 0x17, 0xc7, 0x5b, 0x29, 0x9e, 0x32, 0xbf, 0xf2, 0xee, 0xfa, 0xd3, 0x0b, 0x42, 0xd4, 0xab -.byte 0xb7, 0x41, 0x32, 0xda, 0x0c, 0xd4, 0xef, 0xf8, 0x81, 0xd5, 0xbb, 0x8d, 0x58, 0x3f, 0xb5, 0x1b -.byte 0xe8, 0x49, 0x28, 0xa2, 0x70, 0xda, 0x31, 0x04, 0xdd, 0xf7, 0xb2, 0x16, 0xf2, 0x4c, 0x0a, 0x4e -.byte 0x07, 0xa8, 0xed, 0x4a, 0x3d, 0x5e, 0xb5, 0x7f, 0xa3, 0x90, 0xc3, 0xaf, 0x27, 0x02, 0x03, 0x01 -.byte 0x00, 0x01, 0x63, 0x00, 0x26, 0x01, 0x30, 0x61, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04 -.byte 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0c -.byte 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x49, 0x6e, 0x63, 0x31, 0x19, 0x30, 0x17 -.byte 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x10, 0x77, 0x77, 0x77, 0x2e, 0x64, 0x69, 0x67, 0x69, 0x63 -.byte 0x65, 0x72, 0x74, 0x2e, 0x63, 0x6f, 0x6d, 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55, 0x04, 0x03 -.byte 0x13, 0x17, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61 -.byte 0x6c, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x47, 0x32, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06 -.byte 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f -.byte 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xbb, 0x37, 0xcd, 0x34, 0xdc, 0x7b -.byte 0x6b, 0xc9, 0xb2, 0x68, 0x90, 0xad, 0x4a, 0x75, 0xff, 0x46, 0xba, 0x21, 0x0a, 0x08, 0x8d, 0xf5 -.byte 0x19, 0x54, 0xc9, 0xfb, 0x88, 0xdb, 0xf3, 0xae, 0xf2, 0x3a, 0x89, 0x91, 0x3c, 0x7a, 0xe6, 0xab -.byte 0x06, 0x1a, 0x6b, 0xcf, 0xac, 0x2d, 0xe8, 0x5e, 0x09, 0x24, 0x44, 0xba, 0x62, 0x9a, 0x7e, 0xd6 -.byte 0xa3, 0xa8, 0x7e, 0xe0, 0x54, 0x75, 0x20, 0x05, 0xac, 0x50, 0xb7, 0x9c, 0x63, 0x1a, 0x6c, 0x30 -.byte 0xdc, 0xda, 0x1f, 0x19, 0xb1, 0xd7, 0x1e, 0xde, 0xfd, 0xd7, 0xe0, 0xcb, 0x94, 0x83, 0x37, 0xae -.byte 0xec, 0x1f, 0x43, 0x4e, 0xdd, 0x7b, 0x2c, 0xd2, 0xbd, 0x2e, 0xa5, 0x2f, 0xe4, 0xa9, 0xb8, 0xad -.byte 0x3a, 0xd4, 0x99, 0xa4, 0xb6, 0x25, 0xe9, 0x9b, 0x6b, 0x00, 0x60, 0x92, 0x60, 0xff, 0x4f, 0x21 -.byte 0x49, 0x18, 0xf7, 0x67, 0x90, 0xab, 0x61, 0x06, 0x9c, 0x8f, 0xf2, 0xba, 0xe9, 0xb4, 0xe9, 0x92 -.byte 0x32, 0x6b, 0xb5, 0xf3, 0x57, 0xe8, 0x5d, 0x1b, 0xcd, 0x8c, 0x1d, 0xab, 0x95, 0x04, 0x95, 0x49 -.byte 0xf3, 0x35, 0x2d, 0x96, 0xe3, 0x49, 0x6d, 0xdd, 0x77, 0xe3, 0xfb, 0x49, 0x4b, 0xb4, 0xac, 0x55 -.byte 0x07, 0xa9, 0x8f, 0x95, 0xb3, 0xb4, 0x23, 0xbb, 0x4c, 0x6d, 0x45, 0xf0, 0xf6, 0xa9, 0xb2, 0x95 -.byte 0x30, 0xb4, 0xfd, 0x4c, 0x55, 0x8c, 0x27, 0x4a, 0x57, 0x14, 0x7c, 0x82, 0x9d, 0xcd, 0x73, 0x92 -.byte 0xd3, 0x16, 0x4a, 0x06, 0x0c, 0x8c, 0x50, 0xd1, 0x8f, 0x1e, 0x09, 0xbe, 0x17, 0xa1, 0xe6, 0x21 -.byte 0xca, 0xfd, 0x83, 0xe5, 0x10, 0xbc, 0x83, 0xa5, 0x0a, 0xc4, 0x67, 0x28, 0xf6, 0x73, 0x14, 0x14 -.byte 0x3d, 0x46, 0x76, 0xc3, 0x87, 0x14, 0x89, 0x21, 0x34, 0x4d, 0xaf, 0x0f, 0x45, 0x0c, 0xa6, 0x49 -.byte 0xa1, 0xba, 0xbb, 0x9c, 0xc5, 0xb1, 0x33, 0x83, 0x29, 0x85, 0x02, 0x03, 0x01, 0x00, 0x01, 0x63 -.byte 0x00, 0x78, 0x00, 0x30, 0x61, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02 -.byte 0x55, 0x53, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0c, 0x44, 0x69, 0x67 -.byte 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x49, 0x6e, 0x63, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55 -.byte 0x04, 0x0b, 0x13, 0x10, 0x77, 0x77, 0x77, 0x2e, 0x64, 0x69, 0x67, 0x69, 0x63, 0x65, 0x72, 0x74 -.byte 0x2e, 0x63, 0x6f, 0x6d, 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x17, 0x44 -.byte 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x52 -.byte 0x6f, 0x6f, 0x74, 0x20, 0x47, 0x33, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce -.byte 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0xdd, 0xa7 -.byte 0xd9, 0xbb, 0x8a, 0xb8, 0x0b, 0xfb, 0x0b, 0x7f, 0x21, 0xd2, 0xf0, 0xbe, 0xbe, 0x73, 0xf3, 0x33 -.byte 0x5d, 0x1a, 0xbc, 0x34, 0xea, 0xde, 0xc6, 0x9b, 0xbc, 0xd0, 0x95, 0xf6, 0xf0, 0xcc, 0xd0, 0x0b -.byte 0xba, 0x61, 0x5b, 0x51, 0x46, 0x7e, 0x9e, 0x2d, 0x9f, 0xee, 0x8e, 0x63, 0x0c, 0x17, 0xec, 0x07 -.byte 0x70, 0xf5, 0xcf, 0x84, 0x2e, 0x40, 0x83, 0x9c, 0xe8, 0x3f, 0x41, 0x6d, 0x3b, 0xad, 0xd3, 0xa4 -.byte 0x14, 0x59, 0x36, 0x78, 0x9d, 0x03, 0x43, 0xee, 0x10, 0x13, 0x6c, 0x72, 0xde, 0xae, 0x88, 0xa7 -.byte 0xa1, 0x6b, 0xb5, 0x43, 0xce, 0x67, 0xdc, 0x23, 0xff, 0x03, 0x1c, 0xa3, 0xe2, 0x3e, 0x64, 0x00 -.byte 0x26, 0x02, 0x30, 0x62, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x43 -.byte 0x4e, 0x31, 0x32, 0x30, 0x30, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x29, 0x47, 0x55, 0x41, 0x4e -.byte 0x47, 0x20, 0x44, 0x4f, 0x4e, 0x47, 0x20, 0x43, 0x45, 0x52, 0x54, 0x49, 0x46, 0x49, 0x43, 0x41 -.byte 0x54, 0x45, 0x20, 0x41, 0x55, 0x54, 0x48, 0x4f, 0x52, 0x49, 0x54, 0x59, 0x20, 0x43, 0x4f, 0x2e -.byte 0x2c, 0x4c, 0x54, 0x44, 0x2e, 0x31, 0x1f, 0x30, 0x1d, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x16 -.byte 0x47, 0x44, 0x43, 0x41, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x41, 0x55, 0x54, 0x48, 0x20, 0x52 -.byte 0x35, 0x20, 0x52, 0x4f, 0x4f, 0x54, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86 -.byte 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82 -.byte 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xd9, 0xa3, 0x16, 0xf0, 0xc8, 0x74, 0x74, 0x77, 0x9b -.byte 0xef, 0x33, 0x0d, 0x3b, 0x06, 0x7e, 0x55, 0xfc, 0xb5, 0x60, 0x8f, 0x76, 0x86, 0x12, 0x42, 0x7d -.byte 0x56, 0x66, 0x3e, 0x88, 0x82, 0xed, 0x72, 0x63, 0x0e, 0x9e, 0x8b, 0xdd, 0x34, 0x2c, 0x02, 0x51 -.byte 0x51, 0xc3, 0x19, 0xfd, 0x59, 0x54, 0x84, 0xc9, 0xf1, 0x6b, 0xb3, 0x4c, 0xb0, 0xe9, 0xe8, 0x46 -.byte 0x5d, 0x38, 0xc6, 0xa2, 0xa7, 0x2e, 0x11, 0x57, 0xba, 0x82, 0x15, 0xa2, 0x9c, 0x8f, 0x6d, 0xb0 -.byte 0x99, 0x4a, 0x0a, 0xf2, 0xeb, 0x89, 0x70, 0x63, 0x4e, 0x79, 0xc4, 0xb7, 0x5b, 0xbd, 0xa2, 0x5d -.byte 0xb1, 0xf2, 0x41, 0x02, 0x2b, 0xad, 0xa9, 0x3a, 0xa3, 0xec, 0x79, 0x0a, 0xec, 0x5f, 0x3a, 0xe3 -.byte 0xfd, 0xef, 0x80, 0x3c, 0xad, 0x34, 0x9b, 0x1a, 0xab, 0x88, 0x26, 0x7b, 0x56, 0xa2, 0x82, 0x86 -.byte 0x1f, 0xeb, 0x35, 0x89, 0x83, 0x7f, 0x5f, 0xae, 0x29, 0x4e, 0x3d, 0xb6, 0x6e, 0xec, 0xae, 0xc1 -.byte 0xf0, 0x27, 0x9b, 0xae, 0xe3, 0xf4, 0xec, 0xef, 0xae, 0x7f, 0xf7, 0x86, 0x3d, 0x72, 0x7a, 0xeb -.byte 0xa5, 0xfb, 0x59, 0x4e, 0xa7, 0xeb, 0x95, 0x8c, 0x22, 0x39, 0x79, 0xe1, 0x2d, 0x08, 0x8f, 0xcc -.byte 0xbc, 0x91, 0xb8, 0x41, 0xf7, 0x14, 0xc1, 0x23, 0xa9, 0xc3, 0xad, 0x9a, 0x45, 0x44, 0xb3, 0xb2 -.byte 0xd7, 0x2c, 0xcd, 0xc6, 0x29, 0xe2, 0x50, 0x10, 0xae, 0x5c, 0xcb, 0x82, 0x8e, 0x17, 0x18, 0x36 -.byte 0x7d, 0x97, 0xe6, 0x88, 0x9a, 0xb0, 0x4d, 0x34, 0x09, 0xf4, 0x2c, 0xb9, 0x5a, 0x66, 0x2a, 0xb0 -.byte 0x17, 0x9b, 0x9e, 0x1e, 0x76, 0x9d, 0x4a, 0x66, 0x31, 0x41, 0xdf, 0x3f, 0xfb, 0xc5, 0x06, 0xef -.byte 0x1b, 0xb6, 0x7e, 0x1a, 0x46, 0x36, 0xf7, 0x64, 0x63, 0x3b, 0xe3, 0x39, 0x18, 0x23, 0xe7, 0x67 -.byte 0x75, 0x14, 0xd5, 0x75, 0x57, 0x92, 0x37, 0xbd, 0xbe, 0x6a, 0x1b, 0x26, 0x50, 0xf2, 0x36, 0x26 -.byte 0x06, 0x90, 0xc5, 0x70, 0x01, 0x64, 0x6d, 0x76, 0x66, 0xe1, 0x91, 0xdb, 0x6e, 0x07, 0xc0, 0x61 -.byte 0x80, 0x2e, 0xb2, 0x2e, 0x2f, 0x8c, 0x70, 0xa7, 0xd1, 0x3b, 0x3c, 0xb3, 0x91, 0xe4, 0x6e, 0xb6 -.byte 0xc4, 0x3b, 0x70, 0xf2, 0x6c, 0x92, 0x97, 0x09, 0xcd, 0x47, 0x7d, 0x18, 0xc0, 0xf3, 0xbb, 0x9e -.byte 0x0f, 0xd6, 0x8b, 0xae, 0x07, 0xb6, 0x5a, 0x0f, 0xce, 0x0b, 0x0c, 0x47, 0xa7, 0xe5, 0x3e, 0xb8 -.byte 0xbd, 0x7d, 0xc7, 0x9b, 0x35, 0xa0, 0x61, 0x97, 0x3a, 0x41, 0x75, 0x17, 0xcc, 0x2b, 0x96, 0x77 -.byte 0x2a, 0x92, 0x21, 0x1e, 0xd9, 0x95, 0x76, 0x20, 0x67, 0x68, 0xcf, 0x0d, 0xbd, 0xdf, 0xd6, 0x1f -.byte 0x09, 0x6a, 0x9a, 0xe2, 0xcc, 0x73, 0x71, 0xa4, 0x2f, 0x7d, 0x12, 0x80, 0xb7, 0x53, 0x30, 0x46 -.byte 0x5e, 0x4b, 0x54, 0x99, 0x0f, 0x67, 0xc9, 0xa5, 0xc8, 0xf2, 0x20, 0xc1, 0x82, 0xec, 0x9d, 0x11 -.byte 0xdf, 0xc2, 0x02, 0xfb, 0x1a, 0x3b, 0xd1, 0xed, 0x20, 0x9a, 0xef, 0x65, 0x64, 0x92, 0x10, 0x0d -.byte 0x2a, 0xe2, 0xde, 0x70, 0xf1, 0x18, 0x67, 0x82, 0x8c, 0x61, 0xde, 0xb8, 0xbc, 0xd1, 0x2f, 0x9c -.byte 0xfb, 0x0f, 0xd0, 0x2b, 0xed, 0x1b, 0x76, 0xb9, 0xe4, 0x39, 0x55, 0xf8, 0xf8, 0xa1, 0x1d, 0xb8 -.byte 0xaa, 0x80, 0x00, 0x4c, 0x82, 0xe7, 0xb2, 0x7f, 0x09, 0xb8, 0xbc, 0x30, 0xa0, 0x2f, 0x0d, 0xf5 -.byte 0x52, 0x9e, 0x8e, 0xf7, 0x92, 0xb3, 0x0a, 0x00, 0x1d, 0x00, 0x54, 0x97, 0x06, 0xe0, 0xb1, 0x07 -.byte 0xd9, 0xc7, 0x0f, 0x5c, 0x65, 0x7d, 0x3c, 0x6d, 0x59, 0x57, 0xe4, 0xed, 0xa5, 0x8d, 0xe9, 0x40 -.byte 0x53, 0x9f, 0x15, 0x4b, 0xa0, 0x71, 0xf6, 0x1a, 0x21, 0xe3, 0xda, 0x70, 0x06, 0x21, 0x58, 0x14 -.byte 0x87, 0x85, 0x77, 0x79, 0xaa, 0x82, 0x79, 0x02, 0x03, 0x01, 0x00, 0x01, 0x64, 0x00, 0x26, 0x02 -.byte 0x30, 0x62, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31 -.byte 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0c, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65 -.byte 0x72, 0x74, 0x20, 0x49, 0x6e, 0x63, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13 -.byte 0x10, 0x77, 0x77, 0x77, 0x2e, 0x64, 0x69, 0x67, 0x69, 0x63, 0x65, 0x72, 0x74, 0x2e, 0x63, 0x6f -.byte 0x6d, 0x31, 0x21, 0x30, 0x1f, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x18, 0x44, 0x69, 0x67, 0x69 -.byte 0x43, 0x65, 0x72, 0x74, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x65, 0x64, 0x20, 0x52, 0x6f, 0x6f -.byte 0x74, 0x20, 0x47, 0x34, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86 -.byte 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a -.byte 0x02, 0x82, 0x02, 0x01, 0x00, 0xbf, 0xe6, 0x90, 0x73, 0x68, 0xde, 0xbb, 0xe4, 0x5d, 0x4a, 0x3c -.byte 0x30, 0x22, 0x30, 0x69, 0x33, 0xec, 0xc2, 0xa7, 0x25, 0x2e, 0xc9, 0x21, 0x3d, 0xf2, 0x8a, 0xd8 -.byte 0x59, 0xc2, 0xe1, 0x29, 0xa7, 0x3d, 0x58, 0xab, 0x76, 0x9a, 0xcd, 0xae, 0x7b, 0x1b, 0x84, 0x0d -.byte 0xc4, 0x30, 0x1f, 0xf3, 0x1b, 0xa4, 0x38, 0x16, 0xeb, 0x56, 0xc6, 0x97, 0x6d, 0x1d, 0xab, 0xb2 -.byte 0x79, 0xf2, 0xca, 0x11, 0xd2, 0xe4, 0x5f, 0xd6, 0x05, 0x3c, 0x52, 0x0f, 0x52, 0x1f, 0xc6, 0x9e -.byte 0x15, 0xa5, 0x7e, 0xbe, 0x9f, 0xa9, 0x57, 0x16, 0x59, 0x55, 0x72, 0xaf, 0x68, 0x93, 0x70, 0xc2 -.byte 0xb2, 0xba, 0x75, 0x99, 0x6a, 0x73, 0x32, 0x94, 0xd1, 0x10, 0x44, 0x10, 0x2e, 0xdf, 0x82, 0xf3 -.byte 0x07, 0x84, 0xe6, 0x74, 0x3b, 0x6d, 0x71, 0xe2, 0x2d, 0x0c, 0x1b, 0xee, 0x20, 0xd5, 0xc9, 0x20 -.byte 0x1d, 0x63, 0x29, 0x2d, 0xce, 0xec, 0x5e, 0x4e, 0xc8, 0x93, 0xf8, 0x21, 0x61, 0x9b, 0x34, 0xeb -.byte 0x05, 0xc6, 0x5e, 0xec, 0x5b, 0x1a, 0xbc, 0xeb, 0xc9, 0xcf, 0xcd, 0xac, 0x34, 0x40, 0x5f, 0xb1 -.byte 0x7a, 0x66, 0xee, 0x77, 0xc8, 0x48, 0xa8, 0x66, 0x57, 0x57, 0x9f, 0x54, 0x58, 0x8e, 0x0c, 0x2b -.byte 0xb7, 0x4f, 0xa7, 0x30, 0xd9, 0x56, 0xee, 0xca, 0x7b, 0x5d, 0xe3, 0xad, 0xc9, 0x4f, 0x5e, 0xe5 -.byte 0x35, 0xe7, 0x31, 0xcb, 0xda, 0x93, 0x5e, 0xdc, 0x8e, 0x8f, 0x80, 0xda, 0xb6, 0x91, 0x98, 0x40 -.byte 0x90, 0x79, 0xc3, 0x78, 0xc7, 0xb6, 0xb1, 0xc4, 0xb5, 0x6a, 0x18, 0x38, 0x03, 0x10, 0x8d, 0xd8 -.byte 0xd4, 0x37, 0xa4, 0x2e, 0x05, 0x7d, 0x88, 0xf5, 0x82, 0x3e, 0x10, 0x91, 0x70, 0xab, 0x55, 0x82 -.byte 0x41, 0x32, 0xd7, 0xdb, 0x04, 0x73, 0x2a, 0x6e, 0x91, 0x01, 0x7c, 0x21, 0x4c, 0xd4, 0xbc, 0xae -.byte 0x1b, 0x03, 0x75, 0x5d, 0x78, 0x66, 0xd9, 0x3a, 0x31, 0x44, 0x9a, 0x33, 0x40, 0xbf, 0x08, 0xd7 -.byte 0x5a, 0x49, 0xa4, 0xc2, 0xe6, 0xa9, 0xa0, 0x67, 0xdd, 0xa4, 0x27, 0xbc, 0xa1, 0x4f, 0x39, 0xb5 -.byte 0x11, 0x58, 0x17, 0xf7, 0x24, 0x5c, 0x46, 0x8f, 0x64, 0xf7, 0xc1, 0x69, 0x88, 0x76, 0x98, 0x76 -.byte 0x3d, 0x59, 0x5d, 0x42, 0x76, 0x87, 0x89, 0x97, 0x69, 0x7a, 0x48, 0xf0, 0xe0, 0xa2, 0x12, 0x1b -.byte 0x66, 0x9a, 0x74, 0xca, 0xde, 0x4b, 0x1e, 0xe7, 0x0e, 0x63, 0xae, 0xe6, 0xd4, 0xef, 0x92, 0x92 -.byte 0x3a, 0x9e, 0x3d, 0xdc, 0x00, 0xe4, 0x45, 0x25, 0x89, 0xb6, 0x9a, 0x44, 0x19, 0x2b, 0x7e, 0xc0 -.byte 0x94, 0xb4, 0xd2, 0x61, 0x6d, 0xeb, 0x33, 0xd9, 0xc5, 0xdf, 0x4b, 0x04, 0x00, 0xcc, 0x7d, 0x1c -.byte 0x95, 0xc3, 0x8f, 0xf7, 0x21, 0xb2, 0xb2, 0x11, 0xb7, 0xbb, 0x7f, 0xf2, 0xd5, 0x8c, 0x70, 0x2c -.byte 0x41, 0x60, 0xaa, 0xb1, 0x63, 0x18, 0x44, 0x95, 0x1a, 0x76, 0x62, 0x7e, 0xf6, 0x80, 0xb0, 0xfb -.byte 0xe8, 0x64, 0xa6, 0x33, 0xd1, 0x89, 0x07, 0xe1, 0xbd, 0xb7, 0xe6, 0x43, 0xa4, 0x18, 0xb8, 0xa6 -.byte 0x77, 0x01, 0xe1, 0x0f, 0x94, 0x0c, 0x21, 0x1d, 0xb2, 0x54, 0x29, 0x25, 0x89, 0x6c, 0xe5, 0x0e -.byte 0x52, 0x51, 0x47, 0x74, 0xbe, 0x26, 0xac, 0xb6, 0x41, 0x75, 0xde, 0x7a, 0xac, 0x5f, 0x8d, 0x3f -.byte 0xc9, 0xbc, 0xd3, 0x41, 0x11, 0x12, 0x5b, 0xe5, 0x10, 0x50, 0xeb, 0x31, 0xc5, 0xca, 0x72, 0x16 -.byte 0x22, 0x09, 0xdf, 0x7c, 0x4c, 0x75, 0x3f, 0x63, 0xec, 0x21, 0x5f, 0xc4, 0x20, 0x51, 0x6b, 0x6f -.byte 0xb1, 0xab, 0x86, 0x8b, 0x4f, 0xc2, 0xd6, 0x45, 0x5f, 0x9d, 0x20, 0xfc, 0xa1, 0x1e, 0xc5, 0xc0 -.byte 0x8f, 0xa2, 0xb1, 0x7e, 0x0a, 0x26, 0x99, 0xf5, 0xe4, 0x69, 0x2f, 0x98, 0x1d, 0x2d, 0xf5, 0xd9 -.byte 0xa9, 0xb2, 0x1d, 0xe5, 0x1b, 0x02, 0x03, 0x01, 0x00, 0x01, 0x65, 0x00, 0x78, 0x00, 0x30, 0x63 -.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x44, 0x45, 0x31, 0x27, 0x30 -.byte 0x25, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x1e, 0x44, 0x65, 0x75, 0x74, 0x73, 0x63, 0x68, 0x65 -.byte 0x20, 0x54, 0x65, 0x6c, 0x65, 0x6b, 0x6f, 0x6d, 0x20, 0x53, 0x65, 0x63, 0x75, 0x72, 0x69, 0x74 -.byte 0x79, 0x20, 0x47, 0x6d, 0x62, 0x48, 0x31, 0x2b, 0x30, 0x29, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c -.byte 0x22, 0x54, 0x65, 0x6c, 0x65, 0x6b, 0x6f, 0x6d, 0x20, 0x53, 0x65, 0x63, 0x75, 0x72, 0x69, 0x74 -.byte 0x79, 0x20, 0x54, 0x4c, 0x53, 0x20, 0x45, 0x43, 0x43, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x32 -.byte 0x30, 0x32, 0x30, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01 -.byte 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0xce, 0xbf, 0xfe, 0x57, 0xa8 -.byte 0xbf, 0xd5, 0xaa, 0xf7, 0x10, 0x9a, 0xcd, 0xbc, 0xd1, 0x11, 0xa2, 0xbd, 0x67, 0x42, 0xcc, 0x90 -.byte 0xeb, 0x15, 0x18, 0x90, 0xd9, 0xa2, 0xcd, 0x0c, 0x2a, 0x25, 0xeb, 0x3e, 0x4f, 0xce, 0xb5, 0xd2 -.byte 0x8f, 0x0f, 0xf3, 0x35, 0xda, 0x43, 0x8b, 0x02, 0x80, 0xbe, 0x6f, 0x51, 0x24, 0x1d, 0x0f, 0x6b -.byte 0x2b, 0xca, 0x9f, 0xc2, 0x6f, 0x50, 0x32, 0xe5, 0x37, 0x20, 0xb6, 0x20, 0xff, 0x88, 0x0d, 0x0f -.byte 0x6d, 0x49, 0xbb, 0xdb, 0x06, 0xa4, 0x87, 0x90, 0x92, 0x94, 0xf4, 0x09, 0xd0, 0xcf, 0x7f, 0xc8 -.byte 0x80, 0x0b, 0xc1, 0x97, 0xb3, 0xbb, 0x35, 0x27, 0xc9, 0xc2, 0x1b, 0x65, 0x00, 0x26, 0x02, 0x30 -.byte 0x63, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x44, 0x45, 0x31, 0x27 -.byte 0x30, 0x25, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x1e, 0x44, 0x65, 0x75, 0x74, 0x73, 0x63, 0x68 -.byte 0x65, 0x20, 0x54, 0x65, 0x6c, 0x65, 0x6b, 0x6f, 0x6d, 0x20, 0x53, 0x65, 0x63, 0x75, 0x72, 0x69 -.byte 0x74, 0x79, 0x20, 0x47, 0x6d, 0x62, 0x48, 0x31, 0x2b, 0x30, 0x29, 0x06, 0x03, 0x55, 0x04, 0x03 -.byte 0x0c, 0x22, 0x54, 0x65, 0x6c, 0x65, 0x6b, 0x6f, 0x6d, 0x20, 0x53, 0x65, 0x63, 0x75, 0x72, 0x69 -.byte 0x74, 0x79, 0x20, 0x54, 0x4c, 0x53, 0x20, 0x52, 0x53, 0x41, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20 -.byte 0x32, 0x30, 0x32, 0x33, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86 -.byte 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a -.byte 0x02, 0x82, 0x02, 0x01, 0x00, 0xed, 0x35, 0xa1, 0x81, 0x80, 0xf3, 0xcb, 0x4a, 0x69, 0x5b, 0xc2 -.byte 0xfb, 0x51, 0x83, 0xae, 0x26, 0xfd, 0xe1, 0x6e, 0xf3, 0x81, 0x12, 0x7d, 0x71, 0x40, 0xff, 0x87 -.byte 0x75, 0x42, 0x29, 0x21, 0xed, 0x81, 0x52, 0x2c, 0xdf, 0x12, 0xc1, 0x19, 0x84, 0x89, 0xc1, 0xbd -.byte 0xc5, 0x28, 0xd5, 0xd5, 0x4b, 0x6c, 0x44, 0xd6, 0x4c, 0xdb, 0x07, 0x96, 0x4a, 0x55, 0x7a, 0xca -.byte 0x36, 0x82, 0x04, 0x36, 0xa8, 0xa5, 0xfc, 0x27, 0xf6, 0x49, 0xf1, 0xd5, 0x72, 0x9e, 0x91, 0xf9 -.byte 0x23, 0xd6, 0x70, 0x7b, 0xbb, 0xf5, 0x9b, 0xc1, 0xec, 0x93, 0xcf, 0x19, 0xea, 0x65, 0x7e, 0x88 -.byte 0x70, 0xa0, 0x73, 0xfc, 0xf6, 0xff, 0xb5, 0x56, 0x62, 0xe1, 0x73, 0x6a, 0x34, 0x98, 0x3e, 0x82 -.byte 0xb8, 0xac, 0x95, 0x53, 0xf4, 0x01, 0xa0, 0x27, 0x07, 0x72, 0xa3, 0x00, 0x53, 0xa0, 0xe4, 0xb2 -.byte 0xab, 0x83, 0x38, 0x57, 0x33, 0x25, 0x94, 0x9f, 0xbe, 0x48, 0x1d, 0x98, 0xe1, 0xa3, 0xba, 0x9e -.byte 0x5c, 0xcd, 0x04, 0x71, 0x51, 0x7d, 0x75, 0x78, 0xab, 0xf3, 0x59, 0xaa, 0xc4, 0xe0, 0x60, 0xbe -.byte 0x8f, 0x83, 0x52, 0xb8, 0x75, 0x1a, 0x41, 0x35, 0xed, 0xbc, 0xf3, 0x3a, 0x63, 0xe9, 0xa9, 0x14 -.byte 0x45, 0xd7, 0xe6, 0x52, 0xd1, 0x6e, 0xd2, 0xde, 0xbc, 0xe3, 0xf5, 0x0b, 0x3b, 0xe6, 0xe0, 0xc4 -.byte 0xbd, 0x43, 0x64, 0x13, 0xa6, 0xce, 0xf4, 0x98, 0x37, 0x6c, 0x8a, 0x95, 0xa8, 0x97, 0xc8, 0x47 -.byte 0x0f, 0xf0, 0x5e, 0x10, 0x8b, 0xe7, 0x1d, 0x1c, 0xfe, 0xb1, 0x3b, 0xa0, 0x05, 0x33, 0x68, 0x05 -.byte 0x41, 0x82, 0xc1, 0x03, 0x2b, 0x01, 0xc8, 0xe7, 0x8f, 0x4d, 0xab, 0xe8, 0xb5, 0xf6, 0xcd, 0x6b -.byte 0x44, 0xb5, 0xe7, 0xdd, 0x8b, 0xec, 0xea, 0x25, 0xb4, 0x00, 0x22, 0x57, 0x4d, 0xb0, 0xb1, 0xb2 -.byte 0x31, 0xc1, 0x16, 0xce, 0xff, 0xfd, 0x14, 0x84, 0xb7, 0x47, 0xfa, 0xb2, 0xf1, 0x70, 0xde, 0xdb -.byte 0x8b, 0x6c, 0x36, 0x58, 0xa4, 0x7c, 0xb3, 0x11, 0xd1, 0xc3, 0x77, 0x7f, 0x5f, 0xb6, 0x25, 0xe0 -.byte 0x0d, 0xc5, 0xd2, 0xb3, 0xf9, 0xb8, 0xb8, 0x77, 0xdb, 0x37, 0x71, 0x71, 0x47, 0xe3, 0x60, 0x18 -.byte 0x4f, 0x24, 0xb6, 0x75, 0x37, 0x78, 0xb9, 0xa3, 0x62, 0xaf, 0xbd, 0xc9, 0x72, 0x8e, 0x2f, 0xcc -.byte 0xbb, 0xae, 0xdb, 0xe4, 0x15, 0x52, 0x19, 0x07, 0x33, 0xfb, 0x6a, 0xb7, 0x2d, 0x4b, 0x90, 0x28 -.byte 0x82, 0x73, 0xfe, 0x18, 0x8b, 0x35, 0x8d, 0xdb, 0xa7, 0x04, 0x6a, 0xbe, 0xea, 0xc1, 0x4d, 0x36 -.byte 0x3b, 0x16, 0x36, 0x91, 0x32, 0xef, 0xb6, 0x40, 0x89, 0x91, 0x43, 0xe0, 0xf2, 0xa2, 0xab, 0x04 -.byte 0x2e, 0xe6, 0xf2, 0x4c, 0x0e, 0x16, 0x34, 0x20, 0xac, 0x87, 0xc1, 0x2d, 0x7e, 0xc9, 0x66, 0x47 -.byte 0x17, 0x14, 0x11, 0xa4, 0xf3, 0xf7, 0xa1, 0x24, 0x89, 0xab, 0xd8, 0x1a, 0xc8, 0xa1, 0x5c, 0xb1 -.byte 0xa3, 0xf7, 0x8c, 0x6d, 0xc8, 0x01, 0xc9, 0x4f, 0xc9, 0xec, 0xc4, 0xfc, 0xac, 0x51, 0x33, 0xd1 -.byte 0xc8, 0x83, 0xd1, 0xc9, 0x9f, 0x1d, 0xd4, 0x47, 0x34, 0x29, 0x3e, 0xcb, 0xb0, 0x0e, 0xfa, 0x83 -.byte 0x0b, 0x28, 0x58, 0xe5, 0x29, 0xdc, 0x3f, 0x7c, 0xa8, 0x9f, 0xc9, 0xb6, 0x0a, 0xbb, 0xa6, 0xe8 -.byte 0x46, 0x16, 0x0f, 0x96, 0xe5, 0x7b, 0xe4, 0x6a, 0x7a, 0x48, 0x6d, 0x76, 0x98, 0x05, 0xa5, 0xdc -.byte 0x6d, 0x1e, 0x42, 0x1e, 0x42, 0xda, 0x1a, 0xe0, 0x52, 0xf7, 0xb5, 0x83, 0xc0, 0x1a, 0x7b, 0x78 -.byte 0x35, 0x2c, 0x38, 0xf5, 0x1f, 0xfd, 0x49, 0xa3, 0x2e, 0xd2, 0x59, 0x63, 0xbf, 0x80, 0xb0, 0x8c -.byte 0x93, 0x73, 0xcb, 0x35, 0xa6, 0x99, 0x95, 0x22, 0x61, 0x65, 0x03, 0x60, 0xfb, 0x2f, 0x93, 0x4b -.byte 0xfa, 0x9a, 0x9c, 0x80, 0x3b, 0x02, 0x03, 0x01, 0x00, 0x01, 0x65, 0x00, 0x24, 0x01, 0x30, 0x63 -.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x21, 0x30 -.byte 0x1f, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x18, 0x54, 0x68, 0x65, 0x20, 0x47, 0x6f, 0x20, 0x44 -.byte 0x61, 0x64, 0x64, 0x79, 0x20, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e -.byte 0x31, 0x31, 0x30, 0x2f, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x28, 0x47, 0x6f, 0x20, 0x44, 0x61 -.byte 0x64, 0x64, 0x79, 0x20, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x20, 0x32, 0x20, 0x43, 0x65, 0x72, 0x74 -.byte 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72 -.byte 0x69, 0x74, 0x79, 0x30, 0x82, 0x01, 0x20, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7 -.byte 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0d, 0x00, 0x30, 0x82, 0x01, 0x08, 0x02 -.byte 0x82, 0x01, 0x01, 0x00, 0xde, 0x9d, 0xd7, 0xea, 0x57, 0x18, 0x49, 0xa1, 0x5b, 0xeb, 0xd7, 0x5f -.byte 0x48, 0x86, 0xea, 0xbe, 0xdd, 0xff, 0xe4, 0xef, 0x67, 0x1c, 0xf4, 0x65, 0x68, 0xb3, 0x57, 0x71 -.byte 0xa0, 0x5e, 0x77, 0xbb, 0xed, 0x9b, 0x49, 0xe9, 0x70, 0x80, 0x3d, 0x56, 0x18, 0x63, 0x08, 0x6f -.byte 0xda, 0xf2, 0xcc, 0xd0, 0x3f, 0x7f, 0x02, 0x54, 0x22, 0x54, 0x10, 0xd8, 0xb2, 0x81, 0xd4, 0xc0 -.byte 0x75, 0x3d, 0x4b, 0x7f, 0xc7, 0x77, 0xc3, 0x3e, 0x78, 0xab, 0x1a, 0x03, 0xb5, 0x20, 0x6b, 0x2f -.byte 0x6a, 0x2b, 0xb1, 0xc5, 0x88, 0x7e, 0xc4, 0xbb, 0x1e, 0xb0, 0xc1, 0xd8, 0x45, 0x27, 0x6f, 0xaa -.byte 0x37, 0x58, 0xf7, 0x87, 0x26, 0xd7, 0xd8, 0x2d, 0xf6, 0xa9, 0x17, 0xb7, 0x1f, 0x72, 0x36, 0x4e -.byte 0xa6, 0x17, 0x3f, 0x65, 0x98, 0x92, 0xdb, 0x2a, 0x6e, 0x5d, 0xa2, 0xfe, 0x88, 0xe0, 0x0b, 0xde -.byte 0x7f, 0xe5, 0x8d, 0x15, 0xe1, 0xeb, 0xcb, 0x3a, 0xd5, 0xe2, 0x12, 0xa2, 0x13, 0x2d, 0xd8, 0x8e -.byte 0xaf, 0x5f, 0x12, 0x3d, 0xa0, 0x08, 0x05, 0x08, 0xb6, 0x5c, 0xa5, 0x65, 0x38, 0x04, 0x45, 0x99 -.byte 0x1e, 0xa3, 0x60, 0x60, 0x74, 0xc5, 0x41, 0xa5, 0x72, 0x62, 0x1b, 0x62, 0xc5, 0x1f, 0x6f, 0x5f -.byte 0x1a, 0x42, 0xbe, 0x02, 0x51, 0x65, 0xa8, 0xae, 0x23, 0x18, 0x6a, 0xfc, 0x78, 0x03, 0xa9, 0x4d -.byte 0x7f, 0x80, 0xc3, 0xfa, 0xab, 0x5a, 0xfc, 0xa1, 0x40, 0xa4, 0xca, 0x19, 0x16, 0xfe, 0xb2, 0xc8 -.byte 0xef, 0x5e, 0x73, 0x0d, 0xee, 0x77, 0xbd, 0x9a, 0xf6, 0x79, 0x98, 0xbc, 0xb1, 0x07, 0x67, 0xa2 -.byte 0x15, 0x0d, 0xdd, 0xa0, 0x58, 0xc6, 0x44, 0x7b, 0x0a, 0x3e, 0x62, 0x28, 0x5f, 0xba, 0x41, 0x07 -.byte 0x53, 0x58, 0xcf, 0x11, 0x7e, 0x38, 0x74, 0xc5, 0xf8, 0xff, 0xb5, 0x69, 0x90, 0x8f, 0x84, 0x74 -.byte 0xea, 0x97, 0x1b, 0xaf, 0x02, 0x01, 0x03, 0x67, 0x00, 0x26, 0x01, 0x30, 0x65, 0x31, 0x0b, 0x30 -.byte 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x15, 0x30, 0x13, 0x06, 0x03 -.byte 0x55, 0x04, 0x0a, 0x13, 0x0c, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x49, 0x6e -.byte 0x63, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x10, 0x77, 0x77, 0x77, 0x2e -.byte 0x64, 0x69, 0x67, 0x69, 0x63, 0x65, 0x72, 0x74, 0x2e, 0x63, 0x6f, 0x6d, 0x31, 0x24, 0x30, 0x22 -.byte 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x1b, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20 -.byte 0x41, 0x73, 0x73, 0x75, 0x72, 0x65, 0x64, 0x20, 0x49, 0x44, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20 -.byte 0x43, 0x41, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d -.byte 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82 -.byte 0x01, 0x01, 0x00, 0xad, 0x0e, 0x15, 0xce, 0xe4, 0x43, 0x80, 0x5c, 0xb1, 0x87, 0xf3, 0xb7, 0x60 -.byte 0xf9, 0x71, 0x12, 0xa5, 0xae, 0xdc, 0x26, 0x94, 0x88, 0xaa, 0xf4, 0xce, 0xf5, 0x20, 0x39, 0x28 -.byte 0x58, 0x60, 0x0c, 0xf8, 0x80, 0xda, 0xa9, 0x15, 0x95, 0x32, 0x61, 0x3c, 0xb5, 0xb1, 0x28, 0x84 -.byte 0x8a, 0x8a, 0xdc, 0x9f, 0x0a, 0x0c, 0x83, 0x17, 0x7a, 0x8f, 0x90, 0xac, 0x8a, 0xe7, 0x79, 0x53 -.byte 0x5c, 0x31, 0x84, 0x2a, 0xf6, 0x0f, 0x98, 0x32, 0x36, 0x76, 0xcc, 0xde, 0xdd, 0x3c, 0xa8, 0xa2 -.byte 0xef, 0x6a, 0xfb, 0x21, 0xf2, 0x52, 0x61, 0xdf, 0x9f, 0x20, 0xd7, 0x1f, 0xe2, 0xb1, 0xd9, 0xfe -.byte 0x18, 0x64, 0xd2, 0x12, 0x5b, 0x5f, 0xf9, 0x58, 0x18, 0x35, 0xbc, 0x47, 0xcd, 0xa1, 0x36, 0xf9 -.byte 0x6b, 0x7f, 0xd4, 0xb0, 0x38, 0x3e, 0xc1, 0x1b, 0xc3, 0x8c, 0x33, 0xd9, 0xd8, 0x2f, 0x18, 0xfe -.byte 0x28, 0x0f, 0xb3, 0xa7, 0x83, 0xd6, 0xc3, 0x6e, 0x44, 0xc0, 0x61, 0x35, 0x96, 0x16, 0xfe, 0x59 -.byte 0x9c, 0x8b, 0x76, 0x6d, 0xd7, 0xf1, 0xa2, 0x4b, 0x0d, 0x2b, 0xff, 0x0b, 0x72, 0xda, 0x9e, 0x60 -.byte 0xd0, 0x8e, 0x90, 0x35, 0xc6, 0x78, 0x55, 0x87, 0x20, 0xa1, 0xcf, 0xe5, 0x6d, 0x0a, 0xc8, 0x49 -.byte 0x7c, 0x31, 0x98, 0x33, 0x6c, 0x22, 0xe9, 0x87, 0xd0, 0x32, 0x5a, 0xa2, 0xba, 0x13, 0x82, 0x11 -.byte 0xed, 0x39, 0x17, 0x9d, 0x99, 0x3a, 0x72, 0xa1, 0xe6, 0xfa, 0xa4, 0xd9, 0xd5, 0x17, 0x31, 0x75 -.byte 0xae, 0x85, 0x7d, 0x22, 0xae, 0x3f, 0x01, 0x46, 0x86, 0xf6, 0x28, 0x79, 0xc8, 0xb1, 0xda, 0xe4 -.byte 0x57, 0x17, 0xc4, 0x7e, 0x1c, 0x0e, 0xb0, 0xb4, 0x92, 0xa6, 0x56, 0xb3, 0xbd, 0xb2, 0x97, 0xed -.byte 0xaa, 0xa7, 0xf0, 0xb7, 0xc5, 0xa8, 0x3f, 0x95, 0x16, 0xd0, 0xff, 0xa1, 0x96, 0xeb, 0x08, 0x5f -.byte 0x18, 0x77, 0x4f, 0x02, 0x03, 0x01, 0x00, 0x01, 0x67, 0x00, 0x26, 0x01, 0x30, 0x65, 0x31, 0x0b -.byte 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x15, 0x30, 0x13, 0x06 -.byte 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0c, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20, 0x49 -.byte 0x6e, 0x63, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x10, 0x77, 0x77, 0x77 -.byte 0x2e, 0x64, 0x69, 0x67, 0x69, 0x63, 0x65, 0x72, 0x74, 0x2e, 0x63, 0x6f, 0x6d, 0x31, 0x24, 0x30 -.byte 0x22, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x1b, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74 -.byte 0x20, 0x41, 0x73, 0x73, 0x75, 0x72, 0x65, 0x64, 0x20, 0x49, 0x44, 0x20, 0x52, 0x6f, 0x6f, 0x74 -.byte 0x20, 0x47, 0x32, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7 -.byte 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02 -.byte 0x82, 0x01, 0x01, 0x00, 0xd9, 0xe7, 0x28, 0x2f, 0x52, 0x3f, 0x36, 0x72, 0x49, 0x88, 0x93, 0x34 -.byte 0xf3, 0xf8, 0x6a, 0x1e, 0x31, 0x54, 0x80, 0x9f, 0xad, 0x54, 0x41, 0xb5, 0x47, 0xdf, 0x96, 0xa8 -.byte 0xd4, 0xaf, 0x80, 0x2d, 0xb9, 0x0a, 0xcf, 0x75, 0xfd, 0x89, 0xa5, 0x7d, 0x24, 0xfa, 0xe3, 0x22 -.byte 0x0c, 0x2b, 0xbc, 0x95, 0x17, 0x0b, 0x33, 0xbf, 0x19, 0x4d, 0x41, 0x06, 0x90, 0x00, 0xbd, 0x0c -.byte 0x4d, 0x10, 0xfe, 0x07, 0xb5, 0xe7, 0x1c, 0x6e, 0x22, 0x55, 0x31, 0x65, 0x97, 0xbd, 0xd3, 0x17 -.byte 0xd2, 0x1e, 0x62, 0xf3, 0xdb, 0xea, 0x6c, 0x50, 0x8c, 0x3f, 0x84, 0x0c, 0x96, 0xcf, 0xb7, 0xcb -.byte 0x03, 0xe0, 0xca, 0x6d, 0xa1, 0x14, 0x4c, 0x1b, 0x89, 0xdd, 0xed, 0x00, 0xb0, 0x52, 0x7c, 0xaf -.byte 0x91, 0x6c, 0xb1, 0x38, 0x13, 0xd1, 0xe9, 0x12, 0x08, 0xc0, 0x00, 0xb0, 0x1c, 0x2b, 0x11, 0xda -.byte 0x77, 0x70, 0x36, 0x9b, 0xae, 0xce, 0x79, 0x87, 0xdc, 0x82, 0x70, 0xe6, 0x09, 0x74, 0x70, 0x55 -.byte 0x69, 0xaf, 0xa3, 0x68, 0x9f, 0xbf, 0xdd, 0xb6, 0x79, 0xb3, 0xf2, 0x9d, 0x70, 0x29, 0x55, 0xf4 -.byte 0xab, 0xff, 0x95, 0x61, 0xf3, 0xc9, 0x40, 0x6f, 0x1d, 0xd1, 0xbe, 0x93, 0xbb, 0xd3, 0x88, 0x2a -.byte 0xbb, 0x9d, 0xbf, 0x72, 0x5a, 0x56, 0x71, 0x3b, 0x3f, 0xd4, 0xf3, 0xd1, 0x0a, 0xfe, 0x28, 0xef -.byte 0xa3, 0xee, 0xd9, 0x99, 0xaf, 0x03, 0xd3, 0x8f, 0x60, 0xb7, 0xf2, 0x92, 0xa1, 0xb1, 0xbd, 0x89 -.byte 0x89, 0x1f, 0x30, 0xcd, 0xc3, 0xa6, 0x2e, 0x62, 0x33, 0xae, 0x16, 0x02, 0x77, 0x44, 0x5a, 0xe7 -.byte 0x81, 0x0a, 0x3c, 0xa7, 0x44, 0x2e, 0x79, 0xb8, 0x3f, 0x04, 0xbc, 0x5c, 0xa0, 0x87, 0xe1, 0x1b -.byte 0xaf, 0x51, 0x8e, 0xcd, 0xec, 0x2c, 0xfa, 0xf8, 0xfe, 0x6d, 0xf0, 0x3a, 0x7c, 0xaa, 0x8b, 0xe4 -.byte 0x67, 0x95, 0x31, 0x8d, 0x02, 0x03, 0x01, 0x00, 0x01, 0x67, 0x00, 0x78, 0x00, 0x30, 0x65, 0x31 -.byte 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x15, 0x30, 0x13 -.byte 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0c, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72, 0x74, 0x20 -.byte 0x49, 0x6e, 0x63, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x10, 0x77, 0x77 -.byte 0x77, 0x2e, 0x64, 0x69, 0x67, 0x69, 0x63, 0x65, 0x72, 0x74, 0x2e, 0x63, 0x6f, 0x6d, 0x31, 0x24 -.byte 0x30, 0x22, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x1b, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65, 0x72 -.byte 0x74, 0x20, 0x41, 0x73, 0x73, 0x75, 0x72, 0x65, 0x64, 0x20, 0x49, 0x44, 0x20, 0x52, 0x6f, 0x6f -.byte 0x74, 0x20, 0x47, 0x33, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02 -.byte 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0x19, 0xe7, 0xbc, 0xac -.byte 0x44, 0x65, 0xed, 0xcd, 0xb8, 0x3f, 0x58, 0xfb, 0x8d, 0xb1, 0x57, 0xa9, 0x44, 0x2d, 0x05, 0x15 -.byte 0xf2, 0xef, 0x0b, 0xff, 0x10, 0x74, 0x9f, 0xb5, 0x62, 0x52, 0x5f, 0x66, 0x7e, 0x1f, 0xe5, 0xdc -.byte 0x1b, 0x45, 0x79, 0x0b, 0xcc, 0xc6, 0x53, 0x0a, 0x9d, 0x8d, 0x5d, 0x02, 0xd9, 0xa9, 0x59, 0xde -.byte 0x02, 0x5a, 0xf6, 0x95, 0x2a, 0x0e, 0x8d, 0x38, 0x4a, 0x8a, 0x49, 0xc6, 0xbc, 0xc6, 0x03, 0x38 -.byte 0x07, 0x5f, 0x55, 0xda, 0x7e, 0x09, 0x6e, 0xe2, 0x7f, 0x5e, 0xd0, 0x45, 0x20, 0x0f, 0x59, 0x76 -.byte 0x10, 0xd6, 0xa0, 0x24, 0xf0, 0x2d, 0xde, 0x36, 0xf2, 0x6c, 0x29, 0x39, 0x67, 0x00, 0x78, 0x00 -.byte 0x30, 0x65, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31 -.byte 0x1e, 0x30, 0x1c, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x15, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73 -.byte 0x6f, 0x66, 0x74, 0x20, 0x43, 0x6f, 0x72, 0x70, 0x6f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x31 -.byte 0x36, 0x30, 0x34, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x2d, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73 -.byte 0x6f, 0x66, 0x74, 0x20, 0x45, 0x43, 0x43, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x65, 0x72 -.byte 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69 -.byte 0x74, 0x79, 0x20, 0x32, 0x30, 0x31, 0x37, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48 -.byte 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0xd4 -.byte 0xbc, 0x3d, 0x02, 0x42, 0x75, 0x41, 0x13, 0x23, 0xcd, 0x80, 0x04, 0x86, 0x02, 0x51, 0x2f, 0x6a -.byte 0xa8, 0x81, 0x62, 0x0b, 0x65, 0xcc, 0xf6, 0xca, 0x9d, 0x1e, 0x6f, 0x4a, 0x66, 0x51, 0xa2, 0x03 -.byte 0xd9, 0x9d, 0x91, 0xfa, 0xb6, 0x16, 0xb1, 0x8c, 0x6e, 0xde, 0x7c, 0xcd, 0xdb, 0x79, 0xa6, 0x2f -.byte 0xce, 0xbb, 0xce, 0x71, 0x2f, 0xe5, 0xa5, 0xab, 0x28, 0xec, 0x63, 0x04, 0x66, 0x99, 0xf8, 0xfa -.byte 0xf2, 0x93, 0x10, 0x05, 0xe1, 0x81, 0x28, 0x42, 0xe3, 0xc6, 0x68, 0xf4, 0xe6, 0x1b, 0x84, 0x60 -.byte 0x4a, 0x89, 0xaf, 0xed, 0x79, 0x0f, 0x3b, 0xce, 0xf1, 0xf6, 0x44, 0xf5, 0x01, 0x78, 0xc0, 0x67 -.byte 0x00, 0x26, 0x02, 0x30, 0x65, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02 -.byte 0x55, 0x53, 0x31, 0x1e, 0x30, 0x1c, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x15, 0x4d, 0x69, 0x63 -.byte 0x72, 0x6f, 0x73, 0x6f, 0x66, 0x74, 0x20, 0x43, 0x6f, 0x72, 0x70, 0x6f, 0x72, 0x61, 0x74, 0x69 -.byte 0x6f, 0x6e, 0x31, 0x36, 0x30, 0x34, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x2d, 0x4d, 0x69, 0x63 -.byte 0x72, 0x6f, 0x73, 0x6f, 0x66, 0x74, 0x20, 0x52, 0x53, 0x41, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20 -.byte 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x20, 0x41, 0x75, 0x74, 0x68 -.byte 0x6f, 0x72, 0x69, 0x74, 0x79, 0x20, 0x32, 0x30, 0x31, 0x37, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d -.byte 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02 -.byte 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xca, 0x5b, 0xbe, 0x94, 0x33 -.byte 0x8c, 0x29, 0x95, 0x91, 0x16, 0x0a, 0x95, 0xbd, 0x47, 0x62, 0xc1, 0x89, 0xf3, 0x99, 0x36, 0xdf -.byte 0x46, 0x90, 0xc9, 0xa5, 0xed, 0x78, 0x6a, 0x6f, 0x47, 0x91, 0x68, 0xf8, 0x27, 0x67, 0x50, 0x33 -.byte 0x1d, 0xa1, 0xa6, 0xfb, 0xe0, 0xe5, 0x43, 0xa3, 0x84, 0x02, 0x57, 0x01, 0x5d, 0x9c, 0x48, 0x40 -.byte 0x82, 0x53, 0x10, 0xbc, 0xbf, 0xc7, 0x3b, 0x68, 0x90, 0xb6, 0x82, 0x2d, 0xe5, 0xf4, 0x65, 0xd0 -.byte 0xcc, 0x6d, 0x19, 0xcc, 0x95, 0xf9, 0x7b, 0xac, 0x4a, 0x94, 0xad, 0x0e, 0xde, 0x4b, 0x43, 0x1d -.byte 0x87, 0x07, 0x92, 0x13, 0x90, 0x80, 0x83, 0x64, 0x35, 0x39, 0x04, 0xfc, 0xe5, 0xe9, 0x6c, 0xb3 -.byte 0xb6, 0x1f, 0x50, 0x94, 0x38, 0x65, 0x50, 0x5c, 0x17, 0x46, 0xb9, 0xb6, 0x85, 0xb5, 0x1c, 0xb5 -.byte 0x17, 0xe8, 0xd6, 0x45, 0x9d, 0xd8, 0xb2, 0x26, 0xb0, 0xca, 0xc4, 0x70, 0x4a, 0xae, 0x60, 0xa4 -.byte 0xdd, 0xb3, 0xd9, 0xec, 0xfc, 0x3b, 0xd5, 0x57, 0x72, 0xbc, 0x3f, 0xc8, 0xc9, 0xb2, 0xde, 0x4b -.byte 0x6b, 0xf8, 0x23, 0x6c, 0x03, 0xc0, 0x05, 0xbd, 0x95, 0xc7, 0xcd, 0x73, 0x3b, 0x66, 0x80, 0x64 -.byte 0xe3, 0x1a, 0xac, 0x2e, 0xf9, 0x47, 0x05, 0xf2, 0x06, 0xb6, 0x9b, 0x73, 0xf5, 0x78, 0x33, 0x5b -.byte 0xc7, 0xa1, 0xfb, 0x27, 0x2a, 0xa1, 0xb4, 0x9a, 0x91, 0x8c, 0x91, 0xd3, 0x3a, 0x82, 0x3e, 0x76 -.byte 0x40, 0xb4, 0xcd, 0x52, 0x61, 0x51, 0x70, 0x28, 0x3f, 0xc5, 0xc5, 0x5a, 0xf2, 0xc9, 0x8c, 0x49 -.byte 0xbb, 0x14, 0x5b, 0x4d, 0xc8, 0xff, 0x67, 0x4d, 0x4c, 0x12, 0x96, 0xad, 0xf5, 0xfe, 0x78, 0xa8 -.byte 0x97, 0x87, 0xd7, 0xfd, 0x5e, 0x20, 0x80, 0xdc, 0xa1, 0x4b, 0x22, 0xfb, 0xd4, 0x89, 0xad, 0xba -.byte 0xce, 0x47, 0x97, 0x47, 0x55, 0x7b, 0x8f, 0x45, 0xc8, 0x67, 0x28, 0x84, 0x95, 0x1c, 0x68, 0x30 -.byte 0xef, 0xef, 0x49, 0xe0, 0x35, 0x7b, 0x64, 0xe7, 0x98, 0xb0, 0x94, 0xda, 0x4d, 0x85, 0x3b, 0x3e -.byte 0x55, 0xc4, 0x28, 0xaf, 0x57, 0xf3, 0x9e, 0x13, 0xdb, 0x46, 0x27, 0x9f, 0x1e, 0xa2, 0x5e, 0x44 -.byte 0x83, 0xa4, 0xa5, 0xca, 0xd5, 0x13, 0xb3, 0x4b, 0x3f, 0xc4, 0xe3, 0xc2, 0xe6, 0x86, 0x61, 0xa4 -.byte 0x52, 0x30, 0xb9, 0x7a, 0x20, 0x4f, 0x6f, 0x0f, 0x38, 0x53, 0xcb, 0x33, 0x0c, 0x13, 0x2b, 0x8f -.byte 0xd6, 0x9a, 0xbd, 0x2a, 0xc8, 0x2d, 0xb1, 0x1c, 0x7d, 0x4b, 0x51, 0xca, 0x47, 0xd1, 0x48, 0x27 -.byte 0x72, 0x5d, 0x87, 0xeb, 0xd5, 0x45, 0xe6, 0x48, 0x65, 0x9d, 0xaf, 0x52, 0x90, 0xba, 0x5b, 0xa2 -.byte 0x18, 0x65, 0x57, 0x12, 0x9f, 0x68, 0xb9, 0xd4, 0x15, 0x6b, 0x94, 0xc4, 0x69, 0x22, 0x98, 0xf4 -.byte 0x33, 0xe0, 0xed, 0xf9, 0x51, 0x8e, 0x41, 0x50, 0xc9, 0x34, 0x4f, 0x76, 0x90, 0xac, 0xfc, 0x38 -.byte 0xc1, 0xd8, 0xe1, 0x7b, 0xb9, 0xe3, 0xe3, 0x94, 0xe1, 0x46, 0x69, 0xcb, 0x0e, 0x0a, 0x50, 0x6b -.byte 0x13, 0xba, 0xac, 0x0f, 0x37, 0x5a, 0xb7, 0x12, 0xb5, 0x90, 0x81, 0x1e, 0x56, 0xae, 0x57, 0x22 -.byte 0x86, 0xd9, 0xc9, 0xd2, 0xd1, 0xd7, 0x51, 0xe3, 0xab, 0x3b, 0xc6, 0x55, 0xfd, 0x1e, 0x0e, 0xd3 -.byte 0x74, 0x0a, 0xd1, 0xda, 0xaa, 0xea, 0x69, 0xb8, 0x97, 0x28, 0x8f, 0x48, 0xc4, 0x07, 0xf8, 0x52 -.byte 0x43, 0x3a, 0xf4, 0xca, 0x55, 0x35, 0x2c, 0xb0, 0xa6, 0x6a, 0xc0, 0x9c, 0xf9, 0xf2, 0x81, 0xe1 -.byte 0x12, 0x6a, 0xc0, 0x45, 0xd9, 0x67, 0xb3, 0xce, 0xff, 0x23, 0xa2, 0x89, 0x0a, 0x54, 0xd4, 0x14 -.byte 0xb9, 0x2a, 0xa8, 0xd7, 0xec, 0xf9, 0xab, 0xcd, 0x25, 0x58, 0x32, 0x79, 0x8f, 0x90, 0x5b, 0x98 -.byte 0x39, 0xc4, 0x08, 0x06, 0xc1, 0xac, 0x7f, 0x0e, 0x3d, 0x00, 0xa5, 0x02, 0x03, 0x01, 0x00, 0x01 -.byte 0x69, 0x00, 0x26, 0x01, 0x30, 0x67, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13 -.byte 0x02, 0x49, 0x4e, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x0a, 0x65, 0x6d -.byte 0x53, 0x69, 0x67, 0x6e, 0x20, 0x50, 0x4b, 0x49, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03, 0x55, 0x04 -.byte 0x0a, 0x13, 0x1c, 0x65, 0x4d, 0x75, 0x64, 0x68, 0x72, 0x61, 0x20, 0x54, 0x65, 0x63, 0x68, 0x6e -.byte 0x6f, 0x6c, 0x6f, 0x67, 0x69, 0x65, 0x73, 0x20, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x64, 0x31 -.byte 0x1c, 0x30, 0x1a, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x13, 0x65, 0x6d, 0x53, 0x69, 0x67, 0x6e -.byte 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x2d, 0x20, 0x47, 0x31, 0x30, 0x82, 0x01 -.byte 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00 -.byte 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0x93, 0x4b -.byte 0xbb, 0xe9, 0x66, 0x8a, 0xee, 0x9d, 0x5b, 0xd5, 0x34, 0x93, 0xd0, 0x1b, 0x1e, 0xc3, 0xe7, 0x9e -.byte 0xb8, 0x64, 0x33, 0x7f, 0x63, 0x78, 0x68, 0xb4, 0xcd, 0x2e, 0x71, 0x75, 0xd7, 0x9b, 0x20, 0xc6 -.byte 0x4d, 0x29, 0xbc, 0xb6, 0x68, 0x60, 0x8a, 0xf7, 0x21, 0x9a, 0x56, 0x35, 0x5a, 0xf3, 0x76, 0xbd -.byte 0xd8, 0xcd, 0x9a, 0xff, 0x93, 0x56, 0x4b, 0xa5, 0x59, 0x06, 0xa1, 0x93, 0x34, 0x29, 0xdd, 0x16 -.byte 0x34, 0x75, 0x4e, 0xf2, 0x81, 0xb4, 0xc7, 0x96, 0x4e, 0xad, 0x19, 0x15, 0x52, 0x4a, 0xfe, 0x3c -.byte 0x70, 0x75, 0x70, 0xcd, 0xaf, 0x2b, 0xab, 0x15, 0x9a, 0x33, 0x3c, 0xaa, 0xb3, 0x8b, 0xaa, 0xcd -.byte 0x43, 0xfd, 0xf5, 0xea, 0x70, 0xff, 0xed, 0xcf, 0x11, 0x3b, 0x94, 0xce, 0x4e, 0x32, 0x16, 0xd3 -.byte 0x23, 0x40, 0x2a, 0x77, 0xb3, 0xaf, 0x3c, 0x01, 0x2c, 0x6c, 0xed, 0x99, 0x2c, 0x8b, 0xd9, 0x4e -.byte 0x69, 0x98, 0xb2, 0xf7, 0x8f, 0x41, 0xb0, 0x32, 0x78, 0x61, 0xd6, 0x0d, 0x5f, 0xc3, 0xfa, 0xa2 -.byte 0x40, 0x92, 0x1d, 0x5c, 0x17, 0xe6, 0x70, 0x3e, 0x35, 0xe7, 0xa2, 0xb7, 0xc2, 0x62, 0xe2, 0xab -.byte 0xa4, 0x38, 0x4c, 0xb5, 0x39, 0x35, 0x6f, 0xea, 0x03, 0x69, 0xfa, 0x3a, 0x54, 0x68, 0x85, 0x6d -.byte 0xd6, 0xf2, 0x2f, 0x43, 0x55, 0x1e, 0x91, 0x0d, 0x0e, 0xd8, 0xd5, 0x6a, 0xa4, 0x96, 0xd1, 0x13 -.byte 0x3c, 0x2c, 0x78, 0x50, 0xe8, 0x3a, 0x92, 0xd2, 0x17, 0x56, 0xe5, 0x35, 0x1a, 0x40, 0x1c, 0x3e -.byte 0x8d, 0x2c, 0xed, 0x39, 0xdf, 0x42, 0xe0, 0x83, 0x41, 0x74, 0xdf, 0xa3, 0xcd, 0xc2, 0x86, 0x60 -.byte 0x48, 0x68, 0xe3, 0x69, 0x0b, 0x54, 0x00, 0x8b, 0xe4, 0x76, 0x69, 0x21, 0x0d, 0x79, 0x4e, 0x34 -.byte 0x08, 0x5e, 0x14, 0xc2, 0xcc, 0xb1, 0xb7, 0xad, 0xd7, 0x7c, 0x70, 0x8a, 0xc7, 0x85, 0x02, 0x03 -.byte 0x01, 0x00, 0x01, 0x6a, 0x00, 0x24, 0x01, 0x30, 0x68, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55 -.byte 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13 -.byte 0x1c, 0x53, 0x74, 0x61, 0x72, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x20, 0x54, 0x65, 0x63, 0x68, 0x6e -.byte 0x6f, 0x6c, 0x6f, 0x67, 0x69, 0x65, 0x73, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x32, 0x30 -.byte 0x30, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x29, 0x53, 0x74, 0x61, 0x72, 0x66, 0x69, 0x65, 0x6c -.byte 0x64, 0x20, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x20, 0x32, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66 -.byte 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74 -.byte 0x79, 0x30, 0x82, 0x01, 0x20, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01 -.byte 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0d, 0x00, 0x30, 0x82, 0x01, 0x08, 0x02, 0x82, 0x01 -.byte 0x01, 0x00, 0xb7, 0x32, 0xc8, 0xfe, 0xe9, 0x71, 0xa6, 0x04, 0x85, 0xad, 0x0c, 0x11, 0x64, 0xdf -.byte 0xce, 0x4d, 0xef, 0xc8, 0x03, 0x18, 0x87, 0x3f, 0xa1, 0xab, 0xfb, 0x3c, 0xa6, 0x9f, 0xf0, 0xc3 -.byte 0xa1, 0xda, 0xd4, 0xd8, 0x6e, 0x2b, 0x53, 0x90, 0xfb, 0x24, 0xa4, 0x3e, 0x84, 0xf0, 0x9e, 0xe8 -.byte 0x5f, 0xec, 0xe5, 0x27, 0x44, 0xf5, 0x28, 0xa6, 0x3f, 0x7b, 0xde, 0xe0, 0x2a, 0xf0, 0xc8, 0xaf -.byte 0x53, 0x2f, 0x9e, 0xca, 0x05, 0x01, 0x93, 0x1e, 0x8f, 0x66, 0x1c, 0x39, 0xa7, 0x4d, 0xfa, 0x5a -.byte 0xb6, 0x73, 0x04, 0x25, 0x66, 0xeb, 0x77, 0x7f, 0xe7, 0x59, 0xc6, 0x4a, 0x99, 0x25, 0x14, 0x54 -.byte 0xeb, 0x26, 0xc7, 0xf3, 0x7f, 0x19, 0xd5, 0x30, 0x70, 0x8f, 0xaf, 0xb0, 0x46, 0x2a, 0xff, 0xad -.byte 0xeb, 0x29, 0xed, 0xd7, 0x9f, 0xaa, 0x04, 0x87, 0xa3, 0xd4, 0xf9, 0x89, 0xa5, 0x34, 0x5f, 0xdb -.byte 0x43, 0x91, 0x82, 0x36, 0xd9, 0x66, 0x3c, 0xb1, 0xb8, 0xb9, 0x82, 0xfd, 0x9c, 0x3a, 0x3e, 0x10 -.byte 0xc8, 0x3b, 0xef, 0x06, 0x65, 0x66, 0x7a, 0x9b, 0x19, 0x18, 0x3d, 0xff, 0x71, 0x51, 0x3c, 0x30 -.byte 0x2e, 0x5f, 0xbe, 0x3d, 0x77, 0x73, 0xb2, 0x5d, 0x06, 0x6c, 0xc3, 0x23, 0x56, 0x9a, 0x2b, 0x85 -.byte 0x26, 0x92, 0x1c, 0xa7, 0x02, 0xb3, 0xe4, 0x3f, 0x0d, 0xaf, 0x08, 0x79, 0x82, 0xb8, 0x36, 0x3d -.byte 0xea, 0x9c, 0xd3, 0x35, 0xb3, 0xbc, 0x69, 0xca, 0xf5, 0xcc, 0x9d, 0xe8, 0xfd, 0x64, 0x8d, 0x17 -.byte 0x80, 0x33, 0x6e, 0x5e, 0x4a, 0x5d, 0x99, 0xc9, 0x1e, 0x87, 0xb4, 0x9d, 0x1a, 0xc0, 0xd5, 0x6e -.byte 0x13, 0x35, 0x23, 0x5e, 0xdf, 0x9b, 0x5f, 0x3d, 0xef, 0xd6, 0xf7, 0x76, 0xc2, 0xea, 0x3e, 0xbb -.byte 0x78, 0x0d, 0x1c, 0x42, 0x67, 0x6b, 0x04, 0xd8, 0xf8, 0xd6, 0xda, 0x6f, 0x8b, 0xf2, 0x44, 0xa0 -.byte 0x01, 0xab, 0x02, 0x01, 0x03, 0x6b, 0x00, 0x26, 0x02, 0x30, 0x69, 0x31, 0x0b, 0x30, 0x09, 0x06 -.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x4b, 0x52, 0x31, 0x26, 0x30, 0x24, 0x06, 0x03, 0x55, 0x04 -.byte 0x0a, 0x0c, 0x1d, 0x4e, 0x41, 0x56, 0x45, 0x52, 0x20, 0x42, 0x55, 0x53, 0x49, 0x4e, 0x45, 0x53 -.byte 0x53, 0x20, 0x50, 0x4c, 0x41, 0x54, 0x46, 0x4f, 0x52, 0x4d, 0x20, 0x43, 0x6f, 0x72, 0x70, 0x2e -.byte 0x31, 0x32, 0x30, 0x30, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x29, 0x4e, 0x41, 0x56, 0x45, 0x52 -.byte 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x65, 0x72 -.byte 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f -.byte 0x72, 0x69, 0x74, 0x79, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86 -.byte 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a -.byte 0x02, 0x82, 0x02, 0x01, 0x00, 0xb6, 0xd4, 0xf1, 0x93, 0x5c, 0xb5, 0x40, 0x89, 0x0a, 0xab, 0x0d -.byte 0x90, 0x5b, 0x50, 0x63, 0xae, 0x90, 0x94, 0x74, 0x17, 0x45, 0x72, 0xd6, 0x7b, 0x65, 0x5a, 0x29 -.byte 0x4b, 0xa7, 0x56, 0xa0, 0x4b, 0xb8, 0x2f, 0x42, 0x75, 0xe9, 0xd9, 0x7b, 0x24, 0x5a, 0x31, 0x65 -.byte 0xab, 0x17, 0x17, 0xd1, 0x33, 0x3a, 0xd9, 0x11, 0xdc, 0x40, 0x36, 0x87, 0xdf, 0xc7, 0x6a, 0xe9 -.byte 0x26, 0x5e, 0x59, 0x8a, 0x77, 0xe3, 0xe8, 0x48, 0x9c, 0x31, 0x16, 0xfa, 0x3e, 0x91, 0xb1, 0xca -.byte 0xc9, 0xa3, 0xe2, 0x9f, 0xce, 0x21, 0x53, 0xa3, 0x02, 0x36, 0x30, 0xcb, 0x52, 0x02, 0xe5, 0xda -.byte 0x32, 0x5d, 0xc3, 0xc5, 0xe6, 0xf9, 0xee, 0x11, 0xc7, 0x8b, 0xc9, 0x44, 0x1e, 0x84, 0x93, 0x18 -.byte 0x4a, 0xb4, 0x9f, 0xe5, 0x12, 0x64, 0x69, 0xd0, 0x26, 0x85, 0x62, 0x01, 0xb6, 0xc9, 0x02, 0x1d -.byte 0xbe, 0x83, 0x51, 0xbb, 0x5c, 0xda, 0xf8, 0xad, 0x15, 0x6a, 0x99, 0xf7, 0x92, 0x54, 0xf7, 0x34 -.byte 0x5b, 0xe9, 0xbf, 0xea, 0x29, 0x81, 0x12, 0xd4, 0x53, 0x91, 0x96, 0xb3, 0x91, 0x5a, 0xdd, 0xfe -.byte 0x90, 0x73, 0x28, 0xfb, 0x30, 0x46, 0xb5, 0xca, 0x08, 0x07, 0xc7, 0x71, 0x72, 0xc9, 0x66, 0xd3 -.byte 0x34, 0x97, 0xf6, 0x8c, 0xf4, 0x18, 0x4a, 0xe1, 0xd0, 0x3d, 0x5a, 0x45, 0xb6, 0x69, 0xa7, 0x29 -.byte 0xfb, 0x23, 0xce, 0x88, 0xd8, 0x12, 0x9c, 0x00, 0x48, 0xa8, 0xa6, 0x0f, 0xb3, 0x3b, 0x92, 0x8d -.byte 0x71, 0x0e, 0x74, 0xc5, 0x8b, 0xc8, 0x4c, 0xf9, 0xf4, 0x9b, 0x8e, 0xb8, 0x3c, 0x69, 0xed, 0x6f -.byte 0x3b, 0x50, 0x2f, 0x58, 0xed, 0xc4, 0xb0, 0xd0, 0x1c, 0x1b, 0x6a, 0x0c, 0xe2, 0xbc, 0x44, 0xaa -.byte 0xd8, 0xcd, 0x14, 0x5d, 0x94, 0x78, 0x61, 0xbf, 0x0e, 0x6e, 0xda, 0x2a, 0xbc, 0x2f, 0x0c, 0x0b -.byte 0x71, 0xa6, 0xb3, 0x16, 0x3f, 0x9c, 0xe6, 0xf9, 0xcc, 0x9f, 0x53, 0x35, 0xe2, 0x03, 0xa0, 0xa0 -.byte 0x18, 0xbf, 0xbb, 0xf1, 0xbe, 0xf4, 0xd6, 0x8c, 0x87, 0x0d, 0x42, 0xf7, 0x06, 0xb9, 0xf1, 0x6d -.byte 0xed, 0x04, 0x94, 0xa8, 0xfe, 0xb6, 0xd3, 0x06, 0xc6, 0x40, 0x61, 0xdf, 0x9d, 0x9d, 0xf3, 0x54 -.byte 0x76, 0xce, 0x53, 0x3a, 0x01, 0xa6, 0x92, 0x41, 0xec, 0x04, 0xa3, 0x8f, 0x0d, 0xa2, 0xd5, 0x09 -.byte 0xca, 0xd6, 0xcb, 0x9a, 0xf1, 0xef, 0x43, 0x5d, 0xc0, 0xab, 0xa5, 0x41, 0xcf, 0x5c, 0x53, 0x70 -.byte 0x70, 0xc9, 0x88, 0xa6, 0x2d, 0xd4, 0x6b, 0x61, 0x73, 0x50, 0x26, 0x86, 0x61, 0x0e, 0x5f, 0x1b -.byte 0xc2, 0x2b, 0xe2, 0x8c, 0xd5, 0xbb, 0x9d, 0xc1, 0x03, 0x42, 0xba, 0x94, 0xda, 0x5f, 0xa9, 0xb0 -.byte 0xca, 0xcc, 0x4d, 0x0a, 0xef, 0x47, 0x69, 0x03, 0x2f, 0x22, 0xfb, 0xf1, 0x28, 0xce, 0xbf, 0x5d -.byte 0x50, 0x65, 0xa8, 0x90, 0x6d, 0xb3, 0x74, 0xb0, 0x08, 0xc7, 0xac, 0xa8, 0xd1, 0xeb, 0x3e, 0x9c -.byte 0xfc, 0x5d, 0x1a, 0x83, 0x2e, 0x2b, 0xcb, 0xb5, 0xf3, 0x44, 0x9d, 0x3a, 0xa7, 0x17, 0x61, 0x96 -.byte 0xa2, 0x71, 0xd3, 0x70, 0x96, 0x15, 0x4d, 0xb7, 0x4c, 0x73, 0xee, 0x19, 0x5c, 0xc5, 0x5b, 0x3e -.byte 0x41, 0xfe, 0xac, 0x75, 0x60, 0x3b, 0x1b, 0x63, 0xce, 0x00, 0xdd, 0xda, 0x08, 0x90, 0x62, 0xb4 -.byte 0xe5, 0x2d, 0xee, 0x48, 0xa7, 0x6b, 0x17, 0x99, 0x54, 0xbe, 0x87, 0x4a, 0xe3, 0xa9, 0x5e, 0x04 -.byte 0x4c, 0xeb, 0x10, 0x6d, 0x54, 0xd6, 0xef, 0xf1, 0xe8, 0xf2, 0x62, 0x16, 0xcb, 0x80, 0x6b, 0xed -.byte 0x3d, 0xed, 0xf5, 0x1f, 0x30, 0xa5, 0xae, 0x4b, 0xc9, 0x13, 0xed, 0x8a, 0x01, 0x01, 0xc9, 0xb8 -.byte 0x51, 0x58, 0xc0, 0x66, 0x3a, 0xb1, 0x66, 0x4b, 0xc4, 0xd5, 0x31, 0x02, 0x62, 0xe9, 0x74, 0x84 -.byte 0x0c, 0xdb, 0x4d, 0x46, 0x2d, 0x02, 0x03, 0x01, 0x00, 0x01, 0x6d, 0x00, 0x78, 0x00, 0x30, 0x6b -.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x49, 0x4e, 0x31, 0x13, 0x30 -.byte 0x11, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x0a, 0x65, 0x6d, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x50 -.byte 0x4b, 0x49, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x1c, 0x65, 0x4d, 0x75 -.byte 0x64, 0x68, 0x72, 0x61, 0x20, 0x54, 0x65, 0x63, 0x68, 0x6e, 0x6f, 0x6c, 0x6f, 0x67, 0x69, 0x65 -.byte 0x73, 0x20, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x64, 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55 -.byte 0x04, 0x03, 0x13, 0x17, 0x65, 0x6d, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x45, 0x43, 0x43, 0x20, 0x52 -.byte 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x2d, 0x20, 0x47, 0x33, 0x30, 0x76, 0x30, 0x10, 0x06 -.byte 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03 -.byte 0x62, 0x00, 0x04, 0x23, 0xa5, 0x0c, 0xb8, 0x2d, 0x12, 0xf5, 0x28, 0xf3, 0xb1, 0xb2, 0xdd, 0xe2 -.byte 0x02, 0x12, 0x80, 0x9e, 0x39, 0x5f, 0x49, 0x4d, 0x9f, 0xc9, 0x25, 0x34, 0x59, 0x74, 0xec, 0xbb -.byte 0x06, 0x1c, 0xe7, 0xc0, 0x72, 0xaf, 0xe8, 0xae, 0x2f, 0xe1, 0x41, 0x54, 0x87, 0x14, 0xa8, 0x4a -.byte 0xb2, 0xe8, 0x7c, 0x82, 0xe6, 0x5b, 0x6a, 0xb5, 0xdc, 0xb3, 0x75, 0xce, 0x8b, 0x06, 0xd0, 0x86 -.byte 0x23, 0xbf, 0x46, 0xd5, 0x8e, 0x0f, 0x3f, 0x04, 0xf4, 0xd7, 0x1c, 0x92, 0x7e, 0xf6, 0xa5, 0x63 -.byte 0xc2, 0xf5, 0x5f, 0x8e, 0x2e, 0x4f, 0xa1, 0x18, 0x19, 0x02, 0x2b, 0x32, 0x0a, 0x82, 0x64, 0x7d -.byte 0x16, 0x93, 0xd1, 0x6d, 0x00, 0x26, 0x02, 0x30, 0x6b, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55 -.byte 0x04, 0x06, 0x13, 0x02, 0x49, 0x54, 0x31, 0x0e, 0x30, 0x0c, 0x06, 0x03, 0x55, 0x04, 0x07, 0x0c -.byte 0x05, 0x4d, 0x69, 0x6c, 0x61, 0x6e, 0x31, 0x23, 0x30, 0x21, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c -.byte 0x1a, 0x41, 0x63, 0x74, 0x61, 0x6c, 0x69, 0x73, 0x20, 0x53, 0x2e, 0x70, 0x2e, 0x41, 0x2e, 0x2f -.byte 0x30, 0x33, 0x33, 0x35, 0x38, 0x35, 0x32, 0x30, 0x39, 0x36, 0x37, 0x31, 0x27, 0x30, 0x25, 0x06 -.byte 0x03, 0x55, 0x04, 0x03, 0x0c, 0x1e, 0x41, 0x63, 0x74, 0x61, 0x6c, 0x69, 0x73, 0x20, 0x41, 0x75 -.byte 0x74, 0x68, 0x65, 0x6e, 0x74, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x52, 0x6f, 0x6f -.byte 0x74, 0x20, 0x43, 0x41, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86 -.byte 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a -.byte 0x02, 0x82, 0x02, 0x01, 0x00, 0xa7, 0xc6, 0xc4, 0xa5, 0x29, 0xa4, 0x2c, 0xef, 0xe5, 0x18, 0xc5 -.byte 0xb0, 0x50, 0xa3, 0x6f, 0x51, 0x3b, 0x9f, 0x0a, 0x5a, 0xc9, 0xc2, 0x48, 0x38, 0x0a, 0xc2, 0x1c -.byte 0xa0, 0x18, 0x7f, 0x91, 0xb5, 0x87, 0xb9, 0x40, 0x3f, 0xdd, 0x1d, 0x68, 0x1f, 0x08, 0x83, 0xd5 -.byte 0x2d, 0x1e, 0x88, 0xa0, 0xf8, 0x8f, 0x56, 0x8f, 0x6d, 0x99, 0x02, 0x92, 0x90, 0x16, 0xd5, 0x5f -.byte 0x08, 0x6c, 0x89, 0xd7, 0xe1, 0xac, 0xbc, 0x20, 0xc2, 0xb1, 0xe0, 0x83, 0x51, 0x8a, 0x69, 0x4d -.byte 0x00, 0x96, 0x5a, 0x6f, 0x2f, 0xc0, 0x44, 0x7e, 0xa3, 0x0e, 0xe4, 0x91, 0xcd, 0x58, 0xee, 0xdc -.byte 0xfb, 0xc7, 0x1e, 0x45, 0x47, 0xdd, 0x27, 0xb9, 0x08, 0x01, 0x9f, 0xa6, 0x21, 0x1d, 0xf5, 0x41 -.byte 0x2d, 0x2f, 0x4c, 0xfd, 0x28, 0xad, 0xe0, 0x8a, 0xad, 0x22, 0xb4, 0x56, 0x65, 0x8e, 0x86, 0x54 -.byte 0x8f, 0x93, 0x43, 0x29, 0xde, 0x39, 0x46, 0x78, 0xa3, 0x30, 0x23, 0xba, 0xcd, 0xf0, 0x7d, 0x13 -.byte 0x57, 0xc0, 0x5d, 0xd2, 0x83, 0x6b, 0x48, 0x4c, 0xc4, 0xab, 0x9f, 0x80, 0x5a, 0x5b, 0x3a, 0xbd -.byte 0xc9, 0xa7, 0x22, 0x3f, 0x80, 0x27, 0x33, 0x5b, 0x0e, 0xb7, 0x8a, 0x0c, 0x5d, 0x07, 0x37, 0x08 -.byte 0xcb, 0x6c, 0xd2, 0x7a, 0x47, 0x22, 0x44, 0x35, 0xc5, 0xcc, 0xcc, 0x2e, 0x8e, 0xdd, 0x2a, 0xed -.byte 0xb7, 0x7d, 0x66, 0x0d, 0x5f, 0x61, 0x51, 0x22, 0x55, 0x1b, 0xe3, 0x46, 0xe3, 0xe3, 0x3d, 0xd0 -.byte 0x35, 0x62, 0x9a, 0xdb, 0xaf, 0x14, 0xc8, 0x5b, 0xa1, 0xcc, 0x89, 0x1b, 0xe1, 0x30, 0x26, 0xfc -.byte 0xa0, 0x9b, 0x1f, 0x81, 0xa7, 0x47, 0x1f, 0x04, 0xeb, 0xa3, 0x39, 0x92, 0x06, 0x9f, 0x99, 0xd3 -.byte 0xbf, 0xd3, 0xea, 0x4f, 0x50, 0x9c, 0x19, 0xfe, 0x96, 0x87, 0x1e, 0x3c, 0x65, 0xf6, 0xa3, 0x18 -.byte 0x24, 0x83, 0x86, 0x10, 0xe7, 0x54, 0x3e, 0xa8, 0x3a, 0x76, 0x24, 0x4f, 0x81, 0x21, 0xc5, 0xe3 -.byte 0x0f, 0x02, 0xf8, 0x93, 0x94, 0x47, 0x20, 0xbb, 0xfe, 0xd4, 0x0e, 0xd3, 0x68, 0xb9, 0xdd, 0xc4 -.byte 0x7a, 0x84, 0x82, 0xe3, 0x53, 0x54, 0x79, 0xdd, 0xdb, 0x9c, 0xd2, 0xf2, 0x07, 0x9b, 0x2e, 0xb6 -.byte 0xbc, 0x3e, 0xed, 0x85, 0x6d, 0xef, 0x25, 0x11, 0xf2, 0x97, 0x1a, 0x42, 0x61, 0xf7, 0x4a, 0x97 -.byte 0xe8, 0x8b, 0xb1, 0x10, 0x07, 0xfa, 0x65, 0x81, 0xb2, 0xa2, 0x39, 0xcf, 0xf7, 0x3c, 0xff, 0x18 -.byte 0xfb, 0xc6, 0xf1, 0x5a, 0x8b, 0x59, 0xe2, 0x02, 0xac, 0x7b, 0x92, 0xd0, 0x4e, 0x14, 0x4f, 0x59 -.byte 0x45, 0xf6, 0x0c, 0x5e, 0x28, 0x5f, 0xb0, 0xe8, 0x3f, 0x45, 0xcf, 0xcf, 0xaf, 0x9b, 0x6f, 0xfb -.byte 0x84, 0xd3, 0x77, 0x5a, 0x95, 0x6f, 0xac, 0x94, 0x84, 0x9e, 0xee, 0xbc, 0xc0, 0x4a, 0x8f, 0x4a -.byte 0x93, 0xf8, 0x44, 0x21, 0xe2, 0x31, 0x45, 0x61, 0x50, 0x4e, 0x10, 0xd8, 0xe3, 0x35, 0x7c, 0x4c -.byte 0x19, 0xb4, 0xde, 0x05, 0xbf, 0xa3, 0x06, 0x9f, 0xc8, 0xb5, 0xcd, 0xe4, 0x1f, 0xd7, 0x17, 0x06 -.byte 0x0d, 0x7a, 0x95, 0x74, 0x55, 0x0d, 0x68, 0x1a, 0xfc, 0x10, 0x1b, 0x62, 0x64, 0x9d, 0x6d, 0xe0 -.byte 0x95, 0xa0, 0xc3, 0x94, 0x07, 0x57, 0x0d, 0x14, 0xe6, 0xbd, 0x05, 0xfb, 0xb8, 0x9f, 0xe6, 0xdf -.byte 0x8b, 0xe2, 0xc6, 0xe7, 0x7e, 0x96, 0xf6, 0x53, 0xc5, 0x80, 0x34, 0x50, 0x28, 0x58, 0xf0, 0x12 -.byte 0x50, 0x71, 0x17, 0x30, 0xba, 0xe6, 0x78, 0x63, 0xbc, 0xf4, 0xb2, 0xad, 0x9b, 0x2b, 0xb2, 0xfe -.byte 0xe1, 0x39, 0x8c, 0x5e, 0xba, 0x0b, 0x20, 0x94, 0xde, 0x7b, 0x83, 0xb8, 0xff, 0xe3, 0x56, 0x8d -.byte 0xb7, 0x11, 0xe9, 0x3b, 0x8c, 0xf2, 0xb1, 0xc1, 0x5d, 0x9d, 0xa4, 0x0b, 0x4c, 0x2b, 0xd9, 0xb2 -.byte 0x18, 0xf5, 0xb5, 0x9f, 0x4b, 0x02, 0x03, 0x01, 0x00, 0x01, 0x6e, 0x00, 0x78, 0x00, 0x30, 0x6c -.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x47, 0x52, 0x31, 0x37, 0x30 -.byte 0x35, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x2e, 0x48, 0x65, 0x6c, 0x6c, 0x65, 0x6e, 0x69, 0x63 -.byte 0x20, 0x41, 0x63, 0x61, 0x64, 0x65, 0x6d, 0x69, 0x63, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x52, 0x65 -.byte 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x20, 0x49, 0x6e, 0x73, 0x74, 0x69, 0x74, 0x75, 0x74, 0x69 -.byte 0x6f, 0x6e, 0x73, 0x20, 0x43, 0x41, 0x31, 0x24, 0x30, 0x22, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c -.byte 0x1b, 0x48, 0x41, 0x52, 0x49, 0x43, 0x41, 0x20, 0x54, 0x4c, 0x53, 0x20, 0x45, 0x43, 0x43, 0x20 -.byte 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x32, 0x30, 0x32, 0x31, 0x30, 0x76, 0x30, 0x10 -.byte 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22 -.byte 0x03, 0x62, 0x00, 0x04, 0x38, 0x08, 0xfe, 0xb1, 0xa0, 0x96, 0xd2, 0x7a, 0xac, 0xaf, 0x49, 0x3a -.byte 0xd0, 0xc0, 0xe0, 0xc3, 0x3b, 0x28, 0xaa, 0xf1, 0x72, 0x6d, 0x65, 0x00, 0x47, 0x88, 0x84, 0xfc -.byte 0x9a, 0x26, 0x6b, 0xaa, 0x4b, 0xba, 0x6c, 0x04, 0x0a, 0x88, 0x5e, 0x17, 0xf2, 0x55, 0x87, 0xfc -.byte 0x30, 0xb0, 0x34, 0xe2, 0x34, 0x58, 0x57, 0x1a, 0x84, 0x53, 0xe9, 0x30, 0xd9, 0xa9, 0xf2, 0x96 -.byte 0x74, 0xc3, 0x51, 0x1f, 0x58, 0x49, 0x31, 0xcc, 0x98, 0x4e, 0x60, 0x11, 0x87, 0x75, 0xd3, 0x72 -.byte 0x94, 0x90, 0x4f, 0x9b, 0x10, 0x25, 0x2a, 0xa8, 0x78, 0x2d, 0xbe, 0x90, 0x41, 0x58, 0x90, 0x15 -.byte 0x72, 0xa7, 0xa1, 0xb7, 0x6e, 0x00, 0x26, 0x02, 0x30, 0x6c, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03 -.byte 0x55, 0x04, 0x06, 0x13, 0x02, 0x47, 0x52, 0x31, 0x37, 0x30, 0x35, 0x06, 0x03, 0x55, 0x04, 0x0a -.byte 0x0c, 0x2e, 0x48, 0x65, 0x6c, 0x6c, 0x65, 0x6e, 0x69, 0x63, 0x20, 0x41, 0x63, 0x61, 0x64, 0x65 -.byte 0x6d, 0x69, 0x63, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x52, 0x65, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68 -.byte 0x20, 0x49, 0x6e, 0x73, 0x74, 0x69, 0x74, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x20, 0x43, 0x41 -.byte 0x31, 0x24, 0x30, 0x22, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x1b, 0x48, 0x41, 0x52, 0x49, 0x43 -.byte 0x41, 0x20, 0x54, 0x4c, 0x53, 0x20, 0x52, 0x53, 0x41, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43 -.byte 0x41, 0x20, 0x32, 0x30, 0x32, 0x31, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86 -.byte 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82 -.byte 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0x8b, 0xc2, 0xe7, 0xaf, 0x65, 0x9b, 0x05, 0x67, 0x96 -.byte 0xc9, 0x0d, 0x24, 0xb9, 0xd0, 0x0e, 0x64, 0xfc, 0xce, 0xe2, 0x24, 0x18, 0x2c, 0x84, 0x7f, 0x77 -.byte 0x51, 0xcb, 0x04, 0x11, 0x36, 0xb8, 0x5e, 0xed, 0x69, 0x71, 0xa7, 0x9e, 0xe4, 0x25, 0x09, 0x97 -.byte 0x67, 0xc1, 0x47, 0xc2, 0xcf, 0x91, 0x16, 0x36, 0x62, 0x3d, 0x38, 0x04, 0xe1, 0x51, 0x82, 0xff -.byte 0xac, 0xd2, 0xb4, 0x69, 0xdd, 0x2e, 0xec, 0x11, 0xa3, 0x45, 0xee, 0x6b, 0x6b, 0x3b, 0x4c, 0xbf -.byte 0x8c, 0x8d, 0xa4, 0x1e, 0x9d, 0x11, 0xb9, 0xe9, 0x38, 0xf9, 0x7a, 0x0e, 0x0c, 0x98, 0xe2, 0x23 -.byte 0x1d, 0xd1, 0x4e, 0x63, 0xd4, 0xe7, 0xb8, 0x41, 0x44, 0xfb, 0x6b, 0xaf, 0x6b, 0xda, 0x1f, 0xd3 -.byte 0xc5, 0x91, 0x88, 0x5b, 0xa4, 0x89, 0x92, 0xd1, 0x81, 0xe6, 0x8c, 0x39, 0x58, 0xa0, 0xd6, 0x69 -.byte 0x43, 0xa9, 0xad, 0x98, 0x52, 0x58, 0x6e, 0xdb, 0x0a, 0xfb, 0x6b, 0xcf, 0x68, 0xfa, 0xe3, 0xa4 -.byte 0x5e, 0x3a, 0x45, 0x73, 0x98, 0x07, 0xea, 0x5f, 0x02, 0x72, 0xde, 0x0c, 0xa5, 0xb3, 0x9f, 0xae -.byte 0xa9, 0x1d, 0xb7, 0x1d, 0xb3, 0xfc, 0x8a, 0x59, 0xe7, 0x6e, 0x72, 0x65, 0xad, 0xf5, 0x30, 0x94 -.byte 0x23, 0x07, 0xf3, 0x82, 0x16, 0x4b, 0x35, 0x98, 0x9c, 0x53, 0xbb, 0x2f, 0xca, 0xe4, 0x5a, 0xd9 -.byte 0xc7, 0x8d, 0x1d, 0xfc, 0x98, 0x99, 0xfb, 0x2c, 0xa4, 0x82, 0x6b, 0xf0, 0x2a, 0x1f, 0x8e, 0x0b -.byte 0x5f, 0x71, 0x5c, 0x5c, 0xae, 0x42, 0x7b, 0x29, 0x89, 0x81, 0xcb, 0x03, 0xa3, 0x99, 0xca, 0x88 -.byte 0x9e, 0x0b, 0x40, 0x09, 0x41, 0x33, 0xdb, 0xe6, 0x58, 0x7a, 0xfd, 0xae, 0x99, 0x70, 0xc0, 0x5a -.byte 0x0f, 0xd6, 0x13, 0x86, 0x71, 0x2f, 0x76, 0x69, 0xfc, 0x90, 0xdd, 0xdb, 0x2d, 0x6e, 0xd1, 0xf2 -.byte 0x9b, 0xf5, 0x1a, 0x6b, 0x9e, 0x6f, 0x15, 0x8c, 0x7a, 0xf0, 0x4b, 0x28, 0xa0, 0x22, 0x38, 0x80 -.byte 0x24, 0x6c, 0x36, 0xa4, 0x3b, 0xf2, 0x30, 0x91, 0xf3, 0x78, 0x13, 0xcf, 0xc1, 0x3f, 0x35, 0xab -.byte 0xf1, 0x1d, 0x11, 0x23, 0xb5, 0x43, 0x22, 0x9e, 0x01, 0x92, 0xb7, 0x18, 0x02, 0xe5, 0x11, 0xd1 -.byte 0x82, 0xdb, 0x15, 0x00, 0xcc, 0x61, 0x37, 0xc1, 0x2a, 0x7c, 0x9a, 0xe1, 0xd0, 0xba, 0xb3, 0x50 -.byte 0x46, 0xee, 0x82, 0xac, 0x9d, 0x31, 0xf8, 0xfb, 0x23, 0xe2, 0x03, 0x00, 0x48, 0x70, 0xa3, 0x09 -.byte 0x26, 0x79, 0x15, 0x53, 0x60, 0xf3, 0x38, 0x5c, 0xad, 0x38, 0xea, 0x81, 0x00, 0x63, 0x14, 0xb9 -.byte 0x33, 0x5e, 0xdd, 0x0b, 0xdb, 0xa0, 0x45, 0x07, 0x1a, 0x33, 0x09, 0xf8, 0x4d, 0xb4, 0xa7, 0x02 -.byte 0xa6, 0x69, 0xf4, 0xc2, 0x59, 0x05, 0x88, 0x65, 0x85, 0x56, 0xae, 0x4b, 0xcb, 0xe0, 0xde, 0x3c -.byte 0x7d, 0x2d, 0x1a, 0xc8, 0xe9, 0xfb, 0x1f, 0xa3, 0x61, 0x4a, 0xd6, 0x2a, 0x13, 0xad, 0x77, 0x4c -.byte 0x1a, 0x18, 0x9b, 0x91, 0x0f, 0x58, 0xd8, 0x06, 0x54, 0xc5, 0x97, 0xf8, 0xaa, 0x3f, 0x20, 0x8a -.byte 0xa6, 0x85, 0xa6, 0x77, 0xf6, 0xa6, 0xfc, 0x1c, 0xe2, 0xee, 0x6e, 0x94, 0x33, 0x2a, 0x83, 0x50 -.byte 0x84, 0x0a, 0xe5, 0x4f, 0x86, 0xf8, 0x50, 0x45, 0x78, 0x00, 0x81, 0xeb, 0x5b, 0x68, 0xe3, 0x26 -.byte 0x8d, 0xcc, 0x7b, 0x5c, 0x51, 0xf4, 0x14, 0x2c, 0x40, 0xbe, 0x1a, 0x60, 0x1d, 0x7a, 0x72, 0x61 -.byte 0x1d, 0x1f, 0x63, 0x2d, 0x88, 0xaa, 0xce, 0xa2, 0x45, 0x90, 0x08, 0xfc, 0x6b, 0xbe, 0xb3, 0x50 -.byte 0x2a, 0x5a, 0xfd, 0xa8, 0x48, 0x18, 0x46, 0xd6, 0x90, 0x40, 0x92, 0x90, 0x0a, 0x84, 0x5e, 0x68 -.byte 0x31, 0xf8, 0xeb, 0xed, 0x0d, 0xd3, 0x1d, 0xc6, 0x7d, 0x99, 0x18, 0x55, 0x56, 0x27, 0x65, 0x2e -.byte 0x8d, 0x45, 0xc5, 0x24, 0xec, 0xce, 0xe3, 0x02, 0x03, 0x01, 0x00, 0x01, 0x6e, 0x00, 0x26, 0x01 -.byte 0x30, 0x6c, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31 -.byte 0x15, 0x30, 0x13, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0c, 0x44, 0x69, 0x67, 0x69, 0x43, 0x65 -.byte 0x72, 0x74, 0x20, 0x49, 0x6e, 0x63, 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13 -.byte 0x10, 0x77, 0x77, 0x77, 0x2e, 0x64, 0x69, 0x67, 0x69, 0x63, 0x65, 0x72, 0x74, 0x2e, 0x63, 0x6f -.byte 0x6d, 0x31, 0x2b, 0x30, 0x29, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x22, 0x44, 0x69, 0x67, 0x69 -.byte 0x43, 0x65, 0x72, 0x74, 0x20, 0x48, 0x69, 0x67, 0x68, 0x20, 0x41, 0x73, 0x73, 0x75, 0x72, 0x61 -.byte 0x6e, 0x63, 0x65, 0x20, 0x45, 0x56, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x30, 0x82 -.byte 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05 -.byte 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xc6 -.byte 0xcc, 0xe5, 0x73, 0xe6, 0xfb, 0xd4, 0xbb, 0xe5, 0x2d, 0x2d, 0x32, 0xa6, 0xdf, 0xe5, 0x81, 0x3f -.byte 0xc9, 0xcd, 0x25, 0x49, 0xb6, 0x71, 0x2a, 0xc3, 0xd5, 0x94, 0x34, 0x67, 0xa2, 0x0a, 0x1c, 0xb0 -.byte 0x5f, 0x69, 0xa6, 0x40, 0xb1, 0xc4, 0xb7, 0xb2, 0x8f, 0xd0, 0x98, 0xa4, 0xa9, 0x41, 0x59, 0x3a -.byte 0xd3, 0xdc, 0x94, 0xd6, 0x3c, 0xdb, 0x74, 0x38, 0xa4, 0x4a, 0xcc, 0x4d, 0x25, 0x82, 0xf7, 0x4a -.byte 0xa5, 0x53, 0x12, 0x38, 0xee, 0xf3, 0x49, 0x6d, 0x71, 0x91, 0x7e, 0x63, 0xb6, 0xab, 0xa6, 0x5f -.byte 0xc3, 0xa4, 0x84, 0xf8, 0x4f, 0x62, 0x51, 0xbe, 0xf8, 0xc5, 0xec, 0xdb, 0x38, 0x92, 0xe3, 0x06 -.byte 0xe5, 0x08, 0x91, 0x0c, 0xc4, 0x28, 0x41, 0x55, 0xfb, 0xcb, 0x5a, 0x89, 0x15, 0x7e, 0x71, 0xe8 -.byte 0x35, 0xbf, 0x4d, 0x72, 0x09, 0x3d, 0xbe, 0x3a, 0x38, 0x50, 0x5b, 0x77, 0x31, 0x1b, 0x8d, 0xb3 -.byte 0xc7, 0x24, 0x45, 0x9a, 0xa7, 0xac, 0x6d, 0x00, 0x14, 0x5a, 0x04, 0xb7, 0xba, 0x13, 0xeb, 0x51 -.byte 0x0a, 0x98, 0x41, 0x41, 0x22, 0x4e, 0x65, 0x61, 0x87, 0x81, 0x41, 0x50, 0xa6, 0x79, 0x5c, 0x89 -.byte 0xde, 0x19, 0x4a, 0x57, 0xd5, 0x2e, 0xe6, 0x5d, 0x1c, 0x53, 0x2c, 0x7e, 0x98, 0xcd, 0x1a, 0x06 -.byte 0x16, 0xa4, 0x68, 0x73, 0xd0, 0x34, 0x04, 0x13, 0x5c, 0xa1, 0x71, 0xd3, 0x5a, 0x7c, 0x55, 0xdb -.byte 0x5e, 0x64, 0xe1, 0x37, 0x87, 0x30, 0x56, 0x04, 0xe5, 0x11, 0xb4, 0x29, 0x80, 0x12, 0xf1, 0x79 -.byte 0x39, 0x88, 0xa2, 0x02, 0x11, 0x7c, 0x27, 0x66, 0xb7, 0x88, 0xb7, 0x78, 0xf2, 0xca, 0x0a, 0xa8 -.byte 0x38, 0xab, 0x0a, 0x64, 0xc2, 0xbf, 0x66, 0x5d, 0x95, 0x84, 0xc1, 0xa1, 0x25, 0x1e, 0x87, 0x5d -.byte 0x1a, 0x50, 0x0b, 0x20, 0x12, 0xcc, 0x41, 0xbb, 0x6e, 0x0b, 0x51, 0x38, 0xb8, 0x4b, 0xcb, 0x02 -.byte 0x03, 0x01, 0x00, 0x01, 0x6f, 0x00, 0x26, 0x01, 0x30, 0x6d, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03 -.byte 0x55, 0x04, 0x06, 0x13, 0x02, 0x43, 0x48, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x0a -.byte 0x13, 0x07, 0x57, 0x49, 0x53, 0x65, 0x4b, 0x65, 0x79, 0x31, 0x22, 0x30, 0x20, 0x06, 0x03, 0x55 -.byte 0x04, 0x0b, 0x13, 0x19, 0x4f, 0x49, 0x53, 0x54, 0x45, 0x20, 0x46, 0x6f, 0x75, 0x6e, 0x64, 0x61 -.byte 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x45, 0x6e, 0x64, 0x6f, 0x72, 0x73, 0x65, 0x64, 0x31, 0x28, 0x30 -.byte 0x26, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x1f, 0x4f, 0x49, 0x53, 0x54, 0x45, 0x20, 0x57, 0x49 -.byte 0x53, 0x65, 0x4b, 0x65, 0x79, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x52, 0x6f, 0x6f -.byte 0x74, 0x20, 0x47, 0x42, 0x20, 0x43, 0x41, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a -.byte 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30 -.byte 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xd8, 0x17, 0xb7, 0x1c, 0x4a, 0x24, 0x2a, 0xd6 -.byte 0x97, 0xb1, 0xca, 0xe2, 0x1e, 0xfb, 0x7d, 0x38, 0xef, 0x98, 0xf5, 0xb2, 0x39, 0x98, 0x4e, 0x27 -.byte 0xb8, 0x11, 0x5d, 0x7b, 0xd2, 0x25, 0x94, 0x88, 0x82, 0x15, 0x26, 0x6a, 0x1b, 0x31, 0xbb, 0xa8 -.byte 0x5b, 0x21, 0x21, 0x2b, 0xd8, 0x0f, 0x4e, 0x9f, 0x5a, 0xf1, 0xb1, 0x5a, 0xe4, 0x79, 0xd6, 0x32 -.byte 0x23, 0x2b, 0xe1, 0x53, 0xcc, 0x99, 0x45, 0x5c, 0x7b, 0x4f, 0xad, 0xbc, 0xbf, 0x87, 0x4a, 0x0b -.byte 0x4b, 0x97, 0x5a, 0xa8, 0xf6, 0x48, 0xec, 0x7d, 0x7b, 0x0d, 0xcd, 0x21, 0x06, 0xdf, 0x9e, 0x15 -.byte 0xfd, 0x41, 0x8a, 0x48, 0xb7, 0x20, 0xf4, 0xa1, 0x7a, 0x1b, 0x57, 0xd4, 0x5d, 0x50, 0xff, 0xba -.byte 0x67, 0xd8, 0x23, 0x99, 0x1f, 0xc8, 0x3f, 0xe3, 0xde, 0xff, 0x6f, 0x5b, 0x77, 0xb1, 0x6b, 0x6e -.byte 0xb8, 0xc9, 0x64, 0xf7, 0xe1, 0xca, 0x41, 0x46, 0x0e, 0x29, 0x71, 0xd0, 0xb9, 0x23, 0xfc, 0xc9 -.byte 0x81, 0x5f, 0x4e, 0xf7, 0x6f, 0xdf, 0xbf, 0x84, 0xad, 0x73, 0x64, 0xbb, 0xb7, 0x42, 0x8e, 0x69 -.byte 0xf6, 0xd4, 0x76, 0x1d, 0x7e, 0x9d, 0xa7, 0xb8, 0x57, 0x8a, 0x51, 0x67, 0x72, 0xd7, 0xd4, 0xa8 -.byte 0xb8, 0x95, 0x54, 0x40, 0x73, 0x03, 0xf6, 0xea, 0xf4, 0xeb, 0xfe, 0x28, 0x42, 0x77, 0x3f, 0x9d -.byte 0x23, 0x1b, 0xb2, 0xb6, 0x3d, 0x80, 0x14, 0x07, 0x4c, 0x2e, 0x4f, 0xf7, 0xd5, 0x0a, 0x16, 0x0d -.byte 0xbd, 0x66, 0x43, 0x37, 0x7e, 0x23, 0x43, 0x79, 0xc3, 0x40, 0x86, 0xf5, 0x4c, 0x29, 0xda, 0x8e -.byte 0x9a, 0xad, 0x0d, 0xa5, 0x04, 0x87, 0x88, 0x1e, 0x85, 0xe3, 0xe9, 0x53, 0xd5, 0x9b, 0xc8, 0x8b -.byte 0x03, 0x63, 0x78, 0xeb, 0xe0, 0x19, 0x4a, 0x6e, 0xbb, 0x2f, 0x6b, 0x33, 0x64, 0x58, 0x93, 0xad -.byte 0x69, 0xbf, 0x8f, 0x1b, 0xef, 0x82, 0x48, 0xc7, 0x02, 0x03, 0x01, 0x00, 0x01, 0x6f, 0x00, 0x78 -.byte 0x00, 0x30, 0x6d, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x43, 0x48 -.byte 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x07, 0x57, 0x49, 0x53, 0x65, 0x4b -.byte 0x65, 0x79, 0x31, 0x22, 0x30, 0x20, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x19, 0x4f, 0x49, 0x53 -.byte 0x54, 0x45, 0x20, 0x46, 0x6f, 0x75, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x45, 0x6e -.byte 0x64, 0x6f, 0x72, 0x73, 0x65, 0x64, 0x31, 0x28, 0x30, 0x26, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13 -.byte 0x1f, 0x4f, 0x49, 0x53, 0x54, 0x45, 0x20, 0x57, 0x49, 0x53, 0x65, 0x4b, 0x65, 0x79, 0x20, 0x47 -.byte 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x47, 0x43, 0x20, 0x43, 0x41 -.byte 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b -.byte 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0x4c, 0xe9, 0x50, 0xc0, 0xc6, 0x0f, 0x72, 0x18 -.byte 0xbc, 0xd8, 0xf1, 0xba, 0xb3, 0x89, 0xe2, 0x79, 0x4a, 0xa3, 0x16, 0xa7, 0x6b, 0x54, 0x24, 0xdb -.byte 0x51, 0xff, 0xea, 0xf4, 0x09, 0x24, 0xc3, 0x0b, 0x22, 0x9f, 0xcb, 0x6a, 0x27, 0x82, 0x81, 0x0d -.byte 0xd2, 0xc0, 0xaf, 0x31, 0xe4, 0x74, 0x82, 0x6e, 0xca, 0x25, 0xd9, 0x8c, 0x75, 0x9d, 0xf1, 0xdb -.byte 0xd0, 0x9a, 0xa2, 0x4b, 0x21, 0x7e, 0x16, 0xa7, 0x63, 0x90, 0xd2, 0x39, 0xd4, 0xb1, 0x87, 0x78 -.byte 0x5f, 0x18, 0x96, 0x0f, 0x50, 0x1b, 0x35, 0x37, 0x0f, 0x6a, 0xc6, 0xdc, 0xd9, 0x13, 0x4d, 0xa4 -.byte 0x8e, 0x90, 0x37, 0xe6, 0xbd, 0x5b, 0x31, 0x91, 0x70, 0x00, 0x78, 0x00, 0x30, 0x6e, 0x31, 0x0b -.byte 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x45, 0x53, 0x31, 0x1c, 0x30, 0x1a, 0x06 -.byte 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x13, 0x46, 0x69, 0x72, 0x6d, 0x61, 0x70, 0x72, 0x6f, 0x66, 0x65 -.byte 0x73, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x20, 0x53, 0x41, 0x31, 0x18, 0x30, 0x16, 0x06, 0x03, 0x55 -.byte 0x04, 0x61, 0x0c, 0x0f, 0x56, 0x41, 0x54, 0x45, 0x53, 0x2d, 0x41, 0x36, 0x32, 0x36, 0x33, 0x34 -.byte 0x30, 0x36, 0x38, 0x31, 0x27, 0x30, 0x25, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x1e, 0x46, 0x49 -.byte 0x52, 0x4d, 0x41, 0x50, 0x52, 0x4f, 0x46, 0x45, 0x53, 0x49, 0x4f, 0x4e, 0x41, 0x4c, 0x20, 0x43 -.byte 0x41, 0x20, 0x52, 0x4f, 0x4f, 0x54, 0x2d, 0x41, 0x20, 0x57, 0x45, 0x42, 0x30, 0x76, 0x30, 0x10 -.byte 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22 -.byte 0x03, 0x62, 0x00, 0x04, 0x47, 0x53, 0xea, 0x2c, 0x11, 0xa4, 0x77, 0xc7, 0x2a, 0xea, 0xf3, 0xd6 -.byte 0x5f, 0x7b, 0xd3, 0x04, 0x91, 0x5c, 0xfa, 0x88, 0xc6, 0x22, 0xb9, 0x83, 0x10, 0x62, 0x77, 0x84 -.byte 0x33, 0x2d, 0xe9, 0x03, 0x88, 0xd4, 0xe0, 0x33, 0xf7, 0xed, 0x77, 0x2c, 0x4a, 0x60, 0xea, 0xe4 -.byte 0x6f, 0xad, 0x6d, 0xb4, 0xf8, 0x4c, 0x8a, 0xa4, 0xe4, 0x1f, 0xca, 0xea, 0x4f, 0x38, 0x4a, 0x2e -.byte 0x82, 0x73, 0x2b, 0xc7, 0x66, 0x9b, 0x0a, 0x8c, 0x40, 0x9c, 0x7c, 0x8a, 0xf6, 0xf2, 0x39, 0x60 -.byte 0xb2, 0xde, 0xcb, 0xec, 0xb8, 0xe4, 0x6f, 0xea, 0x9b, 0x5d, 0xb7, 0x53, 0x90, 0x18, 0x32, 0x55 -.byte 0xc5, 0x20, 0xb7, 0x94, 0x71, 0x00, 0x26, 0x02, 0x30, 0x6f, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03 -.byte 0x55, 0x04, 0x06, 0x13, 0x02, 0x48, 0x4b, 0x31, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x08 -.byte 0x13, 0x09, 0x48, 0x6f, 0x6e, 0x67, 0x20, 0x4b, 0x6f, 0x6e, 0x67, 0x31, 0x12, 0x30, 0x10, 0x06 -.byte 0x03, 0x55, 0x04, 0x07, 0x13, 0x09, 0x48, 0x6f, 0x6e, 0x67, 0x20, 0x4b, 0x6f, 0x6e, 0x67, 0x31 -.byte 0x16, 0x30, 0x14, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0d, 0x48, 0x6f, 0x6e, 0x67, 0x6b, 0x6f -.byte 0x6e, 0x67, 0x20, 0x50, 0x6f, 0x73, 0x74, 0x31, 0x20, 0x30, 0x1e, 0x06, 0x03, 0x55, 0x04, 0x03 -.byte 0x13, 0x17, 0x48, 0x6f, 0x6e, 0x67, 0x6b, 0x6f, 0x6e, 0x67, 0x20, 0x50, 0x6f, 0x73, 0x74, 0x20 -.byte 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x33, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06 -.byte 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f -.byte 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xb3, 0x88, 0xd7, 0xea, 0xce, 0x0f -.byte 0x20, 0x4e, 0xbe, 0xe6, 0xd6, 0x03, 0x6d, 0xee, 0x59, 0xfc, 0xc2, 0x57, 0xdf, 0x29, 0x68, 0xa1 -.byte 0x83, 0x0e, 0x3e, 0x68, 0xc7, 0x68, 0x58, 0x9c, 0x1c, 0x60, 0x4b, 0x89, 0x43, 0x0c, 0xb9, 0xd4 -.byte 0x15, 0xb2, 0xee, 0xc1, 0x4e, 0x75, 0xe9, 0xb5, 0xa7, 0xef, 0xe5, 0xe9, 0x35, 0x99, 0xe4, 0xcc -.byte 0x1c, 0xe7, 0x4b, 0x5f, 0x8d, 0x33, 0x30, 0x20, 0x33, 0x53, 0xd9, 0xa6, 0xbb, 0xd5, 0x3e, 0x13 -.byte 0x8e, 0xe9, 0x1f, 0x87, 0x49, 0xad, 0x50, 0x2d, 0x50, 0xca, 0x18, 0xbe, 0x01, 0x58, 0xa2, 0x13 -.byte 0x70, 0x96, 0xbb, 0x89, 0x88, 0x56, 0x80, 0x5c, 0xf8, 0xbd, 0x2c, 0x3c, 0xe1, 0x4c, 0x57, 0x88 -.byte 0xbb, 0xd3, 0xb9, 0x95, 0xef, 0xcb, 0xc7, 0xf6, 0xda, 0x31, 0x74, 0x28, 0xa6, 0xe6, 0x54, 0x89 -.byte 0xf5, 0x41, 0x31, 0xca, 0xe5, 0x26, 0x1a, 0xcd, 0x82, 0xe0, 0x70, 0xda, 0x3b, 0x29, 0xbb, 0xd5 -.byte 0x03, 0xf5, 0x99, 0xba, 0x55, 0xf5, 0x64, 0xd1, 0x60, 0x0e, 0xb3, 0x89, 0x49, 0xb8, 0x8a, 0x2f -.byte 0x05, 0xd2, 0x84, 0x45, 0x28, 0x7c, 0x8f, 0x68, 0x50, 0x12, 0x78, 0xfc, 0x0b, 0xb5, 0x53, 0xcb -.byte 0xc2, 0x98, 0x1c, 0x84, 0xa3, 0x9e, 0xb0, 0xbe, 0x23, 0xa4, 0xda, 0xdc, 0xc8, 0x2b, 0x1e, 0xda -.byte 0x6e, 0x45, 0x1e, 0x89, 0x98, 0xda, 0xf9, 0x00, 0x2e, 0x06, 0xe9, 0x0c, 0x3b, 0x70, 0xd5, 0x50 -.byte 0x25, 0x88, 0x99, 0xcb, 0xcd, 0x73, 0x60, 0xf7, 0xd5, 0xff, 0x35, 0x67, 0xc5, 0xa1, 0xbc, 0x5e -.byte 0xab, 0xcd, 0x4a, 0xb8, 0x45, 0xeb, 0xc8, 0x68, 0x1e, 0x0d, 0x0d, 0x14, 0x46, 0x12, 0xe3, 0xd2 -.byte 0x64, 0x62, 0x8a, 0x42, 0x98, 0xbc, 0xb4, 0xc6, 0x08, 0x08, 0xf8, 0xfd, 0xa8, 0x4c, 0x64, 0x9c -.byte 0x76, 0x01, 0xbd, 0x2f, 0xa9, 0x6c, 0x33, 0x0f, 0xd8, 0x3f, 0x28, 0xb8, 0x3c, 0x69, 0x01, 0x42 -.byte 0x86, 0x7e, 0x69, 0xc1, 0xc9, 0x06, 0xca, 0xe5, 0x7a, 0x46, 0x65, 0xe9, 0xc2, 0xd6, 0x50, 0x41 -.byte 0x2e, 0x3f, 0xb7, 0xe4, 0xed, 0x6c, 0xd7, 0xbf, 0x26, 0x01, 0x11, 0xa2, 0x16, 0x29, 0x4a, 0x6b -.byte 0x34, 0x06, 0x90, 0xec, 0x13, 0xd2, 0xb6, 0xfb, 0x6a, 0x76, 0xd2, 0x3c, 0xed, 0xf0, 0xd6, 0x2d -.byte 0xdd, 0xe1, 0x15, 0xec, 0xa3, 0x9b, 0x2f, 0x2c, 0xc9, 0x3e, 0x2b, 0xe4, 0x69, 0x3b, 0xff, 0x72 -.byte 0x25, 0xb1, 0x36, 0x86, 0x5b, 0xc7, 0x7f, 0x6b, 0x8b, 0x55, 0x1b, 0x4a, 0xc5, 0x20, 0x61, 0x3d -.byte 0xae, 0xcb, 0x50, 0xe1, 0x08, 0x3a, 0xbe, 0xb0, 0x8f, 0x63, 0x41, 0x53, 0x30, 0x08, 0x59, 0x3c -.byte 0x98, 0x1d, 0x77, 0xba, 0x63, 0x91, 0x7a, 0xca, 0x10, 0x50, 0x60, 0xbf, 0xf0, 0xd7, 0xbc, 0x95 -.byte 0x87, 0x8f, 0x97, 0xc5, 0xfe, 0x97, 0x6a, 0x01, 0x94, 0xa3, 0x7c, 0x5b, 0x85, 0x1d, 0x2a, 0x39 -.byte 0x3a, 0xd0, 0x54, 0xa1, 0xd1, 0x39, 0x71, 0x9d, 0xfd, 0x21, 0xf9, 0xb5, 0x7b, 0xf0, 0xe2, 0xe0 -.byte 0x02, 0x8f, 0x6e, 0x96, 0x24, 0x25, 0x2c, 0xa0, 0x1e, 0x2c, 0xa8, 0xc4, 0x89, 0xa7, 0xef, 0xed -.byte 0x99, 0x06, 0x2f, 0xb6, 0x0a, 0x4c, 0x4f, 0xdb, 0xa2, 0xcc, 0x37, 0x1a, 0xaf, 0x47, 0x85, 0x2d -.byte 0x8a, 0x5f, 0xc4, 0x34, 0x34, 0x4c, 0x00, 0xfd, 0x18, 0x93, 0x67, 0x13, 0xd1, 0x37, 0xe6, 0x48 -.byte 0xb4, 0x8b, 0x06, 0xc5, 0x57, 0x7b, 0x19, 0x86, 0x0a, 0x79, 0xcb, 0x00, 0xc9, 0x52, 0xaf, 0x42 -.byte 0xff, 0x37, 0x8f, 0xe1, 0xa3, 0x1e, 0x7a, 0x3d, 0x50, 0xab, 0x63, 0x06, 0xe7, 0x15, 0xb5, 0x3f -.byte 0xb6, 0x45, 0x37, 0x94, 0x37, 0xb1, 0x7e, 0xf2, 0x48, 0xc3, 0x7f, 0xc5, 0x75, 0xfe, 0x97, 0x8d -.byte 0x45, 0x8f, 0x1a, 0xa7, 0x1a, 0x72, 0x28, 0x1a, 0x40, 0x0f, 0x02, 0x03, 0x01, 0x00, 0x01, 0x73 -.byte 0x00, 0x5b, 0x00, 0x30, 0x71, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02 -.byte 0x48, 0x55, 0x31, 0x11, 0x30, 0x0f, 0x06, 0x03, 0x55, 0x04, 0x07, 0x0c, 0x08, 0x42, 0x75, 0x64 -.byte 0x61, 0x70, 0x65, 0x73, 0x74, 0x31, 0x16, 0x30, 0x14, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0d -.byte 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x65, 0x63, 0x20, 0x4c, 0x74, 0x64, 0x2e, 0x31, 0x17, 0x30 -.byte 0x15, 0x06, 0x03, 0x55, 0x04, 0x61, 0x0c, 0x0e, 0x56, 0x41, 0x54, 0x48, 0x55, 0x2d, 0x32, 0x33 -.byte 0x35, 0x38, 0x34, 0x34, 0x39, 0x37, 0x31, 0x1e, 0x30, 0x1c, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c -.byte 0x15, 0x65, 0x2d, 0x53, 0x7a, 0x69, 0x67, 0x6e, 0x6f, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43 -.byte 0x41, 0x20, 0x32, 0x30, 0x31, 0x37, 0x30, 0x59, 0x30, 0x13, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce -.byte 0x3d, 0x02, 0x01, 0x06, 0x08, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x03, 0x01, 0x07, 0x03, 0x42, 0x00 -.byte 0x04, 0x96, 0xdc, 0x3d, 0x8a, 0xd8, 0xb0, 0x7b, 0x6f, 0xc6, 0x27, 0xbe, 0x44, 0x90, 0xb1, 0xb3 -.byte 0x56, 0x15, 0x7b, 0x8e, 0x43, 0x24, 0x7d, 0x1a, 0x84, 0x59, 0xee, 0x63, 0x68, 0xb2, 0xc6, 0x5e -.byte 0x87, 0xd0, 0x15, 0x48, 0x1e, 0xa8, 0x90, 0xad, 0xbd, 0x53, 0xa2, 0xda, 0xde, 0x3a, 0x90, 0xa6 -.byte 0x60, 0x5f, 0x68, 0x32, 0xb5, 0x86, 0x41, 0xdf, 0x87, 0x5b, 0x2c, 0x7b, 0xc5, 0xfe, 0x7c, 0x7a -.byte 0xda, 0x76, 0x00, 0x78, 0x00, 0x30, 0x74, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06 -.byte 0x13, 0x02, 0x50, 0x4c, 0x31, 0x21, 0x30, 0x1f, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x18, 0x41 -.byte 0x73, 0x73, 0x65, 0x63, 0x6f, 0x20, 0x44, 0x61, 0x74, 0x61, 0x20, 0x53, 0x79, 0x73, 0x74, 0x65 -.byte 0x6d, 0x73, 0x20, 0x53, 0x2e, 0x41, 0x2e, 0x31, 0x27, 0x30, 0x25, 0x06, 0x03, 0x55, 0x04, 0x0b -.byte 0x13, 0x1e, 0x43, 0x65, 0x72, 0x74, 0x75, 0x6d, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69 -.byte 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79 -.byte 0x31, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x10, 0x43, 0x65, 0x72, 0x74, 0x75 -.byte 0x6d, 0x20, 0x45, 0x43, 0x2d, 0x33, 0x38, 0x34, 0x20, 0x43, 0x41, 0x30, 0x76, 0x30, 0x10, 0x06 -.byte 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03 -.byte 0x62, 0x00, 0x04, 0xc4, 0x28, 0x8e, 0xab, 0x18, 0x5b, 0x6a, 0xbe, 0x6e, 0x64, 0x37, 0x63, 0xe4 -.byte 0xcd, 0xec, 0xab, 0x3a, 0xf7, 0xcc, 0xa1, 0xb8, 0x0e, 0x82, 0x49, 0xd7, 0x86, 0x29, 0x9f, 0xa1 -.byte 0x94, 0xf2, 0xe3, 0x60, 0x78, 0x98, 0x81, 0x78, 0x06, 0x4d, 0xf2, 0xec, 0x9a, 0x0e, 0x57, 0x60 -.byte 0x83, 0x9f, 0xb4, 0xe6, 0x17, 0x2f, 0x1a, 0xb3, 0x5d, 0x02, 0x5b, 0x89, 0x23, 0x3c, 0xc2, 0x11 -.byte 0x05, 0x2a, 0xa7, 0x88, 0x13, 0x18, 0xf3, 0x50, 0x84, 0xd7, 0xbd, 0x34, 0x2c, 0x27, 0x89, 0x55 -.byte 0xff, 0xce, 0x4c, 0xe7, 0xdf, 0xa6, 0x1f, 0x28, 0xc4, 0xf0, 0x54, 0xc3, 0xb9, 0x7c, 0xb7, 0x53 -.byte 0xad, 0xeb, 0xc2, 0x7a, 0x00, 0x78, 0x00, 0x30, 0x78, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55 -.byte 0x04, 0x06, 0x13, 0x02, 0x45, 0x53, 0x31, 0x11, 0x30, 0x0f, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c -.byte 0x08, 0x46, 0x4e, 0x4d, 0x54, 0x2d, 0x52, 0x43, 0x4d, 0x31, 0x0e, 0x30, 0x0c, 0x06, 0x03, 0x55 -.byte 0x04, 0x0b, 0x0c, 0x05, 0x43, 0x65, 0x72, 0x65, 0x73, 0x31, 0x18, 0x30, 0x16, 0x06, 0x03, 0x55 -.byte 0x04, 0x61, 0x0c, 0x0f, 0x56, 0x41, 0x54, 0x45, 0x53, 0x2d, 0x51, 0x32, 0x38, 0x32, 0x36, 0x30 -.byte 0x30, 0x34, 0x4a, 0x31, 0x2c, 0x30, 0x2a, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x23, 0x41, 0x43 -.byte 0x20, 0x52, 0x41, 0x49, 0x5a, 0x20, 0x46, 0x4e, 0x4d, 0x54, 0x2d, 0x52, 0x43, 0x4d, 0x20, 0x53 -.byte 0x45, 0x52, 0x56, 0x49, 0x44, 0x4f, 0x52, 0x45, 0x53, 0x20, 0x53, 0x45, 0x47, 0x55, 0x52, 0x4f -.byte 0x53, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05 -.byte 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0xf6, 0xba, 0x57, 0x53, 0xc8, 0xca, 0xab -.byte 0xdf, 0x36, 0x4a, 0x52, 0x21, 0xe4, 0x97, 0xd2, 0x83, 0x67, 0x9e, 0xf0, 0x65, 0x51, 0xd0, 0x5e -.byte 0x87, 0xc7, 0x47, 0xb1, 0x59, 0xf2, 0x57, 0x47, 0x9b, 0x00, 0x02, 0x93, 0x44, 0x17, 0x69, 0xdb -.byte 0x42, 0xc7, 0xb1, 0xb2, 0x3a, 0x18, 0x0e, 0xb4, 0x5d, 0x8c, 0xb3, 0x66, 0x5d, 0xa1, 0x34, 0xf9 -.byte 0x36, 0x2c, 0x49, 0xdb, 0xf3, 0x46, 0xfc, 0xb3, 0x44, 0x69, 0x44, 0x13, 0x66, 0xfd, 0xd7, 0xc5 -.byte 0xfd, 0xaf, 0x36, 0x4d, 0xce, 0x03, 0x4d, 0x07, 0x71, 0xcf, 0xaf, 0x6a, 0x05, 0xd2, 0xa2, 0x43 -.byte 0x5a, 0x0a, 0x52, 0x6f, 0x01, 0x03, 0x4e, 0x8e, 0x8b, 0x7c, 0x00, 0x26, 0x02, 0x30, 0x7a, 0x31 -.byte 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x50, 0x4c, 0x31, 0x21, 0x30, 0x1f -.byte 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x18, 0x41, 0x73, 0x73, 0x65, 0x63, 0x6f, 0x20, 0x44, 0x61 -.byte 0x74, 0x61, 0x20, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x73, 0x20, 0x53, 0x2e, 0x41, 0x2e, 0x31 -.byte 0x27, 0x30, 0x25, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x1e, 0x43, 0x65, 0x72, 0x74, 0x75, 0x6d -.byte 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41 -.byte 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x31, 0x1f, 0x30, 0x1d, 0x06, 0x03, 0x55, 0x04 -.byte 0x03, 0x13, 0x16, 0x43, 0x65, 0x72, 0x74, 0x75, 0x6d, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x65 -.byte 0x64, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06 -.byte 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f -.byte 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xd1, 0x2d, 0x8e, 0xbb, 0xb7, 0x36 -.byte 0xea, 0x6d, 0x37, 0x91, 0x9f, 0x4e, 0x93, 0xa7, 0x05, 0xe4, 0x29, 0x03, 0x25, 0xce, 0x1c, 0x82 -.byte 0xf7, 0x7c, 0x99, 0x9f, 0x41, 0x06, 0xcd, 0xed, 0xa3, 0xba, 0xc0, 0xdb, 0x09, 0x2c, 0xc1, 0x7c -.byte 0xdf, 0x29, 0x7e, 0x4b, 0x65, 0x2f, 0x93, 0xa7, 0xd4, 0x01, 0x6b, 0x03, 0x28, 0x18, 0xa3, 0xd8 -.byte 0x9d, 0x05, 0xc1, 0x2a, 0xd8, 0x45, 0xf1, 0x91, 0xde, 0xdf, 0x3b, 0xd0, 0x80, 0x02, 0x8c, 0xcf -.byte 0x38, 0x0f, 0xea, 0xa7, 0x5c, 0x78, 0x11, 0xa4, 0xc1, 0xc8, 0x85, 0x5c, 0x25, 0xd3, 0xd3, 0xb2 -.byte 0xe7, 0x25, 0xcf, 0x11, 0x54, 0x97, 0xab, 0x35, 0xc0, 0x1e, 0x76, 0x1c, 0xef, 0x00, 0x53, 0x9f -.byte 0x39, 0xdc, 0x14, 0xa5, 0x2c, 0x22, 0x25, 0xb3, 0x72, 0x72, 0xfc, 0x8d, 0xb3, 0xe5, 0x3e, 0x08 -.byte 0x1e, 0x14, 0x2a, 0x37, 0x0b, 0x88, 0x3c, 0xca, 0xb0, 0xf4, 0xc8, 0xc2, 0xa1, 0xae, 0xbc, 0xc1 -.byte 0xbe, 0x29, 0x67, 0x55, 0xe2, 0xfc, 0xad, 0x59, 0x5c, 0xfe, 0xbd, 0x57, 0x2c, 0xb0, 0x90, 0x8d -.byte 0xc2, 0xed, 0x37, 0xb6, 0x7c, 0x99, 0x88, 0xb5, 0xd5, 0x03, 0x9a, 0x3d, 0x15, 0x0d, 0x3d, 0x3a -.byte 0xa8, 0xa8, 0x45, 0xf0, 0x95, 0x4e, 0x25, 0x59, 0x1d, 0xcd, 0x98, 0x69, 0xbb, 0xd3, 0xcc, 0x32 -.byte 0xc9, 0x8d, 0xef, 0x81, 0xfe, 0xad, 0x7d, 0x89, 0xbb, 0xba, 0x60, 0x13, 0xca, 0x65, 0x95, 0x67 -.byte 0xa0, 0xf3, 0x19, 0xf6, 0x03, 0x56, 0xd4, 0x6a, 0xd3, 0x27, 0xe2, 0xa1, 0xad, 0x83, 0xf0, 0x4a -.byte 0x12, 0x22, 0x77, 0x1c, 0x05, 0x73, 0xe2, 0x19, 0x71, 0x42, 0xc0, 0xec, 0x75, 0x46, 0x9a, 0x90 -.byte 0x58, 0xe0, 0x6a, 0x8e, 0x2b, 0xa5, 0x46, 0x30, 0x04, 0x8e, 0x19, 0xb2, 0x17, 0xe3, 0xbe, 0xa9 -.byte 0xba, 0x7f, 0x56, 0xf1, 0x24, 0x03, 0xd7, 0xb2, 0x21, 0x28, 0x76, 0x0e, 0x36, 0x30, 0x4c, 0x79 -.byte 0xd5, 0x41, 0x9a, 0x9a, 0xa8, 0xb8, 0x35, 0xba, 0x0c, 0x3a, 0xf2, 0x44, 0x1b, 0x20, 0x88, 0xf7 -.byte 0xc5, 0x25, 0xd7, 0x3d, 0xc6, 0xe3, 0x3e, 0x43, 0xdd, 0x87, 0xfe, 0xc4, 0xea, 0xf5, 0x53, 0x3e -.byte 0x4c, 0x65, 0xff, 0x3b, 0x4a, 0xcb, 0x78, 0x5a, 0x6b, 0x17, 0x5f, 0x0d, 0xc7, 0xc3, 0x4f, 0x4e -.byte 0x9a, 0x2a, 0xa2, 0xed, 0x57, 0x4d, 0x22, 0xe2, 0x46, 0x9a, 0x3f, 0x0f, 0x91, 0x34, 0x24, 0x7d -.byte 0x55, 0xe3, 0x8c, 0x95, 0x37, 0xd3, 0x1a, 0xf0, 0x09, 0x2b, 0x2c, 0xd2, 0xc9, 0x8d, 0xb4, 0x0d -.byte 0x00, 0xab, 0x67, 0x29, 0x28, 0xd8, 0x01, 0xf5, 0x19, 0x04, 0xb6, 0x1d, 0xbe, 0x76, 0xfe, 0x72 -.byte 0x5c, 0xc4, 0x85, 0xca, 0xd2, 0x80, 0x41, 0xdf, 0x05, 0xa8, 0xa3, 0xd5, 0x84, 0x90, 0x4f, 0x0b -.byte 0xf3, 0xe0, 0x3f, 0x9b, 0x19, 0xd2, 0x37, 0x89, 0x3f, 0xf2, 0x7b, 0x52, 0x1c, 0x8c, 0xf6, 0xe1 -.byte 0xf7, 0x3c, 0x07, 0x97, 0x8c, 0x0e, 0xa2, 0x59, 0x81, 0x0c, 0xb2, 0x90, 0x3d, 0xd3, 0xe3, 0x59 -.byte 0x46, 0xed, 0x0f, 0xa9, 0xa7, 0xde, 0x80, 0x6b, 0x5a, 0xaa, 0x07, 0xb6, 0x19, 0xcb, 0xbc, 0x57 -.byte 0xf3, 0x97, 0x21, 0x7a, 0x0c, 0xb1, 0x2b, 0x74, 0x3e, 0xeb, 0xda, 0xa7, 0x67, 0x2d, 0x4c, 0xc4 -.byte 0x98, 0x9e, 0x36, 0x09, 0x76, 0x66, 0x66, 0xfc, 0x1a, 0x3f, 0xea, 0x48, 0x54, 0x1c, 0xbe, 0x30 -.byte 0xbd, 0x80, 0x50, 0xbf, 0x7c, 0xb5, 0xce, 0x00, 0xf6, 0x0c, 0x61, 0xd9, 0xe7, 0x24, 0x03, 0xe0 -.byte 0xe3, 0x01, 0x81, 0x0e, 0xbd, 0xd8, 0x85, 0x34, 0x88, 0xbd, 0xb2, 0x36, 0xa8, 0x7b, 0x5c, 0x08 -.byte 0xe5, 0x44, 0x80, 0x8c, 0x6f, 0xf8, 0x2f, 0xd5, 0x21, 0xca, 0x1d, 0x1c, 0xd0, 0xfb, 0xc4, 0xb5 -.byte 0x87, 0xd1, 0x3a, 0x4e, 0xc7, 0x76, 0xb5, 0x35, 0x48, 0xb5, 0x02, 0x03, 0x01, 0x00, 0x01, 0x7d -.byte 0x00, 0x26, 0x01, 0x30, 0x7b, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02 -.byte 0x47, 0x42, 0x31, 0x1b, 0x30, 0x19, 0x06, 0x03, 0x55, 0x04, 0x08, 0x0c, 0x12, 0x47, 0x72, 0x65 -.byte 0x61, 0x74, 0x65, 0x72, 0x20, 0x4d, 0x61, 0x6e, 0x63, 0x68, 0x65, 0x73, 0x74, 0x65, 0x72, 0x31 -.byte 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x07, 0x0c, 0x07, 0x53, 0x61, 0x6c, 0x66, 0x6f, 0x72 -.byte 0x64, 0x31, 0x1a, 0x30, 0x18, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x11, 0x43, 0x6f, 0x6d, 0x6f -.byte 0x64, 0x6f, 0x20, 0x43, 0x41, 0x20, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x64, 0x31, 0x21, 0x30 -.byte 0x1f, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x18, 0x41, 0x41, 0x41, 0x20, 0x43, 0x65, 0x72, 0x74 -.byte 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x20, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73 -.byte 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01 -.byte 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01 -.byte 0x00, 0xbe, 0x40, 0x9d, 0xf4, 0x6e, 0xe1, 0xea, 0x76, 0x87, 0x1c, 0x4d, 0x45, 0x44, 0x8e, 0xbe -.byte 0x46, 0xc8, 0x83, 0x06, 0x9d, 0xc1, 0x2a, 0xfe, 0x18, 0x1f, 0x8e, 0xe4, 0x02, 0xfa, 0xf3, 0xab -.byte 0x5d, 0x50, 0x8a, 0x16, 0x31, 0x0b, 0x9a, 0x06, 0xd0, 0xc5, 0x70, 0x22, 0xcd, 0x49, 0x2d, 0x54 -.byte 0x63, 0xcc, 0xb6, 0x6e, 0x68, 0x46, 0x0b, 0x53, 0xea, 0xcb, 0x4c, 0x24, 0xc0, 0xbc, 0x72, 0x4e -.byte 0xea, 0xf1, 0x15, 0xae, 0xf4, 0x54, 0x9a, 0x12, 0x0a, 0xc3, 0x7a, 0xb2, 0x33, 0x60, 0xe2, 0xda -.byte 0x89, 0x55, 0xf3, 0x22, 0x58, 0xf3, 0xde, 0xdc, 0xcf, 0xef, 0x83, 0x86, 0xa2, 0x8c, 0x94, 0x4f -.byte 0x9f, 0x68, 0xf2, 0x98, 0x90, 0x46, 0x84, 0x27, 0xc7, 0x76, 0xbf, 0xe3, 0xcc, 0x35, 0x2c, 0x8b -.byte 0x5e, 0x07, 0x64, 0x65, 0x82, 0xc0, 0x48, 0xb0, 0xa8, 0x91, 0xf9, 0x61, 0x9f, 0x76, 0x20, 0x50 -.byte 0xa8, 0x91, 0xc7, 0x66, 0xb5, 0xeb, 0x78, 0x62, 0x03, 0x56, 0xf0, 0x8a, 0x1a, 0x13, 0xea, 0x31 -.byte 0xa3, 0x1e, 0xa0, 0x99, 0xfd, 0x38, 0xf6, 0xf6, 0x27, 0x32, 0x58, 0x6f, 0x07, 0xf5, 0x6b, 0xb8 -.byte 0xfb, 0x14, 0x2b, 0xaf, 0xb7, 0xaa, 0xcc, 0xd6, 0x63, 0x5f, 0x73, 0x8c, 0xda, 0x05, 0x99, 0xa8 -.byte 0x38, 0xa8, 0xcb, 0x17, 0x78, 0x36, 0x51, 0xac, 0xe9, 0x9e, 0xf4, 0x78, 0x3a, 0x8d, 0xcf, 0x0f -.byte 0xd9, 0x42, 0xe2, 0x98, 0x0c, 0xab, 0x2f, 0x9f, 0x0e, 0x01, 0xde, 0xef, 0x9f, 0x99, 0x49, 0xf1 -.byte 0x2d, 0xdf, 0xac, 0x74, 0x4d, 0x1b, 0x98, 0xb5, 0x47, 0xc5, 0xe5, 0x29, 0xd1, 0xf9, 0x90, 0x18 -.byte 0xc7, 0x62, 0x9c, 0xbe, 0x83, 0xc7, 0x26, 0x7b, 0x3e, 0x8a, 0x25, 0xc7, 0xc0, 0xdd, 0x9d, 0xe6 -.byte 0x35, 0x68, 0x10, 0x20, 0x9d, 0x8f, 0xd8, 0xde, 0xd2, 0xc3, 0x84, 0x9c, 0x0d, 0x5e, 0xe8, 0x2f -.byte 0xc9, 0x02, 0x03, 0x01, 0x00, 0x01, 0x7e, 0x00, 0x78, 0x00, 0x30, 0x7c, 0x31, 0x0b, 0x30, 0x09 -.byte 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x0e, 0x30, 0x0c, 0x06, 0x03, 0x55 -.byte 0x04, 0x08, 0x0c, 0x05, 0x54, 0x65, 0x78, 0x61, 0x73, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55 -.byte 0x04, 0x07, 0x0c, 0x07, 0x48, 0x6f, 0x75, 0x73, 0x74, 0x6f, 0x6e, 0x31, 0x18, 0x30, 0x16, 0x06 -.byte 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0f, 0x53, 0x53, 0x4c, 0x20, 0x43, 0x6f, 0x72, 0x70, 0x6f, 0x72 -.byte 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x31, 0x31, 0x30, 0x2f, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x28 -.byte 0x53, 0x53, 0x4c, 0x2e, 0x63, 0x6f, 0x6d, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x65, 0x72 -.byte 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f -.byte 0x72, 0x69, 0x74, 0x79, 0x20, 0x45, 0x43, 0x43, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86 -.byte 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04 -.byte 0x45, 0x6e, 0xa9, 0x50, 0xc4, 0xa6, 0x23, 0x36, 0x9e, 0x5f, 0x28, 0x8d, 0x17, 0xcb, 0x96, 0x22 -.byte 0x64, 0x3f, 0xdc, 0x7a, 0x8e, 0x1d, 0xcc, 0x08, 0xb3, 0xa2, 0x71, 0x24, 0xba, 0x8e, 0x49, 0xb9 -.byte 0x04, 0x1b, 0x47, 0x96, 0x58, 0xab, 0x2d, 0x95, 0xc8, 0xed, 0x9e, 0x08, 0x35, 0xc8, 0x27, 0xeb -.byte 0x89, 0x8c, 0x53, 0x58, 0xeb, 0x62, 0x8a, 0xfe, 0xf0, 0x5b, 0x0f, 0x6b, 0x31, 0x52, 0x63, 0x41 -.byte 0x3b, 0x89, 0xcd, 0xec, 0xec, 0xb6, 0x8d, 0x19, 0xd3, 0x34, 0x07, 0xdc, 0xbb, 0xc6, 0x06, 0x7f -.byte 0xc2, 0x45, 0x95, 0xec, 0xcb, 0x7f, 0xa8, 0x23, 0xe0, 0x09, 0xe9, 0x81, 0xfa, 0xf3, 0x47, 0xd3 -.byte 0x7e, 0x00, 0x26, 0x02, 0x30, 0x7c, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13 -.byte 0x02, 0x55, 0x53, 0x31, 0x0e, 0x30, 0x0c, 0x06, 0x03, 0x55, 0x04, 0x08, 0x0c, 0x05, 0x54, 0x65 -.byte 0x78, 0x61, 0x73, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x07, 0x0c, 0x07, 0x48, 0x6f -.byte 0x75, 0x73, 0x74, 0x6f, 0x6e, 0x31, 0x18, 0x30, 0x16, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0f -.byte 0x53, 0x53, 0x4c, 0x20, 0x43, 0x6f, 0x72, 0x70, 0x6f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x31 -.byte 0x31, 0x30, 0x2f, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x28, 0x53, 0x53, 0x4c, 0x2e, 0x63, 0x6f -.byte 0x6d, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61 -.byte 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x20, 0x52 -.byte 0x53, 0x41, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d -.byte 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82 -.byte 0x02, 0x01, 0x00, 0xf9, 0x0f, 0xdd, 0xa3, 0x2b, 0x7d, 0xcb, 0xd0, 0x2a, 0xfe, 0xec, 0x67, 0x85 -.byte 0xa6, 0xe7, 0x2e, 0x1b, 0xba, 0x77, 0xe1, 0xe3, 0xf5, 0xaf, 0xa4, 0xec, 0xfa, 0x4a, 0x5d, 0x91 -.byte 0xc4, 0x57, 0x47, 0x6b, 0x18, 0x77, 0x6b, 0x76, 0xf2, 0xfd, 0x93, 0xe4, 0x3d, 0x0f, 0xc2, 0x16 -.byte 0x9e, 0x0b, 0x66, 0xc3, 0x56, 0x94, 0x9e, 0x17, 0x83, 0x85, 0xce, 0x56, 0xef, 0xf2, 0x16, 0xfd -.byte 0x00, 0x62, 0xf5, 0x22, 0x09, 0x54, 0xe8, 0x65, 0x17, 0x4e, 0x41, 0xb9, 0xe0, 0x4f, 0x46, 0x97 -.byte 0xaa, 0x1b, 0xc8, 0xb8, 0x6e, 0x62, 0x5e, 0x69, 0xb1, 0x5f, 0xdb, 0x2a, 0x02, 0x7e, 0xfc, 0x6c -.byte 0xca, 0xf3, 0x41, 0xd8, 0xed, 0xd0, 0xe8, 0xfc, 0x3f, 0x61, 0x48, 0xed, 0xb0, 0x03, 0x14, 0x1d -.byte 0x10, 0x0e, 0x4b, 0x19, 0xe0, 0xbb, 0x4e, 0xec, 0x86, 0x65, 0xff, 0x36, 0xf3, 0x5e, 0x67, 0x02 -.byte 0x0b, 0x9d, 0x86, 0x55, 0x61, 0xfd, 0x7a, 0x38, 0xed, 0xfe, 0xe2, 0x19, 0x00, 0xb7, 0x6f, 0xa1 -.byte 0x50, 0x62, 0x75, 0x74, 0x3c, 0xa0, 0xfa, 0xc8, 0x25, 0x92, 0xb4, 0x6e, 0x7a, 0x22, 0xc7, 0xf8 -.byte 0x1e, 0xa1, 0xe3, 0xb2, 0xdd, 0x91, 0x31, 0xab, 0x2b, 0x1d, 0x04, 0xff, 0xa5, 0x4a, 0x04, 0x37 -.byte 0xe9, 0x85, 0xa4, 0x33, 0x2b, 0xfd, 0xe2, 0xd6, 0x55, 0x34, 0x7c, 0x19, 0xa4, 0x4a, 0x68, 0xc7 -.byte 0xb2, 0xa8, 0xd3, 0xb7, 0xca, 0xa1, 0x93, 0x88, 0xeb, 0xc1, 0x97, 0xbc, 0x8c, 0xf9, 0x1d, 0xd9 -.byte 0x22, 0x84, 0x24, 0x74, 0xc7, 0x04, 0x3d, 0x6a, 0xa9, 0x29, 0x93, 0xcc, 0xeb, 0xb8, 0x5b, 0xe1 -.byte 0xfe, 0x5f, 0x25, 0xaa, 0x34, 0x58, 0xc8, 0xc1, 0x23, 0x54, 0x9d, 0x1b, 0x98, 0x11, 0xc3, 0x38 -.byte 0x9c, 0x7e, 0x3d, 0x86, 0x6c, 0xa5, 0x0f, 0x40, 0x86, 0x7c, 0x02, 0xf4, 0x5c, 0x02, 0x4f, 0x28 -.byte 0xcb, 0xae, 0x71, 0x9f, 0x0f, 0x3a, 0xc8, 0x33, 0xfe, 0x11, 0x25, 0x35, 0xea, 0xfc, 0xba, 0xc5 -.byte 0x60, 0x3d, 0xd9, 0x7c, 0x18, 0xd5, 0xb2, 0xa9, 0xd3, 0x75, 0x78, 0x03, 0x72, 0x22, 0xca, 0x3a -.byte 0xc3, 0x1f, 0xef, 0x2c, 0xe5, 0x2e, 0xa9, 0xfa, 0x9e, 0x2c, 0xb6, 0x51, 0x46, 0xfd, 0xaf, 0x03 -.byte 0xd6, 0xea, 0x60, 0x68, 0xea, 0x85, 0x16, 0x36, 0x6b, 0x85, 0xe9, 0x1e, 0xc0, 0xb3, 0xdd, 0xc4 -.byte 0x24, 0xdc, 0x80, 0x2a, 0x81, 0x41, 0x6d, 0x94, 0x3e, 0xc8, 0xe0, 0xc9, 0x81, 0x41, 0x00, 0x9e -.byte 0x5e, 0xbf, 0x7f, 0xc5, 0x08, 0x98, 0xa2, 0x18, 0x2c, 0x42, 0x40, 0xb3, 0xf9, 0x6f, 0x38, 0x27 -.byte 0x4b, 0x4e, 0x80, 0xf4, 0x3d, 0x81, 0x47, 0xe0, 0x88, 0x7c, 0xea, 0x1c, 0xce, 0xb5, 0x75, 0x5c -.byte 0x51, 0x2e, 0x1c, 0x2b, 0x7f, 0x1a, 0x72, 0x28, 0xe7, 0x00, 0xb5, 0xd1, 0x74, 0xc6, 0xd7, 0xe4 -.byte 0x9f, 0xad, 0x07, 0x93, 0xb6, 0x53, 0x35, 0x35, 0xfc, 0x37, 0xe4, 0xc3, 0xf6, 0x5d, 0x16, 0xbe -.byte 0x21, 0x73, 0xde, 0x92, 0x0a, 0xf8, 0xa0, 0x63, 0x6a, 0xbc, 0x96, 0x92, 0x6a, 0x3e, 0xf8, 0xbc -.byte 0x65, 0x55, 0x9b, 0xde, 0xf5, 0x0d, 0x89, 0x26, 0x04, 0xfc, 0x25, 0x1a, 0xa6, 0x25, 0x69, 0xcb -.byte 0xc2, 0x6d, 0xca, 0x7c, 0xe2, 0x59, 0x5f, 0x97, 0xac, 0xeb, 0xef, 0x2e, 0xc8, 0xbc, 0xd7, 0x1b -.byte 0x59, 0x3c, 0x2b, 0xcc, 0xf2, 0x19, 0xc8, 0x93, 0x6b, 0x27, 0x63, 0x19, 0xcf, 0xfc, 0xe9, 0x26 -.byte 0xf8, 0xca, 0x71, 0x9b, 0x7f, 0x93, 0xfe, 0x34, 0x67, 0x84, 0x4e, 0x99, 0xeb, 0xfc, 0xb3, 0x78 -.byte 0x09, 0x33, 0x70, 0xba, 0x66, 0xa6, 0x76, 0xed, 0x1b, 0x73, 0xeb, 0x1a, 0xa5, 0x0d, 0xc4, 0x22 -.byte 0x13, 0x20, 0x94, 0x56, 0x0a, 0x4e, 0x2c, 0x6c, 0x4e, 0xb1, 0xfd, 0xcf, 0x9c, 0x09, 0xba, 0xa2 -.byte 0x33, 0xed, 0x87, 0x02, 0x03, 0x01, 0x00, 0x01, 0x80, 0x00, 0x26, 0x01, 0x30, 0x7e, 0x31, 0x0b -.byte 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x50, 0x4c, 0x31, 0x22, 0x30, 0x20, 0x06 -.byte 0x03, 0x55, 0x04, 0x0a, 0x13, 0x19, 0x55, 0x6e, 0x69, 0x7a, 0x65, 0x74, 0x6f, 0x20, 0x54, 0x65 -.byte 0x63, 0x68, 0x6e, 0x6f, 0x6c, 0x6f, 0x67, 0x69, 0x65, 0x73, 0x20, 0x53, 0x2e, 0x41, 0x2e, 0x31 -.byte 0x27, 0x30, 0x25, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x1e, 0x43, 0x65, 0x72, 0x74, 0x75, 0x6d -.byte 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41 -.byte 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x31, 0x22, 0x30, 0x20, 0x06, 0x03, 0x55, 0x04 -.byte 0x03, 0x13, 0x19, 0x43, 0x65, 0x72, 0x74, 0x75, 0x6d, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x65 -.byte 0x64, 0x20, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x20, 0x43, 0x41, 0x30, 0x82, 0x01, 0x22 -.byte 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03 -.byte 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xe3, 0xfb, 0x7d -.byte 0xa3, 0x72, 0xba, 0xc2, 0xf0, 0xc9, 0x14, 0x87, 0xf5, 0x6b, 0x01, 0x4e, 0xe1, 0x6e, 0x40, 0x07 -.byte 0xba, 0x6d, 0x27, 0x5d, 0x7f, 0xf7, 0x5b, 0x2d, 0xb3, 0x5a, 0xc7, 0x51, 0x5f, 0xab, 0xa4, 0x32 -.byte 0xa6, 0x61, 0x87, 0xb6, 0x6e, 0x0f, 0x86, 0xd2, 0x30, 0x02, 0x97, 0xf8, 0xd7, 0x69, 0x57, 0xa1 -.byte 0x18, 0x39, 0x5d, 0x6a, 0x64, 0x79, 0xc6, 0x01, 0x59, 0xac, 0x3c, 0x31, 0x4a, 0x38, 0x7c, 0xd2 -.byte 0x04, 0xd2, 0x4b, 0x28, 0xe8, 0x20, 0x5f, 0x3b, 0x07, 0xa2, 0xcc, 0x4d, 0x73, 0xdb, 0xf3, 0xae -.byte 0x4f, 0xc7, 0x56, 0xd5, 0x5a, 0xa7, 0x96, 0x89, 0xfa, 0xf3, 0xab, 0x68, 0xd4, 0x23, 0x86, 0x59 -.byte 0x27, 0xcf, 0x09, 0x27, 0xbc, 0xac, 0x6e, 0x72, 0x83, 0x1c, 0x30, 0x72, 0xdf, 0xe0, 0xa2, 0xe9 -.byte 0xd2, 0xe1, 0x74, 0x75, 0x19, 0xbd, 0x2a, 0x9e, 0x7b, 0x15, 0x54, 0x04, 0x1b, 0xd7, 0x43, 0x39 -.byte 0xad, 0x55, 0x28, 0xc5, 0xe2, 0x1a, 0xbb, 0xf4, 0xc0, 0xe4, 0xae, 0x38, 0x49, 0x33, 0xcc, 0x76 -.byte 0x85, 0x9f, 0x39, 0x45, 0xd2, 0xa4, 0x9e, 0xf2, 0x12, 0x8c, 0x51, 0xf8, 0x7c, 0xe4, 0x2d, 0x7f -.byte 0xf5, 0xac, 0x5f, 0xeb, 0x16, 0x9f, 0xb1, 0x2d, 0xd1, 0xba, 0xcc, 0x91, 0x42, 0x77, 0x4c, 0x25 -.byte 0xc9, 0x90, 0x38, 0x6f, 0xdb, 0xf0, 0xcc, 0xfb, 0x8e, 0x1e, 0x97, 0x59, 0x3e, 0xd5, 0x60, 0x4e -.byte 0xe6, 0x05, 0x28, 0xed, 0x49, 0x79, 0x13, 0x4b, 0xba, 0x48, 0xdb, 0x2f, 0xf9, 0x72, 0xd3, 0x39 -.byte 0xca, 0xfe, 0x1f, 0xd8, 0x34, 0x72, 0xf5, 0xb4, 0x40, 0xcf, 0x31, 0x01, 0xc3, 0xec, 0xde, 0x11 -.byte 0x2d, 0x17, 0x5d, 0x1f, 0xb8, 0x50, 0xd1, 0x5e, 0x19, 0xa7, 0x69, 0xde, 0x07, 0x33, 0x28, 0xca -.byte 0x50, 0x95, 0xf9, 0xa7, 0x54, 0xcb, 0x54, 0x86, 0x50, 0x45, 0xa9, 0xf9, 0x49, 0x02, 0x03, 0x01 -.byte 0x00, 0x01, 0x81, 0x00, 0x78, 0x00, 0x30, 0x7f, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04 -.byte 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x0e, 0x30, 0x0c, 0x06, 0x03, 0x55, 0x04, 0x08, 0x0c, 0x05 -.byte 0x54, 0x65, 0x78, 0x61, 0x73, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x07, 0x0c, 0x07 -.byte 0x48, 0x6f, 0x75, 0x73, 0x74, 0x6f, 0x6e, 0x31, 0x18, 0x30, 0x16, 0x06, 0x03, 0x55, 0x04, 0x0a -.byte 0x0c, 0x0f, 0x53, 0x53, 0x4c, 0x20, 0x43, 0x6f, 0x72, 0x70, 0x6f, 0x72, 0x61, 0x74, 0x69, 0x6f -.byte 0x6e, 0x31, 0x34, 0x30, 0x32, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x2b, 0x53, 0x53, 0x4c, 0x2e -.byte 0x63, 0x6f, 0x6d, 0x20, 0x45, 0x56, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x65, 0x72, 0x74 -.byte 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72 -.byte 0x69, 0x74, 0x79, 0x20, 0x45, 0x43, 0x43, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48 -.byte 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0xaa -.byte 0x12, 0x47, 0x90, 0x98, 0x1b, 0xfb, 0xef, 0xc3, 0x40, 0x07, 0x83, 0x20, 0x4e, 0xf1, 0x30, 0x82 -.byte 0xa2, 0x06, 0xd1, 0xf2, 0x92, 0x86, 0x61, 0xf2, 0xf6, 0x21, 0x68, 0xca, 0x00, 0xc4, 0xc7, 0xea -.byte 0x43, 0x00, 0x54, 0x86, 0xdc, 0xfd, 0x1f, 0xdf, 0x00, 0xb8, 0x41, 0x62, 0x5c, 0xdc, 0x70, 0x16 -.byte 0x32, 0xde, 0x1f, 0x99, 0xd4, 0xcc, 0xc5, 0x07, 0xc8, 0x08, 0x1f, 0x61, 0x16, 0x07, 0x51, 0x3d -.byte 0x7d, 0x5c, 0x07, 0x53, 0xe3, 0x35, 0x38, 0x8c, 0xdf, 0xcd, 0x9f, 0xd9, 0x2e, 0x0d, 0x4a, 0xb6 -.byte 0x19, 0x2e, 0x5a, 0x70, 0x5a, 0x06, 0xed, 0xbe, 0xf0, 0xa1, 0xb0, 0xca, 0xd0, 0x09, 0x29, 0x83 -.byte 0x00, 0x26, 0x02, 0x30, 0x81, 0x80, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13 -.byte 0x02, 0x50, 0x4c, 0x31, 0x22, 0x30, 0x20, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x19, 0x55, 0x6e -.byte 0x69, 0x7a, 0x65, 0x74, 0x6f, 0x20, 0x54, 0x65, 0x63, 0x68, 0x6e, 0x6f, 0x6c, 0x6f, 0x67, 0x69 -.byte 0x65, 0x73, 0x20, 0x53, 0x2e, 0x41, 0x2e, 0x31, 0x27, 0x30, 0x25, 0x06, 0x03, 0x55, 0x04, 0x0b -.byte 0x13, 0x1e, 0x43, 0x65, 0x72, 0x74, 0x75, 0x6d, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69 -.byte 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79 -.byte 0x31, 0x24, 0x30, 0x22, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x1b, 0x43, 0x65, 0x72, 0x74, 0x75 -.byte 0x6d, 0x20, 0x54, 0x72, 0x75, 0x73, 0x74, 0x65, 0x64, 0x20, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72 -.byte 0x6b, 0x20, 0x43, 0x41, 0x20, 0x32, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86 -.byte 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82 -.byte 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xbd, 0xf9, 0x78, 0xf8, 0xe6, 0xd5, 0x80, 0x0c, 0x64 -.byte 0x9d, 0x86, 0x1b, 0x96, 0x64, 0x67, 0x3f, 0x22, 0x3a, 0x1e, 0x75, 0x01, 0x7d, 0xef, 0xfb, 0x5c -.byte 0x67, 0x8c, 0xc9, 0xcc, 0x5c, 0x6b, 0xa9, 0x91, 0xe6, 0xb9, 0x42, 0xe5, 0x20, 0x4b, 0x9b, 0xda -.byte 0x9b, 0x7b, 0xb9, 0x99, 0x5d, 0xd9, 0x9b, 0x80, 0x4b, 0xd7, 0x84, 0x40, 0x2b, 0x27, 0xd3, 0xe8 -.byte 0xba, 0x30, 0xbb, 0x3e, 0x09, 0x1a, 0xa7, 0x49, 0x95, 0xef, 0x2b, 0x40, 0x24, 0xc2, 0x97, 0xc7 -.byte 0xa7, 0xee, 0x9b, 0x25, 0xef, 0xa8, 0x0a, 0x00, 0x97, 0x85, 0x5a, 0xaa, 0x9d, 0xdc, 0x29, 0xc9 -.byte 0xe2, 0x35, 0x07, 0xeb, 0x70, 0x4d, 0x4a, 0xd6, 0xc1, 0xb3, 0x56, 0xb8, 0xa1, 0x41, 0x38, 0x9b -.byte 0xd1, 0xfb, 0x31, 0x7f, 0x8f, 0xe0, 0x5f, 0xe1, 0xb1, 0x3f, 0x0f, 0x8e, 0x16, 0x49, 0x60, 0xd7 -.byte 0x06, 0x8d, 0x18, 0xf9, 0xaa, 0x26, 0x10, 0xab, 0x2a, 0xd3, 0xd0, 0xd1, 0x67, 0x8d, 0x1b, 0x46 -.byte 0xbe, 0x47, 0x30, 0xd5, 0x2e, 0x72, 0xd1, 0xc5, 0x63, 0xda, 0xe7, 0x63, 0x79, 0x44, 0x7e, 0x4b -.byte 0x63, 0x24, 0x89, 0x86, 0x2e, 0x34, 0x3f, 0x29, 0x4c, 0x52, 0x8b, 0x2a, 0xa7, 0xc0, 0xe2, 0x91 -.byte 0x28, 0x89, 0xb9, 0xc0, 0x5b, 0xf9, 0x1d, 0xd9, 0xe7, 0x27, 0xad, 0xff, 0x9a, 0x02, 0x97, 0xc1 -.byte 0xc6, 0x50, 0x92, 0x9b, 0x02, 0x2c, 0xbd, 0xa9, 0xb9, 0x34, 0x59, 0x0a, 0xbf, 0x84, 0x4a, 0xff -.byte 0xdf, 0xfe, 0xb3, 0x9f, 0xeb, 0xd9, 0x9e, 0xe0, 0x98, 0x23, 0xec, 0xa6, 0x6b, 0x77, 0x16, 0x2a -.byte 0xdb, 0xcc, 0xad, 0x3b, 0x1c, 0xa4, 0x87, 0xdc, 0x46, 0x73, 0x5e, 0x19, 0x62, 0x68, 0x45, 0x57 -.byte 0xe4, 0x90, 0x82, 0x42, 0xbb, 0x42, 0xd6, 0xf0, 0x61, 0xe0, 0xc1, 0xa3, 0x3d, 0x66, 0xa3, 0x5d -.byte 0xf4, 0x18, 0xee, 0x88, 0xc9, 0x8d, 0x17, 0x45, 0x29, 0x99, 0x32, 0x75, 0x02, 0x31, 0xee, 0x29 -.byte 0x26, 0xc8, 0x6b, 0x02, 0xe6, 0xb5, 0x62, 0x45, 0x7f, 0x37, 0x15, 0x5a, 0x23, 0x68, 0x89, 0xd4 -.byte 0x3e, 0xde, 0x4e, 0x27, 0xb0, 0xf0, 0x40, 0x0c, 0xbc, 0x4d, 0x17, 0xcb, 0x4d, 0xa2, 0xb3, 0x1e -.byte 0xd0, 0x06, 0x5a, 0xdd, 0xf6, 0x93, 0xcf, 0x57, 0x75, 0x99, 0xf5, 0xfa, 0x86, 0x1a, 0x67, 0x78 -.byte 0xb3, 0xbf, 0x96, 0xfe, 0x34, 0xdc, 0xbd, 0xe7, 0x52, 0x56, 0xe5, 0xb3, 0xe5, 0x75, 0x7b, 0xd7 -.byte 0x41, 0x91, 0x05, 0xdc, 0x5d, 0x69, 0xe3, 0x95, 0x0d, 0x43, 0xb9, 0xfc, 0x83, 0x96, 0x39, 0x95 -.byte 0x7b, 0x6c, 0x80, 0x5a, 0x4f, 0x13, 0x72, 0xc6, 0xd7, 0x7d, 0x29, 0x7a, 0x44, 0xba, 0x52, 0xa4 -.byte 0x2a, 0xd5, 0x41, 0x46, 0x09, 0x20, 0xfe, 0x22, 0xa0, 0xb6, 0x5b, 0x30, 0x8d, 0xbc, 0x89, 0x0c -.byte 0xd5, 0xd7, 0x70, 0xf8, 0x87, 0x52, 0xfd, 0xda, 0xef, 0xac, 0x51, 0x2e, 0x07, 0xb3, 0x4e, 0xfe -.byte 0xd0, 0x09, 0xda, 0x70, 0xef, 0x98, 0xfa, 0x56, 0xe6, 0x6d, 0xdb, 0xb5, 0x57, 0x4b, 0xdc, 0xe5 -.byte 0x2c, 0x25, 0x15, 0xc8, 0x9e, 0x2e, 0x78, 0x4e, 0xf8, 0xda, 0x9c, 0x9e, 0x86, 0x2c, 0xca, 0x57 -.byte 0xf3, 0x1a, 0xe5, 0xc8, 0x92, 0x8b, 0x1a, 0x82, 0x96, 0x7a, 0xc3, 0xbc, 0x50, 0x12, 0x69, 0xd8 -.byte 0x0e, 0x5a, 0x46, 0x8b, 0x3a, 0xeb, 0x26, 0xfa, 0x23, 0xc9, 0xb6, 0xb0, 0x81, 0xbe, 0x42, 0x00 -.byte 0xa4, 0xf8, 0xd6, 0xfe, 0x30, 0x2e, 0xc7, 0xd2, 0x46, 0xf6, 0xe5, 0x8e, 0x75, 0xfd, 0xf2, 0xcc -.byte 0xb9, 0xd0, 0x87, 0x5b, 0xcc, 0x06, 0x10, 0x60, 0xbb, 0x83, 0x35, 0xb7, 0x5e, 0x67, 0xde, 0x47 -.byte 0xec, 0x99, 0x48, 0xf1, 0xa4, 0xa1, 0x15, 0xfe, 0xad, 0x8c, 0x62, 0x8e, 0x39, 0x55, 0x4f, 0x39 -.byte 0x16, 0xb9, 0xb1, 0x63, 0x9d, 0xff, 0xb7, 0x02, 0x03, 0x01, 0x00, 0x01, 0x84, 0x00, 0x26, 0x01 -.byte 0x30, 0x81, 0x81, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x47, 0x42 -.byte 0x31, 0x1b, 0x30, 0x19, 0x06, 0x03, 0x55, 0x04, 0x08, 0x13, 0x12, 0x47, 0x72, 0x65, 0x61, 0x74 -.byte 0x65, 0x72, 0x20, 0x4d, 0x61, 0x6e, 0x63, 0x68, 0x65, 0x73, 0x74, 0x65, 0x72, 0x31, 0x10, 0x30 -.byte 0x0e, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x07, 0x53, 0x61, 0x6c, 0x66, 0x6f, 0x72, 0x64, 0x31 -.byte 0x1a, 0x30, 0x18, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x11, 0x43, 0x4f, 0x4d, 0x4f, 0x44, 0x4f -.byte 0x20, 0x43, 0x41, 0x20, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x64, 0x31, 0x27, 0x30, 0x25, 0x06 -.byte 0x03, 0x55, 0x04, 0x03, 0x13, 0x1e, 0x43, 0x4f, 0x4d, 0x4f, 0x44, 0x4f, 0x20, 0x43, 0x65, 0x72 -.byte 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f -.byte 0x72, 0x69, 0x74, 0x79, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86 -.byte 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a -.byte 0x02, 0x82, 0x01, 0x01, 0x00, 0xd0, 0x40, 0x8b, 0x8b, 0x72, 0xe3, 0x91, 0x1b, 0xf7, 0x51, 0xc1 -.byte 0x1b, 0x54, 0x04, 0x98, 0xd3, 0xa9, 0xbf, 0xc1, 0xe6, 0x8a, 0x5d, 0x3b, 0x87, 0xfb, 0xbb, 0x88 -.byte 0xce, 0x0d, 0xe3, 0x2f, 0x3f, 0x06, 0x96, 0xf0, 0xa2, 0x29, 0x50, 0x99, 0xae, 0xdb, 0x3b, 0xa1 -.byte 0x57, 0xb0, 0x74, 0x51, 0x71, 0xcd, 0xed, 0x42, 0x91, 0x4d, 0x41, 0xfe, 0xa9, 0xc8, 0xd8, 0x6a -.byte 0x86, 0x77, 0x44, 0xbb, 0x59, 0x66, 0x97, 0x50, 0x5e, 0xb4, 0xd4, 0x2c, 0x70, 0x44, 0xcf, 0xda -.byte 0x37, 0x95, 0x42, 0x69, 0x3c, 0x30, 0xc4, 0x71, 0xb3, 0x52, 0xf0, 0x21, 0x4d, 0xa1, 0xd8, 0xba -.byte 0x39, 0x7c, 0x1c, 0x9e, 0xa3, 0x24, 0x9d, 0xf2, 0x83, 0x16, 0x98, 0xaa, 0x16, 0x7c, 0x43, 0x9b -.byte 0x15, 0x5b, 0xb7, 0xae, 0x34, 0x91, 0xfe, 0xd4, 0x62, 0x26, 0x18, 0x46, 0x9a, 0x3f, 0xeb, 0xc1 -.byte 0xf9, 0xf1, 0x90, 0x57, 0xeb, 0xac, 0x7a, 0x0d, 0x8b, 0xdb, 0x72, 0x30, 0x6a, 0x66, 0xd5, 0xe0 -.byte 0x46, 0xa3, 0x70, 0xdc, 0x68, 0xd9, 0xff, 0x04, 0x48, 0x89, 0x77, 0xde, 0xb5, 0xe9, 0xfb, 0x67 -.byte 0x6d, 0x41, 0xe9, 0xbc, 0x39, 0xbd, 0x32, 0xd9, 0x62, 0x02, 0xf1, 0xb1, 0xa8, 0x3d, 0x6e, 0x37 -.byte 0x9c, 0xe2, 0x2f, 0xe2, 0xd3, 0xa2, 0x26, 0x8b, 0xc6, 0xb8, 0x55, 0x43, 0x88, 0xe1, 0x23, 0x3e -.byte 0xa5, 0xd2, 0x24, 0x39, 0x6a, 0x47, 0xab, 0x00, 0xd4, 0xa1, 0xb3, 0xa9, 0x25, 0xfe, 0x0d, 0x3f -.byte 0xa7, 0x1d, 0xba, 0xd3, 0x51, 0xc1, 0x0b, 0xa4, 0xda, 0xac, 0x38, 0xef, 0x55, 0x50, 0x24, 0x05 -.byte 0x65, 0x46, 0x93, 0x34, 0x4f, 0x2d, 0x8d, 0xad, 0xc6, 0xd4, 0x21, 0x19, 0xd2, 0x8e, 0xca, 0x05 -.byte 0x61, 0x71, 0x07, 0x73, 0x47, 0xe5, 0x8a, 0x19, 0x12, 0xbd, 0x04, 0x4d, 0xce, 0x4e, 0x9c, 0xa5 -.byte 0x48, 0xac, 0xbb, 0x26, 0xf7, 0x02, 0x03, 0x01, 0x00, 0x01, 0x85, 0x00, 0x26, 0x01, 0x30, 0x81 -.byte 0x82, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x44, 0x45, 0x31, 0x2b -.byte 0x30, 0x29, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x22, 0x54, 0x2d, 0x53, 0x79, 0x73, 0x74, 0x65 -.byte 0x6d, 0x73, 0x20, 0x45, 0x6e, 0x74, 0x65, 0x72, 0x70, 0x72, 0x69, 0x73, 0x65, 0x20, 0x53, 0x65 -.byte 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x20, 0x47, 0x6d, 0x62, 0x48, 0x31, 0x1f, 0x30, 0x1d, 0x06 -.byte 0x03, 0x55, 0x04, 0x0b, 0x0c, 0x16, 0x54, 0x2d, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x73, 0x20 -.byte 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x31, 0x25, 0x30, 0x23 -.byte 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x1c, 0x54, 0x2d, 0x54, 0x65, 0x6c, 0x65, 0x53, 0x65, 0x63 -.byte 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x6c, 0x61, 0x73 -.byte 0x73, 0x20, 0x32, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7 -.byte 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02 -.byte 0x82, 0x01, 0x01, 0x00, 0xaa, 0x5f, 0xda, 0x1b, 0x5f, 0xe8, 0x73, 0x91, 0xe5, 0xda, 0x5c, 0xf4 -.byte 0xa2, 0xe6, 0x47, 0xe5, 0xf3, 0x68, 0x55, 0x60, 0x05, 0x1d, 0x02, 0xa4, 0xb3, 0x9b, 0x59, 0xf3 -.byte 0x1e, 0x8a, 0xaf, 0x34, 0xad, 0xfc, 0x0d, 0xc2, 0xd9, 0x48, 0x19, 0xee, 0x69, 0x8f, 0xc9, 0x20 -.byte 0xfc, 0x21, 0xaa, 0x07, 0x19, 0xed, 0xb0, 0x5c, 0xac, 0x65, 0xc7, 0x5f, 0xed, 0x02, 0x7c, 0x7b -.byte 0x7c, 0x2d, 0x1b, 0xd6, 0xba, 0xb9, 0x80, 0xc2, 0x18, 0x82, 0x16, 0x84, 0xfa, 0x66, 0xb0, 0x08 -.byte 0xc6, 0x54, 0x23, 0x81, 0xe4, 0xcd, 0xb9, 0x49, 0x3f, 0xf6, 0x4f, 0x6e, 0x37, 0x48, 0x28, 0x38 -.byte 0x0f, 0xc5, 0xbe, 0xe7, 0x68, 0x70, 0xfd, 0x39, 0x97, 0x4d, 0xd2, 0xc7, 0x98, 0x91, 0x50, 0xaa -.byte 0xc4, 0x44, 0xb3, 0x23, 0x7d, 0x39, 0x47, 0xe9, 0x52, 0x62, 0xd6, 0x12, 0x93, 0x5e, 0xb7, 0x31 -.byte 0x96, 0x42, 0x05, 0xfb, 0x76, 0xa7, 0x1e, 0xa3, 0xf5, 0xc2, 0xfc, 0xe9, 0x7a, 0xc5, 0x6c, 0xa9 -.byte 0x71, 0x4f, 0xea, 0xcb, 0x78, 0xbc, 0x60, 0xaf, 0xc7, 0xde, 0xf4, 0xd9, 0xcb, 0xbe, 0x7e, 0x33 -.byte 0xa5, 0x6e, 0x94, 0x83, 0xf0, 0x34, 0xfa, 0x21, 0xab, 0xea, 0x8e, 0x72, 0xa0, 0x3f, 0xa4, 0xde -.byte 0x30, 0x5b, 0xef, 0x86, 0x4d, 0x6a, 0x95, 0x5b, 0x43, 0x44, 0xa8, 0x10, 0x15, 0x1c, 0xe5, 0x01 -.byte 0x57, 0xc5, 0x98, 0xf1, 0xe6, 0x06, 0x28, 0x91, 0xaa, 0x20, 0xc5, 0xb7, 0x53, 0x26, 0x51, 0x43 -.byte 0xb2, 0x0b, 0x11, 0x95, 0x58, 0xe1, 0xc0, 0x0f, 0x76, 0xd9, 0xc0, 0x8d, 0x7c, 0x81, 0xf3, 0x72 -.byte 0x70, 0x9e, 0x6f, 0xfe, 0x1a, 0x8e, 0xd9, 0x5f, 0x35, 0xc6, 0xb2, 0x6f, 0x34, 0x7c, 0xbe, 0x48 -.byte 0x4f, 0xe2, 0x5a, 0x39, 0xd7, 0xd8, 0x9d, 0x78, 0x9e, 0x9f, 0x86, 0x3e, 0x03, 0x5e, 0x19, 0x8b -.byte 0x44, 0xa2, 0xd5, 0xc7, 0x02, 0x03, 0x01, 0x00, 0x01, 0x85, 0x00, 0x26, 0x01, 0x30, 0x81, 0x82 -.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x44, 0x45, 0x31, 0x2b, 0x30 -.byte 0x29, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x22, 0x54, 0x2d, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d -.byte 0x73, 0x20, 0x45, 0x6e, 0x74, 0x65, 0x72, 0x70, 0x72, 0x69, 0x73, 0x65, 0x20, 0x53, 0x65, 0x72 -.byte 0x76, 0x69, 0x63, 0x65, 0x73, 0x20, 0x47, 0x6d, 0x62, 0x48, 0x31, 0x1f, 0x30, 0x1d, 0x06, 0x03 -.byte 0x55, 0x04, 0x0b, 0x0c, 0x16, 0x54, 0x2d, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x73, 0x20, 0x54 -.byte 0x72, 0x75, 0x73, 0x74, 0x20, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x31, 0x25, 0x30, 0x23, 0x06 -.byte 0x03, 0x55, 0x04, 0x03, 0x0c, 0x1c, 0x54, 0x2d, 0x54, 0x65, 0x6c, 0x65, 0x53, 0x65, 0x63, 0x20 -.byte 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x6c, 0x61, 0x73, 0x73 -.byte 0x20, 0x33, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d -.byte 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82 -.byte 0x01, 0x01, 0x00, 0xbd, 0x75, 0x93, 0xf0, 0x62, 0x22, 0x6f, 0x24, 0xae, 0xe0, 0x7a, 0x76, 0xac -.byte 0x7d, 0xbd, 0xd9, 0x24, 0xd5, 0xb8, 0xb7, 0xfc, 0xcd, 0xf0, 0x42, 0xe0, 0xeb, 0x78, 0x88, 0x56 -.byte 0x5e, 0x9b, 0x9a, 0x54, 0x1d, 0x4d, 0x0c, 0x8a, 0xf6, 0xd3, 0xcf, 0x70, 0xf4, 0x52, 0xb5, 0xd8 -.byte 0x93, 0x04, 0xe3, 0x46, 0x86, 0x71, 0x41, 0x4a, 0x2b, 0xf0, 0x2a, 0x2c, 0x55, 0x03, 0xd6, 0x48 -.byte 0xc3, 0xe0, 0x39, 0x38, 0xed, 0xf2, 0x5c, 0x3c, 0x3f, 0x44, 0xbc, 0x93, 0x3d, 0x61, 0xab, 0x4e -.byte 0xcd, 0x0d, 0xbe, 0xf0, 0x20, 0x27, 0x58, 0x0e, 0x44, 0x7f, 0x04, 0x1a, 0x87, 0xa5, 0xd7, 0x96 -.byte 0x14, 0x36, 0x90, 0xd0, 0x49, 0x7b, 0xa1, 0x75, 0xfb, 0x1a, 0x6b, 0x73, 0xb1, 0xf8, 0xce, 0xa9 -.byte 0x09, 0x2c, 0xf2, 0x53, 0xd5, 0xc3, 0x14, 0x44, 0xb8, 0x86, 0xa5, 0xf6, 0x8b, 0x2b, 0x39, 0xda -.byte 0xa3, 0x33, 0x54, 0xd9, 0xfa, 0x72, 0x1a, 0xf7, 0x22, 0x15, 0x1c, 0x88, 0x91, 0x6b, 0x7f, 0x66 -.byte 0xe5, 0xc3, 0x6a, 0x80, 0xb0, 0x24, 0xf3, 0xdf, 0x86, 0x45, 0x88, 0xfd, 0x19, 0x7f, 0x75, 0x87 -.byte 0x1f, 0x1f, 0xb1, 0x1b, 0x0a, 0x73, 0x24, 0x5b, 0xb9, 0x65, 0xe0, 0x2c, 0x54, 0xc8, 0x60, 0xd3 -.byte 0x66, 0x17, 0x3f, 0xe1, 0xcc, 0x54, 0x33, 0x73, 0x91, 0x02, 0x3a, 0xa6, 0x7f, 0x7b, 0x76, 0x39 -.byte 0xa2, 0x1f, 0x96, 0xb6, 0x38, 0xae, 0xb5, 0xc8, 0x93, 0x74, 0x1d, 0x9e, 0xb9, 0xb4, 0xe5, 0x60 -.byte 0x9d, 0x2f, 0x56, 0xd1, 0xe0, 0xeb, 0x5e, 0x5b, 0x4c, 0x12, 0x70, 0x0c, 0x6c, 0x44, 0x20, 0xab -.byte 0x11, 0xd8, 0xf4, 0x19, 0xf6, 0xd2, 0x9c, 0x52, 0x37, 0xe7, 0xfa, 0xb6, 0xc2, 0x31, 0x3b, 0x4a -.byte 0xd4, 0x14, 0x99, 0xad, 0xc7, 0x1a, 0xf5, 0x5d, 0x5f, 0xfa, 0x07, 0xb8, 0x7c, 0x0d, 0x1f, 0xd6 -.byte 0x83, 0x1e, 0xb3, 0x02, 0x03, 0x01, 0x00, 0x01, 0x85, 0x00, 0x26, 0x01, 0x30, 0x81, 0x82, 0x31 -.byte 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x48, 0x55, 0x31, 0x11, 0x30, 0x0f -.byte 0x06, 0x03, 0x55, 0x04, 0x07, 0x0c, 0x08, 0x42, 0x75, 0x64, 0x61, 0x70, 0x65, 0x73, 0x74, 0x31 -.byte 0x16, 0x30, 0x14, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0d, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73 -.byte 0x65, 0x63, 0x20, 0x4c, 0x74, 0x64, 0x2e, 0x31, 0x27, 0x30, 0x25, 0x06, 0x03, 0x55, 0x04, 0x03 -.byte 0x0c, 0x1e, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x65, 0x63, 0x20, 0x65, 0x2d, 0x53, 0x7a, 0x69 -.byte 0x67, 0x6e, 0x6f, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41, 0x20, 0x32, 0x30, 0x30, 0x39 -.byte 0x31, 0x1f, 0x30, 0x1d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x09, 0x01, 0x16 -.byte 0x10, 0x69, 0x6e, 0x66, 0x6f, 0x40, 0x65, 0x2d, 0x73, 0x7a, 0x69, 0x67, 0x6e, 0x6f, 0x2e, 0x68 -.byte 0x75, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01 -.byte 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01 -.byte 0x01, 0x00, 0xe9, 0xf8, 0x8f, 0xf3, 0x63, 0xad, 0xda, 0x86, 0xd8, 0xa7, 0xe0, 0x42, 0xfb, 0xcf -.byte 0x91, 0xde, 0xa6, 0x26, 0xf8, 0x99, 0xa5, 0x63, 0x70, 0xad, 0x9b, 0xae, 0xca, 0x33, 0x40, 0x7d -.byte 0x6d, 0x96, 0x6e, 0xa1, 0x0e, 0x44, 0xee, 0xe1, 0x13, 0x9d, 0x94, 0x42, 0x52, 0x9a, 0xbd, 0x75 -.byte 0x85, 0x74, 0x2c, 0xa8, 0x0e, 0x1d, 0x93, 0xb6, 0x18, 0xb7, 0x8c, 0x2c, 0xa8, 0xcf, 0xfb, 0x5c -.byte 0x71, 0xb9, 0xda, 0xec, 0xfe, 0xe8, 0x7e, 0x8f, 0xe4, 0x2f, 0x1d, 0xb2, 0xa8, 0x75, 0x87, 0xd8 -.byte 0xb7, 0xa1, 0xe5, 0x3b, 0xcf, 0x99, 0x4a, 0x46, 0xd0, 0x83, 0x19, 0x7d, 0xc0, 0xa1, 0x12, 0x1c -.byte 0x95, 0x6d, 0x4a, 0xf4, 0xd8, 0xc7, 0xa5, 0x4d, 0x33, 0x2e, 0x85, 0x39, 0x40, 0x75, 0x7e, 0x14 -.byte 0x7c, 0x80, 0x12, 0x98, 0x50, 0xc7, 0x41, 0x67, 0xb8, 0xa0, 0x80, 0x61, 0x54, 0xa6, 0x6c, 0x4e -.byte 0x1f, 0xe0, 0x9d, 0x0e, 0x07, 0xe9, 0xc9, 0xba, 0x33, 0xe7, 0xfe, 0xc0, 0x55, 0x28, 0x2c, 0x02 -.byte 0x80, 0xa7, 0x19, 0xf5, 0x9e, 0xdc, 0x55, 0x53, 0x03, 0x97, 0x7b, 0x07, 0x48, 0xff, 0x99, 0xfb -.byte 0x37, 0x8a, 0x24, 0xc4, 0x59, 0xcc, 0x50, 0x10, 0x63, 0x8e, 0xaa, 0xa9, 0x1a, 0xb0, 0x84, 0x1a -.byte 0x86, 0xf9, 0x5f, 0xbb, 0xb1, 0x50, 0x6e, 0xa4, 0xd1, 0x0a, 0xcc, 0xd5, 0x71, 0x7e, 0x1f, 0xa7 -.byte 0x1b, 0x7c, 0xf5, 0x53, 0x6e, 0x22, 0x5f, 0xcb, 0x2b, 0xe6, 0xd4, 0x7c, 0x5d, 0xae, 0xd6, 0xc2 -.byte 0xc6, 0x4c, 0xe5, 0x05, 0x01, 0xd9, 0xed, 0x57, 0xfc, 0xc1, 0x23, 0x79, 0xfc, 0xfa, 0xc8, 0x24 -.byte 0x83, 0x95, 0xf3, 0xb5, 0x6a, 0x51, 0x01, 0xd0, 0x77, 0xd6, 0xe9, 0x12, 0xa1, 0xf9, 0x1a, 0x83 -.byte 0xfb, 0x82, 0x1b, 0xb9, 0xb0, 0x97, 0xf4, 0x76, 0x06, 0x33, 0x43, 0x49, 0xa0, 0xff, 0x0b, 0xb5 -.byte 0xfa, 0xb5, 0x02, 0x03, 0x01, 0x00, 0x01, 0x85, 0x00, 0x26, 0x02, 0x30, 0x81, 0x82, 0x31, 0x0b -.byte 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x0e, 0x30, 0x0c, 0x06 -.byte 0x03, 0x55, 0x04, 0x08, 0x0c, 0x05, 0x54, 0x65, 0x78, 0x61, 0x73, 0x31, 0x10, 0x30, 0x0e, 0x06 -.byte 0x03, 0x55, 0x04, 0x07, 0x0c, 0x07, 0x48, 0x6f, 0x75, 0x73, 0x74, 0x6f, 0x6e, 0x31, 0x18, 0x30 -.byte 0x16, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0f, 0x53, 0x53, 0x4c, 0x20, 0x43, 0x6f, 0x72, 0x70 -.byte 0x6f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x31, 0x37, 0x30, 0x35, 0x06, 0x03, 0x55, 0x04, 0x03 -.byte 0x0c, 0x2e, 0x53, 0x53, 0x4c, 0x2e, 0x63, 0x6f, 0x6d, 0x20, 0x45, 0x56, 0x20, 0x52, 0x6f, 0x6f -.byte 0x74, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20 -.byte 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x20, 0x52, 0x53, 0x41, 0x20, 0x52, 0x32 -.byte 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01 -.byte 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01 -.byte 0x00, 0x8f, 0x36, 0x65, 0x40, 0xe1, 0xd6, 0x4d, 0xc0, 0xd7, 0xb4, 0xe9, 0x46, 0xda, 0x6b, 0xea -.byte 0x33, 0x47, 0xcd, 0x4c, 0xf9, 0x7d, 0x7d, 0xbe, 0xbd, 0x2d, 0x3d, 0xf0, 0xdb, 0x78, 0xe1, 0x86 -.byte 0xa5, 0xd9, 0xba, 0x09, 0x57, 0x68, 0xed, 0x57, 0x3e, 0xa0, 0xd0, 0x08, 0x41, 0x83, 0xe7, 0x28 -.byte 0x41, 0x24, 0x1f, 0xe3, 0x72, 0x15, 0xd0, 0x01, 0x1a, 0xfb, 0x5e, 0x70, 0x23, 0xb2, 0xcb, 0x9f -.byte 0x39, 0xe3, 0xcf, 0xc5, 0x4e, 0xc6, 0x92, 0x6d, 0x26, 0xc6, 0x7b, 0xbb, 0xb3, 0xda, 0x27, 0x9d -.byte 0x0a, 0x86, 0xe9, 0x81, 0x37, 0x05, 0xfe, 0xf0, 0x71, 0x71, 0xec, 0xc3, 0x1c, 0xe9, 0x63, 0xa2 -.byte 0x17, 0x14, 0x9d, 0xef, 0x1b, 0x67, 0xd3, 0x85, 0x55, 0x02, 0x02, 0xd6, 0x49, 0xc9, 0xcc, 0x5a -.byte 0xe1, 0xb1, 0xf7, 0x6f, 0x32, 0x9f, 0xc9, 0xd4, 0x3b, 0x88, 0x41, 0xa8, 0x9c, 0xbd, 0xcb, 0xab -.byte 0xdb, 0x6d, 0x7b, 0x09, 0x1f, 0xa2, 0x4c, 0x72, 0x90, 0xda, 0x2b, 0x08, 0xfc, 0xcf, 0x3c, 0x54 -.byte 0xce, 0x67, 0x0f, 0xa8, 0xcf, 0x5d, 0x96, 0x19, 0x0b, 0xc4, 0xe3, 0x72, 0xeb, 0xad, 0xd1, 0x7d -.byte 0x1d, 0x27, 0xef, 0x92, 0xeb, 0x10, 0xbf, 0x5b, 0xeb, 0x3b, 0xaf, 0xcf, 0x80, 0xdd, 0xc1, 0xd2 -.byte 0x96, 0x04, 0x5b, 0x7a, 0x7e, 0xa4, 0xa9, 0x3c, 0x38, 0x76, 0xa4, 0x62, 0x8e, 0xa0, 0x39, 0x5e -.byte 0xea, 0x77, 0xcf, 0x5d, 0x00, 0x59, 0x8f, 0x66, 0x2c, 0x3e, 0x07, 0xa2, 0xa3, 0x05, 0x26, 0x11 -.byte 0x69, 0x97, 0xea, 0x85, 0xb7, 0x0f, 0x96, 0x0b, 0x4b, 0xc8, 0x40, 0xe1, 0x50, 0xba, 0x2e, 0x8a -.byte 0xcb, 0xf7, 0x0f, 0x9a, 0x22, 0xe7, 0x7f, 0x9a, 0x37, 0x13, 0xcd, 0xf2, 0x4d, 0x13, 0x6b, 0x21 -.byte 0xd1, 0xc0, 0xcc, 0x22, 0xf2, 0xa1, 0x46, 0xf6, 0x44, 0x69, 0x9c, 0xca, 0x61, 0x35, 0x07, 0x00 -.byte 0x6f, 0xd6, 0x61, 0x08, 0x11, 0xea, 0xba, 0xb8, 0xf6, 0xe9, 0xb3, 0x60, 0xe5, 0x4d, 0xb9, 0xec -.byte 0x9f, 0x14, 0x66, 0xc9, 0x57, 0x58, 0xdb, 0xcd, 0x87, 0x69, 0xf8, 0x8a, 0x86, 0x12, 0x03, 0x47 -.byte 0xbf, 0x66, 0x13, 0x76, 0xac, 0x77, 0x7d, 0x34, 0x24, 0x85, 0x83, 0xcd, 0xd7, 0xaa, 0x9c, 0x90 -.byte 0x1a, 0x9f, 0x21, 0x2c, 0x7f, 0x78, 0xb7, 0x64, 0xb8, 0xd8, 0xe8, 0xa6, 0xf4, 0x78, 0xb3, 0x55 -.byte 0xcb, 0x84, 0xd2, 0x32, 0xc4, 0x78, 0xae, 0xa3, 0x8f, 0x61, 0xdd, 0xce, 0x08, 0x53, 0xad, 0xec -.byte 0x88, 0xfc, 0x15, 0xe4, 0x9a, 0x0d, 0xe6, 0x9f, 0x1a, 0x77, 0xce, 0x4c, 0x8f, 0xb8, 0x14, 0x15 -.byte 0x3d, 0x62, 0x9c, 0x86, 0x38, 0x06, 0x00, 0x66, 0x12, 0xe4, 0x59, 0x76, 0x5a, 0x53, 0xc0, 0x02 -.byte 0x98, 0xa2, 0x10, 0x2b, 0x68, 0x44, 0x7b, 0x8e, 0x79, 0xce, 0x33, 0x4a, 0x76, 0xaa, 0x5b, 0x81 -.byte 0x16, 0x1b, 0xb5, 0x8a, 0xd8, 0xd0, 0x00, 0x7b, 0x5e, 0x62, 0xb4, 0x09, 0xd6, 0x86, 0x63, 0x0e -.byte 0xa6, 0x05, 0x95, 0x49, 0xba, 0x28, 0x8b, 0x88, 0x93, 0xb2, 0x34, 0x1c, 0xd8, 0xa4, 0x55, 0x6e -.byte 0xb7, 0x1c, 0xd0, 0xde, 0x99, 0x55, 0x3b, 0x23, 0xf4, 0x22, 0xe0, 0xf9, 0x29, 0x66, 0x26, 0xec -.byte 0x20, 0x50, 0x77, 0xdb, 0x4a, 0x0b, 0x8f, 0xbe, 0xe5, 0x02, 0x60, 0x70, 0x41, 0x5e, 0xd4, 0xae -.byte 0x50, 0x39, 0x22, 0x14, 0x26, 0xcb, 0xb2, 0x3b, 0x73, 0x74, 0x55, 0x47, 0x07, 0x79, 0x81, 0x39 -.byte 0xa8, 0x30, 0x13, 0x44, 0xe5, 0x04, 0x8a, 0xae, 0x96, 0x13, 0x25, 0x42, 0x0f, 0xb9, 0x53, 0xc4 -.byte 0x9b, 0xfc, 0xcd, 0xe4, 0x1c, 0xde, 0x3c, 0xfa, 0xab, 0xd6, 0x06, 0x4a, 0x1f, 0x67, 0xa6, 0x98 -.byte 0x30, 0x1c, 0xdd, 0x2c, 0xdb, 0xdc, 0x18, 0x95, 0x57, 0x66, 0xc6, 0xff, 0x5c, 0x8b, 0x56, 0xf5 -.byte 0x77, 0x02, 0x03, 0x01, 0x00, 0x01, 0x85, 0x00, 0x26, 0x01, 0x30, 0x81, 0x82, 0x31, 0x0b, 0x30 -.byte 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x1e, 0x30, 0x1c, 0x06, 0x03 -.byte 0x55, 0x04, 0x0b, 0x13, 0x15, 0x77, 0x77, 0x77, 0x2e, 0x78, 0x72, 0x61, 0x6d, 0x70, 0x73, 0x65 -.byte 0x63, 0x75, 0x72, 0x69, 0x74, 0x79, 0x2e, 0x63, 0x6f, 0x6d, 0x31, 0x24, 0x30, 0x22, 0x06, 0x03 -.byte 0x55, 0x04, 0x0a, 0x13, 0x1b, 0x58, 0x52, 0x61, 0x6d, 0x70, 0x20, 0x53, 0x65, 0x63, 0x75, 0x72 -.byte 0x69, 0x74, 0x79, 0x20, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x20, 0x49, 0x6e, 0x63 -.byte 0x31, 0x2d, 0x30, 0x2b, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x24, 0x58, 0x52, 0x61, 0x6d, 0x70 -.byte 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63 -.byte 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x30 -.byte 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01 -.byte 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00 -.byte 0x98, 0x24, 0x1e, 0xbd, 0x15, 0xb4, 0xba, 0xdf, 0xc7, 0x8c, 0xa5, 0x27, 0xb6, 0x38, 0x0b, 0x69 -.byte 0xf3, 0xb6, 0x4e, 0xa8, 0x2c, 0x2e, 0x21, 0x1d, 0x5c, 0x44, 0xdf, 0x21, 0x5d, 0x7e, 0x23, 0x74 -.byte 0xfe, 0x5e, 0x7e, 0xb4, 0x4a, 0xb7, 0xa6, 0xad, 0x1f, 0xae, 0xe0, 0x06, 0x16, 0xe2, 0x9b, 0x5b -.byte 0xd9, 0x67, 0x74, 0x6b, 0x5d, 0x80, 0x8f, 0x29, 0x9d, 0x86, 0x1b, 0xd9, 0x9c, 0x0d, 0x98, 0x6d -.byte 0x76, 0x10, 0x28, 0x58, 0xe4, 0x65, 0xb0, 0x7f, 0x4a, 0x98, 0x79, 0x9f, 0xe0, 0xc3, 0x31, 0x7e -.byte 0x80, 0x2b, 0xb5, 0x8c, 0xc0, 0x40, 0x3b, 0x11, 0x86, 0xd0, 0xcb, 0xa2, 0x86, 0x36, 0x60, 0xa4 -.byte 0xd5, 0x30, 0x82, 0x6d, 0xd9, 0x6e, 0xd0, 0x0f, 0x12, 0x04, 0x33, 0x97, 0x5f, 0x4f, 0x61, 0x5a -.byte 0xf0, 0xe4, 0xf9, 0x91, 0xab, 0xe7, 0x1d, 0x3b, 0xbc, 0xe8, 0xcf, 0xf4, 0x6b, 0x2d, 0x34, 0x7c -.byte 0xe2, 0x48, 0x61, 0x1c, 0x8e, 0xf3, 0x61, 0x44, 0xcc, 0x6f, 0xa0, 0x4a, 0xa9, 0x94, 0xb0, 0x4d -.byte 0xda, 0xe7, 0xa9, 0x34, 0x7a, 0x72, 0x38, 0xa8, 0x41, 0xcc, 0x3c, 0x94, 0x11, 0x7d, 0xeb, 0xc8 -.byte 0xa6, 0x8c, 0xb7, 0x86, 0xcb, 0xca, 0x33, 0x3b, 0xd9, 0x3d, 0x37, 0x8b, 0xfb, 0x7a, 0x3e, 0x86 -.byte 0x2c, 0xe7, 0x73, 0xd7, 0x0a, 0x57, 0xac, 0x64, 0x9b, 0x19, 0xeb, 0xf4, 0x0f, 0x04, 0x08, 0x8a -.byte 0xac, 0x03, 0x17, 0x19, 0x64, 0xf4, 0x5a, 0x25, 0x22, 0x8d, 0x34, 0x2c, 0xb2, 0xf6, 0x68, 0x1d -.byte 0x12, 0x6d, 0xd3, 0x8a, 0x1e, 0x14, 0xda, 0xc4, 0x8f, 0xa6, 0xe2, 0x23, 0x85, 0xd5, 0x7a, 0x0d -.byte 0xbd, 0x6a, 0xe0, 0xe9, 0xec, 0xec, 0x17, 0xbb, 0x42, 0x1b, 0x67, 0xaa, 0x25, 0xed, 0x45, 0x83 -.byte 0x21, 0xfc, 0xc1, 0xc9, 0x7c, 0xd5, 0x62, 0x3e, 0xfa, 0xf2, 0xc5, 0x2d, 0xd3, 0xfd, 0xd4, 0x65 -.byte 0x02, 0x03, 0x01, 0x00, 0x01, 0x86, 0x00, 0x26, 0x01, 0x30, 0x81, 0x83, 0x31, 0x0b, 0x30, 0x09 -.byte 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55 -.byte 0x04, 0x08, 0x13, 0x07, 0x41, 0x72, 0x69, 0x7a, 0x6f, 0x6e, 0x61, 0x31, 0x13, 0x30, 0x11, 0x06 -.byte 0x03, 0x55, 0x04, 0x07, 0x13, 0x0a, 0x53, 0x63, 0x6f, 0x74, 0x74, 0x73, 0x64, 0x61, 0x6c, 0x65 -.byte 0x31, 0x1a, 0x30, 0x18, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x11, 0x47, 0x6f, 0x44, 0x61, 0x64 -.byte 0x64, 0x79, 0x2e, 0x63, 0x6f, 0x6d, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x31, 0x30, 0x2f -.byte 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x28, 0x47, 0x6f, 0x20, 0x44, 0x61, 0x64, 0x64, 0x79, 0x20 -.byte 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65 -.byte 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x20, 0x2d, 0x20, 0x47, 0x32, 0x30 -.byte 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01 -.byte 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00 -.byte 0xbf, 0x71, 0x62, 0x08, 0xf1, 0xfa, 0x59, 0x34, 0xf7, 0x1b, 0xc9, 0x18, 0xa3, 0xf7, 0x80, 0x49 -.byte 0x58, 0xe9, 0x22, 0x83, 0x13, 0xa6, 0xc5, 0x20, 0x43, 0x01, 0x3b, 0x84, 0xf1, 0xe6, 0x85, 0x49 -.byte 0x9f, 0x27, 0xea, 0xf6, 0x84, 0x1b, 0x4e, 0xa0, 0xb4, 0xdb, 0x70, 0x98, 0xc7, 0x32, 0x01, 0xb1 -.byte 0x05, 0x3e, 0x07, 0x4e, 0xee, 0xf4, 0xfa, 0x4f, 0x2f, 0x59, 0x30, 0x22, 0xe7, 0xab, 0x19, 0x56 -.byte 0x6b, 0xe2, 0x80, 0x07, 0xfc, 0xf3, 0x16, 0x75, 0x80, 0x39, 0x51, 0x7b, 0xe5, 0xf9, 0x35, 0xb6 -.byte 0x74, 0x4e, 0xa9, 0x8d, 0x82, 0x13, 0xe4, 0xb6, 0x3f, 0xa9, 0x03, 0x83, 0xfa, 0xa2, 0xbe, 0x8a -.byte 0x15, 0x6a, 0x7f, 0xde, 0x0b, 0xc3, 0xb6, 0x19, 0x14, 0x05, 0xca, 0xea, 0xc3, 0xa8, 0x04, 0x94 -.byte 0x3b, 0x46, 0x7c, 0x32, 0x0d, 0xf3, 0x00, 0x66, 0x22, 0xc8, 0x8d, 0x69, 0x6d, 0x36, 0x8c, 0x11 -.byte 0x18, 0xb7, 0xd3, 0xb2, 0x1c, 0x60, 0xb4, 0x38, 0xfa, 0x02, 0x8c, 0xce, 0xd3, 0xdd, 0x46, 0x07 -.byte 0xde, 0x0a, 0x3e, 0xeb, 0x5d, 0x7c, 0xc8, 0x7c, 0xfb, 0xb0, 0x2b, 0x53, 0xa4, 0x92, 0x62, 0x69 -.byte 0x51, 0x25, 0x05, 0x61, 0x1a, 0x44, 0x81, 0x8c, 0x2c, 0xa9, 0x43, 0x96, 0x23, 0xdf, 0xac, 0x3a -.byte 0x81, 0x9a, 0x0e, 0x29, 0xc5, 0x1c, 0xa9, 0xe9, 0x5d, 0x1e, 0xb6, 0x9e, 0x9e, 0x30, 0x0a, 0x39 -.byte 0xce, 0xf1, 0x88, 0x80, 0xfb, 0x4b, 0x5d, 0xcc, 0x32, 0xec, 0x85, 0x62, 0x43, 0x25, 0x34, 0x02 -.byte 0x56, 0x27, 0x01, 0x91, 0xb4, 0x3b, 0x70, 0x2a, 0x3f, 0x6e, 0xb1, 0xe8, 0x9c, 0x88, 0x01, 0x7d -.byte 0x9f, 0xd4, 0xf9, 0xdb, 0x53, 0x6d, 0x60, 0x9d, 0xbf, 0x2c, 0xe7, 0x58, 0xab, 0xb8, 0x5f, 0x46 -.byte 0xfc, 0xce, 0xc4, 0x1b, 0x03, 0x3c, 0x09, 0xeb, 0x49, 0x31, 0x5c, 0x69, 0x46, 0xb3, 0xe0, 0x47 -.byte 0x02, 0x03, 0x01, 0x00, 0x01, 0x87, 0x00, 0x26, 0x02, 0x30, 0x81, 0x84, 0x31, 0x12, 0x30, 0x10 -.byte 0x06, 0x03, 0x55, 0x04, 0x05, 0x13, 0x09, 0x47, 0x36, 0x33, 0x32, 0x38, 0x37, 0x35, 0x31, 0x30 -.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x45, 0x53, 0x31, 0x27, 0x30 -.byte 0x25, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x1e, 0x41, 0x4e, 0x46, 0x20, 0x41, 0x75, 0x74, 0x6f -.byte 0x72, 0x69, 0x64, 0x61, 0x64, 0x20, 0x64, 0x65, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69 -.byte 0x63, 0x61, 0x63, 0x69, 0x6f, 0x6e, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13 -.byte 0x0b, 0x41, 0x4e, 0x46, 0x20, 0x43, 0x41, 0x20, 0x52, 0x61, 0x69, 0x7a, 0x31, 0x22, 0x30, 0x20 -.byte 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x19, 0x41, 0x4e, 0x46, 0x20, 0x53, 0x65, 0x63, 0x75, 0x72 -.byte 0x65, 0x20, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x41 -.byte 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01 -.byte 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01 -.byte 0x00, 0xdb, 0xeb, 0x6b, 0x2b, 0xe6, 0x64, 0x54, 0x95, 0x82, 0x90, 0xa3, 0x72, 0xa4, 0x19, 0x01 -.byte 0x9d, 0x9c, 0x0b, 0x81, 0x5f, 0x73, 0x49, 0xba, 0xa7, 0xac, 0xf3, 0x04, 0x4e, 0x7b, 0x96, 0x0b -.byte 0xec, 0x11, 0xe0, 0x5b, 0xa6, 0x1c, 0xce, 0x1b, 0xd2, 0x0d, 0x83, 0x1c, 0x2b, 0xb8, 0x9e, 0x1d -.byte 0x7e, 0x45, 0x32, 0x60, 0x0f, 0x07, 0xe9, 0x77, 0x58, 0x7e, 0x9f, 0x6a, 0xc8, 0x61, 0x4e, 0xb6 -.byte 0x26, 0xc1, 0x4c, 0x8d, 0xff, 0x4c, 0xef, 0x34, 0xb2, 0x1f, 0x65, 0xd8, 0xb9, 0x78, 0xf5, 0xad -.byte 0xa9, 0x71, 0xb9, 0xef, 0x4f, 0x58, 0x1d, 0xa5, 0xde, 0x74, 0x20, 0x97, 0xa1, 0xed, 0x68, 0x4c -.byte 0xde, 0x92, 0x17, 0x4b, 0xbc, 0xab, 0xff, 0x65, 0x9a, 0x9e, 0xfb, 0x47, 0xd9, 0x57, 0x72, 0xf3 -.byte 0x09, 0xa1, 0xae, 0x76, 0x44, 0x13, 0x6e, 0x9c, 0x2d, 0x44, 0x39, 0xbc, 0xf9, 0xc7, 0x3b, 0xa4 -.byte 0x58, 0x3d, 0x41, 0xbd, 0xb4, 0xc2, 0x49, 0xa3, 0xc8, 0x0d, 0xd2, 0x97, 0x2f, 0x07, 0x65, 0x52 -.byte 0x00, 0xa7, 0x6e, 0xc8, 0xaf, 0x68, 0xec, 0xf4, 0x14, 0x96, 0xb6, 0x57, 0x1f, 0x56, 0xc3, 0x39 -.byte 0x9f, 0x2b, 0x6d, 0xe4, 0xf3, 0x3e, 0xf6, 0x35, 0x64, 0xda, 0x0c, 0x1c, 0xa1, 0x84, 0x4b, 0x2f -.byte 0x4b, 0x4b, 0xe2, 0x2c, 0x24, 0x9d, 0x6d, 0x93, 0x40, 0xeb, 0xb5, 0x23, 0x8e, 0x32, 0xca, 0x6f -.byte 0x45, 0xd3, 0xa8, 0x89, 0x7b, 0x1e, 0xcf, 0x1e, 0xfa, 0x5b, 0x43, 0x8b, 0xcd, 0xcd, 0xa8, 0x0f -.byte 0x6a, 0xca, 0x0c, 0x5e, 0xb9, 0x9e, 0x47, 0x8f, 0xf0, 0xd9, 0xb6, 0x0a, 0x0b, 0x58, 0x65, 0x17 -.byte 0x33, 0xb9, 0x23, 0xe4, 0x77, 0x19, 0x7d, 0xcb, 0x4a, 0x2e, 0x92, 0x7b, 0x4f, 0x2f, 0x10, 0x77 -.byte 0xb1, 0x8d, 0x2f, 0x68, 0x9c, 0x62, 0xcc, 0xe0, 0x50, 0xf8, 0xec, 0x91, 0xa7, 0x54, 0x4c, 0x57 -.byte 0x09, 0xd5, 0x76, 0x63, 0xc5, 0xe8, 0x65, 0x1e, 0xee, 0x6d, 0x6a, 0xcf, 0x09, 0x9d, 0xfa, 0x7c -.byte 0x4f, 0xad, 0x60, 0x08, 0xfd, 0x56, 0x99, 0x0f, 0x15, 0x2c, 0x7b, 0xa9, 0x80, 0xab, 0x8c, 0x61 -.byte 0x8f, 0x4a, 0x07, 0x76, 0x42, 0xde, 0x3d, 0xf4, 0xdd, 0xb2, 0x24, 0x33, 0x5b, 0xb8, 0xb5, 0xa3 -.byte 0x44, 0xc9, 0xac, 0x7f, 0x77, 0x3c, 0x1d, 0x23, 0xec, 0x82, 0xa9, 0xa6, 0xe2, 0xc8, 0x06, 0x4c -.byte 0x02, 0xfe, 0xac, 0x5c, 0x99, 0x99, 0x0b, 0x2f, 0x10, 0x8a, 0xa6, 0xf4, 0x7f, 0xd5, 0x87, 0x74 -.byte 0x0d, 0x59, 0x49, 0x45, 0xf6, 0xf0, 0x71, 0x5c, 0x39, 0x29, 0xd6, 0xbf, 0x4a, 0x23, 0x8b, 0xf5 -.byte 0x5f, 0x01, 0x63, 0xd2, 0x87, 0x73, 0x28, 0xb5, 0x4b, 0x0a, 0xf5, 0xf8, 0xab, 0x82, 0x2c, 0x7e -.byte 0x73, 0x25, 0x32, 0x1d, 0x0b, 0x63, 0x0a, 0x17, 0x81, 0x00, 0xff, 0xb6, 0x76, 0x5e, 0xe7, 0xb4 -.byte 0xb1, 0x40, 0xca, 0x21, 0xbb, 0xd5, 0x80, 0x51, 0xe5, 0x48, 0x52, 0x67, 0x2c, 0xd2, 0x61, 0x89 -.byte 0x07, 0x0d, 0x0f, 0xce, 0x42, 0x77, 0xc0, 0x44, 0x73, 0x9c, 0x44, 0x50, 0xa0, 0xdb, 0x10, 0x0a -.byte 0x2d, 0x95, 0x1c, 0x81, 0xaf, 0xe4, 0x1c, 0xe5, 0x14, 0x1e, 0xf1, 0x36, 0x41, 0x01, 0x02, 0x2f -.byte 0x7d, 0x73, 0xa7, 0xde, 0x42, 0xcc, 0x4c, 0xe9, 0x89, 0x0d, 0x56, 0xf7, 0x9f, 0x91, 0xd4, 0x03 -.byte 0xc6, 0x6c, 0xc9, 0x8f, 0xdb, 0xd8, 0x1c, 0xe0, 0x40, 0x98, 0x5d, 0x66, 0x99, 0x98, 0x80, 0x6e -.byte 0x2d, 0xff, 0x01, 0xc5, 0xce, 0xcb, 0x46, 0x1f, 0xac, 0x02, 0xc6, 0x43, 0xe6, 0xae, 0xa2, 0x84 -.byte 0x3c, 0xc5, 0x4e, 0x1e, 0x3d, 0x6d, 0xc9, 0x14, 0x4c, 0xe3, 0x2e, 0x41, 0xbb, 0xca, 0x39, 0xbf -.byte 0x36, 0x3c, 0x2a, 0x19, 0xaa, 0x41, 0x87, 0x4e, 0xa5, 0xce, 0x4b, 0x32, 0x79, 0xdd, 0x90, 0x49 -.byte 0x7f, 0x02, 0x03, 0x01, 0x00, 0x01, 0x88, 0x00, 0x78, 0x00, 0x30, 0x81, 0x85, 0x31, 0x0b, 0x30 -.byte 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x47, 0x42, 0x31, 0x1b, 0x30, 0x19, 0x06, 0x03 -.byte 0x55, 0x04, 0x08, 0x13, 0x12, 0x47, 0x72, 0x65, 0x61, 0x74, 0x65, 0x72, 0x20, 0x4d, 0x61, 0x6e -.byte 0x63, 0x68, 0x65, 0x73, 0x74, 0x65, 0x72, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x07 -.byte 0x13, 0x07, 0x53, 0x61, 0x6c, 0x66, 0x6f, 0x72, 0x64, 0x31, 0x1a, 0x30, 0x18, 0x06, 0x03, 0x55 -.byte 0x04, 0x0a, 0x13, 0x11, 0x43, 0x4f, 0x4d, 0x4f, 0x44, 0x4f, 0x20, 0x43, 0x41, 0x20, 0x4c, 0x69 -.byte 0x6d, 0x69, 0x74, 0x65, 0x64, 0x31, 0x2b, 0x30, 0x29, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x22 -.byte 0x43, 0x4f, 0x4d, 0x4f, 0x44, 0x4f, 0x20, 0x45, 0x43, 0x43, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69 -.byte 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69 -.byte 0x74, 0x79, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06 -.byte 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0x03, 0x47, 0x7b, 0x2f, 0x75, 0xc9 -.byte 0x82, 0x15, 0x85, 0xfb, 0x75, 0xe4, 0x91, 0x16, 0xd4, 0xab, 0x62, 0x99, 0xf5, 0x3e, 0x52, 0x0b -.byte 0x06, 0xce, 0x41, 0x00, 0x7f, 0x97, 0xe1, 0x0a, 0x24, 0x3c, 0x1d, 0x01, 0x04, 0xee, 0x3d, 0xd2 -.byte 0x8d, 0x09, 0x97, 0x0c, 0xe0, 0x75, 0xe4, 0xfa, 0xfb, 0x77, 0x8a, 0x2a, 0xf5, 0x03, 0x60, 0x4b -.byte 0x36, 0x8b, 0x16, 0x23, 0x16, 0xad, 0x09, 0x71, 0xf4, 0x4a, 0xf4, 0x28, 0x50, 0xb4, 0xfe, 0x88 -.byte 0x1c, 0x6e, 0x3f, 0x6c, 0x2f, 0x2f, 0x09, 0x59, 0x5b, 0xa5, 0x5b, 0x0b, 0x33, 0x99, 0xe2, 0xc3 -.byte 0x3d, 0x89, 0xf9, 0x6a, 0x2c, 0xef, 0xb2, 0xd3, 0x06, 0xe9, 0x88, 0x00, 0x26, 0x02, 0x30, 0x81 -.byte 0x85, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x47, 0x42, 0x31, 0x1b -.byte 0x30, 0x19, 0x06, 0x03, 0x55, 0x04, 0x08, 0x13, 0x12, 0x47, 0x72, 0x65, 0x61, 0x74, 0x65, 0x72 -.byte 0x20, 0x4d, 0x61, 0x6e, 0x63, 0x68, 0x65, 0x73, 0x74, 0x65, 0x72, 0x31, 0x10, 0x30, 0x0e, 0x06 -.byte 0x03, 0x55, 0x04, 0x07, 0x13, 0x07, 0x53, 0x61, 0x6c, 0x66, 0x6f, 0x72, 0x64, 0x31, 0x1a, 0x30 -.byte 0x18, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x11, 0x43, 0x4f, 0x4d, 0x4f, 0x44, 0x4f, 0x20, 0x43 -.byte 0x41, 0x20, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x64, 0x31, 0x2b, 0x30, 0x29, 0x06, 0x03, 0x55 -.byte 0x04, 0x03, 0x13, 0x22, 0x43, 0x4f, 0x4d, 0x4f, 0x44, 0x4f, 0x20, 0x52, 0x53, 0x41, 0x20, 0x43 -.byte 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74 -.byte 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86 -.byte 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82 -.byte 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0x91, 0xe8, 0x54, 0x92, 0xd2, 0x0a, 0x56, 0xb1, 0xac -.byte 0x0d, 0x24, 0xdd, 0xc5, 0xcf, 0x44, 0x67, 0x74, 0x99, 0x2b, 0x37, 0xa3, 0x7d, 0x23, 0x70, 0x00 -.byte 0x71, 0xbc, 0x53, 0xdf, 0xc4, 0xfa, 0x2a, 0x12, 0x8f, 0x4b, 0x7f, 0x10, 0x56, 0xbd, 0x9f, 0x70 -.byte 0x72, 0xb7, 0x61, 0x7f, 0xc9, 0x4b, 0x0f, 0x17, 0xa7, 0x3d, 0xe3, 0xb0, 0x04, 0x61, 0xee, 0xff -.byte 0x11, 0x97, 0xc7, 0xf4, 0x86, 0x3e, 0x0a, 0xfa, 0x3e, 0x5c, 0xf9, 0x93, 0xe6, 0x34, 0x7a, 0xd9 -.byte 0x14, 0x6b, 0xe7, 0x9c, 0xb3, 0x85, 0xa0, 0x82, 0x7a, 0x76, 0xaf, 0x71, 0x90, 0xd7, 0xec, 0xfd -.byte 0x0d, 0xfa, 0x9c, 0x6c, 0xfa, 0xdf, 0xb0, 0x82, 0xf4, 0x14, 0x7e, 0xf9, 0xbe, 0xc4, 0xa6, 0x2f -.byte 0x4f, 0x7f, 0x99, 0x7f, 0xb5, 0xfc, 0x67, 0x43, 0x72, 0xbd, 0x0c, 0x00, 0xd6, 0x89, 0xeb, 0x6b -.byte 0x2c, 0xd3, 0xed, 0x8f, 0x98, 0x1c, 0x14, 0xab, 0x7e, 0xe5, 0xe3, 0x6e, 0xfc, 0xd8, 0xa8, 0xe4 -.byte 0x92, 0x24, 0xda, 0x43, 0x6b, 0x62, 0xb8, 0x55, 0xfd, 0xea, 0xc1, 0xbc, 0x6c, 0xb6, 0x8b, 0xf3 -.byte 0x0e, 0x8d, 0x9a, 0xe4, 0x9b, 0x6c, 0x69, 0x99, 0xf8, 0x78, 0x48, 0x30, 0x45, 0xd5, 0xad, 0xe1 -.byte 0x0d, 0x3c, 0x45, 0x60, 0xfc, 0x32, 0x96, 0x51, 0x27, 0xbc, 0x67, 0xc3, 0xca, 0x2e, 0xb6, 0x6b -.byte 0xea, 0x46, 0xc7, 0xc7, 0x20, 0xa0, 0xb1, 0x1f, 0x65, 0xde, 0x48, 0x08, 0xba, 0xa4, 0x4e, 0xa9 -.byte 0xf2, 0x83, 0x46, 0x37, 0x84, 0xeb, 0xe8, 0xcc, 0x81, 0x48, 0x43, 0x67, 0x4e, 0x72, 0x2a, 0x9b -.byte 0x5c, 0xbd, 0x4c, 0x1b, 0x28, 0x8a, 0x5c, 0x22, 0x7b, 0xb4, 0xab, 0x98, 0xd9, 0xee, 0xe0, 0x51 -.byte 0x83, 0xc3, 0x09, 0x46, 0x4e, 0x6d, 0x3e, 0x99, 0xfa, 0x95, 0x17, 0xda, 0x7c, 0x33, 0x57, 0x41 -.byte 0x3c, 0x8d, 0x51, 0xed, 0x0b, 0xb6, 0x5c, 0xaf, 0x2c, 0x63, 0x1a, 0xdf, 0x57, 0xc8, 0x3f, 0xbc -.byte 0xe9, 0x5d, 0xc4, 0x9b, 0xaf, 0x45, 0x99, 0xe2, 0xa3, 0x5a, 0x24, 0xb4, 0xba, 0xa9, 0x56, 0x3d -.byte 0xcf, 0x6f, 0xaa, 0xff, 0x49, 0x58, 0xbe, 0xf0, 0xa8, 0xff, 0xf4, 0xb8, 0xad, 0xe9, 0x37, 0xfb -.byte 0xba, 0xb8, 0xf4, 0x0b, 0x3a, 0xf9, 0xe8, 0x43, 0x42, 0x1e, 0x89, 0xd8, 0x84, 0xcb, 0x13, 0xf1 -.byte 0xd9, 0xbb, 0xe1, 0x89, 0x60, 0xb8, 0x8c, 0x28, 0x56, 0xac, 0x14, 0x1d, 0x9c, 0x0a, 0xe7, 0x71 -.byte 0xeb, 0xcf, 0x0e, 0xdd, 0x3d, 0xa9, 0x96, 0xa1, 0x48, 0xbd, 0x3c, 0xf7, 0xaf, 0xb5, 0x0d, 0x22 -.byte 0x4c, 0xc0, 0x11, 0x81, 0xec, 0x56, 0x3b, 0xf6, 0xd3, 0xa2, 0xe2, 0x5b, 0xb7, 0xb2, 0x04, 0x22 -.byte 0x52, 0x95, 0x80, 0x93, 0x69, 0xe8, 0x8e, 0x4c, 0x65, 0xf1, 0x91, 0x03, 0x2d, 0x70, 0x74, 0x02 -.byte 0xea, 0x8b, 0x67, 0x15, 0x29, 0x69, 0x52, 0x02, 0xbb, 0xd7, 0xdf, 0x50, 0x6a, 0x55, 0x46, 0xbf -.byte 0xa0, 0xa3, 0x28, 0x61, 0x7f, 0x70, 0xd0, 0xc3, 0xa2, 0xaa, 0x2c, 0x21, 0xaa, 0x47, 0xce, 0x28 -.byte 0x9c, 0x06, 0x45, 0x76, 0xbf, 0x82, 0x18, 0x27, 0xb4, 0xd5, 0xae, 0xb4, 0xcb, 0x50, 0xe6, 0x6b -.byte 0xf4, 0x4c, 0x86, 0x71, 0x30, 0xe9, 0xa6, 0xdf, 0x16, 0x86, 0xe0, 0xd8, 0xff, 0x40, 0xdd, 0xfb -.byte 0xd0, 0x42, 0x88, 0x7f, 0xa3, 0x33, 0x3a, 0x2e, 0x5c, 0x1e, 0x41, 0x11, 0x81, 0x63, 0xce, 0x18 -.byte 0x71, 0x6b, 0x2b, 0xec, 0xa6, 0x8a, 0xb7, 0x31, 0x5c, 0x3a, 0x6a, 0x47, 0xe0, 0xc3, 0x79, 0x59 -.byte 0xd6, 0x20, 0x1a, 0xaf, 0xf2, 0x6a, 0x98, 0xaa, 0x72, 0xbc, 0x57, 0x4a, 0xd2, 0x4b, 0x9d, 0xbb -.byte 0x10, 0xfc, 0xb0, 0x4c, 0x41, 0xe5, 0xed, 0x1d, 0x3d, 0x5e, 0x28, 0x9d, 0x9c, 0xcc, 0xbf, 0xb3 -.byte 0x51, 0xda, 0xa7, 0x47, 0xe5, 0x84, 0x53, 0x02, 0x03, 0x01, 0x00, 0x01, 0x8b, 0x00, 0x26, 0x02 -.byte 0x30, 0x81, 0x88, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53 -.byte 0x31, 0x11, 0x30, 0x0f, 0x06, 0x03, 0x55, 0x04, 0x08, 0x0c, 0x08, 0x49, 0x6c, 0x6c, 0x69, 0x6e -.byte 0x6f, 0x69, 0x73, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x07, 0x0c, 0x07, 0x43, 0x68 -.byte 0x69, 0x63, 0x61, 0x67, 0x6f, 0x31, 0x21, 0x30, 0x1f, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x18 -.byte 0x54, 0x72, 0x75, 0x73, 0x74, 0x77, 0x61, 0x76, 0x65, 0x20, 0x48, 0x6f, 0x6c, 0x64, 0x69, 0x6e -.byte 0x67, 0x73, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x31, 0x30, 0x2f, 0x06, 0x03, 0x55, 0x04 -.byte 0x03, 0x0c, 0x28, 0x54, 0x72, 0x75, 0x73, 0x74, 0x77, 0x61, 0x76, 0x65, 0x20, 0x47, 0x6c, 0x6f -.byte 0x62, 0x61, 0x6c, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f -.byte 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x30, 0x82, 0x02, 0x22, 0x30 -.byte 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82 -.byte 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xb9, 0x5d, 0x51, 0x28 -.byte 0x4b, 0x3c, 0x37, 0x92, 0xd1, 0x82, 0xce, 0xbd, 0x1d, 0xbd, 0xcd, 0xdd, 0xb8, 0xab, 0xcf, 0x0a -.byte 0x3e, 0xe1, 0x5d, 0xe5, 0xdc, 0xaa, 0x09, 0xb9, 0x57, 0x02, 0x3e, 0xe6, 0x63, 0x61, 0xdf, 0xf2 -.byte 0x0f, 0x82, 0x63, 0xae, 0xa3, 0xf7, 0xac, 0x73, 0xd1, 0x7c, 0xe7, 0xb3, 0x0b, 0xaf, 0x08, 0x00 -.byte 0x09, 0x59, 0x7f, 0xcd, 0x29, 0x2a, 0x88, 0x93, 0x87, 0x17, 0x18, 0x80, 0xed, 0x88, 0xb2, 0xb4 -.byte 0xb6, 0x10, 0x1f, 0x2d, 0xd6, 0x5f, 0x55, 0xa2, 0x13, 0x5d, 0xd1, 0xc6, 0xeb, 0x06, 0x56, 0x89 -.byte 0x88, 0xfe, 0xac, 0x32, 0x9d, 0xfd, 0x5c, 0xc3, 0x05, 0xc7, 0x6e, 0xee, 0x86, 0x89, 0xba, 0x88 -.byte 0x03, 0x9d, 0x72, 0x21, 0x86, 0x90, 0xae, 0x8f, 0x03, 0xa5, 0xdc, 0x9f, 0x88, 0x28, 0xcb, 0xa3 -.byte 0x92, 0x49, 0x0f, 0xec, 0xd0, 0x0f, 0xe2, 0x6d, 0x44, 0x4f, 0x80, 0x6a, 0xb2, 0xd4, 0xe7, 0xa0 -.byte 0x0a, 0x53, 0x01, 0xba, 0x8e, 0x97, 0x91, 0x76, 0x6e, 0xbc, 0xfc, 0xd5, 0x6b, 0x36, 0xe6, 0x40 -.byte 0x88, 0xd6, 0x7b, 0x2f, 0x5f, 0x05, 0xe8, 0x2c, 0x6d, 0x11, 0xf3, 0xe7, 0xb2, 0xbe, 0x92, 0x44 -.byte 0x4c, 0xd2, 0x97, 0xa4, 0xfe, 0xd2, 0x72, 0x81, 0x43, 0x07, 0x9c, 0xe9, 0x11, 0x3e, 0xf5, 0x8b -.byte 0x1a, 0x59, 0x7d, 0x1f, 0x68, 0x58, 0xdd, 0x04, 0x00, 0x2c, 0x96, 0xf3, 0x43, 0xb3, 0x7e, 0x98 -.byte 0x19, 0x74, 0xd9, 0x9c, 0x73, 0xd9, 0x18, 0xbe, 0x41, 0xc7, 0x34, 0x79, 0xd9, 0xf4, 0x62, 0xc2 -.byte 0x43, 0xb9, 0xb3, 0x27, 0xb0, 0x22, 0xcb, 0xf9, 0x3d, 0x52, 0xc7, 0x30, 0x47, 0xb3, 0xc9, 0x3e -.byte 0xb8, 0x6a, 0xe2, 0xe7, 0xe8, 0x81, 0x70, 0x5e, 0x42, 0x8b, 0x4f, 0x26, 0xa5, 0xfe, 0x3a, 0xc2 -.byte 0x20, 0x6e, 0xbb, 0xf8, 0x16, 0x8e, 0xcd, 0x0c, 0xa9, 0xb4, 0x1b, 0x6c, 0x76, 0x10, 0xe1, 0x58 -.byte 0x79, 0x46, 0x3e, 0x54, 0xce, 0x80, 0xa8, 0x57, 0x09, 0x37, 0x29, 0x1b, 0x99, 0x13, 0x8f, 0x0c -.byte 0xc8, 0xd6, 0x2c, 0x1c, 0xfb, 0x05, 0xe8, 0x08, 0x95, 0x3d, 0x65, 0x46, 0xdc, 0xee, 0xcd, 0x69 -.byte 0xe2, 0x4d, 0x8f, 0x87, 0x28, 0x4e, 0x34, 0x0b, 0x3e, 0xcf, 0x14, 0xd9, 0xbb, 0xdd, 0xb6, 0x50 -.byte 0x9a, 0xad, 0x77, 0xd4, 0x19, 0xd6, 0xda, 0x1a, 0x88, 0xc8, 0x4e, 0x1b, 0x27, 0x75, 0xd8, 0xb2 -.byte 0x08, 0xf1, 0xae, 0x83, 0x30, 0xb9, 0x11, 0x0e, 0xcd, 0x87, 0xf0, 0x84, 0x8d, 0x15, 0x72, 0x7c -.byte 0xa1, 0xef, 0xcc, 0xf2, 0x88, 0x61, 0xba, 0xf4, 0x69, 0xbb, 0x0c, 0x8c, 0x0b, 0x75, 0x57, 0x04 -.byte 0xb8, 0x4e, 0x2a, 0x14, 0x2e, 0x3d, 0x0f, 0x1c, 0x1e, 0x32, 0xa6, 0x62, 0x36, 0xee, 0x66, 0xe2 -.byte 0x22, 0xb8, 0x05, 0x40, 0x63, 0x10, 0x22, 0xf3, 0x33, 0x1d, 0x74, 0x72, 0x8a, 0x2c, 0xf5, 0x39 -.byte 0x29, 0xa0, 0xd3, 0xe7, 0x1b, 0x80, 0x84, 0x2d, 0xc5, 0x3d, 0xe3, 0x4d, 0xb1, 0xfd, 0x1a, 0x6f -.byte 0xba, 0x65, 0x07, 0x3b, 0x58, 0xec, 0x42, 0x45, 0x26, 0xfb, 0xd8, 0xda, 0x25, 0x72, 0xc4, 0xf6 -.byte 0x00, 0xb1, 0x22, 0x79, 0xbd, 0xe3, 0x7c, 0x59, 0x62, 0x4a, 0x9c, 0x05, 0x6f, 0x3d, 0xce, 0xe6 -.byte 0xd6, 0x47, 0x63, 0x99, 0xc6, 0x24, 0x6f, 0x72, 0x12, 0xc8, 0xac, 0x7f, 0x90, 0xb4, 0x0b, 0x91 -.byte 0x70, 0xe8, 0xb7, 0xe6, 0x16, 0x10, 0x71, 0x17, 0xce, 0xde, 0x06, 0x4f, 0x48, 0x41, 0x7d, 0x35 -.byte 0x4a, 0xa3, 0x89, 0xf2, 0xc9, 0x4b, 0x7b, 0x41, 0x11, 0x6d, 0x67, 0xb7, 0x08, 0x98, 0x4c, 0xe5 -.byte 0x11, 0x19, 0xae, 0x42, 0x80, 0xdc, 0xfb, 0x90, 0x05, 0xd4, 0xf8, 0x50, 0xca, 0xbe, 0xe4, 0xad -.byte 0xc7, 0xc2, 0x94, 0xd7, 0x16, 0x9d, 0xe6, 0x17, 0x8f, 0xaf, 0x36, 0xfb, 0x02, 0x03, 0x01, 0x00 -.byte 0x01, 0x8b, 0x00, 0x78, 0x00, 0x30, 0x81, 0x88, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04 -.byte 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x08, 0x13, 0x0a -.byte 0x4e, 0x65, 0x77, 0x20, 0x4a, 0x65, 0x72, 0x73, 0x65, 0x79, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03 -.byte 0x55, 0x04, 0x07, 0x13, 0x0b, 0x4a, 0x65, 0x72, 0x73, 0x65, 0x79, 0x20, 0x43, 0x69, 0x74, 0x79 -.byte 0x31, 0x1e, 0x30, 0x1c, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x15, 0x54, 0x68, 0x65, 0x20, 0x55 -.byte 0x53, 0x45, 0x52, 0x54, 0x52, 0x55, 0x53, 0x54, 0x20, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b -.byte 0x31, 0x2e, 0x30, 0x2c, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x25, 0x55, 0x53, 0x45, 0x52, 0x54 -.byte 0x72, 0x75, 0x73, 0x74, 0x20, 0x45, 0x43, 0x43, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69 -.byte 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79 -.byte 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b -.byte 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0x1a, 0xac, 0x54, 0x5a, 0xa9, 0xf9, 0x68, 0x23 -.byte 0xe7, 0x7a, 0xd5, 0x24, 0x6f, 0x53, 0xc6, 0x5a, 0xd8, 0x4b, 0xab, 0xc6, 0xd5, 0xb6, 0xd1, 0xe6 -.byte 0x73, 0x71, 0xae, 0xdd, 0x9c, 0xd6, 0x0c, 0x61, 0xfd, 0xdb, 0xa0, 0x89, 0x03, 0xb8, 0x05, 0x14 -.byte 0xec, 0x57, 0xce, 0xee, 0x5d, 0x3f, 0xe2, 0x21, 0xb3, 0xce, 0xf7, 0xd4, 0x8a, 0x79, 0xe0, 0xa3 -.byte 0x83, 0x7e, 0x2d, 0x97, 0xd0, 0x61, 0xc4, 0xf1, 0x99, 0xdc, 0x25, 0x91, 0x63, 0xab, 0x7f, 0x30 -.byte 0xa3, 0xb4, 0x70, 0xe2, 0xc7, 0xa1, 0x33, 0x9c, 0xf3, 0xbf, 0x2e, 0x5c, 0x53, 0xb1, 0x5f, 0xb3 -.byte 0x7d, 0x32, 0x7f, 0x8a, 0x34, 0xe3, 0x79, 0x79, 0x8b, 0x00, 0x26, 0x02, 0x30, 0x81, 0x88, 0x31 -.byte 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x13, 0x30, 0x11 -.byte 0x06, 0x03, 0x55, 0x04, 0x08, 0x13, 0x0a, 0x4e, 0x65, 0x77, 0x20, 0x4a, 0x65, 0x72, 0x73, 0x65 -.byte 0x79, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x0b, 0x4a, 0x65, 0x72, 0x73 -.byte 0x65, 0x79, 0x20, 0x43, 0x69, 0x74, 0x79, 0x31, 0x1e, 0x30, 0x1c, 0x06, 0x03, 0x55, 0x04, 0x0a -.byte 0x13, 0x15, 0x54, 0x68, 0x65, 0x20, 0x55, 0x53, 0x45, 0x52, 0x54, 0x52, 0x55, 0x53, 0x54, 0x20 -.byte 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x31, 0x2e, 0x30, 0x2c, 0x06, 0x03, 0x55, 0x04, 0x03 -.byte 0x13, 0x25, 0x55, 0x53, 0x45, 0x52, 0x54, 0x72, 0x75, 0x73, 0x74, 0x20, 0x52, 0x53, 0x41, 0x20 -.byte 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75 -.byte 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x30, 0x82, 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a -.byte 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30 -.byte 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0x80, 0x12, 0x65, 0x17, 0x36, 0x0e, 0xc3, 0xdb -.byte 0x08, 0xb3, 0xd0, 0xac, 0x57, 0x0d, 0x76, 0xed, 0xcd, 0x27, 0xd3, 0x4c, 0xad, 0x50, 0x83, 0x61 -.byte 0xe2, 0xaa, 0x20, 0x4d, 0x09, 0x2d, 0x64, 0x09, 0xdc, 0xce, 0x89, 0x9f, 0xcc, 0x3d, 0xa9, 0xec -.byte 0xf6, 0xcf, 0xc1, 0xdc, 0xf1, 0xd3, 0xb1, 0xd6, 0x7b, 0x37, 0x28, 0x11, 0x2b, 0x47, 0xda, 0x39 -.byte 0xc6, 0xbc, 0x3a, 0x19, 0xb4, 0x5f, 0xa6, 0xbd, 0x7d, 0x9d, 0xa3, 0x63, 0x42, 0xb6, 0x76, 0xf2 -.byte 0xa9, 0x3b, 0x2b, 0x91, 0xf8, 0xe2, 0x6f, 0xd0, 0xec, 0x16, 0x20, 0x90, 0x09, 0x3e, 0xe2, 0xe8 -.byte 0x74, 0xc9, 0x18, 0xb4, 0x91, 0xd4, 0x62, 0x64, 0xdb, 0x7f, 0xa3, 0x06, 0xf1, 0x88, 0x18, 0x6a -.byte 0x90, 0x22, 0x3c, 0xbc, 0xfe, 0x13, 0xf0, 0x87, 0x14, 0x7b, 0xf6, 0xe4, 0x1f, 0x8e, 0xd4, 0xe4 -.byte 0x51, 0xc6, 0x11, 0x67, 0x46, 0x08, 0x51, 0xcb, 0x86, 0x14, 0x54, 0x3f, 0xbc, 0x33, 0xfe, 0x7e -.byte 0x6c, 0x9c, 0xff, 0x16, 0x9d, 0x18, 0xbd, 0x51, 0x8e, 0x35, 0xa6, 0xa7, 0x66, 0xc8, 0x72, 0x67 -.byte 0xdb, 0x21, 0x66, 0xb1, 0xd4, 0x9b, 0x78, 0x03, 0xc0, 0x50, 0x3a, 0xe8, 0xcc, 0xf0, 0xdc, 0xbc -.byte 0x9e, 0x4c, 0xfe, 0xaf, 0x05, 0x96, 0x35, 0x1f, 0x57, 0x5a, 0xb7, 0xff, 0xce, 0xf9, 0x3d, 0xb7 -.byte 0x2c, 0xb6, 0xf6, 0x54, 0xdd, 0xc8, 0xe7, 0x12, 0x3a, 0x4d, 0xae, 0x4c, 0x8a, 0xb7, 0x5c, 0x9a -.byte 0xb4, 0xb7, 0x20, 0x3d, 0xca, 0x7f, 0x22, 0x34, 0xae, 0x7e, 0x3b, 0x68, 0x66, 0x01, 0x44, 0xe7 -.byte 0x01, 0x4e, 0x46, 0x53, 0x9b, 0x33, 0x60, 0xf7, 0x94, 0xbe, 0x53, 0x37, 0x90, 0x73, 0x43, 0xf3 -.byte 0x32, 0xc3, 0x53, 0xef, 0xdb, 0xaa, 0xfe, 0x74, 0x4e, 0x69, 0xc7, 0x6b, 0x8c, 0x60, 0x93, 0xde -.byte 0xc4, 0xc7, 0x0c, 0xdf, 0xe1, 0x32, 0xae, 0xcc, 0x93, 0x3b, 0x51, 0x78, 0x95, 0x67, 0x8b, 0xee -.byte 0x3d, 0x56, 0xfe, 0x0c, 0xd0, 0x69, 0x0f, 0x1b, 0x0f, 0xf3, 0x25, 0x26, 0x6b, 0x33, 0x6d, 0xf7 -.byte 0x6e, 0x47, 0xfa, 0x73, 0x43, 0xe5, 0x7e, 0x0e, 0xa5, 0x66, 0xb1, 0x29, 0x7c, 0x32, 0x84, 0x63 -.byte 0x55, 0x89, 0xc4, 0x0d, 0xc1, 0x93, 0x54, 0x30, 0x19, 0x13, 0xac, 0xd3, 0x7d, 0x37, 0xa7, 0xeb -.byte 0x5d, 0x3a, 0x6c, 0x35, 0x5c, 0xdb, 0x41, 0xd7, 0x12, 0xda, 0xa9, 0x49, 0x0b, 0xdf, 0xd8, 0x80 -.byte 0x8a, 0x09, 0x93, 0x62, 0x8e, 0xb5, 0x66, 0xcf, 0x25, 0x88, 0xcd, 0x84, 0xb8, 0xb1, 0x3f, 0xa4 -.byte 0x39, 0x0f, 0xd9, 0x02, 0x9e, 0xeb, 0x12, 0x4c, 0x95, 0x7c, 0xf3, 0x6b, 0x05, 0xa9, 0x5e, 0x16 -.byte 0x83, 0xcc, 0xb8, 0x67, 0xe2, 0xe8, 0x13, 0x9d, 0xcc, 0x5b, 0x82, 0xd3, 0x4c, 0xb3, 0xed, 0x5b -.byte 0xff, 0xde, 0xe5, 0x73, 0xac, 0x23, 0x3b, 0x2d, 0x00, 0xbf, 0x35, 0x55, 0x74, 0x09, 0x49, 0xd8 -.byte 0x49, 0x58, 0x1a, 0x7f, 0x92, 0x36, 0xe6, 0x51, 0x92, 0x0e, 0xf3, 0x26, 0x7d, 0x1c, 0x4d, 0x17 -.byte 0xbc, 0xc9, 0xec, 0x43, 0x26, 0xd0, 0xbf, 0x41, 0x5f, 0x40, 0xa9, 0x44, 0x44, 0xf4, 0x99, 0xe7 -.byte 0x57, 0x87, 0x9e, 0x50, 0x1f, 0x57, 0x54, 0xa8, 0x3e, 0xfd, 0x74, 0x63, 0x2f, 0xb1, 0x50, 0x65 -.byte 0x09, 0xe6, 0x58, 0x42, 0x2e, 0x43, 0x1a, 0x4c, 0xb4, 0xf0, 0x25, 0x47, 0x59, 0xfa, 0x04, 0x1e -.byte 0x93, 0xd4, 0x26, 0x46, 0x4a, 0x50, 0x81, 0xb2, 0xde, 0xbe, 0x78, 0xb7, 0xfc, 0x67, 0x15, 0xe1 -.byte 0xc9, 0x57, 0x84, 0x1e, 0x0f, 0x63, 0xd6, 0xe9, 0x62, 0xba, 0xd6, 0x5f, 0x55, 0x2e, 0xea, 0x5c -.byte 0xc6, 0x28, 0x08, 0x04, 0x25, 0x39, 0xb8, 0x0e, 0x2b, 0xa9, 0xf2, 0x4c, 0x97, 0x1c, 0x07, 0x3f -.byte 0x0d, 0x52, 0xf5, 0xed, 0xef, 0x2f, 0x82, 0x0f, 0x02, 0x03, 0x01, 0x00, 0x01, 0x92, 0x00, 0x26 -.byte 0x01, 0x30, 0x81, 0x8f, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55 -.byte 0x53, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x08, 0x13, 0x07, 0x41, 0x72, 0x69, 0x7a -.byte 0x6f, 0x6e, 0x61, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x0a, 0x53, 0x63 -.byte 0x6f, 0x74, 0x74, 0x73, 0x64, 0x61, 0x6c, 0x65, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03, 0x55, 0x04 -.byte 0x0a, 0x13, 0x1c, 0x53, 0x74, 0x61, 0x72, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x20, 0x54, 0x65, 0x63 -.byte 0x68, 0x6e, 0x6f, 0x6c, 0x6f, 0x67, 0x69, 0x65, 0x73, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31 -.byte 0x32, 0x30, 0x30, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x29, 0x53, 0x74, 0x61, 0x72, 0x66, 0x69 -.byte 0x65, 0x6c, 0x64, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69 -.byte 0x63, 0x61, 0x74, 0x65, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x20, 0x2d -.byte 0x20, 0x47, 0x32, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7 -.byte 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02 -.byte 0x82, 0x01, 0x01, 0x00, 0xbd, 0xed, 0xc1, 0x03, 0xfc, 0xf6, 0x8f, 0xfc, 0x02, 0xb1, 0x6f, 0x5b -.byte 0x9f, 0x48, 0xd9, 0x9d, 0x79, 0xe2, 0xa2, 0xb7, 0x03, 0x61, 0x56, 0x18, 0xc3, 0x47, 0xb6, 0xd7 -.byte 0xca, 0x3d, 0x35, 0x2e, 0x89, 0x43, 0xf7, 0xa1, 0x69, 0x9b, 0xde, 0x8a, 0x1a, 0xfd, 0x13, 0x20 -.byte 0x9c, 0xb4, 0x49, 0x77, 0x32, 0x29, 0x56, 0xfd, 0xb9, 0xec, 0x8c, 0xdd, 0x22, 0xfa, 0x72, 0xdc -.byte 0x27, 0x61, 0x97, 0xee, 0xf6, 0x5a, 0x84, 0xec, 0x6e, 0x19, 0xb9, 0x89, 0x2c, 0xdc, 0x84, 0x5b -.byte 0xd5, 0x74, 0xfb, 0x6b, 0x5f, 0xc5, 0x89, 0xa5, 0x10, 0x52, 0x89, 0x46, 0x55, 0xf4, 0xb8, 0x75 -.byte 0x1c, 0xe6, 0x7f, 0xe4, 0x54, 0xae, 0x4b, 0xf8, 0x55, 0x72, 0x57, 0x02, 0x19, 0xf8, 0x17, 0x71 -.byte 0x59, 0xeb, 0x1e, 0x28, 0x07, 0x74, 0xc5, 0x9d, 0x48, 0xbe, 0x6c, 0xb4, 0xf4, 0xa4, 0xb0, 0xf3 -.byte 0x64, 0x37, 0x79, 0x92, 0xc0, 0xec, 0x46, 0x5e, 0x7f, 0xe1, 0x6d, 0x53, 0x4c, 0x62, 0xaf, 0xcd -.byte 0x1f, 0x0b, 0x63, 0xbb, 0x3a, 0x9d, 0xfb, 0xfc, 0x79, 0x00, 0x98, 0x61, 0x74, 0xcf, 0x26, 0x82 -.byte 0x40, 0x63, 0xf3, 0xb2, 0x72, 0x6a, 0x19, 0x0d, 0x99, 0xca, 0xd4, 0x0e, 0x75, 0xcc, 0x37, 0xfb -.byte 0x8b, 0x89, 0xc1, 0x59, 0xf1, 0x62, 0x7f, 0x5f, 0xb3, 0x5f, 0x65, 0x30, 0xf8, 0xa7, 0xb7, 0x4d -.byte 0x76, 0x5a, 0x1e, 0x76, 0x5e, 0x34, 0xc0, 0xe8, 0x96, 0x56, 0x99, 0x8a, 0xb3, 0xf0, 0x7f, 0xa4 -.byte 0xcd, 0xbd, 0xdc, 0x32, 0x31, 0x7c, 0x91, 0xcf, 0xe0, 0x5f, 0x11, 0xf8, 0x6b, 0xaa, 0x49, 0x5c -.byte 0xd1, 0x99, 0x94, 0xd1, 0xa2, 0xe3, 0x63, 0x5b, 0x09, 0x76, 0xb5, 0x56, 0x62, 0xe1, 0x4b, 0x74 -.byte 0x1d, 0x96, 0xd4, 0x26, 0xd4, 0x08, 0x04, 0x59, 0xd0, 0x98, 0x0e, 0x0e, 0xe6, 0xde, 0xfc, 0xc3 -.byte 0xec, 0x1f, 0x90, 0xf1, 0x02, 0x03, 0x01, 0x00, 0x01, 0x94, 0x00, 0x5b, 0x00, 0x30, 0x81, 0x91 -.byte 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x11, 0x30 -.byte 0x0f, 0x06, 0x03, 0x55, 0x04, 0x08, 0x13, 0x08, 0x49, 0x6c, 0x6c, 0x69, 0x6e, 0x6f, 0x69, 0x73 -.byte 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x07, 0x43, 0x68, 0x69, 0x63, 0x61 -.byte 0x67, 0x6f, 0x31, 0x21, 0x30, 0x1f, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x18, 0x54, 0x72, 0x75 -.byte 0x73, 0x74, 0x77, 0x61, 0x76, 0x65, 0x20, 0x48, 0x6f, 0x6c, 0x64, 0x69, 0x6e, 0x67, 0x73, 0x2c -.byte 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x3a, 0x30, 0x38, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x31 -.byte 0x54, 0x72, 0x75, 0x73, 0x74, 0x77, 0x61, 0x76, 0x65, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c -.byte 0x20, 0x45, 0x43, 0x43, 0x20, 0x50, 0x32, 0x35, 0x36, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66 -.byte 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74 -.byte 0x79, 0x30, 0x59, 0x30, 0x13, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x08 -.byte 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x03, 0x01, 0x07, 0x03, 0x42, 0x00, 0x04, 0x7e, 0xfb, 0x6c, 0xe6 -.byte 0x23, 0xe3, 0x73, 0x32, 0x08, 0xca, 0x60, 0xe6, 0x53, 0x9c, 0xba, 0x74, 0x8d, 0x18, 0xb0, 0x78 -.byte 0x90, 0x52, 0x80, 0xdd, 0x38, 0xc0, 0x4a, 0x1d, 0xd1, 0xa8, 0xcc, 0x93, 0xa4, 0x97, 0x06, 0x38 -.byte 0xca, 0x0d, 0x15, 0x62, 0xc6, 0x8e, 0x01, 0x2a, 0x65, 0x9d, 0xaa, 0xdf, 0x34, 0x91, 0x2e, 0x81 -.byte 0xc1, 0xe4, 0x33, 0x92, 0x31, 0xc4, 0xfd, 0x09, 0x3a, 0xa6, 0x3f, 0xad, 0x94, 0x00, 0x78, 0x00 -.byte 0x30, 0x81, 0x91, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53 -.byte 0x31, 0x11, 0x30, 0x0f, 0x06, 0x03, 0x55, 0x04, 0x08, 0x13, 0x08, 0x49, 0x6c, 0x6c, 0x69, 0x6e -.byte 0x6f, 0x69, 0x73, 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x07, 0x43, 0x68 -.byte 0x69, 0x63, 0x61, 0x67, 0x6f, 0x31, 0x21, 0x30, 0x1f, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x18 -.byte 0x54, 0x72, 0x75, 0x73, 0x74, 0x77, 0x61, 0x76, 0x65, 0x20, 0x48, 0x6f, 0x6c, 0x64, 0x69, 0x6e -.byte 0x67, 0x73, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x3a, 0x30, 0x38, 0x06, 0x03, 0x55, 0x04 -.byte 0x03, 0x13, 0x31, 0x54, 0x72, 0x75, 0x73, 0x74, 0x77, 0x61, 0x76, 0x65, 0x20, 0x47, 0x6c, 0x6f -.byte 0x62, 0x61, 0x6c, 0x20, 0x45, 0x43, 0x43, 0x20, 0x50, 0x33, 0x38, 0x34, 0x20, 0x43, 0x65, 0x72 -.byte 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f -.byte 0x72, 0x69, 0x74, 0x79, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02 -.byte 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0x6b, 0xda, 0x0d, 0x75 -.byte 0x35, 0x08, 0x31, 0x47, 0x05, 0xae, 0x45, 0x99, 0x55, 0xf1, 0x11, 0x13, 0x2e, 0x4a, 0xf8, 0x10 -.byte 0x31, 0x23, 0xa3, 0x7e, 0x83, 0xd3, 0x7f, 0x28, 0x08, 0x3a, 0x26, 0x1a, 0x3a, 0xcf, 0x97, 0x82 -.byte 0x1f, 0x80, 0xb7, 0x27, 0x09, 0x8f, 0xd1, 0x8e, 0x30, 0xc4, 0x0a, 0x9b, 0x0e, 0xac, 0x58, 0x04 -.byte 0xab, 0xf7, 0x36, 0x7d, 0x94, 0x23, 0xa4, 0x9b, 0x0a, 0x8a, 0x8b, 0xab, 0xeb, 0xfd, 0x39, 0x25 -.byte 0x66, 0xf1, 0x5e, 0xfe, 0x8c, 0xae, 0x8d, 0x41, 0x79, 0x9d, 0x09, 0x60, 0xce, 0x28, 0xa9, 0xd3 -.byte 0x8a, 0x6d, 0xf3, 0xd6, 0x45, 0xd4, 0xf2, 0x98, 0x84, 0x38, 0x65, 0xa0, 0x9b, 0x00, 0x26, 0x01 -.byte 0x30, 0x81, 0x98, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53 -.byte 0x31, 0x10, 0x30, 0x0e, 0x06, 0x03, 0x55, 0x04, 0x08, 0x13, 0x07, 0x41, 0x72, 0x69, 0x7a, 0x6f -.byte 0x6e, 0x61, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x0a, 0x53, 0x63, 0x6f -.byte 0x74, 0x74, 0x73, 0x64, 0x61, 0x6c, 0x65, 0x31, 0x25, 0x30, 0x23, 0x06, 0x03, 0x55, 0x04, 0x0a -.byte 0x13, 0x1c, 0x53, 0x74, 0x61, 0x72, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x20, 0x54, 0x65, 0x63, 0x68 -.byte 0x6e, 0x6f, 0x6c, 0x6f, 0x67, 0x69, 0x65, 0x73, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x3b -.byte 0x30, 0x39, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x32, 0x53, 0x74, 0x61, 0x72, 0x66, 0x69, 0x65 -.byte 0x6c, 0x64, 0x20, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x20, 0x52, 0x6f, 0x6f, 0x74 -.byte 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x20, 0x41, 0x75, 0x74 -.byte 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x20, 0x2d, 0x20, 0x47, 0x32, 0x30, 0x82, 0x01, 0x22, 0x30 -.byte 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82 -.byte 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xd5, 0x0c, 0x3a, 0xc4 -.byte 0x2a, 0xf9, 0x4e, 0xe2, 0xf5, 0xbe, 0x19, 0x97, 0x5f, 0x8e, 0x88, 0x53, 0xb1, 0x1f, 0x3f, 0xcb -.byte 0xcf, 0x9f, 0x20, 0x13, 0x6d, 0x29, 0x3a, 0xc8, 0x0f, 0x7d, 0x3c, 0xf7, 0x6b, 0x76, 0x38, 0x63 -.byte 0xd9, 0x36, 0x60, 0xa8, 0x9b, 0x5e, 0x5c, 0x00, 0x80, 0xb2, 0x2f, 0x59, 0x7f, 0xf6, 0x87, 0xf9 -.byte 0x25, 0x43, 0x86, 0xe7, 0x69, 0x1b, 0x52, 0x9a, 0x90, 0xe1, 0x71, 0xe3, 0xd8, 0x2d, 0x0d, 0x4e -.byte 0x6f, 0xf6, 0xc8, 0x49, 0xd9, 0xb6, 0xf3, 0x1a, 0x56, 0xae, 0x2b, 0xb6, 0x74, 0x14, 0xeb, 0xcf -.byte 0xfb, 0x26, 0xe3, 0x1a, 0xba, 0x1d, 0x96, 0x2e, 0x6a, 0x3b, 0x58, 0x94, 0x89, 0x47, 0x56, 0xff -.byte 0x25, 0xa0, 0x93, 0x70, 0x53, 0x83, 0xda, 0x84, 0x74, 0x14, 0xc3, 0x67, 0x9e, 0x04, 0x68, 0x3a -.byte 0xdf, 0x8e, 0x40, 0x5a, 0x1d, 0x4a, 0x4e, 0xcf, 0x43, 0x91, 0x3b, 0xe7, 0x56, 0xd6, 0x00, 0x70 -.byte 0xcb, 0x52, 0xee, 0x7b, 0x7d, 0xae, 0x3a, 0xe7, 0xbc, 0x31, 0xf9, 0x45, 0xf6, 0xc2, 0x60, 0xcf -.byte 0x13, 0x59, 0x02, 0x2b, 0x80, 0xcc, 0x34, 0x47, 0xdf, 0xb9, 0xde, 0x90, 0x65, 0x6d, 0x02, 0xcf -.byte 0x2c, 0x91, 0xa6, 0xa6, 0xe7, 0xde, 0x85, 0x18, 0x49, 0x7c, 0x66, 0x4e, 0xa3, 0x3a, 0x6d, 0xa9 -.byte 0xb5, 0xee, 0x34, 0x2e, 0xba, 0x0d, 0x03, 0xb8, 0x33, 0xdf, 0x47, 0xeb, 0xb1, 0x6b, 0x8d, 0x25 -.byte 0xd9, 0x9b, 0xce, 0x81, 0xd1, 0x45, 0x46, 0x32, 0x96, 0x70, 0x87, 0xde, 0x02, 0x0e, 0x49, 0x43 -.byte 0x85, 0xb6, 0x6c, 0x73, 0xbb, 0x64, 0xea, 0x61, 0x41, 0xac, 0xc9, 0xd4, 0x54, 0xdf, 0x87, 0x2f -.byte 0xc7, 0x22, 0xb2, 0x26, 0xcc, 0x9f, 0x59, 0x54, 0x68, 0x9f, 0xfc, 0xbe, 0x2a, 0x2f, 0xc4, 0x55 -.byte 0x1c, 0x75, 0x40, 0x60, 0x17, 0x85, 0x02, 0x55, 0x39, 0x8b, 0x7f, 0x05, 0x02, 0x03, 0x01, 0x00 -.byte 0x01, 0xa9, 0x00, 0x26, 0x02, 0x30, 0x81, 0xa6, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04 -.byte 0x06, 0x13, 0x02, 0x47, 0x52, 0x31, 0x0f, 0x30, 0x0d, 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x06 -.byte 0x41, 0x74, 0x68, 0x65, 0x6e, 0x73, 0x31, 0x44, 0x30, 0x42, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13 -.byte 0x3b, 0x48, 0x65, 0x6c, 0x6c, 0x65, 0x6e, 0x69, 0x63, 0x20, 0x41, 0x63, 0x61, 0x64, 0x65, 0x6d -.byte 0x69, 0x63, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x52, 0x65, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x20 -.byte 0x49, 0x6e, 0x73, 0x74, 0x69, 0x74, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x20, 0x43, 0x65, 0x72 -.byte 0x74, 0x2e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x31, 0x40, 0x30, 0x3e -.byte 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x37, 0x48, 0x65, 0x6c, 0x6c, 0x65, 0x6e, 0x69, 0x63, 0x20 -.byte 0x41, 0x63, 0x61, 0x64, 0x65, 0x6d, 0x69, 0x63, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x52, 0x65, 0x73 -.byte 0x65, 0x61, 0x72, 0x63, 0x68, 0x20, 0x49, 0x6e, 0x73, 0x74, 0x69, 0x74, 0x75, 0x74, 0x69, 0x6f -.byte 0x6e, 0x73, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x43, 0x41, 0x20, 0x32, 0x30, 0x31, 0x35, 0x30, 0x82 -.byte 0x02, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05 -.byte 0x00, 0x03, 0x82, 0x02, 0x0f, 0x00, 0x30, 0x82, 0x02, 0x0a, 0x02, 0x82, 0x02, 0x01, 0x00, 0xc2 -.byte 0xf8, 0xa9, 0x3f, 0x1b, 0x89, 0xfc, 0x3c, 0x3c, 0x04, 0x5d, 0x3d, 0x90, 0x36, 0xb0, 0x91, 0x3a -.byte 0x79, 0x3c, 0x66, 0x5a, 0xef, 0x6d, 0x39, 0x01, 0x49, 0x1a, 0xb4, 0xb7, 0xcf, 0x7f, 0x4d, 0x23 -.byte 0x53, 0xb7, 0x90, 0x00, 0xe3, 0x13, 0x2a, 0x28, 0xa6, 0x31, 0xf1, 0x91, 0x00, 0xe3, 0x28, 0xec -.byte 0xae, 0x21, 0x41, 0xce, 0x1f, 0xda, 0xfd, 0x7d, 0x12, 0x5b, 0x01, 0x83, 0x0f, 0xb9, 0xb0, 0x5f -.byte 0x99, 0xe1, 0xf2, 0x12, 0x83, 0x80, 0x4d, 0x06, 0x3e, 0xdf, 0xac, 0xaf, 0xe7, 0xa1, 0x88, 0x6b -.byte 0x31, 0xaf, 0xf0, 0x8b, 0xd0, 0x18, 0x33, 0xb8, 0xdb, 0x45, 0x6a, 0x34, 0xf4, 0x02, 0x80, 0x24 -.byte 0x28, 0x0a, 0x02, 0x15, 0x95, 0x5e, 0x76, 0x2a, 0x0d, 0x99, 0x3a, 0x14, 0x5b, 0xf6, 0xcb, 0xcb -.byte 0x53, 0xbc, 0x13, 0x4d, 0x01, 0x88, 0x37, 0x94, 0x25, 0x1b, 0x42, 0xbc, 0x22, 0xd8, 0x8e, 0xa3 -.byte 0x96, 0x5e, 0x3a, 0xd9, 0x32, 0xdb, 0x3e, 0xe8, 0xf0, 0x10, 0x65, 0xed, 0x74, 0xe1, 0x2f, 0xa7 -.byte 0x7c, 0xaf, 0x27, 0x34, 0xbb, 0x29, 0x7d, 0x9b, 0xb6, 0xcf, 0x09, 0xc8, 0xe5, 0xd3, 0x0a, 0xfc -.byte 0x88, 0x65, 0x65, 0x74, 0x0a, 0xdc, 0x73, 0x1c, 0x5c, 0xcd, 0x40, 0xb1, 0x1c, 0xd4, 0xb6, 0x84 -.byte 0x8c, 0x4c, 0x50, 0xcf, 0x68, 0x8e, 0xa8, 0x59, 0xae, 0xc2, 0x27, 0x4e, 0x82, 0xa2, 0x35, 0xdd -.byte 0x14, 0xf4, 0x1f, 0xff, 0xb2, 0x77, 0xd5, 0x87, 0x2f, 0xaa, 0x6e, 0x7d, 0x24, 0x27, 0xe7, 0xc6 -.byte 0xcb, 0x26, 0xe6, 0xe5, 0xfe, 0x67, 0x07, 0x63, 0xd8, 0x45, 0x0d, 0xdd, 0x3a, 0x59, 0x65, 0x39 -.byte 0x58, 0x7a, 0x92, 0x99, 0x72, 0x3d, 0x9c, 0x84, 0x5e, 0x88, 0x21, 0xb8, 0xd5, 0xf4, 0x2c, 0xfc -.byte 0xd9, 0x70, 0x52, 0x4f, 0x78, 0xb8, 0xbd, 0x3c, 0x2b, 0x8b, 0x95, 0x98, 0xf5, 0xb3, 0xd1, 0x68 -.byte 0xcf, 0x20, 0x14, 0x7e, 0x4c, 0x5c, 0x5f, 0xe7, 0x8b, 0xe5, 0xf5, 0x35, 0x81, 0x19, 0x37, 0xd7 -.byte 0x11, 0x08, 0xb7, 0x66, 0xbe, 0xd3, 0x4a, 0xce, 0x83, 0x57, 0x00, 0x3a, 0xc3, 0x81, 0xf8, 0x17 -.byte 0xcb, 0x92, 0x36, 0x5d, 0xd1, 0xa3, 0xd8, 0x75, 0x1b, 0xe1, 0x8b, 0x27, 0xea, 0x7a, 0x48, 0x41 -.byte 0xfd, 0x45, 0x19, 0x06, 0xad, 0x27, 0x99, 0x4e, 0xc1, 0x70, 0x47, 0xdd, 0xb5, 0x9f, 0x81, 0x53 -.byte 0x12, 0xe5, 0xb1, 0x8c, 0x48, 0x5d, 0x31, 0x43, 0x17, 0xe3, 0x8c, 0xc6, 0x7a, 0x63, 0x96, 0x4b -.byte 0x29, 0x30, 0x4e, 0x84, 0x4e, 0x62, 0x19, 0x5e, 0x3c, 0xce, 0x97, 0x90, 0xa5, 0x7f, 0x01, 0xeb -.byte 0x9d, 0xe0, 0xf8, 0x8b, 0x89, 0xdd, 0x25, 0x98, 0x3d, 0x92, 0xb6, 0x7e, 0xef, 0xd9, 0xf1, 0x51 -.byte 0x51, 0x7d, 0x2d, 0x26, 0xc8, 0x69, 0x59, 0x61, 0xe0, 0xac, 0x6a, 0xb8, 0x2a, 0x36, 0x11, 0x04 -.byte 0x7a, 0x50, 0xbd, 0x32, 0x84, 0xbe, 0x2f, 0xdc, 0x72, 0xd5, 0xd7, 0x1d, 0x16, 0x47, 0xe4, 0x47 -.byte 0x66, 0x20, 0x3f, 0xf4, 0x96, 0xc5, 0xaf, 0x8e, 0x01, 0x7a, 0xa5, 0x0f, 0x7a, 0x64, 0xf5, 0x0d -.byte 0x18, 0x87, 0xd9, 0xae, 0x88, 0xd5, 0xfa, 0x84, 0xc1, 0x3a, 0xc0, 0x69, 0x28, 0x2d, 0xf2, 0x0d -.byte 0x68, 0x51, 0xaa, 0xe3, 0xa5, 0x77, 0xc6, 0xa4, 0x90, 0x0e, 0xa1, 0x37, 0x8b, 0x31, 0x23, 0x47 -.byte 0xc1, 0x09, 0x08, 0xeb, 0x6e, 0xf7, 0x78, 0x9b, 0xd7, 0x82, 0xfc, 0x84, 0x20, 0x99, 0x49, 0x19 -.byte 0xb6, 0x12, 0x46, 0xb1, 0xfb, 0x45, 0x55, 0x16, 0xa9, 0xa3, 0x65, 0xac, 0x9c, 0x07, 0x0f, 0xea -.byte 0x6b, 0xdc, 0x1f, 0x2e, 0x06, 0x72, 0xec, 0x86, 0x88, 0x12, 0xe4, 0x2d, 0xdb, 0x5f, 0x05, 0x2f -.byte 0xe4, 0xf0, 0x03, 0xd3, 0x26, 0x33, 0xe7, 0x80, 0xc2, 0xcd, 0x42, 0xa1, 0x17, 0x34, 0x0b, 0x02 -.byte 0x03, 0x01, 0x00, 0x01, 0xaa, 0x00, 0x26, 0x01, 0x30, 0x81, 0xa7, 0x31, 0x0b, 0x30, 0x09, 0x06 -.byte 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x48, 0x55, 0x31, 0x11, 0x30, 0x0f, 0x06, 0x03, 0x55, 0x04 -.byte 0x07, 0x0c, 0x08, 0x42, 0x75, 0x64, 0x61, 0x70, 0x65, 0x73, 0x74, 0x31, 0x15, 0x30, 0x13, 0x06 -.byte 0x03, 0x55, 0x04, 0x0a, 0x0c, 0x0c, 0x4e, 0x65, 0x74, 0x4c, 0x6f, 0x63, 0x6b, 0x20, 0x4b, 0x66 -.byte 0x74, 0x2e, 0x31, 0x37, 0x30, 0x35, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x0c, 0x2e, 0x54, 0x61, 0x6e -.byte 0xc3, 0xba, 0x73, 0xc3, 0xad, 0x74, 0x76, 0xc3, 0xa1, 0x6e, 0x79, 0x6b, 0x69, 0x61, 0x64, 0xc3 -.byte 0xb3, 0x6b, 0x20, 0x28, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f -.byte 0x6e, 0x20, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x29, 0x31, 0x35, 0x30, 0x33, 0x06 -.byte 0x03, 0x55, 0x04, 0x03, 0x0c, 0x2c, 0x4e, 0x65, 0x74, 0x4c, 0x6f, 0x63, 0x6b, 0x20, 0x41, 0x72 -.byte 0x61, 0x6e, 0x79, 0x20, 0x28, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x20, 0x47, 0x6f, 0x6c, 0x64, 0x29 -.byte 0x20, 0x46, 0xc5, 0x91, 0x74, 0x61, 0x6e, 0xc3, 0xba, 0x73, 0xc3, 0xad, 0x74, 0x76, 0xc3, 0xa1 -.byte 0x6e, 0x79, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d -.byte 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82 -.byte 0x01, 0x01, 0x00, 0xc4, 0x24, 0x5e, 0x73, 0xbe, 0x4b, 0x6d, 0x14, 0xc3, 0xa1, 0xf4, 0xe3, 0x97 -.byte 0x90, 0x6e, 0xd2, 0x30, 0x45, 0x1e, 0x3c, 0xee, 0x67, 0xd9, 0x64, 0xe0, 0x1a, 0x8a, 0x7f, 0xca -.byte 0x30, 0xca, 0x83, 0xe3, 0x20, 0xc1, 0xe3, 0xf4, 0x3a, 0xd3, 0x94, 0x5f, 0x1a, 0x7c, 0x5b, 0x6d -.byte 0xbf, 0x30, 0x4f, 0x84, 0x27, 0xf6, 0x9f, 0x1f, 0x49, 0xbc, 0xc6, 0x99, 0x0a, 0x90, 0xf2, 0x0f -.byte 0xf5, 0x7f, 0x43, 0x84, 0x37, 0x63, 0x51, 0x8b, 0x7a, 0xa5, 0x70, 0xfc, 0x7a, 0x58, 0xcd, 0x8e -.byte 0x9b, 0xed, 0xc3, 0x46, 0x6c, 0x84, 0x70, 0x5d, 0xda, 0xf3, 0x01, 0x90, 0x23, 0xfc, 0x4e, 0x30 -.byte 0xa9, 0x7e, 0xe1, 0x27, 0x63, 0xe7, 0xed, 0x64, 0x3c, 0xa0, 0xb8, 0xc9, 0x33, 0x63, 0xfe, 0x16 -.byte 0x90, 0xff, 0xb0, 0xb8, 0xfd, 0xd7, 0xa8, 0xc0, 0xc0, 0x94, 0x43, 0x0b, 0xb6, 0xd5, 0x59, 0xa6 -.byte 0x9e, 0x56, 0xd0, 0x24, 0x1f, 0x70, 0x79, 0xaf, 0xdb, 0x39, 0x54, 0x0d, 0x65, 0x75, 0xd9, 0x15 -.byte 0x41, 0x94, 0x01, 0xaf, 0x5e, 0xec, 0xf6, 0x8d, 0xf1, 0xff, 0xad, 0x64, 0xfe, 0x20, 0x9a, 0xd7 -.byte 0x5c, 0xeb, 0xfe, 0xa6, 0x1f, 0x08, 0x64, 0xa3, 0x8b, 0x76, 0x55, 0xad, 0x1e, 0x3b, 0x28, 0x60 -.byte 0x2e, 0x87, 0x25, 0xe8, 0xaa, 0xaf, 0x1f, 0xc6, 0x64, 0x46, 0x20, 0xb7, 0x70, 0x7f, 0x3c, 0xde -.byte 0x48, 0xdb, 0x96, 0x53, 0xb7, 0x39, 0x77, 0xe4, 0x1a, 0xe2, 0xc7, 0x16, 0x84, 0x76, 0x97, 0x5b -.byte 0x2f, 0xbb, 0x19, 0x15, 0x85, 0xf8, 0x69, 0x85, 0xf5, 0x99, 0xa7, 0xa9, 0xf2, 0x34, 0xa7, 0xa9 -.byte 0xb6, 0xa6, 0x03, 0xfc, 0x6f, 0x86, 0x3d, 0x54, 0x7c, 0x76, 0x04, 0x9b, 0x6b, 0xf9, 0x40, 0x5d -.byte 0x00, 0x34, 0xc7, 0x2e, 0x99, 0x75, 0x9d, 0xe5, 0x88, 0x03, 0xaa, 0x4d, 0xf8, 0x03, 0xd2, 0x42 -.byte 0x76, 0xc0, 0x1b, 0x02, 0x03, 0x00, 0xa8, 0x8b, 0xad, 0x00, 0x78, 0x00, 0x30, 0x81, 0xaa, 0x31 -.byte 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x47, 0x52, 0x31, 0x0f, 0x30, 0x0d -.byte 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x06, 0x41, 0x74, 0x68, 0x65, 0x6e, 0x73, 0x31, 0x44, 0x30 -.byte 0x42, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x3b, 0x48, 0x65, 0x6c, 0x6c, 0x65, 0x6e, 0x69, 0x63 -.byte 0x20, 0x41, 0x63, 0x61, 0x64, 0x65, 0x6d, 0x69, 0x63, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x52, 0x65 -.byte 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x20, 0x49, 0x6e, 0x73, 0x74, 0x69, 0x74, 0x75, 0x74, 0x69 -.byte 0x6f, 0x6e, 0x73, 0x20, 0x43, 0x65, 0x72, 0x74, 0x2e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72 -.byte 0x69, 0x74, 0x79, 0x31, 0x44, 0x30, 0x42, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x3b, 0x48, 0x65 -.byte 0x6c, 0x6c, 0x65, 0x6e, 0x69, 0x63, 0x20, 0x41, 0x63, 0x61, 0x64, 0x65, 0x6d, 0x69, 0x63, 0x20 -.byte 0x61, 0x6e, 0x64, 0x20, 0x52, 0x65, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x20, 0x49, 0x6e, 0x73 -.byte 0x74, 0x69, 0x74, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x20, 0x45, 0x43, 0x43, 0x20, 0x52, 0x6f -.byte 0x6f, 0x74, 0x43, 0x41, 0x20, 0x32, 0x30, 0x31, 0x35, 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a -.byte 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00 -.byte 0x04, 0x92, 0xa0, 0x41, 0xe8, 0x4b, 0x82, 0x84, 0x5c, 0xe2, 0xf8, 0x31, 0x11, 0x99, 0x86, 0x64 -.byte 0x4e, 0x09, 0x25, 0x2f, 0x9d, 0x41, 0x2f, 0x0a, 0xae, 0x35, 0x4f, 0x74, 0x95, 0xb2, 0x51, 0x64 -.byte 0x6b, 0x8d, 0x6b, 0xe6, 0x3f, 0x70, 0x95, 0xf0, 0x05, 0x44, 0x47, 0xa6, 0x72, 0x38, 0x50, 0x76 -.byte 0x95, 0x02, 0x5a, 0x8e, 0xae, 0x28, 0x9e, 0xf9, 0x2d, 0x4e, 0x99, 0xef, 0x2c, 0x48, 0x6f, 0x4c -.byte 0x25, 0x29, 0xe8, 0xd1, 0x71, 0x5b, 0xdf, 0x1d, 0xc1, 0x75, 0x37, 0xb4, 0xd7, 0xfa, 0x7b, 0x7a -.byte 0x42, 0x9c, 0x6a, 0x0a, 0x56, 0x5a, 0x7c, 0x69, 0x0b, 0xaa, 0x80, 0x09, 0x24, 0x6c, 0x7e, 0xc1 -.byte 0x46, 0xb3, 0x00, 0x26, 0x01, 0x30, 0x81, 0xb0, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04 -.byte 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x16, 0x30, 0x14, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0d -.byte 0x45, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x39, 0x30 -.byte 0x37, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x30, 0x77, 0x77, 0x77, 0x2e, 0x65, 0x6e, 0x74, 0x72 -.byte 0x75, 0x73, 0x74, 0x2e, 0x6e, 0x65, 0x74, 0x2f, 0x43, 0x50, 0x53, 0x20, 0x69, 0x73, 0x20, 0x69 -.byte 0x6e, 0x63, 0x6f, 0x72, 0x70, 0x6f, 0x72, 0x61, 0x74, 0x65, 0x64, 0x20, 0x62, 0x79, 0x20, 0x72 -.byte 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x31, 0x1f, 0x30, 0x1d, 0x06, 0x03, 0x55, 0x04 -.byte 0x0b, 0x13, 0x16, 0x28, 0x63, 0x29, 0x20, 0x32, 0x30, 0x30, 0x36, 0x20, 0x45, 0x6e, 0x74, 0x72 -.byte 0x75, 0x73, 0x74, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x2d, 0x30, 0x2b, 0x06, 0x03, 0x55 -.byte 0x04, 0x03, 0x13, 0x24, 0x45, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x20, 0x52, 0x6f, 0x6f, 0x74 -.byte 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41 -.byte 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09 -.byte 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00 -.byte 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xb6, 0x95, 0xb6, 0x43, 0x42, 0xfa, 0xc6 -.byte 0x6d, 0x2a, 0x6f, 0x48, 0xdf, 0x94, 0x4c, 0x39, 0x57, 0x05, 0xee, 0xc3, 0x79, 0x11, 0x41, 0x68 -.byte 0x36, 0xed, 0xec, 0xfe, 0x9a, 0x01, 0x8f, 0xa1, 0x38, 0x28, 0xfc, 0xf7, 0x10, 0x46, 0x66, 0x2e -.byte 0x4d, 0x1e, 0x1a, 0xb1, 0x1a, 0x4e, 0xc6, 0xd1, 0xc0, 0x95, 0x88, 0xb0, 0xc9, 0xff, 0x31, 0x8b -.byte 0x33, 0x03, 0xdb, 0xb7, 0x83, 0x7b, 0x3e, 0x20, 0x84, 0x5e, 0xed, 0xb2, 0x56, 0x28, 0xa7, 0xf8 -.byte 0xe0, 0xb9, 0x40, 0x71, 0x37, 0xc5, 0xcb, 0x47, 0x0e, 0x97, 0x2a, 0x68, 0xc0, 0x22, 0x95, 0x62 -.byte 0x15, 0xdb, 0x47, 0xd9, 0xf5, 0xd0, 0x2b, 0xff, 0x82, 0x4b, 0xc9, 0xad, 0x3e, 0xde, 0x4c, 0xdb -.byte 0x90, 0x80, 0x50, 0x3f, 0x09, 0x8a, 0x84, 0x00, 0xec, 0x30, 0x0a, 0x3d, 0x18, 0xcd, 0xfb, 0xfd -.byte 0x2a, 0x59, 0x9a, 0x23, 0x95, 0x17, 0x2c, 0x45, 0x9e, 0x1f, 0x6e, 0x43, 0x79, 0x6d, 0x0c, 0x5c -.byte 0x98, 0xfe, 0x48, 0xa7, 0xc5, 0x23, 0x47, 0x5c, 0x5e, 0xfd, 0x6e, 0xe7, 0x1e, 0xb4, 0xf6, 0x68 -.byte 0x45, 0xd1, 0x86, 0x83, 0x5b, 0xa2, 0x8a, 0x8d, 0xb1, 0xe3, 0x29, 0x80, 0xfe, 0x25, 0x71, 0x88 -.byte 0xad, 0xbe, 0xbc, 0x8f, 0xac, 0x52, 0x96, 0x4b, 0xaa, 0x51, 0x8d, 0xe4, 0x13, 0x31, 0x19, 0xe8 -.byte 0x4e, 0x4d, 0x9f, 0xdb, 0xac, 0xb3, 0x6a, 0xd5, 0xbc, 0x39, 0x54, 0x71, 0xca, 0x7a, 0x7a, 0x7f -.byte 0x90, 0xdd, 0x7d, 0x1d, 0x80, 0xd9, 0x81, 0xbb, 0x59, 0x26, 0xc2, 0x11, 0xfe, 0xe6, 0x93, 0xe2 -.byte 0xf7, 0x80, 0xe4, 0x65, 0xfb, 0x34, 0x37, 0x0e, 0x29, 0x80, 0x70, 0x4d, 0xaf, 0x38, 0x86, 0x2e -.byte 0x9e, 0x7f, 0x57, 0xaf, 0x9e, 0x17, 0xae, 0xeb, 0x1c, 0xcb, 0x28, 0x21, 0x5f, 0xb6, 0x1c, 0xd8 -.byte 0xe7, 0xa2, 0x04, 0x22, 0xf9, 0xd3, 0xda, 0xd8, 0xcb, 0x02, 0x03, 0x01, 0x00, 0x01, 0xb7, 0x00 -.byte 0x26, 0x01, 0x30, 0x81, 0xb4, 0x31, 0x14, 0x30, 0x12, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0b -.byte 0x45, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x2e, 0x6e, 0x65, 0x74, 0x31, 0x40, 0x30, 0x3e, 0x06 -.byte 0x03, 0x55, 0x04, 0x0b, 0x14, 0x37, 0x77, 0x77, 0x77, 0x2e, 0x65, 0x6e, 0x74, 0x72, 0x75, 0x73 -.byte 0x74, 0x2e, 0x6e, 0x65, 0x74, 0x2f, 0x43, 0x50, 0x53, 0x5f, 0x32, 0x30, 0x34, 0x38, 0x20, 0x69 -.byte 0x6e, 0x63, 0x6f, 0x72, 0x70, 0x2e, 0x20, 0x62, 0x79, 0x20, 0x72, 0x65, 0x66, 0x2e, 0x20, 0x28 -.byte 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x73, 0x20, 0x6c, 0x69, 0x61, 0x62, 0x2e, 0x29, 0x31, 0x25, 0x30 -.byte 0x23, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x1c, 0x28, 0x63, 0x29, 0x20, 0x31, 0x39, 0x39, 0x39 -.byte 0x20, 0x45, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x2e, 0x6e, 0x65, 0x74, 0x20, 0x4c, 0x69, 0x6d -.byte 0x69, 0x74, 0x65, 0x64, 0x31, 0x33, 0x30, 0x31, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x2a, 0x45 -.byte 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x2e, 0x6e, 0x65, 0x74, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69 -.byte 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69 -.byte 0x74, 0x79, 0x20, 0x28, 0x32, 0x30, 0x34, 0x38, 0x29, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06 -.byte 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f -.byte 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, 0x00, 0xad, 0x4d, 0x4b, 0xa9, 0x12, 0x86 -.byte 0xb2, 0xea, 0xa3, 0x20, 0x07, 0x15, 0x16, 0x64, 0x2a, 0x2b, 0x4b, 0xd1, 0xbf, 0x0b, 0x4a, 0x4d -.byte 0x8e, 0xed, 0x80, 0x76, 0xa5, 0x67, 0xb7, 0x78, 0x40, 0xc0, 0x73, 0x42, 0xc8, 0x68, 0xc0, 0xdb -.byte 0x53, 0x2b, 0xdd, 0x5e, 0xb8, 0x76, 0x98, 0x35, 0x93, 0x8b, 0x1a, 0x9d, 0x7c, 0x13, 0x3a, 0x0e -.byte 0x1f, 0x5b, 0xb7, 0x1e, 0xcf, 0xe5, 0x24, 0x14, 0x1e, 0xb1, 0x81, 0xa9, 0x8d, 0x7d, 0xb8, 0xcc -.byte 0x6b, 0x4b, 0x03, 0xf1, 0x02, 0x0c, 0xdc, 0xab, 0xa5, 0x40, 0x24, 0x00, 0x7f, 0x74, 0x94, 0xa1 -.byte 0x9d, 0x08, 0x29, 0xb3, 0x88, 0x0b, 0xf5, 0x87, 0x77, 0x9d, 0x55, 0xcd, 0xe4, 0xc3, 0x7e, 0xd7 -.byte 0x6a, 0x64, 0xab, 0x85, 0x14, 0x86, 0x95, 0x5b, 0x97, 0x32, 0x50, 0x6f, 0x3d, 0xc8, 0xba, 0x66 -.byte 0x0c, 0xe3, 0xfc, 0xbd, 0xb8, 0x49, 0xc1, 0x76, 0x89, 0x49, 0x19, 0xfd, 0xc0, 0xa8, 0xbd, 0x89 -.byte 0xa3, 0x67, 0x2f, 0xc6, 0x9f, 0xbc, 0x71, 0x19, 0x60, 0xb8, 0x2d, 0xe9, 0x2c, 0xc9, 0x90, 0x76 -.byte 0x66, 0x7b, 0x94, 0xe2, 0xaf, 0x78, 0xd6, 0x65, 0x53, 0x5d, 0x3c, 0xd6, 0x9c, 0xb2, 0xcf, 0x29 -.byte 0x03, 0xf9, 0x2f, 0xa4, 0x50, 0xb2, 0xd4, 0x48, 0xce, 0x05, 0x32, 0x55, 0x8a, 0xfd, 0xb2, 0x64 -.byte 0x4c, 0x0e, 0xe4, 0x98, 0x07, 0x75, 0xdb, 0x7f, 0xdf, 0xb9, 0x08, 0x55, 0x60, 0x85, 0x30, 0x29 -.byte 0xf9, 0x7b, 0x48, 0xa4, 0x69, 0x86, 0xe3, 0x35, 0x3f, 0x1e, 0x86, 0x5d, 0x7a, 0x7a, 0x15, 0xbd -.byte 0xef, 0x00, 0x8e, 0x15, 0x22, 0x54, 0x17, 0x00, 0x90, 0x26, 0x93, 0xbc, 0x0e, 0x49, 0x68, 0x91 -.byte 0xbf, 0xf8, 0x47, 0xd3, 0x9d, 0x95, 0x42, 0xc1, 0x0e, 0x4d, 0xdf, 0x6f, 0x26, 0xcf, 0xc3, 0x18 -.byte 0x21, 0x62, 0x66, 0x43, 0x70, 0xd6, 0xd5, 0xc0, 0x07, 0xe1, 0x02, 0x03, 0x01, 0x00, 0x01, 0xc1 -.byte 0x00, 0x26, 0x01, 0x30, 0x81, 0xbe, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13 -.byte 0x02, 0x55, 0x53, 0x31, 0x16, 0x30, 0x14, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0d, 0x45, 0x6e -.byte 0x74, 0x72, 0x75, 0x73, 0x74, 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x28, 0x30, 0x26, 0x06 -.byte 0x03, 0x55, 0x04, 0x0b, 0x13, 0x1f, 0x53, 0x65, 0x65, 0x20, 0x77, 0x77, 0x77, 0x2e, 0x65, 0x6e -.byte 0x74, 0x72, 0x75, 0x73, 0x74, 0x2e, 0x6e, 0x65, 0x74, 0x2f, 0x6c, 0x65, 0x67, 0x61, 0x6c, 0x2d -.byte 0x74, 0x65, 0x72, 0x6d, 0x73, 0x31, 0x39, 0x30, 0x37, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x30 -.byte 0x28, 0x63, 0x29, 0x20, 0x32, 0x30, 0x30, 0x39, 0x20, 0x45, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74 -.byte 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x20, 0x2d, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x61, 0x75, 0x74 -.byte 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x65, 0x64, 0x20, 0x75, 0x73, 0x65, 0x20, 0x6f, 0x6e, 0x6c, 0x79 -.byte 0x31, 0x32, 0x30, 0x30, 0x06, 0x03, 0x55, 0x04, 0x03, 0x13, 0x29, 0x45, 0x6e, 0x74, 0x72, 0x75 -.byte 0x73, 0x74, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63 -.byte 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x20 -.byte 0x2d, 0x20, 0x47, 0x32, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86 -.byte 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a -.byte 0x02, 0x82, 0x01, 0x01, 0x00, 0xba, 0x84, 0xb6, 0x72, 0xdb, 0x9e, 0x0c, 0x6b, 0xe2, 0x99, 0xe9 -.byte 0x30, 0x01, 0xa7, 0x76, 0xea, 0x32, 0xb8, 0x95, 0x41, 0x1a, 0xc9, 0xda, 0x61, 0x4e, 0x58, 0x72 -.byte 0xcf, 0xfe, 0xf6, 0x82, 0x79, 0xbf, 0x73, 0x61, 0x06, 0x0a, 0xa5, 0x27, 0xd8, 0xb3, 0x5f, 0xd3 -.byte 0x45, 0x4e, 0x1c, 0x72, 0xd6, 0x4e, 0x32, 0xf2, 0x72, 0x8a, 0x0f, 0xf7, 0x83, 0x19, 0xd0, 0x6a -.byte 0x80, 0x80, 0x00, 0x45, 0x1e, 0xb0, 0xc7, 0xe7, 0x9a, 0xbf, 0x12, 0x57, 0x27, 0x1c, 0xa3, 0x68 -.byte 0x2f, 0x0a, 0x87, 0xbd, 0x6a, 0x6b, 0x0e, 0x5e, 0x65, 0xf3, 0x1c, 0x77, 0xd5, 0xd4, 0x85, 0x8d -.byte 0x70, 0x21, 0xb4, 0xb3, 0x32, 0xe7, 0x8b, 0xa2, 0xd5, 0x86, 0x39, 0x02, 0xb1, 0xb8, 0xd2, 0x47 -.byte 0xce, 0xe4, 0xc9, 0x49, 0xc4, 0x3b, 0xa7, 0xde, 0xfb, 0x54, 0x7d, 0x57, 0xbe, 0xf0, 0xe8, 0x6e -.byte 0xc2, 0x79, 0xb2, 0x3a, 0x0b, 0x55, 0xe2, 0x50, 0x98, 0x16, 0x32, 0x13, 0x5c, 0x2f, 0x78, 0x56 -.byte 0xc1, 0xc2, 0x94, 0xb3, 0xf2, 0x5a, 0xe4, 0x27, 0x9a, 0x9f, 0x24, 0xd7, 0xc6, 0xec, 0xd0, 0x9b -.byte 0x25, 0x82, 0xe3, 0xcc, 0xc2, 0xc4, 0x45, 0xc5, 0x8c, 0x97, 0x7a, 0x06, 0x6b, 0x2a, 0x11, 0x9f -.byte 0xa9, 0x0a, 0x6e, 0x48, 0x3b, 0x6f, 0xdb, 0xd4, 0x11, 0x19, 0x42, 0xf7, 0x8f, 0x07, 0xbf, 0xf5 -.byte 0x53, 0x5f, 0x9c, 0x3e, 0xf4, 0x17, 0x2c, 0xe6, 0x69, 0xac, 0x4e, 0x32, 0x4c, 0x62, 0x77, 0xea -.byte 0xb7, 0xe8, 0xe5, 0xbb, 0x34, 0xbc, 0x19, 0x8b, 0xae, 0x9c, 0x51, 0xe7, 0xb7, 0x7e, 0xb5, 0x53 -.byte 0xb1, 0x33, 0x22, 0xe5, 0x6d, 0xcf, 0x70, 0x3c, 0x1a, 0xfa, 0xe2, 0x9b, 0x67, 0xb6, 0x83, 0xf4 -.byte 0x8d, 0xa5, 0xaf, 0x62, 0x4c, 0x4d, 0xe0, 0x58, 0xac, 0x64, 0x34, 0x12, 0x03, 0xf8, 0xb6, 0x8d -.byte 0x94, 0x63, 0x24, 0xa4, 0x71, 0x02, 0x03, 0x01, 0x00, 0x01, 0xc2, 0x00, 0x78, 0x00, 0x30, 0x81 -.byte 0xbf, 0x31, 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x55, 0x53, 0x31, 0x16 -.byte 0x30, 0x14, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13, 0x0d, 0x45, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74 -.byte 0x2c, 0x20, 0x49, 0x6e, 0x63, 0x2e, 0x31, 0x28, 0x30, 0x26, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13 -.byte 0x1f, 0x53, 0x65, 0x65, 0x20, 0x77, 0x77, 0x77, 0x2e, 0x65, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74 -.byte 0x2e, 0x6e, 0x65, 0x74, 0x2f, 0x6c, 0x65, 0x67, 0x61, 0x6c, 0x2d, 0x74, 0x65, 0x72, 0x6d, 0x73 -.byte 0x31, 0x39, 0x30, 0x37, 0x06, 0x03, 0x55, 0x04, 0x0b, 0x13, 0x30, 0x28, 0x63, 0x29, 0x20, 0x32 -.byte 0x30, 0x31, 0x32, 0x20, 0x45, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x2c, 0x20, 0x49, 0x6e, 0x63 -.byte 0x2e, 0x20, 0x2d, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x61, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a -.byte 0x65, 0x64, 0x20, 0x75, 0x73, 0x65, 0x20, 0x6f, 0x6e, 0x6c, 0x79, 0x31, 0x33, 0x30, 0x31, 0x06 -.byte 0x03, 0x55, 0x04, 0x03, 0x13, 0x2a, 0x45, 0x6e, 0x74, 0x72, 0x75, 0x73, 0x74, 0x20, 0x52, 0x6f -.byte 0x6f, 0x74, 0x20, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e -.byte 0x20, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x20, 0x2d, 0x20, 0x45, 0x43, 0x31 -.byte 0x30, 0x76, 0x30, 0x10, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x05, 0x2b -.byte 0x81, 0x04, 0x00, 0x22, 0x03, 0x62, 0x00, 0x04, 0x84, 0x13, 0xc9, 0xd0, 0xba, 0x6d, 0x41, 0x7b -.byte 0xe2, 0x6c, 0xd0, 0xeb, 0x55, 0x5f, 0x66, 0x02, 0x1a, 0x24, 0xf4, 0x5b, 0x89, 0x69, 0x47, 0xe3 -.byte 0xb8, 0xc2, 0x7d, 0xf1, 0xf2, 0x02, 0xc5, 0x9f, 0xa0, 0xf6, 0x5b, 0xd5, 0x8b, 0x06, 0x19, 0x86 -.byte 0x4f, 0x53, 0x10, 0x6d, 0x07, 0x24, 0x27, 0xa1, 0xa0, 0xf8, 0xd5, 0x47, 0x19, 0x61, 0x4c, 0x7d -.byte 0xca, 0x93, 0x27, 0xea, 0x74, 0x0c, 0xef, 0x6f, 0x96, 0x09, 0xfe, 0x63, 0xec, 0x70, 0x5d, 0x36 -.byte 0xad, 0x67, 0x77, 0xae, 0xc9, 0x9d, 0x7c, 0x55, 0x44, 0x3a, 0xa2, 0x63, 0x51, 0x1f, 0xf5, 0xe3 -.byte 0x62, 0xd4, 0xa9, 0x47, 0x07, 0x3e, 0xcc, 0x20, 0xd5, 0x00, 0x26, 0x01, 0x30, 0x81, 0xd2, 0x31 -.byte 0x0b, 0x30, 0x09, 0x06, 0x03, 0x55, 0x04, 0x06, 0x13, 0x02, 0x54, 0x52, 0x31, 0x18, 0x30, 0x16 -.byte 0x06, 0x03, 0x55, 0x04, 0x07, 0x13, 0x0f, 0x47, 0x65, 0x62, 0x7a, 0x65, 0x20, 0x2d, 0x20, 0x4b -.byte 0x6f, 0x63, 0x61, 0x65, 0x6c, 0x69, 0x31, 0x42, 0x30, 0x40, 0x06, 0x03, 0x55, 0x04, 0x0a, 0x13 -.byte 0x39, 0x54, 0x75, 0x72, 0x6b, 0x69, 0x79, 0x65, 0x20, 0x42, 0x69, 0x6c, 0x69, 0x6d, 0x73, 0x65 -.byte 0x6c, 0x20, 0x76, 0x65, 0x20, 0x54, 0x65, 0x6b, 0x6e, 0x6f, 0x6c, 0x6f, 0x6a, 0x69, 0x6b, 0x20 -.byte 0x41, 0x72, 0x61, 0x73, 0x74, 0x69, 0x72, 0x6d, 0x61, 0x20, 0x4b, 0x75, 0x72, 0x75, 0x6d, 0x75 -.byte 0x20, 0x2d, 0x20, 0x54, 0x55, 0x42, 0x49, 0x54, 0x41, 0x4b, 0x31, 0x2d, 0x30, 0x2b, 0x06, 0x03 -.byte 0x55, 0x04, 0x0b, 0x13, 0x24, 0x4b, 0x61, 0x6d, 0x75, 0x20, 0x53, 0x65, 0x72, 0x74, 0x69, 0x66 -.byte 0x69, 0x6b, 0x61, 0x73, 0x79, 0x6f, 0x6e, 0x20, 0x4d, 0x65, 0x72, 0x6b, 0x65, 0x7a, 0x69, 0x20 -.byte 0x2d, 0x20, 0x4b, 0x61, 0x6d, 0x75, 0x20, 0x53, 0x4d, 0x31, 0x36, 0x30, 0x34, 0x06, 0x03, 0x55 -.byte 0x04, 0x03, 0x13, 0x2d, 0x54, 0x55, 0x42, 0x49, 0x54, 0x41, 0x4b, 0x20, 0x4b, 0x61, 0x6d, 0x75 -.byte 0x20, 0x53, 0x4d, 0x20, 0x53, 0x53, 0x4c, 0x20, 0x4b, 0x6f, 0x6b, 0x20, 0x53, 0x65, 0x72, 0x74 -.byte 0x69, 0x66, 0x69, 0x6b, 0x61, 0x73, 0x69, 0x20, 0x2d, 0x20, 0x53, 0x75, 0x72, 0x75, 0x6d, 0x20 -.byte 0x31, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01 -.byte 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01 -.byte 0x01, 0x00, 0xaf, 0x75, 0x30, 0x33, 0xaa, 0xbb, 0x6b, 0xd3, 0x99, 0x2c, 0x12, 0x37, 0x84, 0xd9 -.byte 0x8d, 0x7b, 0x97, 0x80, 0xd3, 0x6e, 0xe7, 0xff, 0x9b, 0x50, 0x95, 0x3e, 0x90, 0x95, 0x56, 0x42 -.byte 0xd7, 0x19, 0x7c, 0x26, 0x84, 0x8d, 0x92, 0xfa, 0x01, 0x1d, 0x3a, 0x0f, 0xe2, 0x64, 0x38, 0xb7 -.byte 0x8c, 0xbc, 0xe8, 0x88, 0xf9, 0x8b, 0x24, 0xab, 0x2e, 0xa3, 0xf5, 0x37, 0xe4, 0x40, 0x8e, 0x18 -.byte 0x25, 0x79, 0x83, 0x75, 0x1f, 0x3b, 0xff, 0x6c, 0xa8, 0xc5, 0xc6, 0x56, 0xf8, 0xb4, 0xed, 0x8a -.byte 0x44, 0xa3, 0xab, 0x6c, 0x4c, 0xfc, 0x1d, 0xd0, 0xdc, 0xef, 0x68, 0xbd, 0xcf, 0xe4, 0xaa, 0xce -.byte 0xf0, 0x55, 0xf7, 0xa2, 0x34, 0xd4, 0x83, 0x6b, 0x37, 0x7c, 0x1c, 0xc2, 0xfe, 0xb5, 0x03, 0xec -.byte 0x57, 0xce, 0xbc, 0xb4, 0xb5, 0xc5, 0xed, 0x00, 0x0f, 0x53, 0x37, 0x2a, 0x4d, 0xf4, 0x4f, 0x0c -.byte 0x83, 0xfb, 0x86, 0xcf, 0xcb, 0xfe, 0x8c, 0x4e, 0xbd, 0x87, 0xf9, 0xa7, 0x8b, 0x21, 0x57, 0x9c -.byte 0x7a, 0xdf, 0x03, 0x67, 0x89, 0x2c, 0x9d, 0x97, 0x61, 0xa7, 0x10, 0xb8, 0x55, 0x90, 0x7f, 0x0e -.byte 0x2d, 0x27, 0x38, 0x74, 0xdf, 0xe7, 0xfd, 0xda, 0x4e, 0x12, 0xe3, 0x4d, 0x15, 0x22, 0x02, 0xc8 -.byte 0xe0, 0xe0, 0xfc, 0x0f, 0xad, 0x8a, 0xd7, 0xc9, 0x54, 0x50, 0xcc, 0x3b, 0x0f, 0xca, 0x16, 0x80 -.byte 0x84, 0xd0, 0x51, 0x56, 0xc3, 0x8e, 0x56, 0x7f, 0x89, 0x22, 0x33, 0x2f, 0xe6, 0x85, 0x0a, 0xbd -.byte 0xa5, 0xa8, 0x1b, 0x36, 0xde, 0xd3, 0xdc, 0x2c, 0x6d, 0x3b, 0xc7, 0x13, 0xbd, 0x59, 0x23, 0x2c -.byte 0xe6, 0xe5, 0xa4, 0xf7, 0xd8, 0x0b, 0xed, 0xea, 0x90, 0x40, 0x44, 0xa8, 0x95, 0xbb, 0x93, 0xd5 -.byte 0xd0, 0x80, 0x34, 0xb6, 0x46, 0x78, 0x0e, 0x1f, 0x00, 0x93, 0x46, 0xe1, 0xee, 0xe9, 0xf9, 0xec -.byte 0x4f, 0x17, 0x02, 0x03, 0x01, 0x00, 0x01 - -.global _binary_x509_crt_bundle_end -_binary_x509_crt_bundle_end: /* for objcopy compatibility */ - - -.global x509_crt_bundle_length -x509_crt_bundle_length: -.long 68983 - -#if defined (__linux__) -.section .note.GNU-stack,"",@progbits -#endif diff --git a/esp32-thread/open-thread-rcp/main/CMakeLists.txt b/esp32-thread/open-thread-rcp/main/CMakeLists.txt index e881658a..54beb8ac 100644 --- a/esp32-thread/open-thread-rcp/main/CMakeLists.txt +++ b/esp32-thread/open-thread-rcp/main/CMakeLists.txt @@ -1,3 +1,4 @@ idf_component_register(SRCS "esp_ot_rcp.c" PRIV_REQUIRES esp_coex esp_event nvs_flash openthread - INCLUDE_DIRS ".") + INCLUDE_DIRS "." + REQUIRES led_strip) diff --git a/esp32-thread/open-thread-rcp/main/esp_ot_rcp.c b/esp32-thread/open-thread-rcp/main/esp_ot_rcp.c index ccb9988f..c808b777 100644 --- a/esp32-thread/open-thread-rcp/main/esp_ot_rcp.c +++ b/esp32-thread/open-thread-rcp/main/esp_ot_rcp.c @@ -21,6 +21,10 @@ #include "esp_ot_config.h" #include "esp_vfs_eventfd.h" #include "driver/uart.h" +#include "driver/rmt.h" +#include "led_strip.h" +#include "esp_err.h" +#include "driver/rmt_tx.h" #if CONFIG_EXTERNAL_COEX_ENABLE #include "esp_coexist.h" @@ -71,6 +75,33 @@ static void ot_task_worker(void *aContext) vTaskDelete(NULL); } +#define LED_GPIO 18 +#define LED_COUNT 1 + +static led_strip_handle_t led_strip = NULL; + +void init_led_strip(void) +{ + led_strip_config_t strip_config = { + .strip_gpio_num = LED_GPIO, + .max_leds = LED_COUNT, + }; + + led_strip_rmt_config_t rmt_cfg = { + .clk_src = RMT_CLK_SRC_DEFAULT, + .resolution_hz = 10 * 1000 * 1000, // 10MHz is typical + .mem_block_symbols = 0, // 0 to use default + .flags.with_dma = false, // DMA optional + }; + + ESP_ERROR_CHECK(led_strip_new_rmt_device(&strip_config, &rmt_cfg, &led_strip)); + + ESP_ERROR_CHECK(led_strip_clear(led_strip)); + + ESP_ERROR_CHECK(led_strip_set_pixel(led_strip, 0, 255, 0, 255)); + ESP_ERROR_CHECK(led_strip_refresh(led_strip)); +} + void app_main(void) { // Used eventfds: